what is mean by forward declaration and where we'll use it.
Answer Posted / 6/8/07
Forward declaration is used in declaring subprograms that
can be used in packages.
eg: procedure query_emp(empno number,empname varchar);
--procedure is declared.
we should define the procedure next..
the basic idea is :declaration first and definition later.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
what are date and time data types in mysql? : Sql dba
Is join same as left join?
How many types of index are there?
How do I kill a query in postgresql?
How can we avoid duplicating records in a query?
What is sap sql?
Is sql microsoft?
Why commit is not used in triggers?
What happens when a trigger is associated to a view?
What are the different tcl commands in sql?
What is row_number () in sql?
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
why does the selected column have to be in the group by clause or part of an aggregate function? : Sql dba
How do I write a sql query in pgadmin 4?