Hi Friends
I have a sql question, We have the source data as below.
101 address1, address2, address3
and the output shoulb like below
101 address1
101 address2
101 address3
Required a SQL query for this output.
Please let me know if you have any sql query for this.
Thanks in advance.
Hari M
Answer Posted / ksks
Make use of UNPIVOT to split one record into many rows:
select id,address from T1 unpivot (address for address_type in (address1,address2,address3))
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
In the Primary Index, what is the score of AMPs that are actively involved?
If a Node is busy what are the steps you can take to avoid ?
Explain the teradata primary index mechanics in detail with a diagram.
what are the uses of fact table and dimension table in banking project?
List out all forms of LOCKS that are available in Teradata.
What do you mean by tpt in teradata?
What are the different softwares used with their functions in teradata?
What are the scenarios in which full table scans occurs?
What is the difference between union and union all in teradata?
How do you define Teradata?
Why teradata is used?
What interface is used to connect to windows based applications?
How to run a query in teradata?
What is the opening step in basic teradata query script?
What are the functions of a Parser?