AV1611 Posted June 29, 2006 Share Posted June 29, 2006 If I do a query that create a temporary table like this$result = mysql_query("create temporary table SILK (Selectproducts.COMP_COUNT,runtimes.HOURS,runtimes.QTY,runtimes.DATE_RUN,runtimes.LINE,runtimes.PN,runtimes.SIDEFrom products Inner Join runtimes ON runtimes.PN = products.PART_NO)");then I do another query that creates a second temporary table ,can you have more than one temporary table? or does it destroy the old one? Quote Link to comment https://forums.phpfreaks.com/topic/13213-temporary-tables/ Share on other sites More sharing options...
wildteen88 Posted June 29, 2006 Share Posted June 29, 2006 From looking at [a href=\"http://dev.mysql.com/doc/refman/5.0/en/temporary-table-problems.html\" target=\"_blank\"]Temporay Table lmitations[/a] over at mysql.com it looks you can create multiple temporay tables. Quote Link to comment https://forums.phpfreaks.com/topic/13213-temporary-tables/#findComment-50899 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.