陬者
将根据字符查询转换后结果,规则为: ‘A‘转换为 ‘男‘,‘B‘ 转换为 ‘女‘,其他字符转换为‘未知‘,请用一个SQL语句写出
阅读 70
2022-02-01
答:select decode(字符,’A’,’男’,’B’,’女’,’未知’) from dual;
相关推荐
精彩评论(0)