Mysql基本增删改查

插入数据
insert into Student (Sid,Sname,Sage,Ssex)
values
(01,'张三',15,'男');

[Mysql 删除数据表的三种方式详解

用法:
1、当你不再需要该表时, 用 drop;

2、当你仍要保留该表,但要删除所有记录时, 用 truncate;

3、当你要删除部分记录或者有可能会后悔的话, 用 delete。

删除程度可从强到弱如下排列:

  1. drop table tb;

    drop 是直接将表格删除,无法找回。例如删除 user 表:

drop table user;

  1. truncate (table) tb;

    truncate 是删除表中所有数据,但不能与where一起使用;

TRUNCATE TABLE user;
3. delete from tb (where);

delete 也是删除表中数据,但可以与where连用,删除特定行;

-- 删除表中所有数据
delete from user;
-- 删除指定行
delete from user where username ='Tom';

你可能感兴趣的:(Mysql基本增删改查)