I think I remember doing this before with earlier versions of CF but I'm having trouble querying an Access query with MX. I want to do this because I'm trying to offload some aggregate processing to the database hoping to make the app more efficient. Isn't the syntax the same to query a query in Access as it is to query a table? This is what I used that won't work.
<cfquery name="getData" datasource="MDS" dbtype="ODBC">
SELECT *
FROM MyAccessQuery_NotATable
</cfquery>
<cfquery name="getData" datasource="MDS" dbtype="ODBC">
SELECT *
FROM MyAccessQuery_NotATable
</cfquery>