我的查询是:
DELETE FROM abc_memory INNER JOIN abc USING (abc_id) WHERE x < y
MySQL 抱怨说:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INNER JOIN abc USING (abc_id) WHERE x < y' at line 1
在 MySQL 中,既不能将内存表与 innodb 表连接,也不能在连接两个普通表时删除。但是在与 InnoDB 表连接时从内存表中删除是否有限制?