The WHERE clause in SQL contains a list of
search conditions. Each search condition is made up of one or more
predicates. And, a predicate is an expression which evaluates to TRUE, FALSE, or UNKNOWN. The only way to generate this boolean value is by evaluating an expression. Thus in your situation you'll need to provide an expression which always evaluates to TRUE, such as:
Select * from myTable Where 1 = 1
The fact that Access allows the string 'True' to be interpreted as a boolean value is interesting, but nobody ever said that Access was truly an SQL standard implementation. Far from it, in fact...
Jeff Mason
Custom Apps, Inc.
www.custom-apps.com