hi frnds, the following is my db schema
service_no:AUTONUMBER
name:Text
day:Date/Time
My Autonumber field is of the format SExxx (ie SE000,SE001,SE002...)
the following query doesn't work
select * from table_name where service_no=SE002
but this works ..
select * from table_name where...