Tagged Questions
0
votes
3answers
47 views
how does “case when index” statement compare to “case index” statement
I tried to research about this command, but I can't seem to find a concrete explanation to it.
What is "case when index"? what does it do? how is it differ from case when?
When is it used?
Is this ...
0
votes
0answers
86 views
How to re-design my current SQL Case Logic implementation in Teradata 13.0
I am building out a Staging layer for Master Data and have the following situation and current solution. My Transaction data has nothing but Master Data id's or "codes" and no text descriptions. Most ...
0
votes
1answer
239 views
Datatype mismatch in then/else in teradata
I am checking the contents of y.cap_ts and if there is a value (non null) then replace it with current_date or else leave it as null. but I get data type mismatch in then/else error.
Here cap_ts is ...
1
vote
2answers
572 views
How to convert connect by level in teradata
I was trying to convert the connect by level function of oracle to teradata. I have seen many examples over the net but this particular one is different,
(SELECT
CASE LEVEL
WHEN 1 ...
0
votes
2answers
618 views
Can we have multiple case then statements in sql
I am trying for something which requires case within case I just wanted to make sure if we can use multiple case then?I am running this on sql teradata
The code I am trying to use is as below
AND(
...
2
votes
2answers
276 views
sql expression pattern matching
I want to check for a pattern in sql such that if there is anything in that expression (or table cell) other than numeric it should return 1. If that whole cell has only numeric values it should ...