根据 MySQL 中的一个条件删除表中部分行


我们首先创建一个表 -

mysql> create table DemoTable
   -> (
   -> Id int,
   -> Name varchar(20)
   -> );
Query OK, 0 rows affected (0.60 sec)

使用 insert 命令在表中插入一些记录

Insert some records in the table using insert command:
mysql> insert into DemoTable values(100,'Bob');
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values(101,'Chris');
Query OK, 1 row affected (0.19 sec)
mysql> insert into DemoTable values(102,'David');
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values(103,'Sam');
Query OK, 1 row affected (0.08 sec)
mysql> insert into DemoTable values(104,'Carol');
Query OK, 1 row affected (0.10 sec)

使用 select 语句显示表中的所有记录 -

mysql> select *from DemoTable;

这将产生以下输出 -

+------+-------+
| Id   | Name  |
+------+-------+
| 100  | Bob   |
| 101  | Chris |
| 102  | David |
| 103  | Sam   |
| 104  | Carol |
+------+-------+
5 rows in set (0.00 sec)

以下是仅从表中删除有限行数据的查询 -

mysql> delete from DemoTable
   -> where Id > 102;
Query OK, 2 rows affected (0.10 sec)

让我们再次检查表记录 -

mysql> select *from DemoTable;

这将产生以下输出 -

+------+-------+
| Id   | Name  |
+------+-------+
| 100  | Bob   |
| 101  | Chris |
| 102  | David |
+------+-------+
3 rows in set (0.00 sec)

更新时间: 18-Dec-2019

389 量视图

开启您的职业生涯

完成课程,获得认证

开始
广告
© . All rights reserved.