Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的 MySQL 命令。它不起作用,因为实际上应该影响 1609 行时不会影响任何行。我不确定发生了什么,但我很沮丧。我可以一次删除它们,但我没有耐心这样做。有任何想法吗?
mysql> DELETE FROM triggers WHERE templateid between 24126 and 25757;
查询正常,0 行受影响(0.00 秒)
我不太确定这是否是问题所在,但是,试试这个:
DELETE FROM triggers WHERE templateid > 24126 and templateid < 25757;
抱歉,这不是问题。这是我的问题。对不起,大家。我想这不是开始我的会员资格的好方法。