23 Ağustos 2022 Salı

ISNULL metodu

Giriş
Açıklaması şöyle
Syntax : ISNULL(expression, value)

The ISNULL() function returns a specified value if the expression is NULL. If the expression is NOT NULL, this function returns the expression.
Örnek
Şöyle yaparız
SELECT ISNULL('Hello world', 'Bye'); //Hello world
SELECT ISNULL(NULL, 500); //500



Hiç yorum yok:

Yorum Gönder

CREATE EVENT - Scheduled Task İçindir

Örnek Şöyle yaparız CREATE EVENT myevent     ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR     DO       UPDATE myschema.mytable SET myc...