Skip to main content

Mysql

MySql

Commands:

mysql
show databases;
use <database>;
show tables;
select * from <table> limit 10;
grant all privileges on *.* to 'root'@'%' with grant option;