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 / yaswanth
select distinct(SAL) as SAL from table_name;
| Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
Is sql better than access?
What is memory optimized table?
what is the use of double ampersand (&&) in sql queries?
What does <> sql mean?
What is compute?
What found sql?
How can we store rows in PL/SQL using array?
What is the difference between nested table and varray?
Is pl sql and postgresql same?
What is the max nvarchar size?
what is 'mysqladmin' in mysql? : Sql dba
How do I pipe the output of one isql to another?
What is before trigger?
What is the trigger in sql?
What is the mutating table and constraining table?