I have a SQL code that is pulling information from a database. Here's the code:
$info = "SELECT field_5, record_meta_keywords
FROM cms_custom_database_1
WHERE field_5 > ''
GROUP BY field_5
ORDER BY field_5
DESC LIMIT 10";
The problem is that field_5 has duplicate entries. For example, there are two 868's in that field, but the output is only showing one and not the other. How can I alter this to display all entries and not just one of each number?