Алтарь Юаньцю был перестроен в 1749 году. Здесь ежегодно ранним утром в день зимнего солнцестояния, , совершалась церемония молитв и жертвоприношений. Алтарь представляет собой круглую трёхъярусную платформу.
A. 22-го декабря
B. 21-го ноября
C. 22-го июля
D. 30-го декабря
目前关系数据库的国际标准操作语言是:
A. SQL
B. 关系代数
C. 关系演算
D. Structured Query Language
可实现查询“选修C2(C2为课程号)课程的学生姓名”的SQL语句有:
A. select snamefrom student,scwhere student.sno=sc.sno and cno='C2'
B. select snamefrom studentwhere sno in(select sno from sc where sc.sno=student.sno and cno='C2')
C. select snamefrom studentwhere exists(select * from sc where sc.sno=student.sno and cno='C2')
D. select snamefrom student, (select sno from sc where cno='C2') as s1where student.sno=s1.sno
可实现查询“没有选修C2(C2为课程号)课程的学生姓名”的SQL语句有:
A. select snamefrom student,scwhere student.sno=sc.sno and cno≠'C2'
B. select snamefrom student where sno not in(select sno from scwhere cno='C2')
C. select snamefrom studentwhere not exists(select * from scwhere sc.sno=student.sno and cno='C2')
D. select sname from studentexceptselect sname from student,sc wheresc.sno=student.sno andcno='C2'