A persistent temporary table?
问题 Right now, I'm using temporary tables in my select queries to speed up the execution. They are created every time I execute the query. In my current situation, the tables are updated with new data only once per day, so I was thinking that instead of using MySQL's CREATE TEMPORARY TABLE statement, I'll create a persistent table, which in a sense would be temporary since it'd be deleted and recreated after a day. And I could fill it up with the temporary data just after I've finished updating