我们使用 json_extract 为 BigQuery 中的数据提取字段我可以轻松地按 event_type 过滤,但是如何按从 JSON 中提取的标题进行过滤?例如:仅包含“facebook”一词的标题
如果我通过操作查询它完美地工作:
SELECT timestamp,
operation as event_type,
json_extract(data, '$.title') as title,
json_extract(data, '$.duration') as duration,
FROM `videos`
WHERE (operation = "CREATE") ORDER BY timestamp ASC