天天看點

MYSQL建表語句

CREATE TABLE test(
    id int(10) NOT NULL auto_increment,
    uid varchar(10) not null default '0',
    regdate date not null,
    remark text null,
    PRIMARY KEY (id)
)      

轉載于:https://www.cnblogs.com/caofeng/archive/2012/11/25/2787467.html