How to delete a data SQL statement in the mysql tutorial

Source: Internet
Author: User
Use the DELETEFROM statement to delete records from a database table. Syntax DELETEFROMtable_nameWHEREcolumn_namesome_value Note: SQL is case insensitive. DELETEFROM is equivalent to deletefrom. In order for PHP to execute the preceding statement, we must use mysql_qu

Mysql tutorial DELETE data SQL statement usage 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 case insensitive. Delete from is equivalent to delete from. In order for PHP to execute the preceding statement, we must use mysql_qu

How to delete a data SQL statement in the mysql tutorial

The delete from statement is used to DELETE records FROM database tables.

Syntax

Delete from table_name WHERE column_name = some_value

Note: SQL is case insensitive. Delete from is equivalent to delete from.

In order for PHP to execute the preceding statement, we must use mysql_query (function. This function is used to send queries and commands to SQL connections.

Example

Earlier, we created a table named "Person" in this tutorial. It looks like this:

FirstName LastName Age

Peter Griffin 35

Glenn Quagmire 33

The following example deletes all records whose LastName is 'grigin' in the "Person" table:

$ Con = mysql_connect ("localhost", "peter", "abc123 ");

If (! $ Con)

{

Die ('could not connect: '. mysql_error ());

}

Mysql_select_db ("my_db", $ con );

Mysql_query ("delete from Person WHERE LastName = 'grigin '");

Mysql_close ($ con );

?>

After this deletion, the table is as follows:

FirstName LastName Age

Peter Griffin 35

Note: More exciting articles, please pay attention to SanlianProgramming TutorialTopic.

Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.