MySQLエントリーシートの作成、変更、削除
1.MySQLの起動
(1)XAMPPを起動し、startをクリックするとMySQLが緑になります.
(2)MySQL Workbenchを起動し、MySQL Connectionsに接続を追加します.
2.MySQLテーブルの作成、変更、削除
ダイレクトコード
コメント:
テーブルcreate tableを作成します.
テーブルの名前変更rename table***to;
表の名前変更alter table***rename to;
表の添削改alter table***add/change/drop;
テーブルdrop tableを削除します.
データベースshow databasesを表示します.
テーブルdescribe***を表示します.
(1)XAMPPを起動し、startをクリックするとMySQLが緑になります.
(2)MySQL Workbenchを起動し、MySQL Connectionsに接続を追加します.
2.MySQLテーブルの作成、変更、削除
ダイレクトコード
create table my_fir_tab(
id int(3),
name varchar(20),
addr varchar(50)) ;
rename table my_fir_tab to my_sec_tab;
alter table my_sec_tab rename to my_fir_tab;
alter table my_fir_tab add email varchar(50);
alter table my_fir_tab change id newid int(5);
alter table my_fir_tab drop addr;
show tables from my_fir_db;
describe my_fir_tab;
show databases;
drop table my_fir_tab;
show databases;
コメント:
テーブルcreate tableを作成します.
テーブルの名前変更rename table***to;
表の名前変更alter table***rename to;
表の添削改alter table***add/change/drop;
テーブルdrop tableを削除します.
データベースshow databasesを表示します.
テーブルdescribe***を表示します.