Code Standar function Select yang menghasilkan data dalam bentuk baris record yang banyak :
select Emplname from mst_employee where section='system'
Code untuk membuat hasil select menjadi satu record / satu baris :
declare @teks varchar(2000)
select @teks = coalesce(@teks+',','')+ cast(Emplname as varchar(50))from mst_employee
where section='system'
select @teks Nama_Karyawan
thx for u help
ReplyDelete