If I have this line in a PHP page:
$result = mysql_query("SELECT value1,value2,value3 FROM $table ORDER BY value1");
Is there a way to merge the content of the 3 columns into one (let's call it value4) and order the results with that new value?
somebody told me about a "concat" function but I'm not sure about it

