I have an existing table called temp_09.jwn. I would like to add a new column called cobrand_bank_id. Is there a way where I can skip the ALTER TABLE step below and just directly write the insert into statement?
ALTER TABLE temp_09.jwn
ADD cobrand_bank_id int;
insert into temp_09.JWN(qqyy, cobrand_bank_id, sum)