Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

In-Line Select Sub-Query in Access...

Status
Not open for further replies.

MikeDamone

Programmer
Oct 21, 2003
106
US
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'
 
Why do you think it should be different in access ?
 
OK, access insists on AS:
(select job from emp_jobs where id = person.id) [!]AS[/!] job

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top