标签: php
我想删除表格的最后一行。
查询:
delete from NEXG.user_type where `id`=last_insert_id()
id是自动增量键。
id
但它显示 0行受影响。
这背后的原因是什么?
答案 0 :(得分:6)
简:
DELETE FROM `user_type` ORDER BY `id` DESC LIMIT 1