Here’s a query i constructed:
SELECT DISTINCT * FROM tagResourceName a INNER JOIN
tagResource b ON a.tagID=b.tagID
However, the result is returning values which are not distinct. e.g.
Tag Name | Tag ID
pink | 13
pink | 13
zoo | 16
Why is that? I’m running this on an Android app btw. Thanks!
1 Answer