I developed an answer that works within SQL Server before realizing you were looking for a mySQL-specific solution. However, I don't have access to a mySQL instance to verify the syntax - I'm sure it's still broken, but really close to what it should be. I'm pretty sure the searchDate concatenation fails and therefore will return unexpected results assuming the syntax is corrected.
This solution assumes your source table is called thoughts, and the important columns are ThoughtID and ThoughtTime. Obviously, you'll want to customize this as necessary:
SQL Server:
DECLARE @Results TABLE (
ThoughtID int,
ThoughtTime datetime)
DECLARE @date date
DECLARE @minResults int
DECLARE @totResults int
SET @minResults = 100
SET @totResults = (SELECT COUNT(1) FROM thougts)
SET @date = CONVERT(CHAR(4), YEAR(GETDATE()), 100) + '-' + CONVERT(CHAR(2), MONTH(GETDATE()),120) + '-01'
IF @totResults <= @minResults
BEGIN
-- Not enough results, grab everything
SELECT ThoughtID, ThoughtTime
FROM thougts
ORDER BY ThoughtTime DESC
END ELSE
BEGIN
WHILE (SELECT COUNT(1) FROM @Results) < @minResults
BEGIN
DELETE FROM @Results -- Can be optimized
SET @date = DATEADD(m, -1, @date)
INSERT INTO @Results (ThoughtID, ThoughtTime) (
SELECT ThoughtID, ThoughtTime
FROM thougts
WHERE ThoughtTime >= @date)
END
SELECT *
FROM @Results
ORDER BY ThoughtTime DESC
END
mySQL (Untested, needs refinement):
CREATE PROCEDURE TEST()
BEGIN
CREATE TEMPORARY TABLE Results (
ThoughtID int,
ThoughtTime datetime);
DECLARE searchDate date;
DECLARE minResults int;
DECLARE totResults int;
SET minResults = 100;
SET totResults = (SELECT COUNT(1) FROM thougts);
SET searchDate = CONVERT(YEAR(CURRENT_TIMESTAMP()), CHAR(4)) + '-' + CONVERT(MONTH(CURRENT_TIMESTAMP()), CHAR(2)) + '-01';
IF totResults <= minResults
THEN
SELECT ThoughtID, ThoughtTime
FROM thougts
ORDER BY ThoughtTime DESC;
ELSE
WHILE (SELECT COUNT(1) FROM Results) < minResults DO
DELETE FROM Results; -- Can probably be optimized
SET searchDate = DATE_SUB(searchDate, INTERVAL 1 MONTH);
INSERT INTO Results (ThoughtID, ThoughtTime) (
SELECT ThoughtID, ThoughtTime
FROM thougts
WHERE ThoughtTime >= searchDate);
END WHILE;
SELECT *
FROM Results
ORDER BY ThoughtTime DESC;
END IF;
)
END
If I get access to a mySQL instance within the next few days, I'll try to clean this up more. Otherwise, hopefully another SO user can take a look.