TOPIC 9中color 的用法
在演示中,用了in的语句
select * from [Production].[Product]
where color in('red', 'white','black' )
可以显示出颜色为red和white和black的数据。
我尝试试用了下面的语句
select * from [Production].[Product]
where color='red' and color='white' and color='black'
前面提到and的用法,所以尝试了这样执行,结果是没有数据的。小雨老师可以解释下,为什么不能这么使用吗