We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e8cd34 commit 2ad787eCopy full SHA for 2ad787e
sql/select_cited_patents.sql
@@ -0,0 +1,28 @@
1
+SELECT
2
+ DISTINCT
3
+ p.patent_number as "Citing Patent Number"
4
+ ,co.name as "Citing Company"
5
+ ,cp.cited_patent_number as "Cited Patent Number"
6
+ ,pp.patent_title as "Cited Patent Title"
7
+ ,pp.year as "Year"
8
+ ,pp.grant_date as "Grant Date"
9
+ ,pp.uspc_class as "USPC Class"
10
+FROM
11
+ patents as p
12
+LEFT JOIN
13
+ companies as co
14
+ON
15
+ co.id = p.company_id
16
+JOIN
17
+ cited_patents as cp
18
19
+ p.patent_number = cp.citing_patent_number
20
21
+ patents as pp
22
23
+ cp.cited_patent_number = pp.patent_number
24
+-- Uncomment the following 2 lines if you to filter by patent_number (or something else of your choosing)
25
+--WHERE
26
+-- p.patent_number = "10001497"
27
+ORDER BY
28
+ p.patent_number ASC
0 commit comments