IBM Books

Image, Audio, and Video Extenders Administration and Programming


Deleting data from a table

A user deletes Anita Jones's record from the employee table.

What the user does: The user deletes the record from the employee table by using an application program that includes the following SQL statement:

DELETE FROM EMPLOYEE
       WHERE NAME='Anita Jones';

What happens: Triggers delete entries for Anita Jones in various administrative support tables.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]