Previously I discussed about using OPENROWSET. If the database is from the server, there is an easier way of joining the tables. Below is the example.
select top 1 case_id,cso_no from otherdb.dbo.tbl_case
inner join
delivery.dbo.cdrecord on case_id =cso_no
Notice that the database name was included with the owner `dbo` indicated also. However, use this method sparingly. It is not efficient to perform queries over different databases. Moreover, you have to make sure that the user rights are exactly the same unless you are, of course, dbo.
No comments:
Post a Comment