Give an example of any procedure.
Answer Posted / deepa
SQL> BEGIN
2 DBMS_OUTPUT.PUT_LINE(’Hello World’);
3 END;
4 /
| Is This Answer Correct ? | 1 Yes | 8 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
When is a declare statement required?
What is function and procedure?
Difference between global and parameter variables?
What is left join in sql?
how to use like conditions? : Sql dba
What are the types of optimization?
what are all the different normalizations? : Sql dba
how to convert numeric values to character strings? : Sql dba
what are the non-standard sql commands supported by 'mysql'? : Sql dba
What is not in sql?
What are the main features of cursor?
Can we change the table name in sql?
what are the nonstandard string types? : Sql dba
What is rownum and rowid?