Wednesday, February 20, 2019

[SQL] SELECT ISNULL(NULL, 'TEST');



SELECT ISNULL(NULL, 'TEST');
TEST
SELECT ISNULL('HELLO', 'TEST');
HELLO

Return the specified value IF the expression is NULL, otherwise return the expression:

No comments:

Post a Comment