Select the specific data from database.

veasna

Registered User.
Local time
Yesterday, 23:48
Joined
Dec 21, 2009
Messages
18
In table "Product" i want to write a query to select data from field "Item" where the value of field "Item" equal to "Gin".

I am a fresh in Ms Access. Could you tell me to write the code to solve this problem?
Thanks,
 
In table "Product" i want to write a query to select data from field "Item" where the value of field "Item" equal to "Gin".

I am a fresh in Ms Access. Could you tell me to write the code to solve this problem?
Thanks,

PHP:
SELECT [item] from product

WHERE [item] = "gin";
read up on SQL. this is the simplest of queries in any database setting.
 
Could you please give me the full VBA code in Access to do with this?
 

Users who are viewing this thread

Back
Top Bottom