select *from table where school='理工大' and xueyuan in(计算机,水院)
其中 table 是表名
school(学校)、xueyuan(学院)是列名.
查的出`
学校叫“理工大”学院是“计算机”或者“水院”的所有学生
select * from 表
where 学校='理工大' and (学院='计算机' or 学院='水院')
1.select * from student where school='理工大' and institute ='计算机'or school='理工大' and institute ='水院'
2.student是表名,school(学校)、institute(学院)是列名.
3.这个方法不行?
USE DatabaseName
select * from '理工大'
where 学院='计算机' or 学院='水院'
select * from '理工大'
where 学院='计算机' or 学院='水院'