PHP で一般的に使用されるいくつかの mysql ステートメント
データベースまたはテーブルを表示する:
show Databases;//その後、database_name を使用できます;
show tables;
テーブル名の変更:
alter table table_name rename new_t;
列の追加:
alter table table_name列 c_n 列属性を追加;
列を削除:
テーブル table_name を変更して列 c_n を削除;
インデックスを作成:
テーブル c_table を変更してインデックス (c_n1,c_n2);
テーブル c_table を変更して一意のインデックス名 (c_n) を追加;
テーブル c_table を変更主キー(sid);
インデックスの削除:
alter table c_tabledropindex c_n1;
列情報の変更:
alter table t_table change c_1 c_1 varchar(200);
alter table t_table edit 1 c_1 varchar(200);
insert insertステートメント:
table_name (c_1,c_2) に挿入
値 (x1,1);
update ステートメント:
update table_name set c_1 =1 where c_2=3;
データベースまたはテーブルを削除:
Drop table table_name;
Dropデータベース データベース名 ;//mysql_drop_db() を使用して削除できます。