--新建数据库 create database Studentdb go --使用数据库 use Studentdb go --新建表 create table Username ( StudentNo ,) not null,--学号并设置标识列 LoginPwd ) not null,--密码 StudentName ) not null,--姓名 Sex ) not null,--性别 GradeId int not null,--年级 Phone )not null,--电话 Addre…