MariaDB/MySQL notes

## Get list of tables
show tables;
## View contents of a tables
describe table;
## Make tables readable
query \G;
## Limit number of returned entries
query limit 1;