Skip to content

Instantly share code, notes, and snippets.

@Comamoca
Last active June 19, 2024 21:57
Show Gist options
  • Save Comamoca/3afcc68910277f1d2219a275dc88d58d to your computer and use it in GitHub Desktop.
Save Comamoca/3afcc68910277f1d2219a275dc88d58d to your computer and use it in GitHub Desktop.
U149メンバーのSQL Schema。SQLの試し書きやサンプルコードなどにどうぞ。公式サイトとPixiv百科事典の情報を元にしています。順次情報を増やしていく予定です。
create table idols
(
name text,
age integer,
height integer
);
INSERT INTO idols (name, age, height) VALUES
('橘ありす', 12, 141),
('櫻井桃華', 12, 145),
('赤城みりあ', 11, 140),
('的場梨沙', 12, 143),
('佐々木千枝', 11, 139),
('龍崎薫', 9, 132),
('市原仁奈', 9, 128),
('古賀小春', 12, 140),
('佐城雪美', 10, 137),
('福山舞', 10, 132),
('遊佐こずえ', 11, 130),
('横山千佳', 9, 127)
;
@Comamoca
Copy link
Author

動作確認はPostgre SQL v15で行なっています。
標準SQLで書くつもりですが拡張に依存している処理を含めてしまうかもしれません。
気が付いた際は教えていただけると幸いです。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment