here is a trival database that illustrates my question:
create database dbCarLot
go
Use dbCarLot
go
create table CarInventory
(cinv_Id int primary key, cinv_Make varchar(15) not null, cinv_Model varchar(12) not null, cinv_AquiredDate date not null)
insert into CarInventory
values(1, 'Ford', 'F-150', '09/05/2009), (2, 'Ford', 'Mustang', '09/05/2009'), (3, 'Chevy', 'Camaro', '10/20/2002')
select *
from CarInventory
where cinv_AquiredDate Like '%-09-%'
Results yield the two records who have '09' in the first part of Date field, i.e. the two Fords but not the Chevy.
Went right to the field with date data to get the info we were looking for. That is what I wanted to do in Access.
Sorry that I cannot show result set, don't know how to paste screen shots into this forum. you can run the script above and get your own result set to verify.
Jeff