SQLite3で作成したviewを一覧で取得する方法
環境
Windows 11 Pro 21H2 64bit
SQLite 3.39.2
構文
select name, sql from sqlite_master where type = 'view’;
「sqlite_master」に「view」を指定して作成したviewを一覧で取得します。
操作例
sqlite> select name, sql from sqlite_master where type = 'view';
Coding Changes the World
環境
Windows 11 Pro 21H2 64bit
SQLite 3.39.2
構文
select name, sql from sqlite_master where type = 'view’;
「sqlite_master」に「view」を指定して作成したviewを一覧で取得します。
操作例
sqlite> select name, sql from sqlite_master where type = 'view';