Obsidian/Recognition/Programing/Tibero/NVL관련.md

10 lines
147 B
Markdown
Raw Permalink Normal View History

2024-02-11 12:29:05 +00:00
```sql
NVL(null, 'D') --> D
NVL2(null, 'null', 'D') --> D
NULLIF('D', 'D') --> Null
NULLIF('D', 'DD') --> D
COALESCE(null, 'D', '123') --> D
```