In a procedure I'd like to prepare a statement using "?" for a file name and then execute it with "using". But I got an error, because Mysql looks for a quotation mark after "into outfile", or so it seems to me. Is it possible to prepare statement once and then execute it in a loop dynamically changing filename?
That is what I want:
drop PROCEDURE myprocedure;
DELIMITER //
CREATE PROCEDURE myprocedure()
BEGIN
SET @num = 0;
PREPARE STMT FROM 'select *
into outfile ?
from mytable
limit ?, ?';
label1: LOOP
SET @skip = @num;
SET @numrows = @skip + 1000;
IF @skip <= 1000000 THEN
SET @num = @num + 1000;
set @FILENAME = concat('/usr/local/tmp/myfilename',@num,'_temp.tmp');
SELECT @FILENAME, @skip, @numrows;
EXECUTE STMT USING @FILENAME, @skip, @numrows;
ITERATE label1;
END IF;
LEAVE label1;
END LOOP label1;
END //
DELIMITER ;
Calling the procedure I've got:
call myprocedure();
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?
...