概要
「.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
-
Command Line Shell For SQLite
公式のコマンドラインツールに関するドキュメント
https://www.sqlite.org/cli.html