Wednesday, October 19, 2016

MYSQL Notes

Changing Mysql root password
 mysqladmin -u root -p password  

Logging to mysql and use a database
 mysql -u root -p ;
  

Some commands
 show databases;  
 use <database_name>;  
 use tables;  
 select * from <table_name>;  

No comments:

Post a Comment