where后加多个条件可以用and来连接。
如,student表中有如下数据:
现在要查,sex为男,age为20的那些数据,可用如下语句:
select * from student where sex='男' and age=20;
结果截图:
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
这三个会返回一样的结果
select * from 表 where 编号 in (1,2,3,4)
或者
select * from 表 where 编号=1 or 编号=2 or 编号=3 or 编号=4
这两个是同样的道理
in或者between等等!
where条件查询