查看所有表查看帮助显示表头查看表结构退出 查看所有表.table/.tables 查看帮助.help 显示表头.header on 查看表结构-- 所有表的表结构select * from sqlite_master where type="table";-- 指定的单张表的表结构select * from sqlite_master where type="table" and name="xxx"; 退出.exit