顧名思義,它用於從資料庫中完全刪除表。
Drop table table_name;
mysql> Drop table Student; Query OK, 0 rows affected (0.09 sec)
上面的查詢從資料庫中完全刪除了「Student」表。我們可以觀察到 MySQL 在執行下列查詢後傳回一條錯誤訊息 -
mysql> Select * from Student; ERROR 1146 (42S02): Table 'query.student' doesn't exist
以上是MySQL DROP 指令的用途是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!