Answer Posted / chandu
select ename,sal from emp where sal=(select max(sal) from emp);
| Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
how would you enter characters as hex numbers? : Sql dba
What is difference between my sql and sql?
What is nosql vs sql?
How do sql triggers work?
What is dml with example?
What is index example?
How many types of tables are there?
How do I find duplicates in the same column?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
What is normalization in a database?
how to drop an existing view in mysql? : Sql dba
How does sql developer connect to oracle database?
Is id a reserved word in sql?
Is pl sql different from sql?
How do you know if a relationship is 2nf?