データ修正
インサート文
insert into table_name(title, url) values("あああ","https://XXX.com");
カラム名省略
insert into table_name values("あああ","https://XXX.com");
アップデート文
update table_name set col_name='あいうえおか' where id=2;
テーブル修正
テーブル作成(create table)
create table XXXXX(
id int auto_increment not null primary key,
title varchar(50),
url varchar(1000),
create_date timestamp not null default current_timestamp,
update_date timestamp not null default current_timestamp on update current_timestamp
);
カラム(列)追加
alter table table_name add column_name varchar(XX) after column_name;
カラムのデータ型変更
alter table table_name modify col_name int;
データ型メモ
MySqlのデータ型、よく使うものだけ
MySql接続
mysql -h db_host -u user_name -p -D db_name