欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

MySQL中delete语句使用别名有关问题

程序员文章站 2022-06-03 21:29:51
...

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

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


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

?