丟棄現有MySQL的表是很容易的。但是需要非常小心,刪除任何現有的一個表後將無法恢復,因為數據丟失。
語法:
下面是通用的SQL語法丟棄(刪除)MySQL表:
DROP TABLE table_name ;
從命令提示符刪除表:
只需要在mysql>提示符下執行DROP TABLE SQL命令。
例子:
下面是一個例子,它刪除表 tutorials_tbl:
root@host# mysql -u root -p Enter password:******* mysql> use TUTORIALS; Database changed mysql> DROP TABLE tutorials_tbl Query OK, 0 rows affected (0.8 sec) mysql>
使用PHP腳本刪除MySQL表:
要刪除一個現有的表中的任何數據庫中,將需要使用PHP函數mysql_query()。將通過它的第二個參數,正確的SQL命令刪除表。
例子:
<html> <head> <title>Creating MySQL Tables -by www.jb51.net</title> </head> <body> <?php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysql_error()); } echo 'Connected successfully<br />'; $sql = "DROP TABLE tutorials_tbl"; mysql_select_db( 'TUTORIALS' ); $retval = mysql_query( $sql, $conn ); if(! $retval ) { die('Could not delete table: ' . mysql_error()); } echo "Table deleted successfully\n"; mysql_close($conn); ?> </body> </html>