select productid,name,productnumber,color
from adventureworks.production.product
where color in ('银','黑','灰') -------------------
在product表中的color列里含有null,如何查询非null
select productid,name,productnumber,color
from adventureworks.production.product
where color in ('银','黑','灰') -------------------
在product表中的color列里含有null,如何查询非null
select productid,name,productnumber,color
from adventureworks.production.product
where color is not null
这样试试
如果你你的color字段是字符类型的没可能不行的
你用where color=‘黑’ 是不是提示出错了?
如果是的话,那应该是你黑字后面的'用了中文