SQLite的shell简单使用

前端之家收集整理的这篇文章主要介绍了SQLite的shell简单使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下载最新的shell for windows:http://www.sqlite.org/sqlite-shell-win32-x86-3070800.zip

解压后得到:sqlite3.exe1

1 创建数据库

C:\sqlite3> sqlite3.exe dbname.db

2 创建数据表

sqlite> create table users(userid varchar(20) PRIMARY KEY,

...> age int,

...> birthday datetime);

3添加记录

insert into users values('wang',20,'1989-5-4');

insert into users values('li',22,'1987-11-16');

4 查询记录

select * from users order by birthday;

5 删除记录

delete from users where userid='wang';

6 退出

sqlitesqlite> .exit

sqlite数据库的数据结构是存贮在 "sqlite_master" 表中具体命令可以输入 .help查看或参考帮助文档

原文链接:/sqlite/202441.html

猜你在找的Sqlite相关文章