oracle update 语句求解
表1:IDNAMEDATETYPE1AAA111001012BBB111001013CCC111010014DDD111008025EEE11101102现在如何把01类...
表1:
ID NAME DATE TYPE
1 AAA 111001 01
2 BBB 111001 01
3 CCC 111010 01
4 DDD 111008 02
5 EEE 111011 02
现在如何把01类型最大的DATE,UPDATE成02类型的最大DATE
UPDATE语句如何写呢? 展开
ID NAME DATE TYPE
1 AAA 111001 01
2 BBB 111001 01
3 CCC 111010 01
4 DDD 111008 02
5 EEE 111011 02
现在如何把01类型最大的DATE,UPDATE成02类型的最大DATE
UPDATE语句如何写呢? 展开
4个回答
展开全部
update s
set s.date=(select max(date) from 表1 where type='02')
from 表1 s
where s.type='01' and s.date=(select max(date) from 表1 where type='01')
set s.date=(select max(date) from 表1 where type='02')
from 表1 s
where s.type='01' and s.date=(select max(date) from 表1 where type='01')
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
展开全部
DATE字段 是什么类型,如果是DATE类型那就是 stevenzjds 回复的,
如果是DATE字段是char字符串类型 那就是
update s
set s.date=to_char((select max(to_number(date)) from 表1 where type='02'))
from 表1 s
where s.type='01' and s.date=(select max(to_number(date)) from 表1 where type='01')
如果是DATE字段是char字符串类型 那就是
update s
set s.date=to_char((select max(to_number(date)) from 表1 where type='02'))
from 表1 s
where s.type='01' and s.date=(select max(to_number(date)) from 表1 where type='01')
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
update 表1
set date = (select max(date) from 表1 where type = '02')
where date = (select max(date) from 表1 where type = '01')
set date = (select max(date) from 表1 where type = '02')
where date = (select max(date) from 表1 where type = '01')
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
update table set date=(select max(date) from table where type='02')
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询