数据库中的问题。

1.今天对简单表进行修改时候遇到无法找到数据类型DATE的错误,SQL中的日期数据类型date不能用而datetime能用,ALTER TABLE STUDENT ADD S_antrance DATETIME,中使用DATETIME而不使用DATE,SQL中日期类型只有datetime和smalldatetime,data类型只是 年:月:日 
而datatime类型是 年:月:日 小时:分钟:秒:毫秒 
你可以在SQLSERVER上建个表试下.即时你插入的是 年:月:日 类型的数据.SQLSERVER也会自动在后面给你补上 小时:分钟:秒:毫秒

 

 

2.


create table Student ( Sno char(9) primary key, Sname char(20) unique, Ssex char(2), Sage smallint, Sdept char(20) ) create table Course ( Cno char(4) primary key , Cname char(40), Cpno char(4), Ccredit smallint, foreign key Cpno references Course(Cno) ) create table SC ( Sno char(9), Cno char(4), Grade smallint , primary key (Sno ,Cno), foreign key (Sno) references Student(Sno), foreign key (Cno) references Course(Cno) );  

建表时,foreign key (Cpno) references Course(Cno),foreign key 后面的Cpno一定要加()。

你可能感兴趣的:(数据库中的问题。)