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