Viewing 5 posts - 1 through 5 (of 5 total)
Develop a standard header for stored procedures, views and user-defined functions. Include details such as a brief description of the object, specification document, author, date created, change history, etc.
Throughout the...
June 13, 2006 at 2:46 am
On the other if you were to use COALESCE you code could look like this
SELECT @PatientHospitalID = COALSESCE (LTRIM(RTRIM(@PatientHospitalID)), 0)
shorter and eaiser to read imho
July 14, 2005 at 2:10 pm
Isn't Coalesce preferred over IsNull, being ansi standard and all? You wouldn't have had this problem anyway...
July 14, 2005 at 4:06 am
Aggregate concatenation... it's good to know what you are doing. So a big thank you for the links! And to the rest of for taking the time.
January 13, 2005 at 8:30 am
Sorry for being a tad unclear. It was this feature that I was wondering about. The function was just something I made to demonstrate it. When the select returns more...
January 13, 2005 at 7:58 am
Viewing 5 posts - 1 through 5 (of 5 total)