Hi:
If you are on the same server, running dbaccess from database a, adb, the select looks like this:
# tested
select a.item, a.desc, b.plnr, b.user from ItemNbr a, adb:ItemDetail b where a.item = b.item
where adb is the other database. If the database is on a different server:
# untested
select a.item, a.desc, b.plnr, b.user from ItemNbr a, adb@differentserver:ItemDetail b where a.item = b.item
Regards,
Ed