SQL语句where多条件查询怎么写?

2024-10-28 02:15:01
推荐回答(5个)
回答1:

工具/材料:以Management Studio为例。

1、首先在桌面上,点击“Management Studio”图标。

2、然后在该界面中,点击右上角“新建查询”选项。

3、之后在该界面中,输入where多条件查询的SQL语句“selec t * from rss where grade >90 and No=20”。

4、接着在该界面中,点击“执行”按钮。

5、最后在该界面中,显示where多条件查询成功。

回答2:

select * from a where b in(‘1’ , ‘2’, ‘3’) and c <> '4'

回答3:

select * from a where (b like '%1%' or b like '%2%' or b like '%3%') and c not like '%4%'
select * from a where (b=1 or b=2 or b=3) and c!=4

回答4:

select * from 表A where B in('1','2','3') and C<>'4'

回答5:

where table a.b in(1.2.3)