Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

MySQL tutorial:

https://www.tutorialspoint.com/mysql/index.htm

1- log into the mysql database

2- show database / use database

3- list the table / select a table

3- list the user


mysql -u root -psecret radius


mysql> show database;


mysql> use radius;
Database changed


mysql> show tables;


mysql> desc userinfo;


SELECT * from userinfo;

SELECT id, username from userinfo;




  • No labels