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: