SELECT 
  content.title,
  content.body,
  content.published,
  author.url,
FROM 
  `3000_forum_boards___updated_daily___english.socialgist_boards_english_public`
  -- Make sure these parameters match the names you set for the dataset and tables
WHERE 
  content.published BETWEEN '2023-01-01' AND '2024-02-29'
  AND (content.body LIKE '%Super Bowl%' OR content.title LIKE '%Super Bowl%')
LIMIT 10;