Switched to Beginner Mode Thanks
Welcome ; Threads ; Random ; Menu ; Help
let us not grow weary of doing good

Calendar Empty

There is nothing in the calendar at this time.


calendar_months.sql

SELECT
    year_month
FROM (
    SELECT
        SUBSTR(DATETIME(add_timestamp, 'unixepoch', 'localtime'), 0, 8) AS year_month
    FROM item_flat
    WHERE item_score >= 0
    GROUP BY year_month
    UNION ALL
    SELECT
        SUBSTR(value, 0, 8) AS year_month
    FROM
    	item_attribute
    	JOIN item_flat USING (file_hash)
    WHERE attribute = 'date'
    GROUP BY year_month
)
GROUP BY year_month
ORDER BY year_month DESC


calendar_days.sql

SELECT
    date,
    SUM(item_count) AS item_count
FROM (
    SELECT
        SUBSTR(DATETIME(add_timestamp, 'unixepoch', 'localtime'), 0, 11) AS date,
        COUNT(file_hash) AS item_count
    FROM item_flat
    WHERE item_score >= 0
    GROUP BY date
    UNION ALL
    SELECT
        value AS date,
        COUNT(file_hash) AS item_count
    FROM
    	item_attribute
    	JOIN item_flat USING (file_hash)
    WHERE attribute = 'date'
    GROUP BY date
)
GROUP BY date


PrintedInfo

Q: When was this page printed?
Printed: November 21 2024 03:56:16.

Q: How old was the page when downloaded?
Age: 3969 seconds
pollyanna: 3d5171f

Q: How can I get a fresher copy?
A: Ask the server to

JavaScript
PageMap
Welcome ; Threads ; Random ; Menu ; Help
Expand; Minimal; Reprint; Cascade; Arrange; Float; Reset