免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
论坛 数据库技术 DB2 求 SQL
最近访问板块 发新帖
查看: 3427 | 回复: 2
打印 上一主题 下一主题

求 SQL [复制链接]

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-30 12:51 |只看该作者 |倒序浏览
两张表 a , b

create table a (
     id                  char(12) not null,
     classid          int          not null,
     amt               decimal(18,2),
     constraint PK_A primary key ( id,classid)
)


create table b (
      id                  char(12) not null,
      classid          int          not null,
      flag               int          not null,
      constraint PK_B primary key ( id,classid,flag)
)

要求:
用一句 SQL语句,将 a 表中的  amt 字段内容用 amt *  -1 替换,条件是 a.id = b.id ,a.classid = b.classid , b.flag = 0

论坛徽章:
0
2 [报告]
发表于 2009-07-30 21:22 |只看该作者

回复 #1 snow888 的帖子

merge into a using b on a.id = b.id and a.classid = b.classid and b.flag = 0 when matched then update set a.amt=a.amt*(-1)

论坛徽章:
0
3 [报告]
发表于 2010-09-25 18:02 |只看该作者
UPDATE a SET amt=amt+1
WHERE EXISTS (SELECT 1 FROM b WHERE a.id=b.id AND a.classid=b.classid AND b.flag=0)
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP