DB2 is strongly typed, so you need to tell DB2 what kind of column your NULL is:
select
...
cast(NULL as int) as column_A,
cast(NULL as varchar(128)) as column_B,
...
FROM
...
DB2 is strongly typed, so you need to tell DB2 what kind of column your NULL is:
select
...
cast(NULL as int) as column_A,
cast(NULL as varchar(128)) as column_B,
...
FROM
...