2009-07-17 04:31 AM
2009-07-17 04:45 AM
IN Determines if a given value matches any value in a subquery or a list. If the value of <test expression> is equal to any <expression> from the comma-separated list, the result value is TRUE. Otherwise, the result value is FALSE. Using NOT IN negates the returned value. Syntax <test expression> [ NOT ] IN ( <expression> ... ) Arguments test expression Any valid Graphisoft SQL numeric expression. expression... A list of expressions to test for a match. All expressions must be of the same type as <test expression>. Result Types BOOLIf you are on Windows and use the ODBC driver, then you can use MS Access and 'normal' SQL, including nested queries, inner joins or whatever, to get exactly what you need.
2009-07-17 04:59 AM
2009-07-17 05:08 AM
2009-07-17 06:36 AM
2009-07-17 06:05 PM
select userid,height from walls where userid in ('Wall Ext-003','Wall Ext-004')I'm afraid you may have to use trial and error, working from simple to complex. As mentioned, you may very well need to use an external database to access things via ODBC so that you can nest your queries and get exactly what you want.
2009-07-20 04:25 AM