数据库前四个实验SQL代码-实验一、数据库的定义实验-1.创建XSCJGL数据库USE MASTERIF DB_ID(XSCJGL)IS NOT NULL DROP DATABASE XSCJGLCREATE DATABASE XSCJGL-2、刷新数据库目录后,选择新出现的XSCJGL数据库,在SQL操作窗口中,创建Student、SC、Course三表及表记录插入命令如下:use xscjglif object_id(sc,u) is not null drop table scif object_id(s,u) is not null drop table sif object_id(c,u) is not null drop table cif object_id(tsc,u) is not null drop table tscif object_id(ts,u) is not null drop table tsif object_id(tc,u) is not