--decode条件判断函数 ,,,,,) from dual --需求:不通过连表查询,显示业主类型名称列的值 ,,,'商业','其他') from t_owners --case when then写法 select name,( case ownertypeid then '居民' then '事业单位' then '商业' else '其他' end )from t_owners --case when then 相对灵活的写法 select name,( case then '居民'…