MySQL tutorial:
https://www.tutorialspoint.com/mysql/index.htm
1- log into the mysql database
...
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;