Přišel jsem na to, že je třeba použít cast(null as datatype)
create table mytable as
select
field_a,
cast(null as varchar(1)) brand_new_field
from anothertable;
Další informace zde .
Přišel jsem na to, že je třeba použít cast(null as datatype)
create table mytable as
select
field_a,
cast(null as varchar(1)) brand_new_field
from anothertable;
Další informace zde .