postgresql常用实例分享
程序员文章站
2022-03-09 21:33:09
1.保留小数点。保留小数点,round运算时,必须加 ::numeric
select round(b.num::numeric/b.counts::numeric,4)
2.转日期格式
t...
1.保留小数点。保留小数点,round运算时,必须加 ::numeric
select round(b.num::numeric/b.counts::numeric,4)
2.转日期格式
to_char(t.create_time, 'yyyy')
3.选择语句
case when use_money is not null and download_count is null then -1 else round(use_money::numeric/download_count::numeric,2) end
case when use_money is not null then -1 else xx end
上一篇: Android编程之实现GPS定位
下一篇: jsp编写当前在线人数统计代码实例