Advertisement
reenadak

2013-10-13_mysql_using command line

Oct 13th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.14 KB | None | 0 0
  1. -- line below is for connection
  2. mysql -u root -p -h 127.0.0.1
  3.  
  4. -- To list all databases.
  5. show databases;
  6.  
  7. use database_name;
  8. show tables;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement