Skip to content

Instantly share code, notes, and snippets.

@dshafik
Created April 22, 2011 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dshafik/936992 to your computer and use it in GitHub Desktop.
Save dshafik/936992 to your computer and use it in GitHub Desktop.
mysql> CREATE TEMPORARY TABLE search_documents_test ( `id` int(10) );
Query OK, 0 rows affected (0.02 sec)
mysql> SHOW CREATE TABLE search_documents_test;
+-----------------------+---------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+-----------------------+---------------------------------------------------------------------------------------------------------------------+
| search_documents_test | CREATE TEMPORARY TABLE `search_documents_test` (
`id` int(10) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 |
+-----------------------+---------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment