码迷,mamicode.com
首页 > 数据库 > 详细

sqlite多表关联update

时间:2018-03-04 19:56:23      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:blog   div   from   gpo   sqlite数据库   table   语句   多表   log   

sqlite数据库的update多表关联更新语句,和其他数据库有点小不一样

 

比如:在sql server中:

用table1的 id 和 table2的 pid,关联table1 和 table2 ,将table2的num字段的值赋给table1的num字段

update table1 
set num1 = t2.num2
FROM table1 t1 INNER JOIN table2 t2
ON t1.id=t2.pid;

很容易就关联起来了

 

sqlite却不支持这种关联,可以这样:

(1)set时,要将table2的num2的值赋给table1的num1字段,要select一下table2,并在括号关联起来

update table1
set  num1 = (select num2 from table2 where table2.pid=table1.id)
where...

更新多个字段时:

update table1
set  num1 = (select num2 from table2 where table2.pid=table1.id),
num11 = (select num22 from table2 where table2.pid=table1.id)
where...

 

(2)where时,也一样,比如我就将上面的改一下

update table1
set  num = 99
where table1.id=(select pid from table2 where table2.pid=table1.id)

 

sqlite多表关联update

标签:blog   div   from   gpo   sqlite数据库   table   语句   多表   log   

原文地址:https://www.cnblogs.com/mafeng/p/8505540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!