Teradata COALESCE Function: Purpose, Syntax, Alternative and Data Types
What is the purpose of the Teradata COALESCE function?COALESCE receives a list of scalars as arguments and returns the first value that is not NULL. If all scalars are NULL, then COALESCE returns NULL.
What is the syntax of the Teradata COALESCE function?SELECT COALESCE(skalar1, skalar2, skalar3,...,skalarN) FROM Customer;
Is there an alternative to the Teradata COALESCE function?The COALESCE function is a simplified option for the following CASE statement:
SELECT
CASE
WHEN skalar1 IS NOT NULL THEN skalar1
WHEN skalar2 IS NOT NULL THEN skalar2
..
WHEN skalarN IS NOT NULL THEN skalarN
ELSE NULL
END
FROM Customer;
Which data types cannot be used as scalars in Teradata COALESCE or can only be used to a limited extent?BLOB scalars must be cast to BYTE or VARBYTE.
Scalars of the type CLOB must be cast to CHAR or VARCHAR.
Several UDT scalars must all be of the same type.
Is the COALESCE function ANSI Compliant?Yes, it is ANSI SQL:2011 compliant.
https://letters.dwhpro.com/content/files/2026/05/data-types-teradata.html https://letters.dwhpro.com/content/files/2026/05/teradata-data-types-2.html https://letters.dwhpro.com/content/files/2026/05/teradata-recursions-2.html
Want more practical data engineering analysis like this?
Join DWHPro Letters and get field-tested notes on Teradata, Snowflake, AI, migrations, performance, and enterprise data work. Early subscribers keep launch access before the paid plan launches.
Planning or surviving an enterprise data platform migration?
I write regularly about the performance, cost, architecture, and project mistakes that show up in real Teradata, Snowflake, Databricks, and enterprise data work.
Subscribe before the paid plan launches and keep launch access.
Written by Roland Wenzlofsky, founder of DWHPro and author of Teradata Query Performance Tuning. DWHPro has helped data warehouse practitioners for 15+ years.