MySQL从数据库中选择非空

时间:2016-02-23 18:42:10

标签: mysql

我正在尝试从数据库中选择信息,但我不想选择NULL

我的查询:

SELECT percent, cost, userid FROM games ORDER BY `percent` ASC LIMIT 5

并选择NULL值,如何选择NULL

Example

2 个答案:

答案 0 :(得分:1)

http://localhost:1337/assets/client/launch.html运算符使用WHERE语句。

IS NOT null

答案 1 :(得分:0)

IS NOT NULL可以在WHERE子句中使用。

Read the manuals;)

SELECT percent,cost,userid
FROM games
WHERE `YourAwesomeColumn` IS NOT NULL
ORDER BY `percent` ASC
LIMIT 5