SQL to ACCESS query

Mike Hughes

Registered User.
Local time
Today, 14:19
Joined
Mar 23, 2002
Messages
493
Can someone show me how to convert this SQL query to an ACCESS query? - I have tried several time with no luck. Thanks! Mike

Select COUNT (b.case_id),
sum(a.amt_to_distribute) Held_amt,
iv_d_do_code,
cd_reason_status From vrcth a, vcase b
Where A.Cd_Status_Receipt = 'H'
And A.Dt_Distribute = '01-JAN-0001'
And A.Dt_End_Validity = '31-DEC-9999'
AND Not Exists (Select 1 from vrcth k
where a.dt_batch = k.dt_batch
ANd a.no_batch = k.no_batch
And a.cd_source_batch = k.cd_source_batch
And a.seq_receipt = k.seq_receipt
And k.ind_backout = 'Y'
And k.dt_end_validity = '31-DEC-9999')
And ((trim(A.Id_Case) IS NOT NULL AND A.Id_case = b.case_id )
Or
( trim(A.Id_Case) IS NULL
ANd b.case_id = (Select Min(y.case_id) from vcase Y, vcmem Z
Where A.Id_Payor = z.member_id
And z.relation_code IN ('A','P')
And z.case_id = y.case_id )
))
group by iv_d_do_code,
cd_reason_status
order by iv_d_do_code;
 
Hello:
Open up a new query in design view. Then on the menu select View, SQL view. Paste your SQL statement in here. Then on the menu select View, Design View. If this is not one of the special queries, this will convert.

Regards
Mark
 

Users who are viewing this thread

Back
Top Bottom