摘要:
1. 创建一个表 create table class(id int not null primary key, name char(16)); # 插入数据 insert into class(id,name) values(1,"张三"); insert into class(id,name) 阅读全文
摘要:
1. 创建表 create table info(id int auto_increment, name char(32) not null, age int not null, registerdate date not null, primary key (id)); 解析: auto_incr 阅读全文