views:

23

answers:

1

MySQL doesn't allow temp table when creating a view, is there any work around for that?

A: 

Maybe you could use a permanent table with ENGINE=MEMORY as a halfway house. Just remember to truncate it when you are done working with it.

Hammerite