select sal from emp group by sal

Answers were Sorted based on User's Feedback



select sal from emp group by sal..

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

select sal from emp group by sal..

Answer / pankajsharma

it will fetch all the salaries one tme in case of duplicacy

Is This Answer Correct ?    3 Yes 1 No

select sal from emp group by sal..

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

Post New Answer

More SQL PLSQL Interview Questions

What does the sign mean in sql?

0 Answers  


how to drop an existing index in mysql? : Sql dba

0 Answers  


How do I restart sql?

0 Answers  


How do u count no of rows in a table?

8 Answers   CTS,


what is denormalization. : Sql dba

0 Answers  






What is sharding in sql?

0 Answers  


What is difference between primary and secondary key?

0 Answers  


How do I order columns in sql?

0 Answers  


What is a sql*loader control file?

0 Answers  


What do you mean by dbms? What are its different types?

0 Answers  


Explain isolation levels. : Transact sql

0 Answers  


Which software is used for pl sql programming?

0 Answers  


Categories