SQL
テーブル作成
code:sql
);
インデックス作成
code:sql
create index index_name on table_name(column_name)
レコード削除
DELETE FROM [テーブル名] WHERE [条件]
レコード更新
UPDATE [テーブル名] SET [カラム名]=[値] WHERE [対象レコードの条件]
テーブル削除
drop table [テーブル名], [テーブル名]...;]
Select文
1件のみ取得
select * from table limit 1;
nullable
is null select * from table where column is null;
not null select * from table where column is not null;
レコードの数を数える
select count(*) as cnt from hoges
JOIN句
... from table_a join table_b on table_a.id = table_b.id where ...