Mysql簡単に使用
940 ワード
Mysql使用フロー1 mysqlコマンドラインクライアントを開く:mysql-uroot-p; 2はすべてのデータベースを示します:show databases; 3使用するデータベースを選択:use databaseName; 4作成テーブル:CREATE TABLE
その他のコマンド表フィールド情報:desc tableName; フォーマット出力:select*from tableNameG; クリアリスト:truncate table tableName; 削除テーブル:drop table tableName; テーブルデータ数:select count(*)from recipes; データベースの削除:drop database databaseName
recipes
(id
int(11)NOT NULL AUTO_INCREMENT,r_id
int(11)DEFAULT NULL,name
varchar(255)DEFAULT NULL,cover
text,num_cooked
int(11), desc
text, author
text, avatar
text, materials
json, steps
json, tips
text, url
text, source
text, PRIMARY KEY ( id
) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; その他のコマンド