美国大学申请入学数据库collegeapply中有三个关系模式,如下所示: College( cName ,state,enrollment) Student( sID ,sName,GPA,sizeHS) Apply( sID,cName,major ,decision) 其在任一时刻的关系实例如下所示: College: Student: Apply: 请写出如下的DDL:(请在SQL Server中实际操作并运行成功) 1) 定义关系College 2) 定义关系Student. 3) 定义关系Apply. 4) 向Student关系中增加一列出生日期“birthday”. 5) 向Student关系中增加一列性别“gender”.. 6) 删除Student关系 “birthday”列 7 )删除Student关系 “gender”列 8) 修改Student关系中Sname列数据类型为varchar(50)且Not null。 9 )删除Apply关系中的主键约束。 10 )增加Apply关系中的主键约束。