Collections:
Deleting an Existing Row from a Table in MySQL
How To Delete an Existing Row from a Table in MySQL?
✍: 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:
mysql> INSERT INTO fyi_links (url, id)
VALUES ('www.myspace.com', 301);
Query OK, 1 row affected (0.00 sec)
mysql> SELECT id, url, notes, counts FROM fyi_links
WHERE id = 301;
+-----+-----------------+-------+--------+
| id | url | notes | counts |
+-----+-----------------+-------+--------+
| 301 | www.myspace.com | NULL | NULL |
+-----+-----------------+-------+--------+
1 row in set (0.00 sec)
mysql> DELETE FROM fyi_links WHERE id = 301;
Query OK, 1 row affected (0.00 sec)
mysql> SELECT id, url, notes, counts FROM fyi_links
WHERE id = 301;
Empty set (0.00 sec)
⇒ Deleting Multiple Rows from a Table in MySQL
⇐ Error: Subquery Returns More than 1 Row in MySQL
2018-01-08, 2483🔥, 0💬
Popular Posts:
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
What Is "mysqld" in MySQL? "mysqld" is MySQL server daemon program which runs quietly in background ...
What Is the Difference Between GETDATE() and GETUTCDATE() in SQL Server Transact-SQL? The difference...