Question: How to I
concatenate two columns together?
I want to join two columns together.Answer:
I would use create table as select (CTAS) to concatenate two
columns together:
create table
newtab
as
select
col1||col2 newcol
from
oldtab;
rename oldtab to junktab;
rename newtab to oldtab.