In this video I use the INSERT command to add a record that has only partial fields. In order to do this you must declare what fields you want to add with the INSERT command. The command I used to add a book to the Books table is:
INSERT INTO BOOKS (BOOK_ID, ISBN_10, TITLE, CATEGORY, AUTHOR_ID)
VALUES
('11','553108034','A Clash of Kings', 'Fiction',2);
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.
Download
0 formats
No download links available.
SQL with Oracle 10g XE - Using INSERT to Add Partial Data to a Table | NatokHD