Fetch random article ID from today (sqlite)
SELECT random_article_id FROM random_articles WHERE date = DATE('now') LIMIT 1
Retrieves a random article ID from the random_articles table for the current date in sqlite.
SELECT random_article_id FROM random_articles WHERE date = DATE('now') LIMIT 1
Retrieves a random article ID from the random_articles table for the current date in sqlite.