简体   繁体   中英

MySQL Limit rows by sum

I wish to do a select and limit the number of future and previous events by 20 for example for the newest events first.

future_events and previous_event is a 1 or 0. I could store is as a single column if needed.

I think I'm missing a GROUP BY but my brains not with it this morning. This is what I have:

SELECT name, start_timestamp, end_timestamp, future_event, previous_event, url
FROM events_table
WHERE status != 'draft' AND status != 'canceled'
-- AND SUM(previous_event) <= 20
-- AND SUM(future_event) <= 20
ORDER BY start_timestamp DESC

-- Sample Table
CREATE TABLE IF NOT EXISTS `events_table` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `url` varchar(500) NOT NULL,
  `start_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `end_timestamp` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `status` varchar(10) NOT NULL,
  `future_event` tinyint(1) NOT NULL,
  `previous_event` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- Data
-- Each row is an event with a unique event, time, url etc.

Expected Result

  • Returns max of 40 results in total
  • Max 20 Future events (Where future_event = 1)
  • Max 20 Previous events (Where previous_event = 1)
  • Only shows the most recent events

You can use as per below-

SELECT a.* FROM ((SELECT `name`, start_timestamp, end_timestamp, future_event, previous_event, url
FROM events_table
WHERE STATUS != 'draft' AND STATUS != 'canceled' AND previous_event = 1 
ORDER BY start_timestamp DESC LIMIT 20) 
UNION 
(SELECT `name`, start_timestamp, end_timestamp, future_event, previous_event, url
FROM events_table
WHERE STATUS != 'draft' AND STATUS != 'canceled' AND previous_event = 1 
ORDER BY start_timestamp DESC LIMIT 20)) a ORDER BY start_timestamp DESC;

You can use UNION and do two requests:

((SELECT `name`,
   start_timestamp,
   end_timestamp, 
   future_event, 
   previous_event, url
 FROM events_table
   WHERE STATUS != 'draft' 
   AND STATUS != 'canceled' 
   and future_event = 1
   ORDER BY start_timestamp DESC limit 20)

  UNION

  (SELECT `name`,
          start_timestamp,
          end_timestamp, 
          future_event,
          previous_event,
          url
       FROM events_table
       WHERE STATUS != 'draft'
         AND STATUS != 'canceled'
         and previous_event = 1
       ORDER BY start_timestamp DESC limit 20))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM