mysql> create database if not exists test;
Query OK, 0 rows affected, 1 warning (0.02 sec)
mysql> use test;
Database changed
mysql> CREATE TEMPORARY TABLE x
-> (z int) engine=MYISAM;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT * FROM test.x;
Empty set (0.00 sec)
mysql> SELECT *
-> FROM INFORMATION_SCHEMA.TABLES
-> WHERE TABLE_NAME='x';
Empty set (0.01 sec)