Đã tìm ra nó cần sử dụng cast(null as datatype)
create table mytable as
select
field_a,
cast(null as varchar(1)) brand_new_field
from anothertable;
Một số thông tin khác tại đây .
Đã tìm ra nó cần sử dụng cast(null as datatype)
create table mytable as
select
field_a,
cast(null as varchar(1)) brand_new_field
from anothertable;
Một số thông tin khác tại đây .