日期:2014-05-16  浏览次数:20788 次

MySQL中delete语句使用别名问题
delete from test a where a.id = '001';
在mysql中报错


delete a from test a where a.id = '001';

?