题目详情
单选题 有如下课程表:要查询和"数据库"这门课学分相同的课程名称(不包含数据库这门课),则可以使用以下哪段查询语句() 
A. select 课程名 from 课程表 where 学分=(select 学分 from 课程表 where 课程名='数据库') and 课程名<>'数据库'
B. select 课程名 from 课程表 where 学分=(select 学分 from 课程表 where 课程名='数据库')
C. select 课程名 from 课程表 where 学分=(select 学分 from 课程表 where 课程名='数据库' and 课程名<>'数据库')
D. select 课程名 from 课程表 where exists(select 学分 from 课程表 where 课程名='数据库') and 课程名<>'数据库'

学科:MySQL数据库
时间:2024-05-19 12:58:49
相关题目
相关作业
