Skip to content
Advertisement

Get word frequency rankings of words in postgreSQL and filter by label

I have a postgreSQL database with the following table:

The following data is inserted:

I have the following query that fetches the frequency of each word in the table and ranks them, grouping by day:

Result:

I would like to group by the label so that the new query shows the word rankings filtered by label like so:

I’ve tried adding a WHERE clause to filter by predictions:

But I get the error column "label" does not exist.

How would I go about fixing this?

Advertisement

Answer

Your new result shows you want to count and rank per day, word and label. This means you just have to add label to your GROUP BY and PARTITION BY clauses (and probably to ORDER BY, too).

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement