HOW TO FIND THE EMPLOYEE DETAILS WHO ARE GETTING SAME SALARY
IN EMP TABLE
Answer Posted / antony
select distinct A.id,A.salary from employee A,employee B
where A.salary = B.salary and A.id <> b.id;
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Does server sql treat char as a variable-length or fixed-length column?
Explain filtered indexes benefits?
How to provide values to user defined function parameters?
How you can get a list of all the table constraints in a database?
What are the new features in sql server 2016?
How to access the inserted record of an event?
How do you know if sql server is running on your local system?
I have a table Events Events containing cardno,time,id,name--each id has a cardno my requirement is every day each employee swipe the card several times i want to calculate first and last time of each card the output should be name 1 2 6 7 in out in out holiday holiday xxx 09:30 06:30 09:40 06:45 where 1,2...... are dates for example january 1,2, etc. 6 and 7 are saturday and sunday how it is posssible
What do you mean by authentication modes in sql server?
What is the use of sql profiler in sql server 2012?
How do you rename a table in sql server?
What is the order by used for?
Explain subquery and state its properties?
Explain isolation levels that sql server supports?
What is transact-sql ddl trigger?