@lew
You can combine three variables into a date format (mm/dd/yyyy) in Teradata by using the following syntax:
1
|
SELECT (CAST(variable1 AS VARCHAR(2)) || '/' || CAST(variable2 AS VARCHAR(2)) || '/' || CAST(variable3 AS VARCHAR(4))) AS date_variable |
In this syntax:
You can adjust the VARCHAR lengths based on the length of the variables and the desired date format.