HOW TO FIND THE EMPLOYEE DETAILS WHO ARE GETTING SAME SALARY
IN EMP TABLE
Answer Posted / madhu sudhan g
select Distinct * from dbo.EMP X
INNER JOIN dbo.EMP Y ON X.salary=Y.salary
AND X.ENAME<>Y.ENAME
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Retrieve the unique rows from table without using UNIQUE and DISTINCT keywords.
What are the essential components of sql server service broker?
What is the difference between local and global temporary tables?
What is transact-sql ddl trigger?
Do you know what is normalization of database? What are its benefits?
What are the basic functions for master, msdb, model, tempdb and resource databases? : SQL Server Architecture
Explain the disadvantages of cursors?
Why we need to use secondry database file? though, we can do same work using primary database file also.
What is user defined datatypes and when you should go for them?
Explain what are the events recorded in a transaction log?
How will you hide an attribute? : sql server analysis services, ssas
What are the pre-defined functions in the sql server?
What stored by the master? : sql server database administration
What are xml indexes?
What do you mean by sql server agent?