mariadb show last queries
//First you need to turn on the MariaDB query log, which you can do it by executing the following queries
set global log_output = 'table';
set global general_log = 'on';
//Next you can see all the executed queries
select * from mysql.general_log;