Curtis360it
IS-IT--Management
If I have two tables with zero association, can I do a SELECT query to pull all rows from both tables?
Example:
SELECT *
FROM House,Apartment
Example:
SELECT *
FROM House,Apartment
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
use pubs
go
select * from authors a
full outer join publishers p on a.au_id = p.pub_id
use pubs
go
select * from authors ,publishers