SQL學習之drop語句

2021-10-01 10:32:50 字數 733 閱讀 7850

刪除表刪除資料庫

truncate table 語句

菜鳥教程

sqldrop語句可以用於刪除索引 、刪除表 和 刪除資料庫

刪除索引使用drop index語句

drop

index index_name on table_name

drop

index table_name.index_name

drop

index index_name

alter

table table_name drop

index index_name

刪除表使用drop table語句

drop

table table_name

刪除資料庫使用drop database語句

drop

database database_name

如果僅僅需要刪除表內的資料,並復原表,但並不刪除表本身,那麼可以使用truncate table語句

truncate

table table_name;

MySQL學習之SQL語句(二)

一 sql簡介 sql 結構化查詢語言 structured query language 是一種資料庫查詢和程式語言,用於訪問資料以及查詢 更新和管理關係資料庫系統。二 sql分類 1 資料定義語言 簡稱ddl data definition language 用來定義資料庫物件。關鍵字 crea...

習SQL語句之SQL語句大全

語 句 功 能 資料操作 select 從資料庫表中檢索資料行和列 insert 向資料庫表新增新資料行 delete 從資料庫表中刪除資料行 update 更新資料庫表中的資料 資料定義 create table 建立乙個資料庫表 drop table 從資料庫中刪除表 alter table 修...

sql語句之DML語句

1.select 語句 select 語句用於從表中選取資料。結果被儲存在乙個結果表中 稱為結果集 select 列名稱 from 表名稱 或select from 表名稱 例如 eg select lastname,firstname from persons 從persons表中查lastnam...