请教,关于表内容复制问题
表table1:
newcode iPriceAverage bjrqyear bjrqmonth bjrqdate
20070802152631 2500 2007 08 02
表table2:
newcode historyprice ptime
20070802152631 2500 2007-08-02
就是将表一的内容复制到表二,其中bjrqyear是年,bjrqmonth是月,bjrqdate是日。
谢谢
------解决方案--------------------insert table2
select newcode, iPriceAverage, bjrqyear + '- ' + bjrqmonth + '- ' + bjrqdate
from table1
------解决方案--------------------這個意思?
Insert 表二 Select newcode, iPriceAverage, Cast(bjrqyear As Varchar) + '- ' + Cast(bjrqmonth As Varchar) + '- ' + Cast(bjrqdate As Varchar)