Jump to: navigation, search

PHP MySQL Delete Table

From w3cyberlearnings

Contents

PHP MySQL Delete Record

Delete a record uses DELETE statement. You need to specifies the record that you want to delete.

Syntax

$delete_table = 'DELETE FROM student WHERE student_id=5';
mysql_query($delete_table, $connection);

Example 1

<?php

define('HOST', 'localhost');
define('USER', 'root');
define('PASS', 'yeething');
define('DBNAME', 'woowood');

$connection = mysql_connect(HOST, USER, PASS);

if (!$connection) {
	die("can not connect to the server!<br/>");
} else {

	$rdb = mysql_select_db(DBNAME);
	if (!$rdb) {
		die("The " . DBNAME . "database could not be selected");
	} else {
		// student table
		$delete_table = 'DELETE FROM student WHERE student_id=5';

		if (!mysql_query($delete_table, $connection)) {
			echo "Can't delete table: " . mysql_error($connection) . "<br/>";
		} else {
			echo "You have successfully delete table. <br/>";
		}
	}
}
mysql_close($connection);
?> 

Output

You have successfully delete table.

Example 2

Delete record for first name="abc" and last_name="bcd".

DELETE FROM student where first_name="abc" AND last_name="bcd";

Related Links


  1. MySQL Connect
  2. Create Database
  3. Connect to Database
  4. Delete Database
  5. Create Table
  6. Insert Record
  7. Insert From Array
  8. Insert From File
  9. Update Record
  10. Query Single Record
  11. Query Multiple Records
  12. Query Uses LIMIT
  13. Query Uses ORDER BY
  14. Delete Table
  1. Create Two Tables for this section tutorial
  2. Query Uses AND Operator
  3. Query Uses OR Operator
  4. Query Uses INNER JOIN
  5. Query Uses LEFT OUTER JOIN
  6. Query Uses RIGHT OUTER JOIN
  7. Query with Subquery
  1. MySQL Aggregate Count
  2. MySQL Aggregate SUM
  3. MySQL Aggregate MAX
  4. MySQL Aggregate MIN
  5. MySQL Aggregate AVG
  6. MySQL Query Uses GROUP BY
  7. MySQL Query Uses Having
  1. PHP MySQL Create Date
  2. PHP MySQL Insert Date
  3. PHP MySQL Query Date
Navigation
Web
SQL
MISC
References