Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- Mini-Tip #5: Coalesce()
- I recently wrote about NVL2. A function much like NVL2 is coalesce. Coalesce is of the format COALESCE(expr1, expr2, exprN...)Coalesce returns the first non-null expression in the expression list.Coalesce is different from most SQL functions in that it allows a varying number of expressions.Coalesce is basically a...
- Tags: COALESCE, NVL2
- Blog posts 2006-08-30
- Mini-Tip #2 - NVL2()
- NVL2 is a neat little SQL function that I think is underused. It seems to me it could have a better name. Theformat is NVL2(expr1, expr2, expr3). What it does is if expr1 is NULL,it returns expr3. If expr1 is NOT NULL, it returns expr2.An IF statement to...
- Tags: NVL2
- Blog posts 2006-08-17
- << Previous
- page 1 of 1
- Next >>