注意点

来源:互联网 发布:医疗器械软件确认报告 编辑:程序博客网 时间:2024/04/29 20:04

5.2精度

decimal(7,2)

1. 创建book
create table book(
   bno         char(8)        primary key,
   category    char(10)       not null,
   title       varchar(40)    not null,
   press       char(30)       not null,
   year        int            not null,
   author      char(20)       not null,
   price       decimal(7,2)   not null, /* here*/
   total       int            not null,
   stock       int            not null 
);

创建borrow

create table borrow(

   cno            char(7)      primary key,

   bno            char(8)      not null,

   borrow_date    datetime     not null, /*是datetime不是date*/

   return_date    datetime     not null

);

print @@error /* 0 */

原创粉丝点击