YM0731
6/16/2019 - 9:25 AM

データベースの管理

--log2テーブルからlog3テーブルを作成する。
--テーブル定義のみコピー参照して作成したい場合はwhere id isnullなどにして出力を0件にする
create table log3
  as select * from log2

--テーブル一覧を取得
show tables from igoinfo

--テーブル製薬
name varchar(20) not null

price default 99

id int(11) not null primary key

Primary key (id, name)

id int(11) not null primary key auto_increment

--重複を許可しない
mail varchaa(100) not null unique