mysql设置sql最大时长

mysql 5.6 及以后,有语句执行超时时间变量,用于在服务端对 select 语句进行超时时间限制;
mysql 5.6 中,名为: max_statement_time (毫秒) (mariadb可以使用此命令)
mysql 5.7 以后,改成: max_execution_time (毫秒)

超过这个时间,mysql 就终止 select 语句的执行,客户端抛异常:
1907: Query execution was interrupted, max_execution_time exceeded.

show variables  like 'max_execution_time';
 
set global max_execution_time=30;

你可能感兴趣的:(mysql设置sql最大时长)