SQL with Oracle 10g XE - Using DELETE to Remove a Row from a Table

Опубликовано: 10 Октябрь 2024
на канале: lecture snippets
18,727
71

In this video I use the DELETE command to remove an entire row from a table. When using the DELETE command be sure to use the keywords FROM and WHERE to choose the table and record you wish to delete. The code I used is:

DELETE
FROM BOOKS
WHERE BOOK_ID = '11';

This video is part of a series of videos with the purpose of learning the SQL language. For more information visit Lecture Snippets at http://lecturesnippets.com.