How to execute multiple sql statements in a single annonymous
block irrespective of the sql statement result?
Answer Posted / gourav joshi
hi,
For eg u want to insert 3 data at a same time so u can use
annonyoums block for eg emp_id,Name,Salary u want to insert
data in a table u can use this annoynomous blck
Begin
Insert into table name values(1, 'gourav',2000);
Insert into table name values(2, 'joshi',6000);
Insert into table name values(3, 'ram',4000);
end;
then execute
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can we use ddl commands in pl sql?
What is the plv (pl/vision) package offers?
Can we call a function containing dml statements in a select query?
what are date and time intervals? : Sql dba
what are myisam tables? : Sql dba
Why use subqueries instead of joins?
What is cascade in sql?
What information is needed to connect sql*plus an oracle server?
What are different functions in sql?
list out some tools through which we can draw e-r diagrams for mysql. : Sql dba
Can you join a table to itself?
What is bind reference and how can it be created?
What is clustered index sql?
give the syntax of grant and revoke commands? : Sql dba
What is function and procedure?