hive> select concat('status_cd',null) ;
OK
NULL
Time taken: 0.078 seconds, Fetched: 1 row(s)
hive> select concat('status_cd','1') ;
OK
status_cd1
Time taken: 2.501 seconds, Fetched: 1 row(s)
hive>
hive> select concat(null,'1')
> ;
OK
NULL
Time taken: 0.068 seconds, Fetched: 1 row(s)
hive>
版本 Hive 2.0.0-SNAPSHOT