Give an example of any procedure.
Answer Posted / sharath
CREATE OR REPLACE PROCEDURE pro_name
AS --We cna write AS/IS
BEGIN
DBMS_OUTPUT.PUT_LINE(’Hello World’);
END;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a natural join?
What are pl sql data types?
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
How does cross join work?
Can a foreign key be null?
What are different types of triggers?
Is sql easier than java?
what is the different between now() and current_date()? : Sql dba
How do you run a query?
What is set serveroutput on in pl sql?
What is a sql statement?
What are the 3 modes of parameter?
What is trigger types of trigger?
Can you upgrade sql express to full sql?
What is query optimization in sql?