Guest User

Untitled

a guest
Jul 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. 1. 登陆
  2. ```
  3. $ mysql -u username -p
  4. ```
  5.  
  6. 2. 登陆远程
  7. ```
  8. $ mysql -h ip -u username -p
  9. ```
  10.  
  11. 3. 操作
  12. ```
  13. show databases;
  14.  
  15. use dbname;
  16.  
  17. show tables;
  18.  
  19. describe tablename;
  20. ```
Add Comment
Please, Sign In to add comment