sql 删除

今天执行删除报错,sql如下

delete from table t where t.id = 1

问题是使用了表名,去掉如下就行

delete from table where id = 1
原文地址:https://www.cnblogs.com/paper-man/p/13284649.html