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.
我正在创建一个网站,我需要获得一列中的最高数字。什么是 INSERT... 是。例如 INSERT * FROM $database。你知道我的意思。那会是什么?顺便说一句,如果有帮助,列名是“id”。
要获得最大的数字,请使用以下MAX()函数:
MAX()
SELECT MAX(id) id FROM mytable
SELECT id FROM tablename ORDER BY id DESC LIMIT 1;