Sqlite3

SQLite Home Page

DownloadからPrecompiled Binaries for Windowssqlite-shell-win32-x86-3081001.zipをダウンロード

コマンドプロントと文字化け対策
プロパティで「MSゴシック」に変更

UTF-8に変更

> chcp 65001
> sqlite3 rss.sqlite
.help
.databases
.tables
.dump
.exit

[https://www.sqlite.org/lang.html:title]
[http://www.dbonline.jp/sqlite/:embed:cite]


#データ表示
select * from RSSEntries;

#正順
select * from RSSEntries order by updated asc;

#逆順
select * from RSSEntries order by updated desc;

#ファイルに出力
.output ./dump.txt

#画面に出力
.output stdout