SQL - SQLite - Python - 結合と複数テーブル操作 - みんなでうまくやれないの? - ALTER, 列の追加
Head First SQL ―頭とからだで覚えるSQLの基本、 Lynn Beighley(著)、 佐藤 直生(監訳)、 松永 多苗子(翻訳)、 オライリージャパンの 8章(結合と複数テーブル操作 - みんなでうまくやれないの?)、p.348(自分で考えてみよう)の解答を求めてみる。
schema2.sql
alter table my_contacts add column interest1 text;
alter table my_contacts add column interest2 text;
alter table my_contacts add column interest3 text;
alter table my_contacts add column interest4 text;
コード
sample2.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)
p(cur, 'my_contacts')
with open('schema2.sql') as f:
cur.executescript(f.read())
con.commit()
p(cur, 'my_contacts')
cur.close()
con.close()
入出力結果(Terminal, Zsh)
% ./sample2.py
['email', 'birthday', 'first_name', 'last_name', 'interests', 'seeking', 'status', 'profession', 'location', 'gender', 'tel', 'city', 'state']
('jill_anderson@breaknechpizza.com', '1980-09-05', 'ジリアン', 'アンダーソン', 'カヤック乗り、爬虫類', '恋人、友達', '独身', 'テクニカルライター', 'カリフォルニア州パロアルト', 'F', None, None, None)
('jill_anderson@breaknechpizza.com', '1980-09-05', 'ジリアン', 'アンダーソン', 'カヤック乗り、爬虫類', '恋人、友達', '独身', 'テクニカルライター', 'カリフォルニア州パロアルト', 'F', None, None, None)
('anderson@breaknechpizza.com', '1980-09-05', 'ジリアン', 'アンダーソン', '爬虫類', '友達', '独身', 'ライター', None, 'M', None, None, None)
('jill@breaknechpizza.com', '1980-09-05', 'ジリアン', 'アンダーソン', 'カヤック乗り、爬虫類', '恋人、友達', '独身', 'テクニカルライター', 'カリフォルニア州パロアルト', 'F', None, None, None)
['email', 'birthday', 'first_name', 'last_name', 'interests', 'seeking', 'status', 'profession', 'location', 'gender', 'tel', 'city', 'state', 'interest1', 'interest2', 'interest3', 'interest4']
('jill_anderson@breaknechpizza.com', '1980-09-05', 'ジリアン', 'アンダーソン', 'カヤック乗り、爬虫類', '恋人、友達', '独身', 'テクニカルライター', 'カリフォルニア州パロアルト', 'F', None, None, None, None, None, None, None)
('jill_anderson@breaknechpizza.com', '1980-09-05', 'ジリアン', 'アンダーソン', 'カヤック乗り、爬虫類', '恋人、友達', '独身', 'テクニカルライター', 'カリフォルニア州パロアルト', 'F', None, None, None, None, None, None, None)
('anderson@breaknechpizza.com', '1980-09-05', 'ジリアン', 'アンダーソン', '爬虫類', '友達', '独身', 'ライター', None, 'M', None, None, None, None, None, None, None)
('jill@breaknechpizza.com', '1980-09-05', 'ジリアン', 'アンダーソン', 'カヤック乗り、爬虫類', '恋人、友達', '独身', 'テクニカルライター', 'カリフォルニア州パロアルト', 'F', None, None, None, None, None, None, None)
%