postgresql 如何给空字段设置默认值
在使用postgreSQL时数据库中有空值的字段希望给一个固定默认值
里面user表的password字段有空值的情况希望sql中显示123456
使用coalesce函数
使用方法:
select coalesce(password,'123') from tb_user
表数据如下
在使用数值类型例如integer时如何有空值的情况也可以使用coalesce(‘字段名’,'默认值') 函数
来源://作者:/更新时间:2016-03-30
顶
踩
相关文章:
- postgresql 数据库创建唯一索引_删除索引的方法
- postgresql 数据库排序混乱不是按照拼音首字母排序
- 解决 Cause: org.postgresql.util.PSQLException: ERR
- 解决 Error updating database. Cause: org.postgres
- 解决 Cause: org.postgresql.util.PSQLException: ERR
- mybatis postgresql insert 添加数据返回主键值
- 解决 org.postgresql.util.PSQLException: 错误: INSE
- postgresql 创建序列方法_postgresql create sequence
- PostgreSQL 替换字符串方法及字符串操作函数
- postgresql 日期计算,时间加减 方法