发布网友 发布时间:2022-04-26 20:48
共3个回答
热心网友 时间:2023-10-31 13:39
如果是sql server数据库,可以下面的语句
update tb_a set 单价=b.单价如果是oracle 数据库,可以用下面语句
update tb_a set 单价=(select tb_b.单价 from tb_b where tb_a.产品=tb_b.产品追问提了悬赏再采纳,谢谢指点,我也只是要个思路
热心网友 时间:2023-11-22 14:36
如果是sql server数据库,可以下面的语句
update tb_a set 单价=b.单价如果是oracle 数据库,可以用下面语句
update tb_a set 单价=(select tb_b.单价 from tb_b where tb_a.产品=tb_b.产品追问提了悬赏再采纳,谢谢指点,我也只是要个思路
热心网友 时间:2023-11-22 14:37
update tb_a a set 单价=(select 单价 from tb_b b where b.产品=a.产品 and b.工序=a.工序)热心网友 时间:2023-11-22 14:37
想要想法的话我这里还有个过程
热心网友 时间:2023-10-31 13:39
update tb_a a set 单价=(select 单价 from tb_b b where b.产品=a.产品 and b.工序=a.工序)热心网友 时间:2023-10-31 13:40
想要想法的话我这里还有个过程