Posts by JTS • 11 points
2 posts
-
1
votes1
answer44
viewsA: How to select everything but top X in MYSQL
I found a similar question in English. I decided as follows following what was written. SELECT * FROM Schedules WHERE Schedule_id NOT IN ( SELECT Schedule_id FROM ( SELECT Schedule_id FROM Schedules…
-
0
votes1
answer44
viewsQ: How to select everything but top X in MYSQL
I’m scheduling a personal scheduling project and don’t know how to implement a SELECT in all tasks other than the top 5 of the day. How do I implement this in mysql? For example, I have a SELECT *…