查询成绩在70到90之间的‘C1、’C2‘、’C3‘号课程的选课情况。
查询课程名以’C‘开头最后两个字是’设计‘的课程信息。
你好,望采纳`
``bash
select * from C_course where 成绩 in ('C1'、'C2','C3')
```
1.select * from table where score between 70 and 90 and cid in ('C1','C2','C3');
2.select * from table where cname like 'C%' and cname like '%设计'