MySQL 資料表操作 刪除資料表中的記錄

2021-10-07 23:42:01 字數 1196 閱讀 7203

刪除資料記錄是資料操作中常見的操作,可以刪除表中已經存在的資料記錄。在mysql中可以通過delete語句來刪除資料記錄,該sql語句可以通過以下幾種方式使用:刪除特定資料記錄、刪除所有資料記錄。

刪除特定資料記錄

在mysql中刪除特定資料記錄可通過sql語句delete來實現,其語法形式如下:

delete fromtablename where condition;

在上述語句中,引數tablename表示所要刪除資料記錄的表名,引數condition指定刪除滿足條件的特定資料記錄。

例如:martin 所帶的一班畢業了,從class 表中刪除!

mysql>  create database school;   #建立資料庫school  

mysql> use school; #選擇資料庫school

mysql> create table class

(id int unique auto_increment, name varchar

(128

) unique, teacher varchar(64

)); #建立表class,指定id 欄位自增長

mysql> insert into class

(id, name, teacher)

values(1

,'一班'

,'martin'),

(2,'二班'

,'rock'),

(3,'三班'

,'janny'

); # 插入多條記錄

mysql> delete from class where teacher =

'martin'

; #通過teacher欄位刪除記錄 或

mysql> delete from class where id =

1; #通過id 字段刪除匹配的記錄

時間: 2020-07-10

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...