write s sql query following table some duplicate present i
want unique one column duplicate another column display?
name id
a 1
a 1
b 2
b 2
c 3
i want the required output like
unique duplicate
name id name id
a 1 a 1
b 2 b 2
c 3
Answer Posted / anto
unique
select distinct name,id from table
duplicate
select name,id from table
group by name,id
having count(name||id) > 1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the need of etl tools?
WHAT IS EDM?WHAT IS THE USE IN INFORMATICA? chandumba2005@gmai.com
Does an informatica transformation support only aggregate expressions?
What are the components of workflow manager?
How can a transformation be made reusable?
What is Data Caches size?
i have a data in my source as a flat files what test i have to perform the next step can any body help to me
What are the different versions of informatica?
Explain what are the different versions of informatica?
What are session parameters ? How do you set them?
what is the size of your data warehousing?
What will happen if the select list columns in the custom override sql query and the output ports order in sq transformation do not match?
What are the static cache and dynamic cache in informatica?
What is incremental aggregation?
What is a surrogate key?