I have a SQL query that goes like this:
UPDATE User SET flag='Y' WHERE email=(SELECT email FROM Forum WHERE id='$id');
Because the email address can consist of single quotes and some special characters (s*a'{f`%$.=*+~&^#|g!/hd@[66.112.45.34] and vy."(),:;<>[]".VY."vy\\ \@\"vy".unal@str.exe.com are both valid email addresses), I am not sure whether it is necessary to do the subquery separately, escape the output, followed by using it in the main query.
What is your suggestion?
ADD NOTE: $id is a safe number.
UPDATE User, Forum SET User.flag='Y' WHERE User.email=Forum.email AND Forum.email = $id;– Mike B Nov 14 '11 at 13:52