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

Popular posts from this blog

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -