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.
我的 sql 表只有一列,它是“ID”
select MAX(id) from eve.db.dde
它只返回 1 字段(最高)
如何按从高到低的顺序返回所有字段?
SELECT id FROM eve.db.dde ORDER BY ID DESC