sql 查询语句 where 后面如果加多个条件

2024-11-30 11:41:19
推荐回答(5个)
回答1:

where后加多个条件可以用and来连接。

如,student表中有如下数据:

现在要查,sex为男,age为20的那些数据,可用如下语句:

select * from student where sex='男' and age=20;

结果截图:

回答2:

select * from 表 where 编号 in (1,2,3,4)

或者

select * from 表 where 编号=1 or 编号=2 or 编号=3 or 编号=4

或者

select * from 表 where 编号=1
union
select * from 表 where 编号=2
union
select * from 表 where 编号=3
union
select * from 表 where 编号=4

这三个会返回一样的结果

回答3:

select * from 表 where 编号 in (1,2,3,4)

或者

select * from 表 where 编号=1 or 编号=2 or 编号=3 or 编号=4

这两个是同样的道理

回答4:

in或者between等等!

回答5:

where条件查询