Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
35,500 |
<question>: Name the report for 2003 <context>: CREATE TABLE table_2266230_1 (report VARCHAR, year VARCHAR)
|
SELECT report FROM table_2266230_1 WHERE year = "2003"
|
35,501 |
<question>: What is the date opened if thedistrict ID is 11901? <context>: CREATE TABLE table_22665117_1 (date_opened VARCHAR, dist_id VARCHAR)
|
SELECT date_opened FROM table_22665117_1 WHERE dist_id = 11901
|
35,502 |
<question>: If the district name is the Academy of Flint, what is the authorizing agency? <context>: CREATE TABLE table_22665117_1 (authorizing_agency VARCHAR, district_name VARCHAR)
|
SELECT authorizing_agency FROM table_22665117_1 WHERE district_name = "Academy of Flint"
|
35,503 |
<question>: If the district ID is 74907, what is the name of the district? <context>: CREATE TABLE table_22665117_1 (district_name VARCHAR, dist_id VARCHAR)
|
SELECT district_name FROM table_22665117_1 WHERE dist_id = 74907
|
35,504 |
<question>: If the name of the district is the Charyl Stockwell Academy, what is the county name? <context>: CREATE TABLE table_22665117_1 (county VARCHAR, district_name VARCHAR)
|
SELECT county FROM table_22665117_1 WHERE district_name = "Charyl Stockwell Academy"
|
35,505 |
<question>: Who was the driver in 1986? <context>: CREATE TABLE table_2266976_1 (driver VARCHAR, year VARCHAR)
|
SELECT driver FROM table_2266976_1 WHERE year = "1986"
|
35,506 |
<question>: When was an average speed of 81.388 mph recorded? <context>: CREATE TABLE table_2266976_1 (date VARCHAR, average_speed__mph_ VARCHAR)
|
SELECT date FROM table_2266976_1 WHERE average_speed__mph_ = "81.388"
|
35,507 |
<question>: Who was the manufacturer in 1990? <context>: CREATE TABLE table_2266976_1 (manufacturer VARCHAR, year VARCHAR)
|
SELECT manufacturer FROM table_2266976_1 WHERE year = "1990"
|
35,508 |
<question>: Who was the manufacturer in the year when the race lasted 2:30:28? <context>: CREATE TABLE table_2266976_1 (manufacturer VARCHAR, race_time VARCHAR)
|
SELECT manufacturer FROM table_2266976_1 WHERE race_time = "2:30:28"
|
35,509 |
<question>: What team competed in 2003? <context>: CREATE TABLE table_2266976_1 (team VARCHAR, year VARCHAR)
|
SELECT team FROM table_2266976_1 WHERE year = "2003"
|
35,510 |
<question>: How long in miles (km) was the race that lasted 3:07:53? <context>: CREATE TABLE table_2266976_1 (miles__km_ VARCHAR, race_time VARCHAR)
|
SELECT miles__km_ FROM table_2266976_1 WHERE race_time = "3:07:53"
|
35,511 |
<question>: Name the race name for june 6 <context>: CREATE TABLE table_22669375_1 (race_name VARCHAR, date VARCHAR)
|
SELECT race_name FROM table_22669375_1 WHERE date = "June 6"
|
35,512 |
<question>: Name the location for trenton 300 <context>: CREATE TABLE table_22669375_1 (location VARCHAR, race_name VARCHAR)
|
SELECT location FROM table_22669375_1 WHERE race_name = "Trenton 300"
|
35,513 |
<question>: Name the race name for rnd being 11 <context>: CREATE TABLE table_22669375_1 (race_name VARCHAR, rnd VARCHAR)
|
SELECT race_name FROM table_22669375_1 WHERE rnd = 11
|
35,514 |
<question>: What length was won by Roger McCluskey? <context>: CREATE TABLE table_22669816_1 (length VARCHAR, winning_driver VARCHAR)
|
SELECT length FROM table_22669816_1 WHERE winning_driver = "Roger McCluskey"
|
35,515 |
<question>: What rounds did Phoenix International Raceway host? <context>: CREATE TABLE table_22669816_1 (rnd VARCHAR, track VARCHAR)
|
SELECT rnd FROM table_22669816_1 WHERE track = "Phoenix International Raceway"
|
35,516 |
<question>: What are the lengths hosted by Pocono International Raceway? <context>: CREATE TABLE table_22669816_1 (length VARCHAR, track VARCHAR)
|
SELECT length FROM table_22669816_1 WHERE track = "Pocono International Raceway"
|
35,517 |
<question>: What lengths did Phoenix International Raceway host? <context>: CREATE TABLE table_22669816_1 (length VARCHAR, track VARCHAR)
|
SELECT length FROM table_22669816_1 WHERE track = "Phoenix International Raceway"
|
35,518 |
<question>: Name the location attendance for score being l 83–118 (ot) <context>: CREATE TABLE table_22669044_7 (location_attendance VARCHAR, score VARCHAR)
|
SELECT location_attendance FROM table_22669044_7 WHERE score = "L 83–118 (OT)"
|
35,519 |
<question>: Name the high assists for december 9 <context>: CREATE TABLE table_22669044_7 (high_assists VARCHAR, date VARCHAR)
|
SELECT high_assists FROM table_22669044_7 WHERE date = "December 9"
|
35,520 |
<question>: What is the total number of winners when the team classification leader was Kelme-Costa Blanca and the combativity award was won by Jacky Durand? <context>: CREATE TABLE table_2267345_2 (winner VARCHAR, team_classification VARCHAR, combativity_award VARCHAR)
|
SELECT COUNT(winner) FROM table_2267345_2 WHERE team_classification = "Kelme-Costa Blanca" AND combativity_award = "Jacky Durand"
|
35,521 |
<question>: Who was the general classification leader when the young rider classification leader was Salvatore Commesso and the winner was Erik Dekker? <context>: CREATE TABLE table_2267345_2 (general_classification VARCHAR, young_rider_classification VARCHAR, winner VARCHAR)
|
SELECT general_classification FROM table_2267345_2 WHERE young_rider_classification = "Salvatore Commesso" AND winner = "Erik Dekker"
|
35,522 |
<question>: What is the total number of team classifications when the young rider classification leader was Salvatore Commesso and the combativity award winner was Jacky Durand? <context>: CREATE TABLE table_2267345_2 (team_classification VARCHAR, young_rider_classification VARCHAR, combativity_award VARCHAR)
|
SELECT COUNT(team_classification) FROM table_2267345_2 WHERE young_rider_classification = "Salvatore Commesso" AND combativity_award = "Jacky Durand"
|
35,523 |
<question>: In what round did Al Unser win at Wisconsin State Fair Park Speedway? <context>: CREATE TABLE table_22673872_1 (rnd INTEGER, winning_driver VARCHAR, track VARCHAR)
|
SELECT MIN(rnd) FROM table_22673872_1 WHERE winning_driver = "Al Unser" AND track = "Wisconsin State Fair Park Speedway"
|
35,524 |
<question>: How many races are in College Station, Texas and won by Johnny Rutherford? <context>: CREATE TABLE table_22673872_1 (race_name VARCHAR, location VARCHAR, winning_driver VARCHAR)
|
SELECT COUNT(race_name) FROM table_22673872_1 WHERE location = "College Station, Texas" AND winning_driver = "Johnny Rutherford"
|
35,525 |
<question>: What was the name of the race that Al Unser had the pole position? <context>: CREATE TABLE table_22673872_1 (race_name VARCHAR, pole_position VARCHAR)
|
SELECT race_name FROM table_22673872_1 WHERE pole_position = "Al Unser"
|
35,526 |
<question>: What is the name of the track for the International 500 mile Sweepstakes race? <context>: CREATE TABLE table_22673872_1 (track VARCHAR, race_name VARCHAR)
|
SELECT track FROM table_22673872_1 WHERE race_name = "International 500 Mile Sweepstakes"
|
35,527 |
<question>: Which locations did Gordon Johncock hold the pole position? <context>: CREATE TABLE table_22673872_1 (location VARCHAR, pole_position VARCHAR)
|
SELECT location FROM table_22673872_1 WHERE pole_position = "Gordon Johncock"
|
35,528 |
<question>: What classifications does Fish Rap live! has? <context>: CREATE TABLE table_2266990_2 (classification VARCHAR, title VARCHAR)
|
SELECT classification FROM table_2266990_2 WHERE title = "Fish Rap Live!"
|
35,529 |
<question>: How many races took place on October 1? <context>: CREATE TABLE table_22673956_1 (race_name VARCHAR, date VARCHAR)
|
SELECT COUNT(race_name) FROM table_22673956_1 WHERE date = "October 1"
|
35,530 |
<question>: How many types of tracks are there on the Phoenix International raceway? <context>: CREATE TABLE table_22673956_1 (type VARCHAR, track VARCHAR)
|
SELECT COUNT(type) FROM table_22673956_1 WHERE track = "Phoenix International Raceway"
|
35,531 |
<question>: Daily Empress Indy Silverstone took place on which round? <context>: CREATE TABLE table_22673956_1 (rnd INTEGER, race_name VARCHAR)
|
SELECT MAX(rnd) FROM table_22673956_1 WHERE race_name = "Daily Empress Indy Silverstone"
|
35,532 |
<question>: How many races took place on the Indianapolis Motor Speedway track? <context>: CREATE TABLE table_22673956_1 (race_name VARCHAR, track VARCHAR)
|
SELECT COUNT(race_name) FROM table_22673956_1 WHERE track = "Indianapolis Motor Speedway"
|
35,533 |
<question>: What driver achieved a 3:50:12 race time? <context>: CREATE TABLE table_2267465_1 (driver VARCHAR, race_time VARCHAR)
|
SELECT driver FROM table_2267465_1 WHERE race_time = "3:50:12"
|
35,534 |
<question>: Can you tell me the manufacturer behind Race Hill Farm Team? <context>: CREATE TABLE table_2267465_1 (manufacturer VARCHAR, team VARCHAR)
|
SELECT manufacturer FROM table_2267465_1 WHERE team = "Race Hill Farm team"
|
35,535 |
<question>: How many laps have a 3:34:26 race time? <context>: CREATE TABLE table_2267465_1 (laps VARCHAR, race_time VARCHAR)
|
SELECT COUNT(laps) FROM table_2267465_1 WHERE race_time = "3:34:26"
|
35,536 |
<question>: What's the average mph of 1964? <context>: CREATE TABLE table_2267465_1 (average_speed__mph_ VARCHAR, year VARCHAR)
|
SELECT average_speed__mph_ FROM table_2267465_1 WHERE year = "1964"
|
35,537 |
<question>: Whose is the manufacturer for team Ranier-Lundy? <context>: CREATE TABLE table_2268216_1 (manufacturer VARCHAR, team VARCHAR)
|
SELECT manufacturer FROM table_2268216_1 WHERE team = "Ranier-Lundy"
|
35,538 |
<question>: In what year was the average speed 92.68? <context>: CREATE TABLE table_2268216_1 (year VARCHAR, average_speed__mph_ VARCHAR)
|
SELECT year FROM table_2268216_1 WHERE average_speed__mph_ = "92.68"
|
35,539 |
<question>: How many years was Pontiac the manufacturer for Joe Gibbs Racing? <context>: CREATE TABLE table_2268216_1 (year VARCHAR, team VARCHAR, manufacturer VARCHAR)
|
SELECT COUNT(year) FROM table_2268216_1 WHERE team = "Joe Gibbs Racing" AND manufacturer = "Pontiac"
|
35,540 |
<question>: What is the date for the race that had the time of 2:43:19? <context>: CREATE TABLE table_2268216_1 (date VARCHAR, race_time VARCHAR)
|
SELECT date FROM table_2268216_1 WHERE race_time = "2:43:19"
|
35,541 |
<question>: How many average speeds are listed in the year 2003? <context>: CREATE TABLE table_2268216_1 (average_speed__mph_ VARCHAR, year VARCHAR)
|
SELECT COUNT(average_speed__mph_) FROM table_2268216_1 WHERE year = "2003"
|
35,542 |
<question>: What team had a race time of 2:53:57? <context>: CREATE TABLE table_2268216_1 (team VARCHAR, race_time VARCHAR)
|
SELECT team FROM table_2268216_1 WHERE race_time = "2:53:57"
|
35,543 |
<question>: Name the sprint classification being alejandro valverde <context>: CREATE TABLE table_22713796_14 (sprint_classification VARCHAR, winner VARCHAR)
|
SELECT sprint_classification FROM table_22713796_14 WHERE winner = "Alejandro Valverde"
|
35,544 |
<question>: Name the stage for no award <context>: CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR)
|
SELECT stage FROM table_22713796_14 WHERE mountains_classification = "no award"
|
35,545 |
<question>: Name the total number of stage for lloyd mondory <context>: CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR)
|
SELECT COUNT(stage) FROM table_22713796_14 WHERE mountains_classification = "Lloyd Mondory"
|
35,546 |
<question>: Name the most stage for alejandro valverde and astana greg henderson <context>: CREATE TABLE table_22713796_14 (stage INTEGER, winner VARCHAR, general_classification VARCHAR, team_classification VARCHAR)
|
SELECT MAX(stage) FROM table_22713796_14 WHERE general_classification = "Alejandro Valverde" AND team_classification = "Astana" AND winner = "Greg Henderson"
|
35,547 |
<question>: When the Border Conference was held, who was the tournament winner? <context>: CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, conference VARCHAR)
|
SELECT tournament_winner FROM table_22733636_1 WHERE conference = "Border conference"
|
35,548 |
<question>: When Princeton was the regular season winner, who was the tournament winner? <context>: CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, regular_season_winner VARCHAR)
|
SELECT tournament_winner FROM table_22733636_1 WHERE regular_season_winner = "Princeton"
|
35,549 |
<question>: How long has Mel Daniels been playing? <context>: CREATE TABLE table_22719663_3 (experience VARCHAR, name VARCHAR)
|
SELECT experience FROM table_22719663_3 WHERE name = "Mel Daniels"
|
35,550 |
<question>: What position did the player from San Jose State play? <context>: CREATE TABLE table_22719663_3 (position VARCHAR, college VARCHAR)
|
SELECT position FROM table_22719663_3 WHERE college = "San Jose State"
|
35,551 |
<question>: What was the number of the player that was 6-6? <context>: CREATE TABLE table_22719663_3 (number VARCHAR, height VARCHAR)
|
SELECT number FROM table_22719663_3 WHERE height = "6-6"
|
35,552 |
<question>: If the song choice is Coba and the order number is 10, what is the result? <context>: CREATE TABLE table_22736523_1 (result VARCHAR, order__number VARCHAR, song_choice VARCHAR)
|
SELECT result FROM table_22736523_1 WHERE order__number = "10" AND song_choice = "Coba"
|
35,553 |
<question>: What is the result if Coba is the song choice? <context>: CREATE TABLE table_22736523_1 (result VARCHAR, song_choice VARCHAR)
|
SELECT result FROM table_22736523_1 WHERE song_choice = "Coba"
|
35,554 |
<question>: If Coba is the song choice, what is the order number? <context>: CREATE TABLE table_22736523_1 (order__number VARCHAR, song_choice VARCHAR)
|
SELECT order__number FROM table_22736523_1 WHERE song_choice = "Coba"
|
35,555 |
<question>: If Crazy In Love is the song choice, what is the theme? <context>: CREATE TABLE table_22736523_1 (theme VARCHAR, song_choice VARCHAR)
|
SELECT theme FROM table_22736523_1 WHERE song_choice = "Crazy In Love"
|
35,556 |
<question>: For week number of the top 40, what was the results? <context>: CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)
|
SELECT result FROM table_22736523_1 WHERE week__number = "Top 40"
|
35,557 |
<question>: For week of top 9, what were the results? <context>: CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR)
|
SELECT result FROM table_22736523_1 WHERE week__number = "Top 9"
|
35,558 |
<question>: The city of Birmingham is what type of location? <context>: CREATE TABLE table_2273738_1 (type VARCHAR, city VARCHAR)
|
SELECT type FROM table_2273738_1 WHERE city = "Birmingham"
|
35,559 |
<question>: Leeds City Council is the local authority for what type of location? <context>: CREATE TABLE table_2273738_1 (type VARCHAR, local_authority VARCHAR)
|
SELECT type FROM table_2273738_1 WHERE local_authority = "Leeds city Council"
|
35,560 |
<question>: Tyne and Wear County has what total membership for their metropolitan area? <context>: CREATE TABLE table_2273738_1 (metropolitan_area VARCHAR, county VARCHAR)
|
SELECT metropolitan_area FROM table_2273738_1 WHERE county = "Tyne and Wear"
|
35,561 |
<question>: What is the total membership for the metropolitan area in the city of Manchester? <context>: CREATE TABLE table_2273738_1 (metropolitan_area INTEGER, city VARCHAR)
|
SELECT MAX(metropolitan_area) FROM table_2273738_1 WHERE city = "Manchester"
|
35,562 |
<question>: Who was the runner-up (a) if K. P. Ramalingam won the election? <context>: CREATE TABLE table_22752982_5 (runner_up_a VARCHAR, winner VARCHAR)
|
SELECT runner_up_a FROM table_22752982_5 WHERE winner = "K. P. Ramalingam"
|
35,563 |
<question>: When 1 (5) is the races what is the team name? <context>: CREATE TABLE table_22737506_1 (team_name VARCHAR, races VARCHAR)
|
SELECT team_name FROM table_22737506_1 WHERE races = "1 (5)"
|
35,564 |
<question>: When 19th is the position what is the highest amount of poles? <context>: CREATE TABLE table_22737506_1 (poles INTEGER, pos VARCHAR)
|
SELECT MAX(poles) FROM table_22737506_1 WHERE pos = "19th"
|
35,565 |
<question>: When 86 is the amount of points what is the position? <context>: CREATE TABLE table_22737506_1 (pos VARCHAR, points VARCHAR)
|
SELECT pos FROM table_22737506_1 WHERE points = 86
|
35,566 |
<question>: Name the most margin for nco party and p. ramachandran won <context>: CREATE TABLE table_22754310_1 (margin INTEGER, party VARCHAR, winner VARCHAR)
|
SELECT MAX(margin) FROM table_22754310_1 WHERE party = "NCO" AND winner = "P. Ramachandran"
|
35,567 |
<question>: Name the party a for m. s. k. sathiyendran runner up <context>: CREATE TABLE table_22754310_1 (party VARCHAR, runner_up_a VARCHAR)
|
SELECT party AS a FROM table_22754310_1 WHERE runner_up_a = "M. S. K. Sathiyendran"
|
35,568 |
<question>: Name the party a for sriperumbudur <context>: CREATE TABLE table_22754310_1 (party VARCHAR, constituency VARCHAR)
|
SELECT party AS a FROM table_22754310_1 WHERE constituency = "Sriperumbudur"
|
35,569 |
<question>: Name the total number of runner up a for perambalur <context>: CREATE TABLE table_22754310_1 (runner_up_a VARCHAR, constituency VARCHAR)
|
SELECT COUNT(runner_up_a) FROM table_22754310_1 WHERE constituency = "Perambalur"
|
35,570 |
<question>: Name the constituency for 175130 <context>: CREATE TABLE table_22754310_1 (constituency VARCHAR, margin VARCHAR)
|
SELECT constituency FROM table_22754310_1 WHERE margin = 175130
|
35,571 |
<question>: How many margins have a winner of S. Singaravadivel? <context>: CREATE TABLE table_22753439_1 (margin VARCHAR, winner VARCHAR)
|
SELECT COUNT(margin) FROM table_22753439_1 WHERE winner = "S. Singaravadivel"
|
35,572 |
<question>: How many winners have a runner-up of A. Karthikeyan? <context>: CREATE TABLE table_22753439_1 (winner VARCHAR, runner_up_a VARCHAR)
|
SELECT COUNT(winner) FROM table_22753439_1 WHERE runner_up_a = "A. Karthikeyan"
|
35,573 |
<question>: What is every party with a winner of P. Chidambaram? <context>: CREATE TABLE table_22753439_1 (party VARCHAR, winner VARCHAR)
|
SELECT party AS a FROM table_22753439_1 WHERE winner = "P. Chidambaram"
|
35,574 |
<question>: What is every party A with a constituency of Tiruchendur? <context>: CREATE TABLE table_22753439_1 (party VARCHAR, constituency VARCHAR)
|
SELECT party AS a FROM table_22753439_1 WHERE constituency = "Tiruchendur"
|
35,575 |
<question>: Who is the constituency when the runner-up was d. Venugopal? <context>: CREATE TABLE table_22753245_1 (constituency VARCHAR, runner_up_a VARCHAR)
|
SELECT constituency FROM table_22753245_1 WHERE runner_up_a = "D. Venugopal"
|
35,576 |
<question>: What is the party where the constituency is 10. Tindivanam? <context>: CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR)
|
SELECT party FROM table_22753245_1 WHERE constituency = "10. Tindivanam"
|
35,577 |
<question>: What is the party when the constituency is 1. Chennai North? <context>: CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR)
|
SELECT party FROM table_22753245_1 WHERE constituency = "1. Chennai North"
|
35,578 |
<question>: How many margin results are listed in the election that was won by L. Adaikalaraj C and the party was the Indian national congress? <context>: CREATE TABLE table_22753245_1 (margin VARCHAR, party VARCHAR, winner VARCHAR)
|
SELECT COUNT(margin) FROM table_22753245_1 WHERE party = "Indian National Congress" AND winner = "L. Adaikalaraj c"
|
35,579 |
<question>: What is the margin when k. balathandayutham is the winner? <context>: CREATE TABLE table_22754491_1 (margin INTEGER, winner VARCHAR)
|
SELECT MAX(margin) FROM table_22754491_1 WHERE winner = "K. Balathandayutham"
|
35,580 |
<question>: What is the margin when periyakulam is the constituency? <context>: CREATE TABLE table_22754491_1 (margin VARCHAR, constituency VARCHAR)
|
SELECT margin FROM table_22754491_1 WHERE constituency = "Periyakulam"
|
35,581 |
<question>: Who had the pole position in the August 15, 1981 race? <context>: CREATE TABLE table_22765887_1 (pole_position VARCHAR, date VARCHAR)
|
SELECT pole_position FROM table_22765887_1 WHERE date = "August 15, 1981"
|
35,582 |
<question>: Which track was used on September 12, 1981? <context>: CREATE TABLE table_22765887_1 (track VARCHAR, date VARCHAR)
|
SELECT track FROM table_22765887_1 WHERE date = "September 12, 1981"
|
35,583 |
<question>: Name the extension for university of washington <context>: CREATE TABLE table_22771048_3 (extension VARCHAR, city_neighborhood VARCHAR)
|
SELECT extension FROM table_22771048_3 WHERE city_neighborhood = "University of Washington"
|
35,584 |
<question>: Name the least projected opening <context>: CREATE TABLE table_22771048_3 (projected_opening INTEGER)
|
SELECT MIN(projected_opening) FROM table_22771048_3
|
35,585 |
<question>: Name the transit connections for capitol hill u <context>: CREATE TABLE table_22771048_3 (transit_connections VARCHAR, station VARCHAR)
|
SELECT transit_connections FROM table_22771048_3 WHERE station = "Capitol Hill U"
|
35,586 |
<question>: How many neighborhoods have a station proposed at a Hospital? <context>: CREATE TABLE table_22771048_4 (city_neighborhood VARCHAR, station VARCHAR)
|
SELECT COUNT(city_neighborhood) FROM table_22771048_4 WHERE station = "Hospital"
|
35,587 |
<question>: What are the transit connections from Pioneer Square U? <context>: CREATE TABLE table_22771048_2 (transit_connections VARCHAR, station VARCHAR)
|
SELECT transit_connections FROM table_22771048_2 WHERE station = "Pioneer Square U"
|
35,588 |
<question>: What's the transit connection in Columbia City, Seattle? <context>: CREATE TABLE table_22771048_2 (transit_connections VARCHAR, city_neighborhood VARCHAR)
|
SELECT transit_connections FROM table_22771048_2 WHERE city_neighborhood = "Columbia City, Seattle"
|
35,589 |
<question>: For small patent type of protections, what type of PCT route is available? <context>: CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR)
|
SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = "small patent"
|
35,590 |
<question>: In Tonga, what is the conversion from patent application? <context>: CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, country VARCHAR)
|
SELECT conversion_from_patent_application FROM table_2279413_1 WHERE country = "Tonga"
|
35,591 |
<question>: For short patent type of protections, what type of PCT route is available? <context>: CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR)
|
SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = "short patent"
|
35,592 |
<question>: In Tangier Zone, what is the PCT route availibility? <context>: CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, country VARCHAR)
|
SELECT pct_route_available FROM table_2279413_1 WHERE country = "Tangier Zone"
|
35,593 |
<question>: When the PCT route available is yes and the maximum term is 10 years, what are the available conversions from patent applications? <context>: CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, maximum_term VARCHAR, pct_route_available VARCHAR)
|
SELECT conversion_from_patent_application FROM table_2279413_1 WHERE maximum_term = "10 years" AND pct_route_available = "Yes"
|
35,594 |
<question>: What was the result against the team which the Cowboys have a 6-2 record against? <context>: CREATE TABLE table_22801331_1 (result VARCHAR, record VARCHAR)
|
SELECT result FROM table_22801331_1 WHERE record = "6-2"
|
35,595 |
<question>: What is the fewest points opponents have scored when the Cowboys score 36? <context>: CREATE TABLE table_22801331_1 (opponents INTEGER, cowboys_points VARCHAR)
|
SELECT MIN(opponents) FROM table_22801331_1 WHERE cowboys_points = 36
|
35,596 |
<question>: How many opponents have a 1-0 record against the Cowboys? <context>: CREATE TABLE table_22801331_1 (opponents VARCHAR, record VARCHAR)
|
SELECT opponents FROM table_22801331_1 WHERE record = "1-0"
|
35,597 |
<question>: What game was held against a team with a 6-3 record against the Cowboys? <context>: CREATE TABLE table_22801331_1 (game VARCHAR, record VARCHAR)
|
SELECT game FROM table_22801331_1 WHERE record = "6-3"
|
35,598 |
<question>: How many names have a country of civ? <context>: CREATE TABLE table_22810095_8 (COUnT VARCHAR, country VARCHAR)
|
SELECT COUnT AS name FROM table_22810095_8 WHERE country = "CIV"
|
35,599 |
<question>: Who moved from Northampton Town? <context>: CREATE TABLE table_22810095_8 (name VARCHAR, moving_from VARCHAR)
|
SELECT name FROM table_22810095_8 WHERE moving_from = "northampton Town"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.