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

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -