Skip to content
Advertisement

Order by match on multiple columns (and with mutiple conditions)

My issue is I want to order by match on a specific search string.

This is the logic:

If the title, author or isbn are the same as search, show these books first

If the title, author or isbn are the like %search, show these books second

If the title, author or isbn are the like search%, show these books third

I’m using SQLAlchemy, Flask and PostgreSQL

This is the code:

This is the error I’m getting:

column “books.title” must appear in the GROUP BY clause or be used in an aggregate function

Advertisement

Answer

You are mixing string aggregation (which is what string_agg() does) and string concatenation (which is what you want). So Postgres understands your query as an aggregation one, and bad things happen. You can use || to concatenate strings.

Also, you should fix your where clause so it really does pattern matching (as of now, it is looking for exact matches on the parameter) – ilike comes handy to avoid lower() on both operands.

Finally, you can use booleans in the order by clause so shorten the query.

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