Collections:
Insert a New Row into a Table in Oracle
How To Insert a New Row into a Table in Oracle?
✍: FYIcenter.com
To insert a new row into a table, you should use the INSERT INTO statement with values specified for all columns as shown in the following example:
INSERT INTO fyi_links VALUES (101, 'http://dev.fyicenter.com', NULL, 0, '30-Apr-2006'); 1 row created. SELECT * FROM fyi_links; ID URL NOTES COUNTS CREATED ----- ------------------------ -------- ------- --------- 101 http://dev.fyicenter.com NULL 0 30-Apr-06
⇒ Specify Default Values in INSERT Statements in Oracle
⇐ Set Up SQL*Plus Output Format in Oracle
2020-01-29, 2338🔥, 0💬
Popular Posts:
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...