[ sqlite ]
# 查看所有的表
.tables
.schema <tabale name>
# 打开数据库后先切好显示模式
.headers on
.mode column
# 查看表结构与列名
.schema ZBILLENTITY
PRAGMA table_info(ZBILLENTITY);
# 查看所有的表
.tables
.schema <tabale name>
# 打开数据库后先切好显示模式
.headers on
.mode column
# 查看表结构与列名
.schema ZBILLENTITY
PRAGMA table_info(ZBILLENTITY);