How To Delete an Existing Row from a Table in Oracle?
Submitted by: AdministratorIf 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 ggl_links (url, id)
VALUES ('http://www.myspace.com', 301);
1 row created.
SELECT * FROM ggl_links WHERE id = 301;
<pre> ID URL NOTES COUNTS CREATED
----- ------------------------ -------- ------- ---------
301 http://www.myspace.com NULL NULL 07-MAY-06 </pre>
DELETE FROM ggl_links WHERE id = 301;
1 row deleted.
SELECT * FROM ggl_links WHERE id = 301;
no rows selected
Submitted by: Administrator
INSERT INTO ggl_links (url, id)
VALUES ('http://www.myspace.com', 301);
1 row created.
SELECT * FROM ggl_links WHERE id = 301;
<pre> ID URL NOTES COUNTS CREATED
----- ------------------------ -------- ------- ---------
301 http://www.myspace.com NULL NULL 07-MAY-06 </pre>
DELETE FROM ggl_links WHERE id = 301;
1 row deleted.
SELECT * FROM ggl_links WHERE id = 301;
no rows selected
Submitted by: Administrator
Read Online Oracle Database Job Interview Questions And Answers
Top Oracle Database Questions
☺ | How To Shutdown Your 10g XE Server? |
☺ | How To Write Date and Time Interval Literals in Oracle? |
☺ | What Happens to Indexes If You Drop a Table? |
☺ | What Is the Relation of a User Account and a Schema? |
☺ | How To Recover a Dropped Table in Oracle? |
Top DB Oracle Categories
☺ | Oracle PL-SQL Interview Questions. |
☺ | Oracle DBA Interview Questions. |
☺ | Oracle D2K Interview Questions. |
☺ | OCI Interview Questions. |
☺ | Forms Reports Interview Questions. |