【数据库查询--电影制片系列】--检索出StarsIn表中在1990年拍摄过电影的所有影星,或者拍摄过电影名中含有3的电影的所有影星。
分析:涉及到StarsIn表原表详见点这里代码如下:select starNamefrom StarsInwhere movieYear='1990' or movieTitle like '3%';这块一个重要的知识点:名字中含有“3” 要用 like '3%'...
·
分析:涉及到StarsIn表
原表详见点这里
代码如下:
select starName
from StarsIn
where movieYear='1990' or movieTitle like '3%';
这块一个重要的知识点:
名字中含有“3” 要用 like '3%'
更多推荐


所有评论(0)