Tagged Questions
1
vote
1answer
242 views
How do I coalesce a Time field in Teradata?
I'm trying to run the following piece of code:
SELECT a.job_name
, coalesce(b.target_time, cast('08:00:00' as time(2))) sla_time
FROM ud812.slarpt_job_level_info a
left outer join (
select ...
1
vote
1answer
47 views
How to properly compare nullable fields for equality?
In any database, it appears to be a common practice to use coalesce() to compare nullable fields for equality. For example, if you're comparing two nullable string fields, you would use where ...
0
votes
2answers
1k views
Teradata: How to compare potentially null fields without using coalesce?
We are using a query that uses coalesce to compare potentially null values. I want to get away from this because not only does it make queries more difficult to maintain, it's flat out ugly. Imagine ...
0
votes
2answers
2k views
Get max of two dates from two different tables in teradata - scenario?
I have two tables table1 and table2. Table2 is having less number of rows than table1. In these two tables there are two date columns caldate1 in table1 and caldate2 in table2. So now I need to join ...