选择where where field 0 MySQL

时间:2014-06-18 20:14:21

标签: mysql sql

我在MySQL数据库中有这个表:

+----+-------+-----------+
| ID | NAME  | idcountry |
+----+-------+-----------+
|  1 | Jack  |         1 |
|  2 | Simon |         1 |
|  3 | Peter |         0 |
+----+-------+-----------+

我希望显示所有idcountry等于零的用户:

select name from users where idcountry = 0

但查询返回空结果,但是如果我想显示idcountry等于1的所有用户

select name from users where idcountry = 1

查询效果很好,那么问题是什么,我什么都不懂

0 个答案:

没有答案