當(dāng)前位置:首頁(yè) > IT技術(shù) > 數(shù)據(jù)庫(kù) > 正文

Mysql基本操作之?dāng)?shù)據(jù)表的操作{刪除數(shù)據(jù)]
2022-04-18 10:49:39

刪除數(shù)據(jù):兩種方法

刪除表中所有行[清除表記錄](méi)

[逐行刪除]

delete from 表名;

[一次性刪除,新建一個(gè)空表]{速度較快}

TRUNCATE TABLE 表名;

刪除限定行

delete from 表名 where 要?jiǎng)h除行的字段=要?jiǎng)h除行的數(shù)據(jù);

例:刪除learn行

結(jié)構(gòu)如下:

name? time

work? ? 8

learn? ? 1

delete from 表名 where name=learn;

或者

delete from 表名 where time=1;

?

本文摘自 :https://www.cnblogs.com/

開(kāi)通會(huì)員,享受整站包年服務(wù)立即開(kāi)通 >