drop_function.md 664 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 删除函数

Joe 将计税逻辑放到了 sp_idt 中,现在不需要 individual_income_tax 函数了,他应该怎样删除这个函数?

M
Mars Liu 已提交
5 6
<hr/>

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

F
feilong 已提交
9 10
* `show databases;` 列出所有数据库
* `show tables;` 列出所有表
M
Mars Liu 已提交
11

M
Mars Liu 已提交
12 13
## 答案

fix bug  
张志晨 已提交
14
```sql
M
Mars Liu 已提交
15 16 17 18 19 20 21
drop function individual_income_tax;
```

## 选项

### A

fix bug  
张志晨 已提交
22
```sql
M
Mars Liu 已提交
23 24 25 26 27
delete function individual_income_tax;
```

### B

fix bug  
张志晨 已提交
28
```sql
M
Mars Liu 已提交
29 30 31 32 33 34
remove function individual_income_tax;
```


### C

fix bug  
张志晨 已提交
35
```sql
M
Mars Liu 已提交
36 37 38
drop function individual_income_tax(decimal(12, 4));
```