we can get only the first 10 urls result using
select url from search.web where query="stackoverflow"
how can i get results accorridng to page numbers like result from 60 to 70, or 90 to 100 and son on..??
we can get only the first 10 urls result using
select url from search.web where query="stackoverflow"
how can i get results accorridng to page numbers like result from 60 to 70, or 90 to 100 and son on..??
Copyright © 2021 Jogjafile Inc.
The answer to your question is:
Replace 60 with whatever other number your desire. Max is 500 afaik for the search.web YQL table because that is the limit of Yahoo BOSS which is used in this table.
You can also replace the 0 with e.g. 10, to skip the first 10 results. So using
search.web(10,60)
would still give you 60 results while skipping the first 10.Also see the YQL documentation on remote limits - thats how this search.web(0,60) syntax is called.