Sqlite作为Android中的主流数据库而广为使用,但是他的sql语言与一般的大型数据库所使用的SQL语言还是有一些区别的,本文总结如下:
1、TOP
在SQL Server中,我们使用TOP来获取前N条数据:
SELECT TOP 10 * FROM [index] ORDER BY indexid DESC;
但是在Sqlite中,大家会发现这是不行的,我们需要这么写:
SELECT * FROM [index] ORDER BY indexid DESC limit 0,10;
2、COUNT(DISTINCT column)
Sqlite无法执行以下语句:
SELECT COUNT(DISTINCT watchid) FROM [watch_item] WHERE watch_item.watchid = 1;
3、Sqlite还无法使用外连
有解决的方法请指教。。。。
4、EXISTS语句
SQL Server中会这样写:
IF NOT EXISTS (select * from aa where ids=5) BEGIN insert into aa(nickname) select ‘t‘ END
Sqlite中会这样写:
insert into aa(nickname) select ‘t‘ where not exists(select * from aa where ids=5)
以上。
原文地址:http://blog.csdn.net/eclipsexys/article/details/39552613