hey, i`m just wondering what I should do to this query to have it not return any duplicate items.
SELECT tag FROM tags WHERE MATCH (tag)
AGAINST ('$sql_items' IN BOOLEAN MODE) LIMIT 5
Ive tried a bunch of different stuff but I cant seem to get it to work 🙁 I`m using php
DISTINCTis your friend 🙂 (ORGROUP BY)