select sal from emp group by sal
Answers were Sorted based on User's Feedback
Answer / shiva
select sal from emp group by sal;
this query group the same salary.Suppose the table contains 30
records in that same sal is 3 times repeating by using above
query it will fetch only 27 rows of sal.So it wont give the duplicate sal.
Is This Answer Correct ? | 14 Yes | 3 No |
Answer / pankajsharma
it will fetch all the salaries one tme in case of duplicacy
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / arun karthick
select sal from emp group by sal; and select distinct sal
from emp ;
Both queries will give the same result - fetch the salary
in emp table without duplicates.
Is This Answer Correct ? | 1 Yes | 0 No |
what is csv? : Sql dba
What is latest version of sql?
How do you get all records from 2 tables. Which join do you use?
Can we use update in sql function?
Does inner join remove duplicates?
what are the types of subquery? : Sql dba
what are the forced views
what is the use of friend function? : Sql dba
How to start oracle sql developer?
Give an example of Full Outer Join?
What is autocommit sql?
What is nosql db?