I have a table with two fields, TAG_ID and TAG_DESC
is my primary tag_ id.
I'm looking for a query that displays every TAG_DESC and it displays the amount of time that is next to it.
Thank you,
SELECT TAG_DESC as a 'description', COUNT (TAG_DESC)
Comments
Post a Comment