Enter MySQL script (temp tables/CRUD allowed, 5 sec / 5MB / 20 rows max):
create temporary table photos (id int, caption varchar(100));
1
2
3
4
5
6
7
8
9
insert photos values
(1, 'Brad Pitt is wearing Angelina Jolie"s bikini');
update photos
set caption = replace(caption, '"', '\'');
select * from photos;
No results are displayed if 5 second timeout reached.
(1 rows returned)