H
heiqiqiou
Unregistered / Unconfirmed
GUEST, unregistred user!
if object_id('temp..t2') is not null drop table t2
select std_price,right(prod_no,2) as prod_no into t2 from machine.dbo.ddrawnameitem where id='01
update xf_std set pin_price=t2.std_price
from xf_std a,t2
where a.prod_no=t2.prod_no
在执行的时候老是报 '无法解决 equal to 操作的排序规则冲突!' 的错误!
无法理解!
select std_price,right(prod_no,2) as prod_no into t2 from machine.dbo.ddrawnameitem where id='01
update xf_std set pin_price=t2.std_price
from xf_std a,t2
where a.prod_no=t2.prod_no
在执行的时候老是报 '无法解决 equal to 操作的排序规则冲突!' 的错误!
无法理解!