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, 2607🔥, 0💬
Popular Posts:
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
How To List All Login Names on the Server in SQL Server? If you want to see a list of all login name...
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...