The first public demonstration of Windows 7 was made at the D6 conference, showing off Windows 7’s multitouch features. Notably absent from the demo was anything new.
The first public demonstration of Windows 7 was made at the D6 conference, showing off Windows 7’s multitouch features. Notably absent from the demo was anything new.
Many times you need to create a comma seperated list of values in a table. Here is a line of T-SQL solution to get comma separated list of values of single field of a database table.
DECLARE @commaSeparatedVal AS VARCHAR(MAX);SELECT @commaSeparatedVal = ISNULL(@commaSeparatedVal +',','') + CONVERT(VARCHAR,[SKU])FROM PRODUCT;PRINT @commaSeparatedVal;