DDL:Data Definition Language データ定義言語。データを格納するための構造を定義する。
DML:Data Manipulation Language データ操作言語。定義されたデータ構造中の個々のデータを操作する。
DCL:Data Control Language データ制御言語。データへのアクセス権限などを制御する。
命名規則はスネークケース(小文字で単語を_区切りにしたもの)を採用しているパターンが多い
カラム名もスネークケースを採用したほうが命名規則が統一されて美しい
tlm_values
基本的にはRailsの命名規則に従うのがよいだろう
http://railsdoc.com/rails_base
http://so-zou.jp/web-app/tech/database/sqlite/
.databases
.table
.dump ?TABLE?
.help
.exit
http://so-zou.jp/web-app/tech/database/sqlite/data/data-type.htm
COPY (select * from foo) TO '/tmp/aaa.csv' (FORMAT csv);
select * from binary where data::varchar like '%010203%';
普通にinsertすればよい
INSERT INTO table (data) VALUES (
\x13070809'
);
INSERT INTO table(A, B, C, time)
SELECT
0,
'aaa',
COL_C,
lag(time) OVER (ORDER BY time asc),
FROM
table2
シェルで
export PAGER=less
\pset pager off
ALTER TABLE cps_def ALTER COLUMN no_imaging_flag TYPE integer USING (no_imaging_flag::integer);
drop schema public cascade; create schema public;
SELECT FullName FROM tbl_EmployeeA UNION ALL SELECT FullName FROM tbl_EmployeeB;
SELECT * FROM `location` where (area1, area2, area3) in (("earth","japan",""))
select max(cast(j.jsonb_array_elements_text as integer)) from (select jsonb_array_elements_text(t.time_range) from (select (select jsonb_agg(t -> 'time') as time_range from jsonb_array_elements(param_array) as x(t)) from data where type = 'D') t) j;
pg_typeof
select (select jsonb_agg(t -> 'time') from jsonb_array_elements(parameters) as x(t)) from table where type = 'A';
https://dba.stackexchange.com/questions/229069/extract-json-array-of-numbers-from-json-array-of-objects https://www.postgresql.jp/document/11/html/datatype-json.html
かければいい
2 * interval '1 day'
extract(day from '2019-07-22 10:00:00' - time)
date_trunc('days', '2019-07-22 10:00:00' - time)
cast(“start_time” as time)
https://stackoverflow.com/questions/9795660/postgresql-distinct-on-with-different-order-by
各項目にはつけられないみたいなのでenum自体に列挙する
CREATE TYPE my_type_description AS ENUM('foo desc', 'bar desc');
https://stackoverflow.com/questions/42367917/postgres-add-description-of-an-enum-value
https://blog-asnpce.com/technology/1345
WHERE target_column IS NOT NULL ORDER BY target_column
target_columnに別名をつけているの場合はWHEREできないので
ORDER BY target_column desc NULLS LAST
mysql -uroot -p'password' -D database_name
SELECT * FROM table WHERE data like BINARY CONCAT('%', 0x6671, '%')
https://support.plesk.com/hc/en-us/articles/115003337614-How-to-see-BLOB-fields-as-text-in-PHPMyadmin-
文字コードが原因。
show table status;
をして、
latin1_swedish_ci とかを探す。
あったら、
ALTER TABLE my_table CONVERT TO CHARACTER SET utf8;
をしてUTF-8にする。