免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 3757 | 回复: 12
打印 上一主题 下一主题

一个sql的小问题求助 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-04-05 16:15 |只看该作者 |倒序浏览
A表a,b,c字段。B表中有1,2,3字段。现需要以B表中的3=A表中的c为条件,将相应的
A表中的a,b字段对应更新到B表中的1,2字段

论坛徽章:
0
2 [报告]
发表于 2006-04-05 18:33 |只看该作者
用以下语句执行
update pps_user_info set rentactiontype=( select actiontype from
pps_rent_fee where rentindex=pps_user_info.usertype)
遇到这个问题
284: A subquery has returned not exactly one row.

论坛徽章:
0
3 [报告]
发表于 2006-04-06 08:53 |只看该作者
未经测试,试试这个。看2楼 是要保证 取记录要保证 唯一定位。

update A set
a= ( select b1 from B where  b3= A.c ),
b= ( select b2 from B where  b3=A.c )
where exists ( select * from b where b3=A.c );

论坛徽章:
0
4 [报告]
发表于 2006-04-06 11:02 |只看该作者
还是不行
   284: A subquery has returned not exactly one row.


update pps_user_info set
rentactiontype=(select actiontype from pps_rent_fee where rentindex=pps_user_info.usertype)
where exists (select * from pps_rent_fee where rentindex=pps_user_info.usertype)

论坛徽章:
0
5 [报告]
发表于 2006-04-06 12:36 |只看该作者
where rentindex=pps_user_info.usertype
说明你的条件不能唯一定位记录。

论坛徽章:
0
6 [报告]
发表于 2006-04-06 14:49 |只看该作者
那怎么写? 急啊!

论坛徽章:
0
7 [报告]
发表于 2006-04-06 15:23 |只看该作者
update pps_user_info set
rentactiontype=(select actiontype from pps_rent_fee where rentindex=pps_user_info.usertype)
where exists (select * from pps_rent_fee where rentindex=pps_user_info.usertype)

关键是合不合你的要求。

[ 本帖最后由 wenlq 于 2006-4-7 09:03 编辑 ]

论坛徽章:
0
8 [报告]
发表于 2006-04-06 17:06 |只看该作者
谢谢了,不过还是不行.
   217: Column (first) not found in any table in the query (or SLV is undefined).
实在不行,您帮我写个过程吧.谢谢!

论坛徽章:
0
9 [报告]
发表于 2006-04-06 19:41 |只看该作者
楼主是华为无线智能网的吧

你那个pps_user_info.usertype对吗?PPS的用户类型不是单一的吧。

论坛徽章:
0
10 [报告]
发表于 2006-04-07 09:05 |只看该作者
原帖由 gamiwqu 于 2006-4-6 17:06 发表
谢谢了,不过还是不行.
   217: Column (first) not found in any table in the query (or SLV is undefined).
实在不行,您帮我写个过程吧.谢谢!


没你的结构、数据不好调试的。

你再看看 是不是能再加条件 对应取到唯一记录。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP