Is the method in MySQL to set in SQL script dynamic log file name?
e.g in Oracle PL/SQL
set define on
column sdate new_value sdate
select to_char(sysdate,'YYYY.MM.DD_HH.MI') sdate from dual;
spool 'logs/install_&sdate..log';
e.g. in PG/SQL
\o ./logs/install_`date +"%Y-%m-%d_%H%M"`.log
but I cant find similar in MySQL
\T ??????