--N行數據
select job_name from dbo.JobDetail

--將N行數據合併成一行顯示
declare @temp nvarchar(200)
set @temp=''
select @temp=@temp+job_name  from dbo.JobDetail
select @temp

相关文章:

  • 2022-12-23
  • 2021-10-06
  • 2022-12-23
  • 2022-12-23
  • 2021-09-13
  • 2021-12-16
  • 2022-02-27
  • 2021-07-02
猜你喜欢
  • 2021-12-22
  • 2022-12-23
  • 2021-09-30
  • 2021-04-16
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
相关资源
相似解决方案