Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How To Delete an Existing Row from a Table
How To Delete an Existing Row from a Table? - Oracle DBA FAQ - Understanding SQL DML Statements
✍: 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
2007-04-21, 4721👍, 0💬
Popular Posts:
How Are Vertical Margins between Two Block Elements Collapsed? - CSS Tutorials - Understanding Multi...
Can a variable be both const and volatile? Yes. The const modifier means that this code cannot chang...
How To Add Column Headers to a Table? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells I...
.NET INTERVIEW QUESTIONS - How to prevent my .NET DLL to be decompiled? By design .NET embeds rich M...
when should the volatile modifier be used? The volatile modifier is a directive to the compiler's op...