Viewing 2 posts - 1 through 3 (of 3 total)
MSSQL has a similar function, but at the DB level, so we have an associated database to the main one, which contains something like logs and performance monitor data.
Settings: ALTER...
November 21, 2025 at 7:20 am
#4688403
Hello,
try this select (this pivots rows to one string row):
select stuff((select top 10 ',"' + code + '"' from Products order by code for XML path('')), 1, 1, '');
September 2, 2010 at 12:53 am
#1215425