Postgresql 将 null 变成零

发布于 2024-12-05 02:33:24 字数 337 浏览 1 评论 0原文

可能的重复:
SELECT max(x) 返回 null ;我怎样才能让它返回0?

当我执行

select max(column) from mytable;

并且我的表没有行时,它返回null。如何修改此 select 语句使其返回零?

Possible Duplicate:
SELECT max(x) is returning null; how can I make it return 0?

When I execute

select max(column) from mytable;

and my table has no rows, it returns null. How can I amend this select statement so it will return zero?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

明媚如初 2024-12-12 02:33:24
select coalesce(max(column), 0) from mytable; 
select coalesce(max(column), 0) from mytable; 
夏九 2024-12-12 02:33:24

尝试:

SELECT coalesce(max(column), 0) myalias FROM mytable;

Try:

SELECT coalesce(max(column), 0) myalias FROM mytable;
豆芽 2024-12-12 02:33:24

这些有效吗?

  • 从栏选择合并(max(foo),0)
    
  • coalesce((从 bar 中选择 max(foo)),0)
    

Do either of these work?

  • select coalesce(max(foo),0) from bar
    
  • coalesce((select max(foo) from bar),0)
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文