Guest User

Untitled

a guest
Oct 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. CREATE DATABASE `php_mysqltest`;
  2. CREATE TABLE `test` (
  3. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  4. `test_int` int(11) DEFAULT NULL,
  5. `test_float` float DEFAULT NULL,
  6. `test_string` varchar(40) DEFAULT NULL,
  7. PRIMARY KEY (`id`)
  8. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Add Comment
Please, Sign In to add comment