From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / dinesh kumar
select * from employee where salary =( select max(salary) from
employee);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you get column names only for a table (sql server)?
How do you clear the screen in sql?
How can I make sql query run faster?
Is sql a oracle?
What is the difference between mdf and ndf files?
What does where 1 1 mean in sql?
What is bind variable in pl sql?
What is embedded sql what are its advantages?
Is nosql faster than sql?
What are dml commands?
What is normalization in sql?
What is cursor explain with example?
What is pragma in sql?
What is the difference between between and in condition operators?
how do you know if your mysql server is alive? : Sql dba