Skip to content

Tag: mysql

Keyset pagination with WHERE & HAVING

I ran into a question that I can’t find a solution yet for keyset pagination: Suppose we have this query: How should we do keyset pagination on that? For a.number only, we can have WHERE a.number < ?; For rating only, we do HAVING rating < ?; If there’re two conditions for where, we can have…

Sort MySQL query in PHP

I’m trying to sort different users ‘points’ by descending order (highest first). But at the moment the query is being returned in order of the user’s ID (order they appear in the database). I’m not sure what is wrong with my code? The user can be in multiple leagues, so it first …

SQL query with Highest value with tie

I am trying to write a query that lists students who have earned the highest total credit in each department. I have to also include tied students in the result. The query should return relation with department name, student name and total credit they earned. It is giving errors and I don’t know how to …

Constant field has to be set MySQL

Attribute ‘Territory program’ is a constant field and has to be set to ‘Territory and Quota Program’ constant in result set, I don’t want to add a new column in table, so how can I do that in my select statement if possible? Also I have a column Status… not distributed &#82…

Sum unequal and removing duplicates from SQL query results

My base query: It can get me these outputs: Output example: Obs: There is a constraint on (id, on_date) meaning there can always be only one record of a project production on a specific date. Duplicate records, that have the same id, and exist in both dates and have different production values (wanted) Single…