您的位置:首页 > 数据库

Sqlite3

2015-12-08 20:23 363 查看
http://www.tutorialspoint.com/sqlite/

select 查询结果 format:

.header on

.mode column

.timer on

show the table creating syntax

sqlite> SELECT sql FROM sqlite_master WHERE type = 'table' AND tbl_name = 'COMPANY';

show all tables created in one DB schema:

sqlite> SELECT tbl_name FROM sqlite_master WHERE type = 'table';

Ubuntu:

sudo apt-get install libsqlite3-dev

gcc -o version version.c -lsqlite3
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: