4-1 copyright oracle corporation, 1998. all rights reserved. data manipulation language (dml)

21
4-1 Copyright Ó Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

Upload: barnard-cole

Post on 12-Jan-2016

224 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-1 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Data Manipulation Language (DML)

Data Manipulation Language (DML)

Page 2: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-2 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Data Manipulation Language (DML)Data Manipulation Language (DML)

• A DML statement is executed when you:– Add new rows to a table– Modify existing rows in a table– Remove existing rows from a table

• A transaction consists of a collection of DML statements that form a logical unit of work.

• A DML statement is executed when you:– Add new rows to a table– Modify existing rows in a table– Remove existing rows from a table

• A transaction consists of a collection of DML statements that form a logical unit of work.

Page 3: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-3 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Adding RowsAdding Rows

Page 4: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-4 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Adding a New Row to a TableAdding a New Row to a Table

DEPT DEPTNO DNAME LOC ------ ---------- -------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON

New row

50 DEVELOPMENT DETROIT

DEPT DEPTNO DNAME LOC ------ ---------- -------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON

“…insert a new row into DEPT table…”

50 DEVELOPMENT DETROIT

Page 5: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-5 Copyright Ó Oracle Corporation, 1998. All rights reserved.

The INSERT StatementThe INSERT Statement

• Add new rows to a table by using the INSERT statement.

• Only one row is inserted at a time with this syntax.

• Add new rows to a table by using the INSERT statement.

• Only one row is inserted at a time with this syntax.

INSERT INTO table [(column [, column...])]VALUES (value [, value...]);

INSERT INTO table [(column [, column...])]VALUES (value [, value...]);

Page 6: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-6 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Inserting New RowsInserting New Rows

• Insert a new row containing values for each column.

• List values in the default order of the columns in the table.

• Optionally list the columns in the INSERT clause.

• Enclose character and date values within single quotation marks.

• Insert a new row containing values for each column.

• List values in the default order of the columns in the table.

• Optionally list the columns in the INSERT clause.

• Enclose character and date values within single quotation marks.

SQL> INSERT INTO dept (deptno, dname, loc) 2 VALUES (50, 'DEVELOPMENT', 'DETROIT');1 row created.

Page 7: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-7 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Inserting Rows with Null ValuesInserting Rows with Null Values

• Implicit method: Omit the column from the column list.

• Implicit method: Omit the column from the column list.

SQL> INSERT INTO dept (deptno, dname ) 2 VALUES (60, 'MIS');1 row created.

• Explicit method: Specify the NULL keyword.

• Explicit method: Specify the NULL keyword.

SQL> INSERT INTO dept 2 VALUES (70, 'FINANCE', NULL);1 row created.

Page 8: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-8 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Inserting Values by Using Substitution Variables

Inserting Values by Using Substitution Variables

Create an interactive script by using SQL*Plus substitution parameters.Create an interactive script by using SQL*Plus substitution parameters.

SQL> INSERT INTO dept (deptno, dname, loc) 2 VALUES (&department_id, 3 '&department_name', '&location');

Enter value for department_id: 80Enter value for department_name: EDUCATIONEnter value for location: ATLANTA

1 row created.

Page 9: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-9 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Copying Rows from Another Table

Copying Rows from Another Table

• Write your INSERT statement with a subquery.

• Do not use the VALUES clause.• Match the number of columns in the

INSERT clause to those in the subquery.

• Write your INSERT statement with a subquery.

• Do not use the VALUES clause.• Match the number of columns in the

INSERT clause to those in the subquery.

SQL> INSERT INTO managers(id, name, salary, hiredate) 2 SELECT empno, ename, sal, hiredate 3 FROM emp 4 WHERE job = 'MANAGER';3 rows created.

Page 10: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-10 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Update RowsUpdate Rows

Page 11: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-11 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Changing Data in a TableChanging Data in a TableEMP

“…update a row in EMP table…”

EMP

EMPNO ENAME JOB ... DEPTNO

7839 KING PRESIDENT 10 7698 BLAKE MANAGER 30 7782 CLARK MANAGER 10 7566 JONES MANAGER 20 ...

20

EMPNO ENAME JOB ... DEPTNO

7839 KING PRESIDENT 10 7698 BLAKE MANAGER 30 7782 CLARK MANAGER 10 7566 JONES MANAGER 20 ...

Page 12: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-12 Copyright Ó Oracle Corporation, 1998. All rights reserved.

The UPDATE StatementThe UPDATE Statement

• Modify existing rows with the UPDATE statement.

• Update more than one row at a time, if required.

• Modify existing rows with the UPDATE statement.

• Update more than one row at a time, if required.

UPDATE tableSET column = value [, column = value][WHERE condition];

UPDATE tableSET column = value [, column = value][WHERE condition];

Page 13: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-13 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Updating Rows in a TableUpdating Rows in a Table

