how do you count the duplicate records in a table
Answer Posted / priya
select coloumn_name ,count(*) from table_name
group by coloumn_name
having count(*) > 1;
| Is This Answer Correct ? | 35 Yes | 0 No |
Post New Answer View All Answers
How do I view output in sql developer?
Can we create view in stored procedure?
Explain autonomous transaction.
Explain the difference in execution of triggers and stored procedures?
What is the difference between mdf and ndf files?
what's the difference between a primary key and a unique key? : Sql dba
Name three sql operations that perform a sort.
What is t-sql? : Transact sql
How is debugging done?
How to run pl/sql statements in sql*plus?
What are the advantages of pl sql over sql?
Why query optimization is needed?
What are the different sql languages?
is it possible to pass an object or table to a procedure as an argument?
Hi how to import oracle sequence in Informatica? Please write stored procedure code that will import oracle sequence in Informatica SP transformation as per below scenario Oracle table product list Pro_id, pro_name 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights Now a new flat file with new product list needs to be added to oracle table product list with oracle sequence. flat file product Prono,pro_name, 1, 20 watt tube light 2, 30 watt tube light & target should be like 101, LED Lights. 102, 20watt CFL Lights. 103, 30 watt CFL lights. 104, 20 watt tube light 105, 30 watt tube light thks reg suvarna joshi suvarnaatsuvarna@rediffmail.com