SQLite 3模糊查询简析
来源:未知 责任编辑:责任编辑 发表时间:2014-02-02 17:50 点击:次
SQLite 3模糊查询简析
1. 创建数据库 test.db
cd ~/
sqlite3 test.db
这样在 ~/ 目录下面就生成一个数据库文件 test.db.
2. 创建表 song www.2cto.com
create table if not exists song (path TEXT, title varchar(20));
创建一个名称为 song 的数据库表,包含 path、title 两个字段,
类型分别是 Text、varchar.
3. 插入数据
insert into song values('/mnt/sdcard/music','only you');
insert into song values('/mnt/sdcard/music','love');
insert into song values('/exte/music','thinking');
共插入 3 条数据。
这个时候,验证一下,数据库表中的数据。查询:
select * from song; www.2cto.com
4. 查询指定条件的数据
select * from song where path='/mnt/sdcard/music'
或者
select * from song where path="/mnt/sdcard/music"
现在有个需求,查出所有 / 目录下面的歌曲信息?
当然是模糊查询! www.2cto.com
select * from song where path LIKE '/%';
或者
select * from song where path LIKE "/%";
作者 AndroidBluetooth
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>