Why does this simple MySQL query not return the ro

2019-07-17 03:27发布

I have a row in the table users with the username test. For some reason, though, this query returns an empty result set.

SELECT `id` FROM `users` WHERE `username` = "test" AND `id` != null;

However, if I remove the `id` != null segment, the query returns the result id = 1.

But 1 != NULL. How is this happening?

The id field is non-nullable and is auto-increment.

Thanks!

5条回答
疯言疯语
2楼-- · 2019-07-17 03:46

By database definition in general ,Null is nothing and cannot be equated or compared with any other value. Hence ID=NUll or ID!=null wouldn't work.

查看更多
混吃等死
3楼-- · 2019-07-17 03:48

Your method of checking for NULL is probably the issue. In MySQL, try the following:

SELECT `id` FROM `users` WHERE `username` = "test" AND `id` IS NOT NULL;

To check for NULL and an empty string, you can use:

SELECT `id` 
FROM `users` 
WHERE `username` = "test" 
AND (`id` IS NOT NULL OR `id` != "");
查看更多
叼着烟拽天下
4楼-- · 2019-07-17 03:48

Try:

SELECT `id` FROM `users` WHERE `username` = "test" AND `id` != '';

OR

SELECT `id` FROM `users` WHERE `username` = "test" AND `id` iS NOT NULL;
查看更多
对你真心纯属浪费
5楼-- · 2019-07-17 03:51

The query doesn't return a row because the predicate " id != NULL " will never return TRUE.

Th reason for this is that boolean logic in SQL is three valued. A boolean can have values of TRUE, FALSE or NULL.

And an inequality comparison will return NULL whenever one (or both) of the values being compared is NULL.

The SQL standard means to compare to a NULL is to use id IS NULL or id IS NOT NULL. MySQL also adds a convenient null-safe comparison operator which will return TRUE or FALSE:

col <=> NULL. Or, in your case NOT (col <=> NULL)

查看更多
姐就是有狂的资本
6楼-- · 2019-07-17 04:11

try using IS NOT NULL

SELECT `id` FROM `users` WHERE `username` = "test" AND `id` IS NOT NULL

Have a look at the difference

SQL Fiddle DEMO

查看更多
登录 后发表回答