aquaballoon

MySQL commands

May 8th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.16 KB | None | 0 0
  1. $ mysql -u root -p
  2.  
  3. create database mydatabase;
  4. use mydatabase;
  5. create table mytable(_id int not null primary key auto_increment, name text, email text);
Advertisement
Add Comment
Please, Sign In to add comment