Wayos S.
Member since Nov 23, 2009
- Profile: /members/4824-wayos-s.htm
- Comments: 1
Recent Blog Comments By Wayos S.
-
SQL COALESCE() Very Cool, But Slower Than ISNULL()
Posted on Nov 23, 2009 at 4:01 AM
Actually, it can be done by ISNULL as well. DECLARE @CodeList varchar(1000) SELECT @CodeList = ISNULL(@CodeList +', ', '') + CAST(EmpCode AS varchar(20)) FROM Employees SELECT @CodeList... read more »