SpiderFlight
Programmer
I don't write many queries so I'm not sure if this join will do what I want. I have 2 tables on different databases. Each table contains hospital specific data. I want to combine the 2 tables and report off this one table. My dba will not allow a new table to be created containing the data from both tables. The tables have similar columns but not identical so a UNION query won't work. What would the join look like if I was to create a view?
FROM HospA.dbo.charges FULL OUTER JOIN
HospB ON HospB.case_mix_id <> HospB.case_mix_id
Will this join, in essence make the tables appear as one?
Thank you in advance.
FROM HospA.dbo.charges FULL OUTER JOIN
HospB ON HospB.case_mix_id <> HospB.case_mix_id
Will this join, in essence make the tables appear as one?
Thank you in advance.