one of the column in my table contains the data like
SAL
----
1000
1000
2000
3000
3000
So my requirement is i want output like
SAL
---
1000
2000
3000
it mean i want to delete duplicate rows only how should u
write query?
Answer Posted / manju
Select sal from emp group by sal having count(*)>=1
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is nvl?
How can you load multi line records? : aql loader
What is the purpose of the partition table?
How do I edit a stored procedure?
What is normalization sql?
Can we use view in stored procedure?
what is the use of anchoring object? what r the difference between anchoring object & enclosing object? can any one tell me all the details?
Explain 3 basic parts of a trigger.
What is sql query limit?
what are wild cards used in database for pattern matching ? : Sql dba
a table has 2 classifications 1)liabilities 2)earnings this liabitity has 2 elements with 2 input values and the earnings have 2 elements with 2 input values i wrote a query so that my input is liability savings amount1 amount2 xxxx null xxxxxx 0 xxx1 null xxxxx1 0 null yyyy 0 yyyy null yyy1 0 yyy1 my problem is --when i developed a report(d2k) with this data my o/p is liabilities,amount1,savings,amount2 xxxx xxxxxx xxx1 xxxxx1 yyyy yyyy yyy1 yyy1 how could i move this savings,savings values 2 palces up. can any body provide me witha better solution
what are the different index configurations a table can have? : Sql dba
How do I edit a trigger in sql developer?
Difference between truncate, delete and drop commands?
What is minus?