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, 3023🔥, 0💬
Popular Posts:
How to run Queries with SQL Server Management Studio Express in SQL Server? 1. Launch and connect SQ...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
How To Escape Special Characters in SQL statements in MySQL? There are a number of special character...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...