Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Can DML Statements Be Used in PL/SQL
Can DML Statements Be Used in PL/SQL? - Oracle DBA FAQ - Working with Database Objects in PL/SQL
✍: FYIcenter.com
Yes, you can run almost any DML statements in PL/SQL directly. To manipulate Oracle database data you can include INSERT, UPDATE, and DELETE statements, directly in PL/SQL programs, without any special notation, as shown in the following sample code:
(Connect to XE with SQL*Plus) CREATE TABLE student (id NUMBER(5) PRIMARY KEY, first_name VARCHAR(80) NOT NULL, last_name VARCHAR(80) NOT NULL); Table created. SELECT COUNT(*) FROM student; COUNT(*) ---------- 0 CREATE OR REPLACE PROCEDURE HELLO AS BEGIN INSERT INTO student VALUES(29, 'Bob', 'Henry'); INSERT INTO student VALUES(30, 'Joe', 'Bush'); UPDATE student SET first_name = 'Fyi' WHERE id = 30; DELETE FROM student WHERE id = 29; END; / SELECT * FROM student; ID FIRST_NAME LAST_NAME -------- ----------- ---------- 30 Fyi Bush
2007-04-28, 4628👍, 0💬
Popular Posts:
Which JavaScript file is referenced for validating the validators at the client side ? WebUIValidati...
Can we get a strongly typed resource class rather than using resource manager? In the previous quest...
How many types of validation controls are provided by ASP.NET ? There are six main types of validati...
Explain all parts of a deployment diagram? Package: It logically groups element of a UML model. Node...
Which bit wise operator is suitable for turning off a particular bit in a number? The bitwise AND op...