总结SQLite不支持的SQL语法有哪些

总结sqlite不支持的sql语法有哪些

 

1、top

这是一个大家经常问到的问题,例如在 sqlserver 中可以使用如下语句来取得记录集中的前十条记录: 

select top10 * from [index] order by indexid desc; 

但是这条sql语句在sqlite中是无法执行的,应该改为: 

select * from [index] order by indexid desc limit0,10; 

其中limit 0,10表示从第0条记录开始,往后一共读取10条

2、创建视图(create view)

sqlite在创建多表视图的时候有一个bug,问题如下: 

create view watch_single as select distinctwatch_item.[watchid],watch_item.[itemid] from watch_item; 

上面这条sql语句执行后会显示成功,但是实际上除了 

select count(*) from [watch_single ] where watch_ single.watchid = 1; 

能执行之外是无法执行其他任何语句的。其原因在于建立视图的时候指定了字段所在的表名,而sqlite并不能正确地识别它。所以上面的创建语句要改为: 

create view watch_single as select distinct [watchid],[itemid] from watch_item; 

但是随之而来的问题是如果是多表的视图,且表间有重名字段的时候该怎么办?

3、count(distinct column)

sqlite在执行如下语句的时候会报错: 

select count(distinct watchid) from [watch_item] where watch_item.watchid = 1; 

其原因是sqlite的所有内置函数都不支持distinct限定,所以如果要统计不重复的记录数的时候会出现一些麻烦。比较可行的做法是先建立一个不重复的记录表的视图,然后再对该视图进行计数。

4、外连接

虽然sqlite官方已经声称 left outer join已经实现,但还没有 right outer join 和 full outer join。但是实际测试表明似乎并不能够正常的工作。以下三条语句在执行的时候均会报错: 

select tags.[tagid] from [tags],[tag_rss] where tags.[tagid] = tag_rss.[tagid](*); 

select tags.[tagid] from [tags],[tag_rss] where left outer join tag_rss.[tagid] = tags.[tagid]; 

select tags.[tagid] from [tags],[tag_rss] where left join tag_rss.[tagid] = tags.[tagid]; 

此外经过测试用+号代替*号也是不可行的。

收集 sqlite 与 sql server 的语法差异

1、返回最后插入的标识值

返回最后插入的标识值sql server用 @@identity 

sqlite用标量函数 last_insert_rowid() 

返回通过当前的 sqlconnection 插入到的最后一行的行标识符(生成的主键)。此值与 sqlconnection.lastinsertrowid 属性返回的值相同。

2、top n

在sql server中返回前2行可以这样: 

select top 2* from aa order by ids desc

sqlite中用limit,语句如下: 

select * from aa order by ids desc limit 2

3、getdate()

在 sql server 中 getdate()返回当前日期和时间 

sqlite中 没有

4、exists语句

sql server中判断插入(不存在ids=5的就插入) 

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)

5、嵌套事务

sqlite仅允许单个活动的事务

6、right 和 full outer join

sqlite不支持 right outer join或 full outer join

7、可更新的视图

sqlite视图是只读的。不能对视图执行 delete、insert 或 update 语句,sql server是可以对视图 delete、insert 或 update
 

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