在mysql5.0版本里,不支持删除别名 例如:
这样是行的但是:
select * from test where id=
'3';
这样是不行的!会报1064错误
select * from test T1 where T1.id='3';
要是一定要表名字:可以直接这样:
select * from test where test.id='3';
经过测试:在oracle,db2数据库,都是可以在删除语句中使用别名的
这样是行的但是:
select * from test where id=
'3';
这样是不行的!会报1064错误
select * from test T1 where T1.id='3';
select * from test where test.id='3';