1: select decode(cloumn_name ,null,'没有数据,为空!!',cloumn) from table_name;
2:select case when column is null then 'tips' else column end from table;
3:select nvl(字段名,提示信息) from 表名
1: select decode(cloumn_name ,null,'没有数据,为空!!',cloumn) from table_name;
2:select case when column is null then 'tips' else column end from table;
3:select nvl(字段名,提示信息) from 表名