十 MySQL 刪除資料表

2022-09-17 01:00:09 字數 1172 閱讀 1798

mysql中刪除資料表是非常容易操作的, 但是你再進行刪除表操作時要非常小心,因為執行刪除命令後所有資料都會消失。

以下為刪除mysql資料表的通用語法:

drop table table_name ;

在mysql>命令提示視窗中刪除資料表sql語句為drop table

以下例項刪除了資料表runoob_tbl:

root@host# mysql -u root -penterpassword:*******mysql>userunoob;databasechanged

mysql>drop table runoob_tbl

queryok,0rows affected (0.8sec)mysql>

php使用 mysqli_query 函式來刪除 mysql 資料表。

該函式有兩個引數,在執行成功時返回 true,否則返回 false。

mysqli_query(connection,query,resultmode);

引數

描述connection

必需。規定要使用的 mysql 連線。

query

必需,規定查詢字串。

resultmode

可選。乙個常量。可以是下列值中的任意乙個:

以下例項使用了php指令碼刪除資料表 runoob_tbl:

<?php$dbhost= 'localhost:3306'; //mysql伺服器主機位址$dbuser= 'root'; //mysql使用者名稱$dbpass= '123456'; //mysql使用者名稱密碼$conn= mysqli_connect($dbhost, $dbuser, $dbpass); if(! $conn)echo'連線成功

'; $sql= "drop table runoob_tbl"; mysqli_select_db($conn, 'runoob'); $retval= mysqli_query($conn, $sql); if(! $retval)echo"資料表刪除成功\n"; mysqli_close($conn); ?>

執行成功後,我們使用以下命令,就看不到 runoob_tbl 表了:

mysql>show tables;emptyset(0.01sec)

MySQL 刪除資料表

mysql中刪除資料表是非常容易操作的,但是你再進行刪除表操作時要非常小心,因為執行刪除命令後所有資料都會消失。以下為刪除mysql資料表的通用語法 drop table table name 以下例項刪除了資料表runoob tbl root host mysql u root penter pa...

MySQL刪除資料表

目錄 mysql刪除資料表 1.刪除沒有被關聯的表 2.刪除被其他表關聯的主表 在 mysql中,使用drop table可以一次刪除乙個或多個沒有被其他表關聯的資料表。語法格式如下 drop table if exists 表1,表2,表n 其中 表n 指要刪除的表的名稱,後面可以同時刪除多個表,...

MySQL 刪除資料表

mysql中刪除資料表是非常容易操作的,但是你再進行刪除表操作時要非常小心,因為執行刪除命令後所有資料都會消失。以下為刪除mysql資料表的通用語法 drop table table name 在mysql 命令提示視窗中刪除資料表sql語句為drop table 以下例項刪除了資料表tutoria...