sql - Full Outer Join - Save Output in new table -
i have 2 tables i'm trying join one.
i ran following code successfully.
select * combined left outer join isbn_price on combined.isbn13 = isbn_price.isbn;
my question how save output new table? or append joined columns isbn_price onto combined table?
thanks!
to create table on fly:
select * newtable combined left outer join isbn_price on combined.isbn13 = isbn_price.isbn;
Comments
Post a Comment