Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 246 Bytes

File metadata and controls

22 lines (16 loc) · 246 Bytes

Sqlite 常用命令

使用 setup.sql 创建数据库 bike_sharing.db

sqlite3 bike_sharing.db < setup.sql

常见配置

-- 显示标题
.header on
-- 竖向对齐
.mode column
-- 显示当前所有表
.table