db2 export 怎么把字段里的null值替换为空字符串
时间: 2023-06-08 08:03:58 浏览: 314
db2字符串类型的常用函数
可以在导出数据时使用以下语法,将字段里的 null 值替换为空字符串:
```
db2 export to <output_file> of del modified by coldel, select coalesce(col1, '') as col1, coalesce(col2, '') as col2, … from <table_name>
```
其中,coalesce 函数用于将 null 值替换为指定的值,上述语句中将 null 替换为空字符串。同时,使用 modified by coldel 指定输出文件的字段分隔符,默认为逗号。
阅读全文