MySQL
Log In
mysql -u root -p -P 3306 -h <IP>
Databases
show databases;
use database1;
Tables
show tables;
Info
select * from table1;
Update Info
update users set adm="yes" where username="exampleuser";
Last updated
Was this helpful?