摘要:
1.insert介绍 insert into <表名>(字段名) values (值) 例: create table test ( id int(4) not null auto_increment, name char(20) not null, primary key(id) ) ; 1.1) 阅读全文
摘要:
1.表 1.1)建表 create table student( id int(4) not null,name char(20) not null,age tinyint(2) not null default '0',dept varchar(16) default null); show cr 阅读全文