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

在SQLite中如何用一个表的字段更新另一个表

时间:2015-07-10 16:33:43      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

SQL语句:
update table_1 set x = (select x from table_2 where table_1.y =  table_2.y);
如果括号中临时建立的表中元素的个数小于table_1中元素个数或者只想更新table_1中部分x的值,可以在后面加where子句.

Example:
更新产品库存:
update product set stock=(select stock from left where left.product_id=product.product_id) where product_id in (select product_id from left)

 

在SQLite中如何用一个表的字段更新另一个表

标签:

原文地址:http://www.cnblogs.com/bukekangli/p/4636059.html

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