how to find citing patent about a certain patent?

Here you can post your opinions, ask questions and share experiences on the PATSTAT product line. Please always indicate the PATSTAT edition (e.g. 2015 Autumn Edition) and the database (e.g. PATSTAT Online, MySQL, MS SQL Server, ...) you are using.
Post Reply

loulou
Posts: 3
Joined: Fri Oct 30, 2020 6:56 am

how to find citing patent about a certain patent?

Post by loulou » Tue Dec 08, 2020 1:45 pm

In the PATSTAT, There is no search for citing patents. I want to search for citing patents of patent A. I tried to search for pat_publn_id by using the pat_publn_id of patent A as cited_pat_publn_id in tls212, but failed. Do you have a good way?
yours sincerely
LOU


loulou
Posts: 3
Joined: Fri Oct 30, 2020 6:56 am

Re: how to find citing patent about a certain patent?

Post by loulou » Thu Dec 10, 2020 12:40 pm

I have solved this problem. And If you need it, you can refer to it.

SELECT c.citn_origin, c.pat_citn_seq_nr , p2.publn_auth, p2.publn_nr, p2.publn_kind
FROM tls211_pat_publn p1
LEFT JOIN tls212_citation c ON p1.pat_publn_id = c.cited_pat_publn_id
JOIN tls211_pat_publn p2 ON c.pat_publn_id = p2.pat_publn_id -- citations
WHERE c.pat_citn_seq_nr > 0 -- retrieve only citations to publications
AND p1.publn_auth = 'US' -- for example
AND p1.publn_nr = '10049225'
AND p1.publn_kind = 'B2'
ORDER BY citn_origin


Post Reply