Some More Help Needed <_<

fortlansing

New member
Local time
Today, 07:31
Joined
Mar 27, 2007
Messages
5
Problem:

"Display the Client Number, Name, and Balance fields for all the clients where the bookkeeper number is 22 or 24 and the balance is greater than $300.00."

how can I do all the operations @ the same time in one query???

I'me new to Access to I really need to know.

Thanks
 
Problem:

"Display the Client Number, Name, and Balance fields for all the clients where the bookkeeper number is 22 or 24 and the balance is greater than $300.00."

how can I do all the operations @ the same time in one query???

I'me new to Access to I really need to know.

Thanks

SELECT [Client Number], [Name], Balance
FROM tbl_Clients
WHERE ([Bookkeeper number] = 22 OR [Bookkeeper number] = 24) AND Balance >300
 

Users who are viewing this thread

Back
Top Bottom