2023年1月14日土曜日

SQLite3 データベース内のテーブルを一覧表示する (.tables)

概要

「.tables」コマンドでSQLite3のデータベースに登録されているファイルを一覧表示することができる。 引数を指定すればテーブル名でフィルタリングすることもできる。

ヘルプの内容


sqlite> .help .tables
.tables ?TABLE?          List names of tables matching LIKE pattern TABLE
                

実行例

環境
  • Windows 10 64bit
  • SQLite3 (3.40.1) Command-Line Shell

sqlite> .tables
data01  user01  user02
                

SQLのlikeと同じパターンを使ってフィルタリングすることが出来る。


sqlite> .tables user01
user01

sqlite> .tables %01
data01  user01

sqlite> .tables user%
user01  user02

sqlite> .tables %ata%
data01
                

参考URL