我如何才能实现我的目的,在 Excel 文档中有数万个像 CN201510747352 这样的数字。
SELECT
p.application_number AS app,
COUNT(DISTINCT c.publication_number) Citations
FROM `patents-public-data.patents.publications` AS p,
UNNEST(citation) c
WHERE p.application_number **IN ('CN-201510747352-A')**
GROUP BY p.application_number
我要搜索CN-201510747352-A这样的上万条数据,有什么方便的方法实现吗?
