MySQL SELECT with URL Decode
问题 Is there a way to perform a MySQL query and have one of the columns in the output directly urldecode, rather than have PHP do it. For example this table 'contacts' would contain, ------------------------------------ |name |email | ------------------------------------ |John Smith|johnsmith%40hotmail.com| ------------------------------------ SELECT * FROM `contacts` Would output, John Smith | johnsmith%40@hotmail.com Is there something along the lines of, SELECT name, urldecode(email) FROM