How many rows will return from dual table?
Answer Posted / sen
SELECT ROWNUM, LEVEL
FROM DUAL
CONNECT BY LEVEL < 5;
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
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 a composite key ? : Sql dba
What does bitemporal mean?
Can I copy :old and :new pseudo-records in/to an oracle stored procedure?
What is the advantage of index in sql?
Does a primary key have to be a number?
Is inner join same as self join?
What are triggers in sql?
can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible? : Sql dba
What is set transaction?
Which sql statement is used to delete data from a database?
what are all the different types of indexes? : Sql dba
what is heap table? : Sql dba
which tcp/ip port does sql server run on? : Sql dba
What is pl sql block in dbms?