I need to get a data from a mysql database. I have the below like:
set @filename=concat('/home/reports/',current_timestamp(),'.csv');
set @querys=concat("select * from tablename limit 10 ",
"into outfile ? fields terminated by ',';");
prepare s1 from @querys;
execute s1 using @filename;
deallocate prepare s1;
And I got this error: Error Code: 1064. 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 '? fields terminated by ','' at line 1
Do you know why?
I highly doubt that MySQL supports passing the query string as a parameter in the
insert into outfilesyntax. You would need to do string concatenation instead. It would also be a good idea to quote the file name, since it will contain blank characters.