MySQL 刪除資料表

2022-02-22 15:08:18 字數 1090 閱讀 1532

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

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

drop table table_name ;

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

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

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

mysql>drop table tutorials_tbl

queryok,0rows affected (0.8sec)mysql>

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

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

h3> 語法

boolmysql_query(sql,connection );

引數

描述sql

必需。規定要傳送的 sql 查詢。注釋:查詢字串不應以分號結束。

connection

可選。規定 sql 連線識別符號。如果未規定,則使用上乙個開啟的連線。

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

<?php

$dbhost ='localhost:3036';$dbuser ='root';$dbpass ='rootpassword';$conn =mysql_connect($dbhost,$dbuser,$dbpass);if(!$conn )echo 'connected successfully

';$sql ="drop table tutorials_tbl";mysql_select_db('tutorials');$retval =mysql_query($sql,$conn );if(!$retval )echo "table deleted successfully\n";mysql_close($conn);?>

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