From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / aruna parulekar
select * from employee where sal=(select max(sal) from
employee);
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Does pdo prevent sql injection?
What are all the ddl commands?
How to pipe multiline string to isql?
How do I run a sql query in pgadmin 4?
When should I use nosql database?
What does <> sql mean?
Are sql database names case sensitive?
What are the possible values for the boolean data field?
Is natural join same as inner join?
What are the two characteristics of a primary key?
Can you load data into multiple tables at once? : aql loader
What do you mean by stored procedures? How do we use it?
How we can update the view?
Can I call a procedure inside a function?
What are packages in pl sql and also explain its advantages?