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 are the components of Informatica? And what is the purpose of each?
Briefly define reusable transformation?
What is the function of look up transformation?
What is domain in terms of informatica?
What is DR strategy for Informatica project?
What is data movement mode in Informatica and difference between them?
How can we create index after completion of load process?
How can we update a record in the target table without using update strategy?
Difference between Data and Index Caches?
Explain where to store informatica rejected data? How to extract the informatica rejected data?
What is event and what are the tasks related to it?
Hi, I want to change date type char value integer value? I tried alter table tab_name modify (newcolumn newdatetype). But The columns have 10 million values(char type) so I want to load now numeric data. How it is possible? Old Values New Value(I want to load numeric data but the old value should be there in the column) Y 1 N 0 ERROR at line 1: ORA-01439: column to be modified must be empty to change datatype Please help on this. Thanks, GM
how tokens will generate?
where to store informatica rejected data? How to extract the informatica rejected data?
Explain the features of connected and unconnected lookup.