Collections:
Enter a New Row Interactively in Oracle
How To Enter a New Row into a Table Interactively in Oracle?
✍: FYIcenter.com
If you don't like to use the INSERT statement to enter a new row into a table, you can use the object view to enter it interactively. Follow the steps below to enter new row into table TIP:
You know the new row is serted, because the log area shows you:
INSERT INTO "HR"."TIPS" (ID, SUBJECT) VALUES ('101', 'Backup #1')
Commit Successful
⇒ Report View in SQL Developer in Oracle
⇐ Create a Table Interactively in Oracle
2018-10-08, 2338🔥, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
How To Update Multiple Rows with One UPDATE Statement in SQL Server? If the WHERE clause in an UPDAT...
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...