Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
47,500 | <question>: How many Wins have a Top 5 smaller than 0? <context>: CREATE TABLE table_name_57 (wins INTEGER, top_5 INTEGER) | SELECT SUM(wins) FROM table_name_57 WHERE top_5 < 0 |
47,501 | <question>: Which Top 10 has a Top 5 larger than 1, and a Year of 2003, and Poles larger than 0? <context>: CREATE TABLE table_name_15 (top_10 INTEGER, poles VARCHAR, top_5 VARCHAR, year VARCHAR) | SELECT AVG(top_10) FROM table_name_15 WHERE top_5 > 1 AND year = 2003 AND poles > 0 |
47,502 | <question>: How many Top 10s have Wins larger than 0, and Poles larger than 0? <context>: CREATE TABLE table_name_35 (top_10 VARCHAR, wins VARCHAR, poles VARCHAR) | SELECT COUNT(top_10) FROM table_name_35 WHERE wins > 0 AND poles > 0 |
47,503 | <question>: What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship? <context>: CREATE TABLE table_name_58 (established VARCHAR, league VARCHAR, championships VARCHAR) | SELECT COUNT(established) FROM table_name_58 WHERE league = "ontario provincial junior a hockey" AND championships > 1 |
47,504 | <question>: What Venue has more than 1 Championship and was Established after 1957? <context>: CREATE TABLE table_name_4 (venue VARCHAR, championships VARCHAR, established VARCHAR) | SELECT venue FROM table_name_4 WHERE championships = 1 AND established > 1957 |
47,505 | <question>: With less than 1 Championship, what es the Established date of the Niagara Rugby Union League? <context>: CREATE TABLE table_name_40 (established INTEGER, championships VARCHAR, league VARCHAR) | SELECT SUM(established) FROM table_name_40 WHERE championships < 1 AND league = "niagara rugby union" |
47,506 | <question>: What is the Established date of the Brian Timmis Stadium? <context>: CREATE TABLE table_name_57 (established VARCHAR, venue VARCHAR) | SELECT COUNT(established) FROM table_name_57 WHERE venue = "brian timmis stadium" |
47,507 | <question>: What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number? <context>: CREATE TABLE table_name_62 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR) | SELECT MIN(ofsted_number) FROM table_name_62 WHERE intake = 60 AND type = "junior" AND dcsf_number < 3386 |
47,508 | <question>: Which Record has a Game smaller than 19, and Points smaller than 19, and a Score of 4–6? <context>: CREATE TABLE table_name_24 (record VARCHAR, score VARCHAR, game VARCHAR, points VARCHAR) | SELECT record FROM table_name_24 WHERE game < 19 AND points < 19 AND score = "4–6" |
47,509 | <question>: How many games have a Record of 7–6–3, and Points smaller than 17? <context>: CREATE TABLE table_name_74 (game VARCHAR, record VARCHAR, points VARCHAR) | SELECT COUNT(game) FROM table_name_74 WHERE record = "7–6–3" AND points < 17 |
47,510 | <question>: Which Points have an Opponent of vancouver canucks, and a November smaller than 11? <context>: CREATE TABLE table_name_42 (points INTEGER, opponent VARCHAR, november VARCHAR) | SELECT AVG(points) FROM table_name_42 WHERE opponent = "vancouver canucks" AND november < 11 |
47,511 | <question>: which Record is on March of 12 <context>: CREATE TABLE table_name_53 (record VARCHAR, march VARCHAR) | SELECT record FROM table_name_53 WHERE march = 12 |
47,512 | <question>: What is the number of March that has 25-10-9 record and a Game more than 44? <context>: CREATE TABLE table_name_94 (march VARCHAR, record VARCHAR, game VARCHAR) | SELECT COUNT(march) FROM table_name_94 WHERE record = "25-10-9" AND game > 44 |
47,513 | <question>: Which Game has a Record of 27-11-10? <context>: CREATE TABLE table_name_19 (game INTEGER, record VARCHAR) | SELECT AVG(game) FROM table_name_19 WHERE record = "27-11-10" |
47,514 | <question>: What is the Speed when Construction begun in 2010, and an Expected start of revenue services of 2015? <context>: CREATE TABLE table_name_3 (speed VARCHAR, construction_begun VARCHAR, expected_start_of_revenue_services VARCHAR) | SELECT speed FROM table_name_3 WHERE construction_begun = "2010" AND expected_start_of_revenue_services = 2015 |
47,515 | <question>: What is the length when the expected start of revenue is more than 2017? <context>: CREATE TABLE table_name_62 (length VARCHAR, expected_start_of_revenue_services INTEGER) | SELECT length FROM table_name_62 WHERE expected_start_of_revenue_services > 2017 |
47,516 | <question>: What was the undecided with Roy Barnes at 47%? <context>: CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR) | SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%" |
47,517 | <question>: What is the DuBose Porter with Roy Barnes at 54%? <context>: CREATE TABLE table_name_16 (dubose_porter VARCHAR, roy_barnes VARCHAR) | SELECT dubose_porter FROM table_name_16 WHERE roy_barnes = "54%" |
47,518 | <question>: What series episode has deli meats under segment B? <context>: CREATE TABLE table_name_98 (series_ep VARCHAR, segment_b VARCHAR) | SELECT series_ep FROM table_name_98 WHERE segment_b = "deli meats" |
47,519 | <question>: Which After 1 year has an After 3 years of 80%? <context>: CREATE TABLE table_name_40 (after_1_year VARCHAR, after_3_years VARCHAR) | SELECT after_1_year FROM table_name_40 WHERE after_3_years = "80%" |
47,520 | <question>: What position does Alexei Lazarenko have? <context>: CREATE TABLE table_name_62 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_62 WHERE player = "alexei lazarenko" |
47,521 | <question>: What college did Jamie Butt go to? <context>: CREATE TABLE table_name_78 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_78 WHERE player = "jamie butt" |
47,522 | <question>: What school did Alexander Korobolin go to? <context>: CREATE TABLE table_name_27 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_27 WHERE player = "alexander korobolin" |
47,523 | <question>: Who has a round less than 9 and a position of G? <context>: CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, round VARCHAR) | SELECT player FROM table_name_65 WHERE position = "g" AND round < 9 |
47,524 | <question>: Name the sum of cuts with wins less than 2, top-25 more than 7 and top-10 less than 2 <context>: CREATE TABLE table_name_80 (cuts_made INTEGER, top_10 VARCHAR, wins VARCHAR, top_25 VARCHAR) | SELECT SUM(cuts_made) FROM table_name_80 WHERE wins < 2 AND top_25 > 7 AND top_10 < 2 |
47,525 | <question>: What was the score that led to an 11-16 record? <context>: CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_77 WHERE record = "11-16" |
47,526 | <question>: Who took the loss on May 20? <context>: CREATE TABLE table_name_52 (loss VARCHAR, date VARCHAR) | SELECT loss FROM table_name_52 WHERE date = "may 20" |
47,527 | <question>: What was the attendance of the game that lasted 3:55? <context>: CREATE TABLE table_name_1 (att VARCHAR, time VARCHAR) | SELECT att FROM table_name_1 WHERE time = "3:55" |
47,528 | <question>: What was the date of the game in which Holt (4-4) took the loss? <context>: CREATE TABLE table_name_36 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_36 WHERE loss = "holt (4-4)" |
47,529 | <question>: What was the date when the pitcher was Jason Marquis and the length was 410'? <context>: CREATE TABLE table_name_69 (date VARCHAR, pitcher VARCHAR, length VARCHAR) | SELECT date FROM table_name_69 WHERE pitcher = "jason marquis" AND length = "410'" |
47,530 | <question>: What number home run was in the 8th inning and went 410'? <context>: CREATE TABLE table_name_3 (number VARCHAR, inning VARCHAR, length VARCHAR) | SELECT number FROM table_name_3 WHERE inning = "8th" AND length = "410'" |
47,531 | <question>: Which Max 1-min wind mph (km/h) that has Dates active on september22– september28? <context>: CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active VARCHAR) | SELECT max_1_min_wind_mph__km_h_ FROM table_name_26 WHERE dates_active = "september22– september28" |
47,532 | <question>: Which Min press has none Death and seven Storm names? <context>: CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR) | SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = "none" AND storm_name = "seven" |
47,533 | <question>: What is the cost of 972 Min Press caused 52 death? <context>: CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR, min_press___mbar__ VARCHAR, deaths VARCHAR) | SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = "972" AND deaths = "52" |
47,534 | <question>: What is the active Date that has a 65 (100) Max 1-min wind? <context>: CREATE TABLE table_name_28 (dates_active VARCHAR, max_1_min_wind_mph__km_h_ VARCHAR) | SELECT dates_active FROM table_name_28 WHERE max_1_min_wind_mph__km_h_ = "65 (100)" |
47,535 | <question>: What is the Class AA in the 2010-11 school year with a class AAA of Giddings? <context>: CREATE TABLE table_name_7 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR) | SELECT class_aA FROM table_name_7 WHERE class_aAA = giddings AND school_year = "2010-11" |
47,536 | <question>: What is the Class AA of the school year 2009-10 with a class AAA of Giddings? <context>: CREATE TABLE table_name_95 (class_aA VARCHAR, class_aAA VARCHAR, giddings VARCHAR, school_year VARCHAR) | SELECT class_aA FROM table_name_95 WHERE class_aAA = giddings AND school_year = "2009-10" |
47,537 | <question>: What is the class AAA of the 1993-94 school year with a class AAAAA of Duncanville? <context>: CREATE TABLE table_name_58 (class_aAA VARCHAR, class_aAAAA VARCHAR, duncanville VARCHAR, school_year VARCHAR) | SELECT class_aAA FROM table_name_58 WHERE class_aAAAA = duncanville AND school_year = "1993-94" |
47,538 | <question>: Who was the visiting team on May 7? <context>: CREATE TABLE table_name_55 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_55 WHERE date = "may 7" |
47,539 | <question>: Who had a Qualifying 2 time over 58.669 for Team Australia? <context>: CREATE TABLE table_name_68 (name VARCHAR, qual_2 VARCHAR, team VARCHAR) | SELECT name FROM table_name_68 WHERE qual_2 > 58.669 AND team = "team australia" |
47,540 | <question>: Which qualifying 1 time has a best under 58.669 and a qualifying 2 time under 57.897? <context>: CREATE TABLE table_name_50 (qual_1 VARCHAR, best VARCHAR, qual_2 VARCHAR) | SELECT qual_1 FROM table_name_50 WHERE best < 58.669 AND qual_2 < 57.897 |
47,541 | <question>: Which team has a qualifying 2 time under 59.612 and a best of 59.14? <context>: CREATE TABLE table_name_58 (team VARCHAR, qual_2 VARCHAR, best VARCHAR) | SELECT team FROM table_name_58 WHERE qual_2 < 59.612 AND best = 59.14 |
47,542 | <question>: Which Lungchang has a Halang of ʒɯ², and a Rera of ʒo²? <context>: CREATE TABLE table_name_85 (lungchang VARCHAR, halang VARCHAR, rera VARCHAR) | SELECT lungchang FROM table_name_85 WHERE halang = "ʒɯ²" AND rera = "ʒo²" |
47,543 | <question>: Which Tikhak has a Yonguk of wu¹ti¹? <context>: CREATE TABLE table_name_77 (tikhak VARCHAR, yonguk VARCHAR) | SELECT tikhak FROM table_name_77 WHERE yonguk = "wu¹ti¹" |
47,544 | <question>: Which Yonguk has a Halang of ran¹? <context>: CREATE TABLE table_name_35 (yonguk VARCHAR, halang VARCHAR) | SELECT yonguk FROM table_name_35 WHERE halang = "ran¹" |
47,545 | <question>: Which Halang has a Rera of ʒo²? <context>: CREATE TABLE table_name_6 (halang VARCHAR, rera VARCHAR) | SELECT halang FROM table_name_6 WHERE rera = "ʒo²" |
47,546 | <question>: Which Muklom has a Halang of wɯ¹cʰi¹? <context>: CREATE TABLE table_name_23 (muklom VARCHAR, halang VARCHAR) | SELECT muklom FROM table_name_23 WHERE halang = "wɯ¹cʰi¹" |
47,547 | <question>: Which Hakhun has a Tikhak of ʒu²? <context>: CREATE TABLE table_name_11 (hakhun VARCHAR, tikhak VARCHAR) | SELECT hakhun FROM table_name_11 WHERE tikhak = "ʒu²" |
47,548 | <question>: What is the location of Tamagaki station with an l stop? <context>: CREATE TABLE table_name_14 (location VARCHAR, stop VARCHAR, station VARCHAR) | SELECT location FROM table_name_14 WHERE stop = "l" AND station = "tamagaki" |
47,549 | <question>: What is the station with a number greater than 9 and a distance of 16.4 km? <context>: CREATE TABLE table_name_10 (station VARCHAR, number VARCHAR, distance__km_ VARCHAR) | SELECT station FROM table_name_10 WHERE number > 9 AND distance__km_ = 16.4 |
47,550 | <question>: What is the Japanese name of the station with a number 3? <context>: CREATE TABLE table_name_98 (japanese VARCHAR, number VARCHAR) | SELECT japanese FROM table_name_98 WHERE number = 3 |
47,551 | <question>: What is the distance of Kawage station? <context>: CREATE TABLE table_name_19 (distance__km_ INTEGER, station VARCHAR) | SELECT SUM(distance__km_) FROM table_name_19 WHERE station = "kawage" |
47,552 | <question>: Which station has a number less than 5 and an l stop? <context>: CREATE TABLE table_name_43 (station VARCHAR, number VARCHAR, stop VARCHAR) | SELECT station FROM table_name_43 WHERE number < 5 AND stop = "l" |
47,553 | <question>: Name the visitor for detroit on february 24 <context>: CREATE TABLE table_name_55 (visitor VARCHAR, home VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_55 WHERE home = "detroit" AND date = "february 24" |
47,554 | <question>: What is the highest listed year for the partner of Marcel Granollers and a hard surface? <context>: CREATE TABLE table_name_28 (year INTEGER, partner VARCHAR, surface VARCHAR) | SELECT MAX(year) FROM table_name_28 WHERE partner = "marcel granollers" AND surface = "hard" |
47,555 | <question>: What is the listed surface for the Championship of Toronto that had a runner-up outcome? <context>: CREATE TABLE table_name_56 (surface VARCHAR, outcome VARCHAR, championship VARCHAR) | SELECT surface FROM table_name_56 WHERE outcome = "runner-up" AND championship = "toronto" |
47,556 | <question>: What time was the game during week 5? <context>: CREATE TABLE table_name_14 (time___et__ VARCHAR, week VARCHAR) | SELECT time___et__ FROM table_name_14 WHERE week = 5 |
47,557 | <question>: Which City has a Series of Tamra's oc wedding? <context>: CREATE TABLE table_name_23 (city VARCHAR, series VARCHAR) | SELECT city FROM table_name_23 WHERE series = "tamra's oc wedding" |
47,558 | <question>: What is the average number of points for a difference of 55 and an against less than 47? <context>: CREATE TABLE table_name_99 (points INTEGER, difference VARCHAR, against VARCHAR) | SELECT AVG(points) FROM table_name_99 WHERE difference = "55" AND against < 47 |
47,559 | <question>: What is the highest lost that has an against greater than 60, points less than 61 and an 18 drawn? <context>: CREATE TABLE table_name_9 (lost INTEGER, drawn VARCHAR, against VARCHAR, points VARCHAR) | SELECT MAX(lost) FROM table_name_9 WHERE against > 60 AND points < 61 AND drawn > 18 |
47,560 | <question>: What is the Name of the Historic House of the 18th Century? <context>: CREATE TABLE table_name_79 (name VARCHAR, type VARCHAR, date VARCHAR) | SELECT name FROM table_name_79 WHERE type = "historic house" AND date = "18th century" |
47,561 | <question>: What is the Type of castle from the 14th Century which Condition is preserved? <context>: CREATE TABLE table_name_72 (type VARCHAR, date VARCHAR, condition VARCHAR) | SELECT type FROM table_name_72 WHERE date = "14th century" AND condition = "preserved" |
47,562 | <question>: What is the Name of the private Castle of the 16th century which is occupied? <context>: CREATE TABLE table_name_26 (name VARCHAR, date VARCHAR, ownership VARCHAR, condition VARCHAR) | SELECT name FROM table_name_26 WHERE ownership = "private" AND condition = "occupied" AND date = "16th century" |
47,563 | <question>: What is the Date of the castle with a Historic Scotland Ownership? <context>: CREATE TABLE table_name_38 (date VARCHAR, ownership VARCHAR) | SELECT date FROM table_name_38 WHERE ownership = "historic scotland" |
47,564 | <question>: What is the Date of the Fortified House? <context>: CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR) | SELECT date FROM table_name_39 WHERE type = "fortified house" |
47,565 | <question>: What is the Date of the Courtyard Castle? <context>: CREATE TABLE table_name_16 (date VARCHAR, type VARCHAR) | SELECT date FROM table_name_16 WHERE type = "courtyard castle" |
47,566 | <question>: What is the highest lost that has 6 for points? <context>: CREATE TABLE table_name_63 (lost INTEGER, points VARCHAR) | SELECT MAX(lost) FROM table_name_63 WHERE points = 6 |
47,567 | <question>: How many losses have points less than 3, with a drawn greater than 0? <context>: CREATE TABLE table_name_20 (lost INTEGER, points VARCHAR, drawn VARCHAR) | SELECT SUM(lost) FROM table_name_20 WHERE points < 3 AND drawn > 0 |
47,568 | <question>: Which Margin of victory has a Runner(s)-up of buddy gardner? <context>: CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT margin_of_victory FROM table_name_1 WHERE runner_s__up = "buddy gardner" |
47,569 | <question>: Which Date has a Winning score of –14 (66-64-68-68=266)? <context>: CREATE TABLE table_name_93 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_93 WHERE winning_score = –14(66 - 64 - 68 - 68 = 266) |
47,570 | <question>: Which Tournament has a Winning score of e (72-69-71-68=280)? <context>: CREATE TABLE table_name_15 (tournament VARCHAR, winning_score VARCHAR) | SELECT tournament FROM table_name_15 WHERE winning_score = E(72 - 69 - 71 - 68 = 280) |
47,571 | <question>: Which Margin of victory has a Runner(s)-up of dave barr? <context>: CREATE TABLE table_name_1 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT margin_of_victory FROM table_name_1 WHERE runner_s__up = "dave barr" |
47,572 | <question>: Which Margin of victory has a Runner(s)-up of mark o'meara? <context>: CREATE TABLE table_name_19 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT margin_of_victory FROM table_name_19 WHERE runner_s__up = "mark o'meara" |
47,573 | <question>: In round 9 what was the nationality? <context>: CREATE TABLE table_name_98 (nationality VARCHAR, round VARCHAR) | SELECT nationality FROM table_name_98 WHERE round = "9" |
47,574 | <question>: In round 3 what was the position? <context>: CREATE TABLE table_name_83 (position VARCHAR, round VARCHAR) | SELECT position FROM table_name_83 WHERE round = "3" |
47,575 | <question>: Who has a nationality of Czech Republic and a position of right wing? <context>: CREATE TABLE table_name_49 (player VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT player FROM table_name_49 WHERE position = "right wing" AND nationality = "czech republic" |
47,576 | <question>: What is the highest winning pct from a team with wins less than 22, losses greater than 4, ties less than 2 and games started greater than 11? <context>: CREATE TABLE table_name_92 (winning_pct INTEGER, wins VARCHAR, games_started VARCHAR, losses VARCHAR, ties VARCHAR) | SELECT MAX(winning_pct) FROM table_name_92 WHERE losses > 4 AND ties < 2 AND games_started > 11 AND wins < 22 |
47,577 | <question>: Gold that has a Rank of 6, and a Bronze larger than 0 had what total number of gold? <context>: CREATE TABLE table_name_46 (gold VARCHAR, rank VARCHAR, bronze VARCHAR) | SELECT COUNT(gold) FROM table_name_46 WHERE rank = "6" AND bronze > 0 |
47,578 | <question>: Total of 5 had what bronze? <context>: CREATE TABLE table_name_21 (bronze VARCHAR, total VARCHAR) | SELECT bronze FROM table_name_21 WHERE total = 5 |
47,579 | <question>: In which tournament did he place 20th? <context>: CREATE TABLE table_name_55 (tournament VARCHAR, result VARCHAR) | SELECT tournament FROM table_name_55 WHERE result = "20th" |
47,580 | <question>: What the result for the hypo-meeting tournament in 1994? <context>: CREATE TABLE table_name_81 (result VARCHAR, year VARCHAR, tournament VARCHAR) | SELECT result FROM table_name_81 WHERE year = 1994 AND tournament = "hypo-meeting" |
47,581 | <question>: What was the result in 1995? <context>: CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR) | SELECT result FROM table_name_79 WHERE year = 1995 |
47,582 | <question>: After March 19, what's the score of game 67? <context>: CREATE TABLE table_name_75 (score VARCHAR, march VARCHAR, game VARCHAR) | SELECT score FROM table_name_75 WHERE march > 19 AND game = 67 |
47,583 | <question>: Who is the head linesman of the game on 1 February 2009? <context>: CREATE TABLE table_name_46 (head_linesman VARCHAR, date VARCHAR) | SELECT head_linesman FROM table_name_46 WHERE date = "1 february 2009" |
47,584 | <question>: What is the date of the game where the line judge was Bob Beeks, the head linesman was Jerry Bergman, and Paul Baetz was the back judge? <context>: CREATE TABLE table_name_61 (date VARCHAR, back_judge VARCHAR, line_judge VARCHAR, head_linesman VARCHAR) | SELECT date FROM table_name_61 WHERE line_judge = "bob beeks" AND head_linesman = "jerry bergman" AND back_judge = "paul baetz" |
47,585 | <question>: Which game was on 14 January 1973? <context>: CREATE TABLE table_name_31 (game VARCHAR, date VARCHAR) | SELECT game FROM table_name_31 WHERE date = "14 january 1973" |
47,586 | <question>: Who was the line judge at the game where Scott Green was referee? <context>: CREATE TABLE table_name_48 (line_judge VARCHAR, referee VARCHAR) | SELECT line_judge FROM table_name_48 WHERE referee = "scott green" |
47,587 | <question>: Who is the head linesman at game xxxv? <context>: CREATE TABLE table_name_66 (head_linesman VARCHAR, game VARCHAR) | SELECT head_linesman FROM table_name_66 WHERE game = "xxxv" |
47,588 | <question>: What game had Al Jury as field judge? <context>: CREATE TABLE table_name_8 (game VARCHAR, field_judge VARCHAR) | SELECT game FROM table_name_8 WHERE field_judge = "al jury" |
47,589 | <question>: What's listed for Departure that has 1676 listed for the Kilometers? <context>: CREATE TABLE table_name_88 (departure VARCHAR, kilometers VARCHAR) | SELECT departure FROM table_name_88 WHERE kilometers = 1676 |
47,590 | <question>: What is the sum of Kilometers that has a Station Code of KGQ? <context>: CREATE TABLE table_name_43 (kilometers VARCHAR, station_code VARCHAR) | SELECT COUNT(kilometers) FROM table_name_43 WHERE station_code = "kgq" |
47,591 | <question>: What's the Kilometers listed that also has the Station Code of Kuda? <context>: CREATE TABLE table_name_87 (kilometers VARCHAR, station_code VARCHAR) | SELECT kilometers FROM table_name_87 WHERE station_code = "kuda" |
47,592 | <question>: What's listed for the Station Code that has the Arrival of 02:20? <context>: CREATE TABLE table_name_40 (station_code VARCHAR, arrival VARCHAR) | SELECT station_code FROM table_name_40 WHERE arrival = "02:20" |
47,593 | <question>: What is listede for Departure that also has a Station Code of CLT? <context>: CREATE TABLE table_name_33 (departure VARCHAR, station_code VARCHAR) | SELECT departure FROM table_name_33 WHERE station_code = "clt" |
47,594 | <question>: What is the smallest area with 45 population? <context>: CREATE TABLE table_name_72 (area__km_2__ INTEGER, population__2000_ VARCHAR) | SELECT MIN(area__km_2__) FROM table_name_72 WHERE population__2000_ = "45" |
47,595 | <question>: What is the area located in Rhode Island with more than 38 sq mi area? <context>: CREATE TABLE table_name_81 (area__km_2__ INTEGER, location VARCHAR, area__sq_mi_ VARCHAR) | SELECT AVG(area__km_2__) FROM table_name_81 WHERE location = "rhode island" AND area__sq_mi_ > 38 |
47,596 | <question>: What is the average area in New York that is larger than 55 sq mi? <context>: CREATE TABLE table_name_21 (area__km_2__ INTEGER, area__sq_mi_ VARCHAR, location VARCHAR) | SELECT AVG(area__km_2__) FROM table_name_21 WHERE area__sq_mi_ > 55 AND location = "new york" |
47,597 | <question>: Which event was in Tokyo, Japan and had an opponent of rumina sato? <context>: CREATE TABLE table_name_38 (event VARCHAR, location VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_38 WHERE location = "tokyo, japan" AND opponent = "rumina sato" |
47,598 | <question>: Which round was 2:30? <context>: CREATE TABLE table_name_45 (round VARCHAR, time VARCHAR) | SELECT round FROM table_name_45 WHERE time = "2:30" |
47,599 | <question>: Which event had the opponent of shinya aoki and was at 4:56? <context>: CREATE TABLE table_name_90 (event VARCHAR, opponent VARCHAR, time VARCHAR) | SELECT event FROM table_name_90 WHERE opponent = "shinya aoki" AND time = "4:56" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.