Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Select
Message
From
22/06/1999 15:01:23
 
 
To
22/06/1999 14:25:10
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00232621
Message ID:
00232639
Views:
15
A little more definition would be helpful but here's a shot in the dark.
Try braking the query into two subqueries, like:

select pat_id,max(vis_date) as lastvisit from sometable group by 1 into cursor temp
select somefields from anothertable where pat_id in (select pat_id from temp)

If you post your tables structures and the SQL syntax that isn't working, I may be able to provide a more helpful answer.

Good Luck.

>Does anyone know how I can implement IIF statements in an SQL. I am running a SQL select statement that looks for the patient id but the problem arises when the patient has two different visit dates to the doctor. but I only need the latest date.
>
>Jeff T.
Previous
Reply
Map
View

Click here to load this message in the networking platform