SQL - SQLite - Python - 高度なSELECT文 - 新たな目でデータを見る - 新しい列への移入
Head First SQL ―頭とからだで覚えるSQLの基本、 Lynn Beighley(著)、 佐藤 直生(監訳)、 松永 多苗子(翻訳)、 オライリージャパンの 6章(高度なSELECT文 - 新たな目でデータを見る)、p.239(自分で考えてみよう)の解答を求めてみる。
schema1_0.sql
drop table if exists movie_table;
create table movie_table (
title text,
rating text,
drama text,
comedy text,
action text,
gore text,
scifi text,
for_kids text,
cartoon text
);
insert into movie_table values
('ビッグ・アドベンチャー','G','F','F','F','F','F','T','F'),
('グレッグ:語られざる物語','PG','F','F','T','F','F','F','F'),
('狂った道化師','R','F','F','F','T','F','F','F'),
('13日の金曜日恐怖症','R','T','T','T','F','T','F','F'),
('ねずみのダーシー','G','F','F','F','F','F','T','F'),
('エンド・オブ・ザ・ライン','R','T','F','F','T','T','F','T'),
('シャイニー・シングス','PG','T','F','F','F','F','F','F'),
('テイク・イット・バック','R','F','T','F','F','F','F','F'),
('サメの餌','G','F','F','F','F','F','T','F'),
('怒れる海賊','PG','F','T','F','F','F','F','T'),
('人間が住めるかもしれない惑星','PG','F','T','F','F','T','F','F');
schema1_1.sql
alter table movie_table
add column category text;
update movie_table set category = 'ドラマ' where drama = 'T';
update movie_table set category = 'コメディ' where comedy = 'T';
update movie_table set category = 'アクション' where action= 'T';
update movie_table set category = 'ホラー' where gore = 'T';
update movie_table set category = 'SF' where scifi = 'T';
update movie_table set category = 'ファミリー' where for_kids = 'T';
update movie_table set category = 'ファミリー' where cartoon = 'T' and rating = 'G';
update movie_table set category = 'その他' where cartoon = 'T' and rating <> 'G';
コード
sample1.py
#! /usr/bin/env python3
import sqlite3
con = sqlite3.connect('sample.db')
cur = con.cursor()
def p(cur: sqlite3.Cursor, table: str):
cur.execute(
f"""
select * from {table}
"""
)
if (d := cur.description) is not None:
print([t[0] for t in d])
for row in cur.fetchall():
print(row)
for i in range(2):
with open(f'schema1_{i}.sql') as f:
cur.executescript(f.read())
con.commit()
p(cur, 'movie_table')
cur.close()
con.close()
入出力結果(Terminal, Zsh)
% ./sample1.py
['title', 'rating', 'drama', 'comedy', 'action', 'gore', 'scifi', 'for_kids', 'cartoon']
('ビッグ・アドベンチャー', 'G', 'F', 'F', 'F', 'F', 'F', 'T', 'F')
('グレッグ:語られざる物語', 'PG', 'F', 'F', 'T', 'F', 'F', 'F', 'F')
('狂った道化師', 'R', 'F', 'F', 'F', 'T', 'F', 'F', 'F')
('13日の金曜日恐怖症', 'R', 'T', 'T', 'T', 'F', 'T', 'F', 'F')
('ねずみのダーシー', 'G', 'F', 'F', 'F', 'F', 'F', 'T', 'F')
('エンド・オブ・ザ・ライン', 'R', 'T', 'F', 'F', 'T', 'T', 'F', 'T')
('シャイニー・シングス', 'PG', 'T', 'F', 'F', 'F', 'F', 'F', 'F')
('テイク・イット・バック', 'R', 'F', 'T', 'F', 'F', 'F', 'F', 'F')
('サメの餌', 'G', 'F', 'F', 'F', 'F', 'F', 'T', 'F')
('怒れる海賊', 'PG', 'F', 'T', 'F', 'F', 'F', 'F', 'T')
('人間が住めるかもしれない惑星', 'PG', 'F', 'T', 'F', 'F', 'T', 'F', 'F')
['title', 'rating', 'drama', 'comedy', 'action', 'gore', 'scifi', 'for_kids', 'cartoon', 'category']
('ビッグ・アドベンチャー', 'G', 'F', 'F', 'F', 'F', 'F', 'T', 'F', 'ファミリー')
('グレッグ:語られざる物語', 'PG', 'F', 'F', 'T', 'F', 'F', 'F', 'F', 'アクション')
('狂った道化師', 'R', 'F', 'F', 'F', 'T', 'F', 'F', 'F', 'ホラー')
('13日の金曜日恐怖症', 'R', 'T', 'T', 'T', 'F', 'T', 'F', 'F', 'SF')
('ねずみのダーシー', 'G', 'F', 'F', 'F', 'F', 'F', 'T', 'F', 'ファミリー')
('エンド・オブ・ザ・ライン', 'R', 'T', 'F', 'F', 'T', 'T', 'F', 'T', 'その他')
('シャイニー・シングス', 'PG', 'T', 'F', 'F', 'F', 'F', 'F', 'F', 'ドラマ')
('テイク・イット・バック', 'R', 'F', 'T', 'F', 'F', 'F', 'F', 'F', 'コメディ')
('サメの餌', 'G', 'F', 'F', 'F', 'F', 'F', 'T', 'F', 'ファミリー')
('怒れる海賊', 'PG', 'F', 'T', 'F', 'F', 'F', 'F', 'T', 'その他')
('人間が住めるかもしれない惑星', 'PG', 'F', 'T', 'F', 'F', 'T', 'F', 'F', 'SF')
%