Reputation: 1944
Is it possible to specify the Engine when using CREATE TEMPORARY TABLE xxx AS (SELECT ...) ? I tried but this fails:
CREATE TEMPORARY TABLE test AS (
SELECT myCol
FROM myTable
) ENGINE = MEMORY;
I've searched for an example of this but to no avail, using AS. :(
Upvotes: 0
Views: 236