Acquire lots of citation data from BigQuery by application
How can I realize my purpose there are ten of thousands of numbers like CN201510747352 in a Excel document.
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
I want search tens of thousands of data like CN-201510747352-A, is there any convenient ways to realize it?
sql google-bigquery google-patent-search
add a comment |
How can I realize my purpose there are ten of thousands of numbers like CN201510747352 in a Excel document.
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
I want search tens of thousands of data like CN-201510747352-A, is there any convenient ways to realize it?
sql google-bigquery google-patent-search
add a comment |
How can I realize my purpose there are ten of thousands of numbers like CN201510747352 in a Excel document.
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
I want search tens of thousands of data like CN-201510747352-A, is there any convenient ways to realize it?
sql google-bigquery google-patent-search
How can I realize my purpose there are ten of thousands of numbers like CN201510747352 in a Excel document.
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
I want search tens of thousands of data like CN-201510747352-A, is there any convenient ways to realize it?
sql google-bigquery google-patent-search
sql google-bigquery google-patent-search
edited Nov 27 '18 at 7:42
Daniel Larsson
5372419
5372419
asked Nov 27 '18 at 7:38
LEBRON LLEBRON L
76
76
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Import your Excel spreadsheet into Google sheets.
Create a federated BigQuery table pointing to your Google sheet:
- Now you can write queries that
SELECT * FROM `patents-public-data.patents.publications
, while filtering from your sheet withWHERE p.application_number IN (SELECT app_n FROM `my.sheet`)
.
How do I open the Create Table page? Could you send me a link?
– LEBRON L
Nov 28 '18 at 1:03
cloud.google.com/bigquery/docs/tables#create-table, switch to web ui
– Felipe Hoffa
Nov 28 '18 at 1:18
Would you mind sending me a detail solution? I'm a newbie here, so I cannot understand the answer. Thank you for your help!
– LEBRON L
Nov 28 '18 at 1:47
i.imgur.com/zBYlWRA.png
– Felipe Hoffa
Nov 28 '18 at 1:59
I don't know the third step and what should be filled in location in the second step?
– LEBRON L
Nov 28 '18 at 2:24
|
show 5 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53494831%2facquire-lots-of-citation-data-from-bigquery-by-application%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Import your Excel spreadsheet into Google sheets.
Create a federated BigQuery table pointing to your Google sheet:
- Now you can write queries that
SELECT * FROM `patents-public-data.patents.publications
, while filtering from your sheet withWHERE p.application_number IN (SELECT app_n FROM `my.sheet`)
.
How do I open the Create Table page? Could you send me a link?
– LEBRON L
Nov 28 '18 at 1:03
cloud.google.com/bigquery/docs/tables#create-table, switch to web ui
– Felipe Hoffa
Nov 28 '18 at 1:18
Would you mind sending me a detail solution? I'm a newbie here, so I cannot understand the answer. Thank you for your help!
– LEBRON L
Nov 28 '18 at 1:47
i.imgur.com/zBYlWRA.png
– Felipe Hoffa
Nov 28 '18 at 1:59
I don't know the third step and what should be filled in location in the second step?
– LEBRON L
Nov 28 '18 at 2:24
|
show 5 more comments
Import your Excel spreadsheet into Google sheets.
Create a federated BigQuery table pointing to your Google sheet:
- Now you can write queries that
SELECT * FROM `patents-public-data.patents.publications
, while filtering from your sheet withWHERE p.application_number IN (SELECT app_n FROM `my.sheet`)
.
How do I open the Create Table page? Could you send me a link?
– LEBRON L
Nov 28 '18 at 1:03
cloud.google.com/bigquery/docs/tables#create-table, switch to web ui
– Felipe Hoffa
Nov 28 '18 at 1:18
Would you mind sending me a detail solution? I'm a newbie here, so I cannot understand the answer. Thank you for your help!
– LEBRON L
Nov 28 '18 at 1:47
i.imgur.com/zBYlWRA.png
– Felipe Hoffa
Nov 28 '18 at 1:59
I don't know the third step and what should be filled in location in the second step?
– LEBRON L
Nov 28 '18 at 2:24
|
show 5 more comments
Import your Excel spreadsheet into Google sheets.
Create a federated BigQuery table pointing to your Google sheet:
- Now you can write queries that
SELECT * FROM `patents-public-data.patents.publications
, while filtering from your sheet withWHERE p.application_number IN (SELECT app_n FROM `my.sheet`)
.
Import your Excel spreadsheet into Google sheets.
Create a federated BigQuery table pointing to your Google sheet:
- Now you can write queries that
SELECT * FROM `patents-public-data.patents.publications
, while filtering from your sheet withWHERE p.application_number IN (SELECT app_n FROM `my.sheet`)
.
answered Nov 27 '18 at 8:24
Felipe HoffaFelipe Hoffa
21.8k252114
21.8k252114
How do I open the Create Table page? Could you send me a link?
– LEBRON L
Nov 28 '18 at 1:03
cloud.google.com/bigquery/docs/tables#create-table, switch to web ui
– Felipe Hoffa
Nov 28 '18 at 1:18
Would you mind sending me a detail solution? I'm a newbie here, so I cannot understand the answer. Thank you for your help!
– LEBRON L
Nov 28 '18 at 1:47
i.imgur.com/zBYlWRA.png
– Felipe Hoffa
Nov 28 '18 at 1:59
I don't know the third step and what should be filled in location in the second step?
– LEBRON L
Nov 28 '18 at 2:24
|
show 5 more comments
How do I open the Create Table page? Could you send me a link?
– LEBRON L
Nov 28 '18 at 1:03
cloud.google.com/bigquery/docs/tables#create-table, switch to web ui
– Felipe Hoffa
Nov 28 '18 at 1:18
Would you mind sending me a detail solution? I'm a newbie here, so I cannot understand the answer. Thank you for your help!
– LEBRON L
Nov 28 '18 at 1:47
i.imgur.com/zBYlWRA.png
– Felipe Hoffa
Nov 28 '18 at 1:59
I don't know the third step and what should be filled in location in the second step?
– LEBRON L
Nov 28 '18 at 2:24
How do I open the Create Table page? Could you send me a link?
– LEBRON L
Nov 28 '18 at 1:03
How do I open the Create Table page? Could you send me a link?
– LEBRON L
Nov 28 '18 at 1:03
cloud.google.com/bigquery/docs/tables#create-table, switch to web ui
– Felipe Hoffa
Nov 28 '18 at 1:18
cloud.google.com/bigquery/docs/tables#create-table, switch to web ui
– Felipe Hoffa
Nov 28 '18 at 1:18
Would you mind sending me a detail solution? I'm a newbie here, so I cannot understand the answer. Thank you for your help!
– LEBRON L
Nov 28 '18 at 1:47
Would you mind sending me a detail solution? I'm a newbie here, so I cannot understand the answer. Thank you for your help!
– LEBRON L
Nov 28 '18 at 1:47
i.imgur.com/zBYlWRA.png
– Felipe Hoffa
Nov 28 '18 at 1:59
i.imgur.com/zBYlWRA.png
– Felipe Hoffa
Nov 28 '18 at 1:59
I don't know the third step and what should be filled in location in the second step?
– LEBRON L
Nov 28 '18 at 2:24
I don't know the third step and what should be filled in location in the second step?
– LEBRON L
Nov 28 '18 at 2:24
|
show 5 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53494831%2facquire-lots-of-citation-data-from-bigquery-by-application%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown