码迷,mamicode.com
首页 > 其他好文 > 详细

列属性

时间:2015-09-12 21:36:44      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

列属性

列属性

Table of Contents

auto_increment

auto_increment 必须用在 primary_key 上

create table xxx (
id int(10) unsigned primary key auto_increment,
) auto_increment=1;                  # 表示从 1 开始计算

default

default 就是插入的时候不指定值的时候自动赋予的值

create table time1 (
tm timestamp unique default now(),
username varchar(30)not null
);
drop table time1;

comment

create table time1 (
tm timestamp unique default now() comment ‘this is time‘,
);

列属性

标签:

原文地址:http://www.cnblogs.com/sunznx/p/4803571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!