Answers for "create temporary table mysql"

SQL
0

create temporary table in mysql

CREATE TEMPORARY TABLE new_tbl SELECT * FROM orig_tbl LIMIT 0;
Posted by: Guest on January-20-2021
0

how to view created temporary tables in mysql

SHOW TABLES FROM INFORMATION_SCHEMA LIKE 'INNODB_TEMP%';
Posted by: Guest on January-20-2021

Code answers related to "create temporary table mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language