摘要: insert into class (sname,company,salary) values ('刘备','皇室成员',15.28), ('孙策','江东集团',56.34), ('曹操','宦官后裔',88.56);=-==update 改的要素 改哪张表 : class 改哪几列 : gender,company 改成什么值: '女','千度'update class set gender='女', company='千度';== 阅读全文
posted @ 2012-10-22 19:57 永不停歇 阅读(230) 评论(0) 推荐(0) 编辑
摘要: create table class( id int primary key auto_increment, sname varchar(10) not null default '', gender char(1) not null default '', company varchar(20) not null default '', salary decimal(6,2) not null default 0.00, fanbu smallint not null default 0 )engine myisam charset utf8; 阅读全文
posted @ 2012-10-22 19:56 永不停歇 阅读(190) 评论(0) 推荐(0) 编辑