相当于mysql中sql server的查询

时间:2013-01-09 11:09:13

标签: mysql sql equivalent

我在SQL Server中有查询,但我不知道它在mysql中的等价物。 sql代码是:

select username as t ,*from users

此代码在sql中运行,但此代码不在mysql中运行。 有路吗?

2 个答案:

答案 0 :(得分:2)

你可以做任何一次

select *, username as t from users

select username as t, users.* from users

由于某种原因在MySQL中,如果您首先指定特定列,则必须限定*

答案 1 :(得分:1)

您可以使用此代码:

select *,username as t from users