I'd like to obtain a list of patents (publication number, filing date, and etc.) that cite all US patents filed between 2003 and 2015. Not sure what went wrong, but my current codes (below) returned no results. Can anyone help me revise the codes please?
SELECT c.publication_number AS Pub, c.category AS Cat, c.filing_date AS Date, p.publication_number AS Citedby, p.filing_date AS Cited_Date
FROM `patents-public-data.patents.publications` AS p, UNNEST(citation) AS c
WHERE c.publication_number LIKE ('US%') AND (c.filing_date BETWEEN 20030101 AND 20041231);
Thank you so much for your kind help.