A
Astitva
I got a table called MakeModel which basically stores the make and model of a
car.
And another table called Store that stores the car that are in stock, it
also containing the Make and Model fields.
In the Stores Table
After entering the Make of the car in the store table I want model section
to be a lookup wizard which takes the value from the Make section matches it
with the Make in the MakeModel table and displays the availabe model on that
particular Make from the MakeModel table.
SELECT Model
FROM tblMakeModel
WHERE Make=Store.Make;
I have tried to fetch data for the lookup wizard using this query but it
doesn't work so Is it possible to do so?
car.
And another table called Store that stores the car that are in stock, it
also containing the Make and Model fields.
In the Stores Table
After entering the Make of the car in the store table I want model section
to be a lookup wizard which takes the value from the Make section matches it
with the Make in the MakeModel table and displays the availabe model on that
particular Make from the MakeModel table.
SELECT Model
FROM tblMakeModel
WHERE Make=Store.Make;
I have tried to fetch data for the lookup wizard using this query but it
doesn't work so Is it possible to do so?