I use 3 separate scripts to determine a users USERID and ACCESS.
There are 3 tables, all with only a USERID and ACCESS field. Name the Tables A, B, C.
Problem is, nobody will have all 3, sometimes 2, but mostly only 1. I tried to join the scripts, but they would come up blank...I assume because of the absence of data on 1 or 2 of the tables.
Is there a way to run a merged script that would show which ACCESS members have? The USERID's would match on all 3 tables.
Here is what I tried:
select * from A, B, C where A.OPRID=B.OPRID and A.OPRID=C.OPRID AND A.OPRID = '&USERID';
Please be kind, I am a novice, and I tried finding this on here, but couldn't find anything that made any sense to me......