SQL Query 1 - SG Analytics Hub - Demo

PHOTO EMBED

Thu Feb 29 2024 21:38:18 GMT+0000 (Coordinated Universal Time)

Saved by @juanc99 #sql

SELECT
  content.title,
  content.body,
  content.published,
  author.url
FROM
  `200_boards___updated_daily___chinese.socialgist_boards_chinese_public`
-- Make sure the dataset and table selectors use the same name you set when you linked the dataset.
WHERE
  LOWER(content.body) LIKE '%经济%' 
-- The keyword is the word 'economy' in Chinese characters. You can change this to any keyword you wish to scan for in the content body. 
ORDER BY
  content.published DESC
LIMIT 10 -- Limits the results to 100 for demonstration purposes.
content_copyCOPY