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 表,其中的行包含一个整数字段,并且从 PHP 脚本中,我需要删除表中字段值(整数)低于 $minimum的那些行- 如何实现这一点?
Just use DELETE:
DELETE
DELETE FROM my_table WHERE field < ?