クラステーブルを作成する
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;
テーブルの構造を表示する desc [テーブル名]
テーブルにデータを追加---テーブルを選択->データのどの列を追加する-->それぞれ追加する内容値
すべての列を挿入
insert into class (id,sname,gender,company,salary ,fanbu) values (1,'张三','男','百度',8888.88,234);
または
insert into class values (1,'张三','男','百度',8888.88,234);
列の内容の一部のみを挿入
insert into class (sname,gender,salary) values ('刀锋','男',9000.00);
上記の例では、ID データは挿入されませんが、ID は自動インクリメントされます
複数個追加します
insert into class (sname,company,salary) values ('刘备','皇室成员',15.28), ('曹操','宦官后代',88.45), ('孙策','江东集团',188.25);
update テーブル内のデータを変更します
要素は次のとおりです
そのテーブルを変更します: クラス
どの列を変更します: 性別、会社、ファンブなど
どの値に変更する必要がありますか: '女性'、'Qiandu'
どの場所を有効にするかを指定します: 例: id=2 (フィルター条件を追加する必要があります)
update class set fanbu=123 where id=2 update class set fanbu=453,gender='男' where sname='孙策';
#Delete---注: 削除とは行全体の削除を指します。特定の行の削除はありません。フライト内の列
#要素を削除
#そのテーブルのデータを削除
給与>8889の人を削除
delete from class where salary>8889;テーブル全体のデータを削除
delete from class;上記MySQL テーブルの追加、削除、変更については、PHP Chinese Net (www.php.cn) を参照してください。