I am trying to create a simple stored procedure in phpmyadmin.
But the page is taking for long time and reaches the maximum execution time which results in an error.
This is the table structure:
id usr_id message
1 1 dfsfa
2 2 fd
3 1 fsdfsdf
4 1 fsd
5 1 fsdvxc
This is the store procedure query I am trying to execute:
delimiter //
create procedure myProc()
begin
select message from consecutive;
end //
delimiter ;
This is the error I am getting:
Fatal error: Maximum execution time of 300 seconds exceeded in
D:\wamp\apps\phpmyadmin3.2.0.1\libraries\import\sql.php on line 119
Try this: