SQLite--相关查询

前端之家收集整理的这篇文章主要介绍了SQLite--相关查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 没有 top 关键字

sqlite中改用limit来代替top用法,例如: select * from student order by id limit 1,3 该句的意思:从student表记录中,1开始的位置查询3条记录出来,并将结果按照id

列的升序排列.

2. 连接通配符使用 ||

例如: select * from student where name like '%e' || 's%'

3. exists的使用

例如: select * from student where exists(select id from school where stuid=1) and stuid = 1

4. 返回新插入数据的自增ID

insert into student(stuname,stuage) values("aa",12);

select last_insert_rowid() from student limit 0,1;

原文链接:https://www.f2er.com/sqlite/200740.html

猜你在找的Sqlite相关文章