What I am about to ask WORKS with TUNIQUERY for SYBASE. Further, using this syntax in SQLDBX (a SQL editor) works with the Jet Engine BUT it does not work for TUNIQUERY for MS Access.
I have a block of code that;
1. CREATES A TEMPORARY TABLE
Code: Select all
SELECT
t.*
INTO
tmp_table
FROM
Table as t;
Code: Select all
SELECT
tmp.*
FROM
tmp_tabl as tmp;
Code: Select all
DROP TABLE tmp_table;
Thus, no multi-statement SQLs for Access.
Am I missing something? As I said, works for SYBASE and the JET engine quite happily executes this code from any number of SQL editors (e.g. SQLDBX).
Any thoughts appreciated.
Regards
Tony Benci