欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Oracle 中 decode 对一个字段的值进行判断后 更改另一个字段值

程序员文章站 2022-07-05 14:47:42
...

 当class ='13' 的时候 如果 name ='张三' 时 令 age=15

select decode(name,'张三',15,age) 
from student 
where caless = '13' order by name desc

 

相关标签: oracle decode