Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 146 Bytes

sqlite3.md

File metadata and controls

18 lines (13 loc) · 146 Bytes

Sqlite3

# 打开数据库
sqlite3 xxx.db

# 查看表
.table

# 查看表结构
.schema tablename

# 退出
.quit

# 帮助
.help