Answers for "mariadb show last queries"

0

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;
Posted by: Guest on June-26-2021

Browse Popular Code Answers by Language