Please help! I am trying to build an ASP application based on existing Access database. I have make-table query that I am trying to run. I found out that I cannot directly run it, so I copied the SQL code into ASP. The problem is this query is based on other queries that use parameters entered by user.
How do I write -- syntax ? my parameters? The HAVING clause is giving error.
To run select query with parameters is straight forward :
strQuery = "query1 '"¶m1&"','"¶m2&"'
RS.open strQuery, MyConn, 0,4
Thanks in advance.