select Coalesce(Lower(current_schema()),'N/A'),
current_schema()是获取当前模式名,
Coalesce()当第一个参数不为null时返回第一个参数值,当第一个参数为null时返回第二个参数值。