下列创建表student的语句不正确的是()
A、createtablestudent(学号char(10),姓名char(2),年龄int(4))
B、createtablestudent(学号char(10),姓名char(10),年龄int)
C、createtablestudent(学号char(10)姓名char(10)年龄int)
D、以上都不能正确创建一个表
A、createtablestudent(学号char(10),姓名char(2),年龄int(4))
B、createtablestudent(学号char(10),姓名char(10),年龄int)
C、createtablestudent(学号char(10)姓名char(10)年龄int)
D、以上都不能正确创建一个表
A、Select* From Student B、Select Name From Student C、Select Name,Age,IDCard From Student D、Select Name,Age,IDCard,Sex From Student
A、Select Count(1)From Student B、Select Sum(*)From Student C、Selec tAvg(*)From Student D、Select Count(*)From Student
A、Select* From Student Where Age>=20 ANDAge>=30 B、Select* From Student Where Age>=20 ANDAge<=30 C、Select* From Student Where Age BET WENN 20AND30 D、Select* From Student Where Age>=20&&Age>=30"
A、只能为表创建同义词,不能为视图创建同义词 B、同义词只能用于引用其他用户创建的表 C、公有同义词和私有同义词对同一个表可以同名 D、使用DropSynonym语句删除同义词的同时,同义词引用的表也无效