MikeDamone
Programmer
Does anyone know who to do an in-line select query in Access. In oracle I know hoe to do this but not in Access. For example in Oracle I can do this. Thanks for any help!
select
last_name,
first_name,
(select job from emp_jobs where id = person.id) job,
address
From
Person
where
last_name = 'Smith'
select
last_name,
first_name,
(select job from emp_jobs where id = person.id) job,
address
From
Person
where
last_name = 'Smith'