2021
01-17
01-17
postgresql 实现查询出的数据为空,则设为0的操作
我就废话不多说了~selectname,pricefromodoo_sale;selectname,COALESCE(price,0)fromodoo_sale;补充:postgresql查询某列的最大值时,对查询结果为空做默认为0的处理实例如下:selectcoalesce(max(max_grade),0)fromexam_gradewhereexaminee_id=12345andexam_id=1;查询某个考生在某个指定试卷的最高分,如果没有,则返回0以上为个人经验,希望能给大家一个参考,也希望大家多多支持自学编程网。如有错...
继续阅读 >