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 查询:
SELECT * FROM users WHERE ip NOT '66.249.73.202' ORDER BY lastlogin DESC
试试这个:
SELECT * FROM users WHERE ip != '66.249.73.202' ORDER BY lastlogin DESC
MySQL 101: