update.md 946 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 更新数据

现有 employee 表如下:

fix bug  
张志晨 已提交
5
```sql
M
Mars Liu 已提交
6 7 8
create table employee
(
    id serial primary key,
M
Mars Liu 已提交
9 10 11
    name varchar(64),
    dept varchar(64),
    salary decimal(12, 4)
M
Mars Liu 已提交
12 13 14 15 16
);
```

Joe 希望修改销售部(dept 字段为 sale)员工 Dora Muk 的工资,将其增加 1000。正确的修改语句是:

M
Mars Liu 已提交
17 18
<hr/>

F
feilong 已提交
19
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill){target="_blank"}。
F
feilong 已提交
20

F
feilong 已提交
21 22
* `show databases;` 列出所有数据库
* `show tables;` 列出所有表
M
Mars Liu 已提交
23

M
Mars Liu 已提交
24 25
## 答案

fix bug  
张志晨 已提交
26
```sql
M
Mars Liu 已提交
27 28 29 30 31 32 33
update employee set salary = salary + 1000 where dept = 'sale' and name = 'Dora Muk';
```

## 选项

### 过滤条件不严谨

fix bug  
张志晨 已提交
34
```sql
M
Mars Liu 已提交
35 36 37 38 39 40
update employee set salary = salary + 1000 where name = 'Dora Muk';
```


### 缺少过滤条件

fix bug  
张志晨 已提交
41
```sql
M
Mars Liu 已提交
42 43 44 45 46
update employee set salary = salary + 1000;
```

### 错误的赋值语句

fix bug  
张志晨 已提交
47
```sql
M
Mars Liu 已提交
48 49 50
update employee set salary += 1000;
```