Created
April 22, 2011 16:30
-
-
Save dshafik/936992 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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