The information in this article applies to:
SUMMARY
Novice: Requires knowledge of the user interface on single-user computers.
MORE INFORMATION
If you have a table with one column called Col_Name and the following four
records
Foos and you create a query based on the table with the criteria ="Foos*" your query will return: Foos* But, if your criteria is Like "Foos*" your query will return the following four records: Foos The SQL statements built by Microsoft Access for these queries are as follows. The SQL statement using Like is: SELECT DISTINCTROW tablename.Col_Name The SQL statement using = is: SELECT DISTINCTROW tablename.Col_Name
Keywords : kbusage QryOthr |
Last Reviewed: March 10, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |