I'm not quite sure if I'm doing this right, or if there is a way to do this. I'm have the column "name" displaying in alphabetically order, however I'm still trying to get "sales" column to display by DESC. So the last job they submitted is seen first.
<?php
$result =mysql_query("SELECT * FROM Reports ORDER BY name ASC AND sale DESC") or die(mysql_error());
?>
I've tried combing sql_queries, and WHERE clause, but I can't seem to figure out the correct syntax to do. so If someone could point me in the right direction.
Thanks in advance!