刪除數(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/