高手请进,帮我写个SQL语句,急急急~~~

2024-12-22 22:49:20
推荐回答(5个)
回答1:

select *from table where school='理工大' and xueyuan in(计算机,水院)

其中 table 是表名
school(学校)、xueyuan(学院)是列名.

查的出`

回答2:

学校叫“理工大”学院是“计算机”或者“水院”的所有学生

select * from 表
where 学校='理工大' and (学院='计算机' or 学院='水院')

回答3:

1.select * from student where school='理工大' and institute ='计算机'or school='理工大' and institute ='水院'
2.student是表名,school(学校)、institute(学院)是列名.
3.这个方法不行?

回答4:

USE DatabaseName
select * from '理工大'
where 学院='计算机' or 学院='水院'

回答5:

select * from '理工大'
where 学院='计算机' or 学院='水院'