Collections:
Delete an Existing Row from a Table in Oracle
How To Delete an Existing Row from a Table in Oracle?
✍: FYIcenter.com
If you want to delete an existing row from a table, you can use the DELETE statement with a WHERE clause to identify that row. Here is good sample of DELETE statements:
INSERT INTO fyi_links (url, id)
VALUES ('http://www.myspace.com', 301);
1 row created.
SELECT * FROM fyi_links WHERE id = 301;
ID URL NOTES COUNTS CREATED
----- ------------------------ -------- ------- ---------
301 http://www.myspace.com NULL NULL 07-MAY-06
DELETE FROM fyi_links WHERE id = 301;
1 row deleted.
SELECT * FROM fyi_links WHERE id = 301;
no rows selected
⇒ Delete Multiple Rows from a Table in Oracle
⇐ Error: Single-Row Subquery Returns More Than One Row in Oracle
2020-01-04, 2831🔥, 0💬
Popular Posts:
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How to continue to the next iteration of a WHILE loop in SQL Server Transact-SQL? How to use CONTINU...
Where to find answers to frequently asked questions in general areas of Microsoft SQL Server Transac...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...