• Specific row or rows are modified when you specify the WHERE clause.

• All rows in the table are modified if you omit the WHERE clause.

• Specific row or rows are modified when you specify the WHERE clause.

• All rows in the table are modified if you omit the WHERE clause.

SQL> UPDATE emp 2 SET deptno = 20 3 WHERE empno = 7782;1 row updated.

SQL> UPDATE employee 2 SET deptno = 20;14 rows updated.

SQL> UPDATE employee 2 SET deptno = 20;14 rows updated.

Page 14: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-14 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Updating Rows Based on Another Table

Updating Rows Based on Another Table

Use subqueries in UPDATE statements to update rows in a table based on values from another table.

Use subqueries in UPDATE statements to update rows in a table based on values from another table.

SQL> UPDATE employee 2 SET deptno = (SELECT deptno 3 FROM emp 4 WHERE empno = 7788) 5 WHERE job = (SELECT job 6 FROM emp 7 WHERE empno = 7788);2 rows updated.

SQL> UPDATE employee 2 SET deptno = (SELECT deptno 3 FROM emp 4 WHERE empno = 7788) 5 WHERE job = (SELECT job 6 FROM emp 7 WHERE empno = 7788);2 rows updated.

Page 15: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-15 Copyright Ó Oracle Corporation, 1998. All rights reserved.

UPDATE emp *ERROR at line 1:ORA-02291: integrity constraint (USR.EMP_DEPTNO_FK) violated - parent key not found

UPDATE emp *ERROR at line 1:ORA-02291: integrity constraint (USR.EMP_DEPTNO_FK) violated - parent key not found

SQL> UPDATE emp 2 SET deptno = 55 3 WHERE deptno = 10;

SQL> UPDATE emp 2 SET deptno = 55 3 WHERE deptno = 10;

Updating Rows: Integrity Constraint Error

Updating Rows: Integrity Constraint Error

Department n

umber 55 does not e

xist

Department n

umber 55 does not e

xist

Page 16: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-16 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Delete RowsDelete Rows

Page 17: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-17 Copyright Ó Oracle Corporation, 1998. All rights reserved.

“…delete a row from DEPT table…”

Removing a Row from a Table Removing a Row from a Table DEPT DEPTNO DNAME LOC ------ ---------- -------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON 50 DEVELOPMENT DETROIT 60 MIS ...

DEPT DEPTNO DNAME LOC ------ ---------- -------- 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON 60 MIS ...

Page 18: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-18 Copyright Ó Oracle Corporation, 1998. All rights reserved.

The DELETE StatementThe DELETE Statement

You can remove existing rows from a table by using the DELETE statement.You can remove existing rows from a table by using the DELETE statement.

DELETE [FROM] table[WHERE condition];

DELETE [FROM] table[WHERE condition];

Page 19: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-19 Copyright Ó Oracle Corporation, 1998. All rights reserved.

• Specific row or rows are deleted when you specify the WHERE clause.

• All rows in the table are deleted if you omit the WHERE clause.

• Specific row or rows are deleted when you specify the WHERE clause.

• All rows in the table are deleted if you omit the WHERE clause.

Deleting Rows from a TableDeleting Rows from a Table

SQL> DELETE FROM department 2 WHERE dname = 'DEVELOPMENT'; 1 row deleted.

SQL> DELETE FROM department 2 WHERE dname = 'DEVELOPMENT'; 1 row deleted.

SQL> DELETE FROM department;4 rows deleted.

SQL> DELETE FROM department;4 rows deleted.

Page 20: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-20 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Deleting Rows Based on Another Table

Deleting Rows Based on Another Table

Use subqueries in DELETE statements to remove rows from a table based on values from another table.

Use subqueries in DELETE statements to remove rows from a table based on values from another table.

SQL> DELETE FROM employee 2 WHERE deptno = 3 (SELECT deptno 4 FROM dept 5 WHERE dname ='SALES');6 rows deleted.

Page 21: 4-1 Copyright  Oracle Corporation, 1998. All rights reserved. Data Manipulation Language (DML)

4-21 Copyright Ó Oracle Corporation, 1998. All rights reserved.

Deleting Rows: Integrity Constraint Error

Deleting Rows: Integrity Constraint Error

SQL> DELETE FROM dept 2 WHERE deptno = 10;

SQL> DELETE FROM dept 2 WHERE deptno = 10;

DELETE FROM dept *ERROR at line 1:ORA-02292: integrity constraint (USR.EMP_DEPTNO_FK) violated - child record found

DELETE FROM dept *ERROR at line 1:ORA-02292: integrity constraint (USR.EMP_DEPTNO_FK) violated - child record found

You cannot delete a ro

w that c

ontains a primary

key that is

used as a foreign key in

another table.

You cannot delete a ro

w that c

ontains a primary

key that is

used as a foreign key in

another table.