The DELETE FROM statement is used to delete records from the database table.
Syntax DELETE FROM table_name WHERE column_name = some_value
Note: SQL is not case sensitive. DELETE FROM equivalent to delete from.
In order for PHP to execute the above statement, we must use mysql_query (function. This function is used to send queries and commands to the SQL connection.
example
Earlier, we created a table named "Person" in this tutorial. It looks something like this:
FirstName LastName Age Peter Griffin 35 Glenn Quagmire 33
The following example deletes all the records of LastName = 'Griffin' in the "Person" table:
<? php $ con = mysql_connect ("localhost", "peter", "abc123"); if ($ con) {die ('Could not connect:'. mysql_error ());} mysql_select_db ("my_db", $ mysql_query ("DELETE FROM Person WHERE LastName = 'Griffin'"); mysql_close ($ con);?>
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.