摘要:
如果sql语句中的子查询包含limit 例如: select * from table where id in (select id from table limit 3) 会报错: This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ 阅读全文
摘要:
在上一文中发布了多表删除指定记录,发现达不到我想要的效果,找了很多资料,发现以下方法。 数据库不能边查询边删除, 尝试以下操作 delete from push_msg_overview where id in ( select id from push_msg_overview where pus 阅读全文