--创建数据库 create database Information go --使用数据库 use Information go --创建表 create table Student ( Sno ) primary key not null, Sname ) not null, Ssex bit not null, Sbirthday datetime, Class ), ) create table Course ( Cno ) primary key not null, Cname ) n…