我正在尝试从数据库中选择信息,但我不想选择NULL
。
我的查询:
SELECT percent, cost, userid FROM games ORDER BY `percent` ASC LIMIT 5
并选择NULL
值,如何选择NULL
。
答案 0 :(得分:1)
对http://localhost:1337/assets/client/launch.html
运算符使用WHERE
语句。
IS NOT null
答案 1 :(得分:0)
IS NOT NULL
可以在WHERE
子句中使用。
SELECT percent,cost,userid
FROM games
WHERE `YourAwesomeColumn` IS NOT NULL
ORDER BY `percent` ASC
LIMIT 5