SQL创建一张表以及细节

这是完整的语句:

create table base_tv_type_sale_out_detail_report (
    id bigint(18) unsigned not null auto_increment comment '主键' primary key,
    fk_base_tv_type_info_id bigint(18) not null comment '型号外键',
    fk_base_channel_plate_id bigint(18) not null comment '渠道id',
    monthly_num int(8) default 0 not null comment '月累销量',
    order_report_time datetime not null comment '订单报表时间'
)charset utf8 
comment 'TV出货明细报表'
engine InnoDB;

上面的SQL需要注意的事项:

1:create table 表名后跟上的是(); 。注意这里是小括号和分号。

2:主键的类型后面接的unsigned是无符号的意思,也就是我们平时说的非负数。因为主键是不会是负数的。

3:所有的字段都应该加上comment,便于后面的人理解

4:表后面需要加上charset,engine和comment。这些都是必不可少的,虽然数据库可能都有默认的,但是有时候需求不一,所以加上才是最稳妥的做法

5:最后的分号一定是在最后面进行结束

你可能感兴趣的:(数据库,mysql,数据库)