create table #temptable([text] text)

create table #temptableS([textSS] text, ID INT)

insert into #temptable([text]) exec sp_helptext 'CCC_updTAHeader'

insert into #temptableS([textSS],ID) SELECT [text],1 AS ID FROM #temptable


SELECT * FROM #temptableS

DROP TABLE #temptable
DROP TABLE #temptableS

相关文章:

  • 2021-12-27
  • 2021-09-08
  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2022-01-25
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-04-25
  • 2021-11-27
  • 2022-02-23
  • 2022-01-05
相关资源
相似解决方案