Sorting Field Dropdown

3 posts by 2 authors in: Forums > CMS Builder
Last Post: August 29, 2013   (RSS)

By gregThomas - August 29, 2013

Hi,

You're very close! I think you need to use order by instead:

SELECT num, yacht_name
FROM `<?php echo $TABLE_PREFIX?>yachts`
ORDER BY yacht_name ASC

ORDER BY is the statement that is used to decide which column should be used to sort results, and if the results should be ascending or descending.

Thanks!

Greg

Greg Thomas







PHP Programmer - interactivetools.com

By theclicklab - August 29, 2013

Thanks Greg, that works :)