Skip to content

Instantly share code, notes, and snippets.

@aykononov
Created November 11, 2019 13:44
Show Gist options
  • Save aykononov/c2924f47be147379311222f438bc79fd to your computer and use it in GitHub Desktop.
Save aykononov/c2924f47be147379311222f438bc79fd to your computer and use it in GitHub Desktop.
Проверка на NULL
SELECT DECODE( NULL
, 1
, 'ONE'
, NULL
, 'EMPTY' -- это условие будет истинным
, 'DEFAULT'
) dcd
FROM dual;
------------------------
ОТВЕТ: EMPTY
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment