ORA-01427: 单行子查询返回多个行 怎么改造?
updateEq_gpcs_placesupplydtldtlsetPlaceSupplyID=(selectPlaceSupplyIDfromEq_gpcs_place...
update Eq_gpcs_placesupplydtl dtl set PlaceSupplyID=(
select PlaceSupplyID from Eq_gpcs_placesupply bill where bill.easid = dtl.easid)
where dtl.easid = '' 展开
select PlaceSupplyID from Eq_gpcs_placesupply bill where bill.easid = dtl.easid)
where dtl.easid = '' 展开
2个回答
2013-05-15
展开全部
不知道是数据重复? 还是数据大小的问题了
如果那个子查询, 返回多行相同的数据, 可以使用 distinct 来处理。
例如:
update Eq_gpcs_placesupplydtl dtl set PlaceSupplyID=(
select DISTINCT PlaceSupplyID from Eq_gpcs_placesupply bill where bill.easid = dtl.easid)
where dtl.easid = ''
如果那个子查询, 返回多行不同的数据, 可以使用 MAX 或者 MIN 来处理。
例如:
update Eq_gpcs_placesupplydtl dtl set PlaceSupplyID=(
select MAX( PlaceSupplyID ) from Eq_gpcs_placesupply bill where bill.easid = dtl.easid)
where dtl.easid = ''
如果那个子查询, 返回多行相同的数据, 可以使用 distinct 来处理。
例如:
update Eq_gpcs_placesupplydtl dtl set PlaceSupplyID=(
select DISTINCT PlaceSupplyID from Eq_gpcs_placesupply bill where bill.easid = dtl.easid)
where dtl.easid = ''
如果那个子查询, 返回多行不同的数据, 可以使用 MAX 或者 MIN 来处理。
例如:
update Eq_gpcs_placesupplydtl dtl set PlaceSupplyID=(
select MAX( PlaceSupplyID ) from Eq_gpcs_placesupply bill where bill.easid = dtl.easid)
where dtl.easid = ''
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询