計算機科学のブログ

SQL - SQLite - Python - 高度なSELECT文 - 新たな目でデータを見る - 文字, 順序

Head First SQL ―頭とからだで覚えるSQLの基本Lynn Beighley(著)、 佐藤 直生(監訳)、 松永 多苗子(翻訳)、 オライリージャパンの 6章(高度なSELECT文 - 新たな目でデータを見る)、p.255(エクササイズ)の解答を求めてみる。

schema6.sql

drop table if exists char_table;
create table char_table(
    char text
);
insert into char_table values
('0'),
('1'),
('2'),
('3'),
('A'),
('B'),
('C'),
('D'),
('a'),
('b'),
('c'),
('d'),
('!'),
('@'),
('#'),
('$'),
('%'),
('^'),
('&'),
('*'),
('()'),
(')'),
('-'),
('_'),
('+'),
('='),
('['),
(']'),
('{'),
('}'),
(';'),
(':'),
("'"),
('"'),
('\'),
('|'),
('`'),
('~'),
(','),
('.'),
('<'),
('>'),
('/'),
('?'),
('漢'),
('あ'),
('ア');

schema6_0.sql

select * from char_table
order by char;

コード

sample6.py

#! /usr/bin/env python3
import sqlite3

con = sqlite3.connect('sample.db')
cur = con.cursor()

with open(f'schema6.sql') as f:
    cur.executescript(f.read())
con.commit()

with open(f'schema6_0.sql') as f:
    cur.execute(f.read())
if (d := cur.description) is not None:
    print([t[0] for t in d])
    for row in cur.fetchall():
        print(row)

cur.close()
con.close()

入出力結果(Terminal, Zsh)

% ./sample6.py 
['char']
('!',)
('"',)
('#',)
('$',)
('%',)
('&',)
("'",)
('()',)
(')',)
('*',)
('+',)
(',',)
('-',)
('.',)
('/',)
('0',)
('1',)
('2',)
('3',)
(':',)
(';',)
('<',)
('=',)
('>',)
('?',)
('@',)
('A',)
('B',)
('C',)
('D',)
('[',)
('\\',)
(']',)
('^',)
('_',)
('`',)
('a',)
('b',)
('c',)
('d',)
('{',)
('|',)
('}',)
('~',)
('あ',)
('ア',)
('漢',)
%