R Rene Wennekes Feb 23, 2005 #1 I want to make a querie with a criteria to filter out only the records with text what begins with "192". How do I do that? Rene
I want to make a querie with a criteria to filter out only the records with text what begins with "192". How do I do that? Rene
G Guest Feb 23, 2005 #2 Like this: SELECT field1, field2, field3 FROM yourtable WHERE field1 LIKE '192%'; HTH Rico
F fredg Feb 23, 2005 #3 I want to make a querie with a criteria to filter out only the records with text what begins with "192". How do I do that? Rene Click to expand... Where Left([YourTable].[FieldName],3) = "192"
I want to make a querie with a criteria to filter out only the records with text what begins with "192". How do I do that? Rene Click to expand... Where Left([YourTable].[FieldName],3) = "192"