sql两表联合更新

标签:sql 联合更新 数据库 休闲 职场

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://yukai.blog.51cto.com/1761494/372585

今天遇到数据库的一个更新操作.

1个数据库中有两个表(其中一个表是从另一个数据库复制来的,方法见我以前文章),这两个表通过公司名称对应起来,其中一个有称谓(Mr.,Miss.,Mrs),另一个没有,将这个表的称谓导入到另一个表中:

sql:  update tb_company set tb_company.Salutation1=tb_companyorg.Title from tb_company,tb_companyorg  where tb_company.CompanyName_eng=tb_companyorg.Company_name
此sql语句作用为:将tb_companyorg表的Title(称谓)导入到tb_company表的Salutation1(称谓)字段中,通过两表的公司名称进行对应,一次性导入了17w+条数据

参考link:http://www.cnblogs.com/ywkpl/archive/2008/03/11/1101276.html

参考内容:

Product(pid,name,amount,nowAmount):标识,名称,已有数量,当前数量
Trade(id,pid,operType,number):标识,产品标识,操作类型(入库:1,出库:0),数量

Product表中测试数据:

1 苹果 100 0
2 桔子  50 0

Trade表中测试数据:

1 1 1 432
2 1 0 50
3 2 1 20
4 2 0 40
5 1 1 30
6 2 0 20

现要求一条SQL语句更新Product表中nowMount值
语句如下:

update p set p.nowAmount = p.amount+t.number
from Product as p ,(select pid,sum(case operType when ‘0‘ then number* (-1)  else number end) number 
from Trade group by pid) as t where t.pid=s.pid

或者

update p
set p.nowAmount= t.number+p.amount
from Product as p 
inner join (select pid ,sum(case operType when ‘0‘ then number* (-1)  else number end) as number from Trade group by pid) as t
on p.pid=t.pid

两者一样执行后Product表:

1 苹果 100 512
2 桔子 50 10

sql两表联合更新

时间: 2024-10-31 22:03:36

sql两表联合更新的相关文章

【转】sql 多表联合更新

SQL Update多表联合更新的方法 (1) sqlite 多表更新方法 update t1 set col1=t2.col1 from table1 t1 inner join table2 t2 on t1.col2=t2.col2 #这是一个非常简单的批量更新语句 在SqlServer中支持此语法 sqlite中却不支持 #sqlite中可转换为 如下语法 update table1 set col1=(select col1 from table2 where col2=table1.

sql两表联合查询

SELECT yt_fault_componentId FROM yt_fault_component a join yt_fault_assembly b on a.yt_fault_assembly=b.yt_fault_assemblyId where a.yt_code='' and b.yt_code=''

Postgresql两表联结更新

Postgresql两表联合更新近日使用Postgresql感到有点不好用,一个联合更新非要这样写语法才对:update d_routetripset name=b.name ,    description=b.description from d_scenery  as bwhere foreignid=b.id and  d_routetrip.type='scenery' 如上所述,and 前的 d_routetrip表不能起别名,set后应用到此表也直接用字段表示,无需引用别名否则语法

SQL两表之间:根据一个表的字段更新另一个表的字段

1. 写法轻松,更新效率高: update table1 set field1=table2.field1, field2=table2.field2 from table2 where table1.id=table2.id 2. 常规方式,种写法相当于一个 Left join, 以外面的where为更新条数,如果不加where就是所有记录 update table1 set field1=(select top 1 field1 from table2 where table2.id=tab

SQL两表关联查询&批量修改字段值

SQL关联查询&修改字段,正确范例如下: --批量修改报告单位名称&更新时间 --tt和tp两表关联查询,将符合条件的tt表中的principal字段更新到tp表的ruperson字段 merge into nhis34.t_publicplaces tp using standard.t_organization tt on (tt.orgcode = tp.r_orgcode and tp.create_time > '2015-05-07 00:00:00') when mat

MVC5+EF6简单实例---以原有SQLServer数据库两表联合查询为例

工具:VS.net2013.EF6.MVC5.SQLServer2008 参考出处: http://www.cnblogs.com/slark/p/mvc-5-get-started-create-project.html http://www.cnblogs.com/miro/p/4288184.html http://www.cnblogs.com/dotnetmvc/p/3732029.html 一.准备工作 在SqlServer上创建数据库:Element 模拟两个表并插入数据:SysU

sql 两表查询后 更新某表中部分字段

这是上一个sql更新某表字段的一个延伸,在更新表数据时,实际上会有多表数据查询场景,查询后,只需要更新某一个表中的数据,以下提供两个方法, 第一种使用update 两表查询 update api_manage_apicollectioninfo_copy a, api_manage_apicollectionmanage b set a.header=replace(a.header,'XXXDDD','zhangjun') WHERE a.api_collection_id=b.id and

数据迁移之sql server2005 中两表关联更新数据操作

近期在做数据迁移的工作,老系统的数据迁移到新系统,当中麻烦的确不少,因为是重新设计的系统与老系统中有太多的不一至性,例如表结构,字段的处理,像附件的存储方式,还有历史遗留数据... 后面会慢慢的把相关技术处理细节展现出来,当然,难度不大,只是琐碎事情太多. 今天就简单来看看数据的关联更新. 业务场景: 同一个业务,有一张主表及一张子表,字段差不多,只是老系统中主键生成方式GUID,而新的主键生成方式自增长型,这里就不论合不合理了,来看看我们的问题. 我们要做的就是把老数据导入到新表,并且保持他们

MySQL 中两表关联更新数据

通过用户手机号,更新他的添加时间和过期时间,两表关联更改副表内容 UPDATE expand_money e INNER JOIN members m ON e.uid = m.id SET e.add_time=unix_timestamp(),e.expired_time=unix_timestamp()+60*60*24*7 WHERE m.user_phone = '139139139139'