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)
)

posted on 2012-11-25 13:06  曹锋  阅读(123)  评论(0)    收藏  举报

导航