A good read.
Deciding between COALESCE and ISNULL in SQL Server (mssqltips.com)
Key Points :
- The COALESCE and ISNULL SQL Server statements handle data type precedence differently
COALESCE determines the type (and length) of the output based on data type precedence. ISNULL takes the first parameter.
Comments
Post a Comment