Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
37,300 |
<question>: What are the numbers of steals associated with players having exactly 3 blocks? <context>: CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR)
|
SELECT steals FROM table_24913533_4 WHERE blocks = 3
|
37,301 |
<question>: How many numbers of rebounds are associated with exactly 18 points? <context>: CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR)
|
SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18
|
37,302 |
<question>: What is the maximum number of assists for players named Anastasia Kostaki? <context>: CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR)
|
SELECT MAX(assists) FROM table_24913533_4 WHERE player = "Anastasia Kostaki"
|
37,303 |
<question>: What is Tiffani Johnson's maximum steals? <context>: CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR)
|
SELECT MAX(steals) FROM table_24912693_4 WHERE player = "Tiffani Johnson"
|
37,304 |
<question>: Which player has 17 blocks? <context>: CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR)
|
SELECT player FROM table_24912693_4 WHERE blocks = 17
|
37,305 |
<question>: How many field goals does the player with 84 rebounds have? <context>: CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR)
|
SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84
|
37,306 |
<question>: How many blocks does the player who played 893 minutes have? <context>: CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR)
|
SELECT blocks FROM table_24912693_4 WHERE minutes = 893
|
37,307 |
<question>: How many points does the player with 2 steals have? <context>: CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR)
|
SELECT points FROM table_24912693_4 WHERE steals = 2
|
37,308 |
<question>: Name the most number <context>: CREATE TABLE table_24924576_2 (number INTEGER)
|
SELECT MAX(number) FROM table_24924576_2
|
37,309 |
<question>: Name the titles for tko 11/12 <context>: CREATE TABLE table_24924576_2 (titles VARCHAR, result VARCHAR)
|
SELECT titles FROM table_24924576_2 WHERE result = "TKO 11/12"
|
37,310 |
<question>: Where was the game played when the result/margin was won by 70? <context>: CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR)
|
SELECT venue FROM table_24919137_2 WHERE result_margin = "WON by 70"
|
37,311 |
<question>: What is the result/margin when fox sports 1 broadcast the game played at mcg? <context>: CREATE TABLE table_24919137_2 (result_margin VARCHAR, broadcaster VARCHAR, venue VARCHAR)
|
SELECT result_margin FROM table_24919137_2 WHERE broadcaster = "Fox Sports 1" AND venue = "MCG"
|
37,312 |
<question>: Which network broadcast the game when the Western Bulldogs played melbourne? <context>: CREATE TABLE table_24919137_2 (broadcaster VARCHAR, opposition VARCHAR)
|
SELECT broadcaster FROM table_24919137_2 WHERE opposition = "Melbourne"
|
37,313 |
<question>: Where was the game played when the score was 14.16 (100)-12.12 (84)? <context>: CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR)
|
SELECT venue FROM table_24919137_2 WHERE score = "14.16 (100)-12.12 (84)"
|
37,314 |
<question>: What was the ladder position when the score was 15.9 (99)–14.6 (90)? <context>: CREATE TABLE table_24919137_2 (ladder_position VARCHAR, score VARCHAR)
|
SELECT ladder_position FROM table_24919137_2 WHERE score = "15.9 (99)–14.6 (90)"
|
37,315 |
<question>: On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team? <context>: CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCHAR, opposition VARCHAR)
|
SELECT date FROM table_24919137_2 WHERE ladder_position = "8th" AND opposition = "Hawthorn"
|
37,316 |
<question>: What school is nicknamed the panthers? <context>: CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR)
|
SELECT school FROM table_24935743_2 WHERE nickname = "Panthers"
|
37,317 |
<question>: What school is in Jeromesville? <context>: CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR)
|
SELECT location FROM table_24935743_2 WHERE school = "Jeromesville"
|
37,318 |
<question>: What was the previous school of the ft7in (m) tall player? <context>: CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR)
|
SELECT previous_school FROM table_24925945_3 WHERE height = "ft7in (m)"
|
37,319 |
<question>: What was the previous school of #22? <context>: CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR)
|
SELECT previous_school FROM table_24925945_3 WHERE _number = 22
|
37,320 |
<question>: What is the title of the episode with production code 3x5402? <context>: CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR)
|
SELECT title FROM table_24938621_2 WHERE production_code = "3X5402"
|
37,321 |
<question>: What is the title of the episode with production code 3x5405? <context>: CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR)
|
SELECT title FROM table_24938621_2 WHERE production_code = "3X5405"
|
37,322 |
<question>: Who as the home team for game on 5 october 2011? <context>: CREATE TABLE table_24949975_1 (home_team VARCHAR, date VARCHAR)
|
SELECT home_team FROM table_24949975_1 WHERE date = "5 October 2011"
|
37,323 |
<question>: What was the stadium for the home team of shamrock rovers and result of 3–0? <context>: CREATE TABLE table_24949975_1 (stadium VARCHAR, home_team VARCHAR, result VARCHAR)
|
SELECT stadium FROM table_24949975_1 WHERE home_team = "Shamrock Rovers" AND result = "3–0"
|
37,324 |
<question>: What was the away team when the result was 2–1 and home team was the bohemians? <context>: CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR)
|
SELECT away_team FROM table_24949975_1 WHERE result = "2–1" AND home_team = "Bohemians"
|
37,325 |
<question>: Who was the home team for the 2013 season and the result was 0–0? <context>: CREATE TABLE table_24949975_1 (home_team VARCHAR, season VARCHAR, result VARCHAR)
|
SELECT home_team FROM table_24949975_1 WHERE season = "2013" AND result = "0–0"
|
37,326 |
<question>: What is the date for the game at the tallaght stadium and result was 0–1? <context>: CREATE TABLE table_24949975_1 (date VARCHAR, stadium VARCHAR, result VARCHAR)
|
SELECT date FROM table_24949975_1 WHERE stadium = "Tallaght stadium" AND result = "0–1"
|
37,327 |
<question>: What opponents played Waldstadion in a game? <context>: CREATE TABLE table_24951872_2 (opponent VARCHAR, game_site VARCHAR)
|
SELECT opponent FROM table_24951872_2 WHERE game_site = "Waldstadion"
|
37,328 |
<question>: What was the maximum week that had attendance of 10738? <context>: CREATE TABLE table_24951872_2 (week INTEGER, attendance VARCHAR)
|
SELECT MAX(week) FROM table_24951872_2 WHERE attendance = 10738
|
37,329 |
<question>: What is the production code of the episode written by Cathryn Humphris? <context>: CREATE TABLE table_24938621_3 (production_code VARCHAR, written_by VARCHAR)
|
SELECT production_code FROM table_24938621_3 WHERE written_by = "Cathryn Humphris"
|
37,330 |
<question>: What is the production code of the episode that had 5.43 million viewers? <context>: CREATE TABLE table_24938621_3 (production_code VARCHAR, us_viewers__million_ VARCHAR)
|
SELECT production_code FROM table_24938621_3 WHERE us_viewers__million_ = "5.43"
|
37,331 |
<question>: What was the title of the episode directed by Jesse Warn? <context>: CREATE TABLE table_24938621_3 (production_code VARCHAR, directed_by VARCHAR)
|
SELECT production_code FROM table_24938621_3 WHERE directed_by = "Jesse Warn"
|
37,332 |
<question>: What episode number was written by Gregg Hurwitz? <context>: CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR)
|
SELECT no FROM table_24938621_3 WHERE written_by = "Gregg Hurwitz"
|
37,333 |
<question>: If the dry density is 800, what is the drying shrinkage %? <context>: CREATE TABLE table_24969173_1 (drying_shrinkage___percentage_ VARCHAR, dry_density__kg_m3_ VARCHAR)
|
SELECT drying_shrinkage___percentage_ FROM table_24969173_1 WHERE dry_density__kg_m3_ = 800
|
37,334 |
<question>: What number in the series was episode 7 in the season? <context>: CREATE TABLE table_24961421_1 (series__number VARCHAR, season__number VARCHAR)
|
SELECT series__number FROM table_24961421_1 WHERE season__number = 7
|
37,335 |
<question>: Who wrote the episode that had 12.15 million viewers? <context>: CREATE TABLE table_24961421_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT written_by FROM table_24961421_1 WHERE us_viewers__millions_ = "12.15"
|
37,336 |
<question>: What number in the season was the episode with 12.23 million viewers? <context>: CREATE TABLE table_24961421_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT season__number FROM table_24961421_1 WHERE us_viewers__millions_ = "12.23"
|
37,337 |
<question>: What is the date of the game at Olympic Stadium? <context>: CREATE TABLE table_24989925_2 (date VARCHAR, game_site VARCHAR)
|
SELECT date FROM table_24989925_2 WHERE game_site = "Olympic Stadium"
|
37,338 |
<question>: How many weeks total are there? <context>: CREATE TABLE table_24989925_2 (week INTEGER)
|
SELECT MAX(week) FROM table_24989925_2
|
37,339 |
<question>: What was the team's record when they played at Rheinenergiestadion? <context>: CREATE TABLE table_24989925_2 (team_record VARCHAR, game_site VARCHAR)
|
SELECT team_record FROM table_24989925_2 WHERE game_site = "RheinEnergieStadion"
|
37,340 |
<question>: What is the lowest overall number of 09-10 oi 2nd? <context>: CREATE TABLE table_24990183_6 (Id VARCHAR)
|
SELECT MIN(09 AS _10_oi_2nd) FROM table_24990183_6
|
37,341 |
<question>: What was the maximum 09-10 i/o best? <context>: CREATE TABLE table_24990183_4 (Id VARCHAR)
|
SELECT MAX(09 AS _10_i_o_best) FROM table_24990183_4
|
37,342 |
<question>: If the rank is 17, what are the names? <context>: CREATE TABLE table_24990183_7 (name VARCHAR, rank VARCHAR)
|
SELECT name FROM table_24990183_7 WHERE rank = 17
|
37,343 |
<question>: If the WS points is 947, what is the 08-09 gp/jgp 2nd ? <context>: CREATE TABLE table_24990183_7 (ws_points VARCHAR)
|
SELECT 08 AS _09_gp_jgp_2nd FROM table_24990183_7 WHERE ws_points = 947
|
37,344 |
<question>: How many points did he have when he has in the 34th position? <context>: CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)
|
SELECT points FROM table_24998088_1 WHERE position = "34th"
|
37,345 |
<question>: How many wins were listed when he had 112 points? <context>: CREATE TABLE table_24998088_1 (wins VARCHAR, points VARCHAR)
|
SELECT wins FROM table_24998088_1 WHERE points = "112"
|
37,346 |
<question>: In what series did he have the 7th position? <context>: CREATE TABLE table_24998088_1 (series VARCHAR, position VARCHAR)
|
SELECT series FROM table_24998088_1 WHERE position = "7th"
|
37,347 |
<question>: what were his points when he was in 8th position? <context>: CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)
|
SELECT points FROM table_24998088_1 WHERE position = "8th"
|
37,348 |
<question>: What was the vote when the air date is 4 october 1997? <context>: CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR)
|
SELECT vote FROM table_25016824_2 WHERE air_date = "4 October 1997"
|
37,349 |
<question>: Who was eliminated when immunity went to kent (jürgen)? <context>: CREATE TABLE table_25016824_2 (eliminated VARCHAR, immunity VARCHAR)
|
SELECT eliminated FROM table_25016824_2 WHERE immunity = "Kent (Jürgen)"
|
37,350 |
<question>: Who was eliminated when the vote was 8-1? <context>: CREATE TABLE table_25016824_2 (eliminated VARCHAR, vote VARCHAR)
|
SELECT eliminated FROM table_25016824_2 WHERE vote = "8-1"
|
37,351 |
<question>: How many entries are there for vote when the air date was 15 november 1997? <context>: CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR)
|
SELECT COUNT(vote) FROM table_25016824_2 WHERE air_date = "15 November 1997"
|
37,352 |
<question>: What was the reward when immunity went to martin and finish is 13th voted out 8th jury member day 46? <context>: CREATE TABLE table_25016824_2 (reward VARCHAR, immunity VARCHAR, finish VARCHAR)
|
SELECT reward FROM table_25016824_2 WHERE immunity = "Martin" AND finish = "13th voted Out 8th Jury Member Day 46"
|
37,353 |
<question>: How many values for Macedonian correspond to Slovianski value of Veliki? <context>: CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR)
|
SELECT COUNT(macedonian) FROM table_25008327_8 WHERE slovianski = "veliki"
|
37,354 |
<question>: What area all values for Slovak when value for Ukranian is пес, собака? <context>: CREATE TABLE table_25008327_8 (slovak VARCHAR, ukrainian VARCHAR)
|
SELECT slovak FROM table_25008327_8 WHERE ukrainian = "пес, собака"
|
37,355 |
<question>: What is every value for Croatian when value for English is dog? <context>: CREATE TABLE table_25008327_8 (croatian VARCHAR, english VARCHAR)
|
SELECT croatian FROM table_25008327_8 WHERE english = "dog"
|
37,356 |
<question>: What is every value for Polish when Balarusian is ноч? <context>: CREATE TABLE table_25008327_8 (polish VARCHAR, belarusian VARCHAR)
|
SELECT polish FROM table_25008327_8 WHERE belarusian = "ноч"
|
37,357 |
<question>: What is every value for Russian when value for Bulgarian is пес, куче? <context>: CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR)
|
SELECT russian FROM table_25008327_8 WHERE bulgarian = "пес, куче"
|
37,358 |
<question>: What is every value for словјански if polish is książka? <context>: CREATE TABLE table_25008327_8 (словјански VARCHAR, polish VARCHAR)
|
SELECT словјански FROM table_25008327_8 WHERE polish = "książka"
|
37,359 |
<question>: Name the position for christopher smith <context>: CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_25017530_5 WHERE player = "Christopher Smith"
|
37,360 |
<question>: Name the college for nate binder <context>: CREATE TABLE table_25017530_5 (college VARCHAR, player VARCHAR)
|
SELECT college FROM table_25017530_5 WHERE player = "Nate Binder"
|
37,361 |
<question>: Name the least pick number for steven turner <context>: CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR)
|
SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = "Steven Turner"
|
37,362 |
<question>: Name the cfl team for steven turner <context>: CREATE TABLE table_25017530_5 (cfl_team VARCHAR, player VARCHAR)
|
SELECT cfl_team FROM table_25017530_5 WHERE player = "Steven Turner"
|
37,363 |
<question>: Name the cfl team for lb position <context>: CREATE TABLE table_25017530_6 (cfl_team VARCHAR, position VARCHAR)
|
SELECT cfl_team FROM table_25017530_6 WHERE position = "LB"
|
37,364 |
<question>: Name the cfl team for saskatchewan <context>: CREATE TABLE table_25017530_6 (cfl_team VARCHAR, college VARCHAR)
|
SELECT cfl_team FROM table_25017530_6 WHERE college = "Saskatchewan"
|
37,365 |
<question>: Name the position for michael warner <context>: CREATE TABLE table_25017530_6 (position VARCHAR, player VARCHAR)
|
SELECT position FROM table_25017530_6 WHERE player = "Michael Warner"
|
37,366 |
<question>: How many episodes were numbered 5? <context>: CREATE TABLE table_2501754_2 (production_count VARCHAR, episode__number VARCHAR)
|
SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5
|
37,367 |
<question>: What are the original air date(s) for episodes with production code ipea343l? <context>: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR)
|
SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA343L"
|
37,368 |
<question>: What are the original air date(s) for episodes with production code ipea345a? <context>: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR)
|
SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA345A"
|
37,369 |
<question>: What are the original air date(s) for episodes with 8.63 million viewers? <context>: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, viewing_figures_millions VARCHAR)
|
SELECT original_airdate FROM table_2501754_2 WHERE viewing_figures_millions = "8.63"
|
37,370 |
<question>: What is the power of the Type R? <context>: CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR)
|
SELECT power FROM table_250230_2 WHERE model = "Type R"
|
37,371 |
<question>: What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres? <context>: CREATE TABLE table_250230_2 (brakes VARCHAR, model VARCHAR, wheels VARCHAR, tyres VARCHAR)
|
SELECT brakes FROM table_250230_2 WHERE wheels = "16x8.0JJ (front) 16x8.0JJ (rear)" AND tyres = "225/50R16 92V(front) 225/50R16 92V(rear)" AND model = "Type RB 4AT"
|
37,372 |
<question>: What brakes for the 4-speed automatic gearbox? <context>: CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR)
|
SELECT brakes FROM table_250230_2 WHERE gearbox = "4-speed automatic"
|
37,373 |
<question>: What is the power for the Spirit R (Type B)? <context>: CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR)
|
SELECT power FROM table_250230_2 WHERE model = "Spirit R (Type B)"
|
37,374 |
<question>: What is the gearbox when the torque is torque? <context>: CREATE TABLE table_250230_2 (gearbox VARCHAR)
|
SELECT gearbox FROM table_250230_2 WHERE "torque" = "torque"
|
37,375 |
<question>: Name the first elected for alabama 3 <context>: CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR)
|
SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = "Alabama 3"
|
37,376 |
<question>: Name the party for spencer bachus <context>: CREATE TABLE table_25030512_4 (party VARCHAR, incumbent VARCHAR)
|
SELECT party FROM table_25030512_4 WHERE incumbent = "Spencer Bachus"
|
37,377 |
<question>: Name the district for mike rogers <context>: CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR)
|
SELECT district FROM table_25030512_4 WHERE incumbent = "Mike Rogers"
|
37,378 |
<question>: Name the district for spencer bachus <context>: CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR)
|
SELECT district FROM table_25030512_4 WHERE incumbent = "Spencer Bachus"
|
37,379 |
<question>: In what district was keith ellison the incumbent? <context>: CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR)
|
SELECT district FROM table_25030512_26 WHERE incumbent = "Keith Ellison"
|
37,380 |
<question>: List the kilo watt hoours per day for moline. <context>: CREATE TABLE table_25034983_2 (day_power___w__ VARCHAR, city VARCHAR)
|
SELECT day_power___w__ FROM table_25034983_2 WHERE city = "Moline"
|
37,381 |
<question>: In which year did the voice of muscatine show start? <context>: CREATE TABLE table_25034983_2 (start VARCHAR, nickname VARCHAR)
|
SELECT start FROM table_25034983_2 WHERE nickname = "Voice of Muscatine"
|
37,382 |
<question>: In what year was cumulus founded? <context>: CREATE TABLE table_25034983_2 (start INTEGER, owner VARCHAR)
|
SELECT MIN(start) FROM table_25034983_2 WHERE owner = "Cumulus"
|
37,383 |
<question>: Does the city of moline have stereo? <context>: CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR)
|
SELECT stereo FROM table_25034983_2 WHERE city = "Moline"
|
37,384 |
<question>: what is the company with the parent company wrightbus? <context>: CREATE TABLE table_250309_1 (company VARCHAR, parent_company VARCHAR)
|
SELECT company FROM table_250309_1 WHERE parent_company = "Wrightbus"
|
37,385 |
<question>: what is the name ofhte company where the plant is in burnaston? <context>: CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR)
|
SELECT company FROM table_250309_1 WHERE plant = "Burnaston"
|
37,386 |
<question>: what models are produced where the plant is scarborough? <context>: CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR)
|
SELECT models_produced FROM table_250309_1 WHERE plant = "Scarborough"
|
37,387 |
<question>: how many models produced where the plant is castle bromwich? <context>: CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR)
|
SELECT COUNT(models_produced) FROM table_250309_1 WHERE plant = "Castle Bromwich"
|
37,388 |
<question>: what is the production where the parent company is ariel? <context>: CREATE TABLE table_250309_1 (production__latest_figures_ VARCHAR, parent_company VARCHAR)
|
SELECT production__latest_figures_ FROM table_250309_1 WHERE parent_company = "Ariel"
|
37,389 |
<question>: What kind of chassis on the angie's list sponsored car? <context>: CREATE TABLE table_2503102_2 (chassis VARCHAR, primary_sponsor VARCHAR)
|
SELECT chassis FROM table_2503102_2 WHERE primary_sponsor = "Angie's List"
|
37,390 |
<question>: What team owns the car owned by chip ganassi? <context>: CREATE TABLE table_2503102_2 (team VARCHAR, listed_owner_s_ VARCHAR)
|
SELECT team FROM table_2503102_2 WHERE listed_owner_s_ = "Chip Ganassi"
|
37,391 |
<question>: What chassis is on the car repped by team rahal letterman lanigan racing? <context>: CREATE TABLE table_2503102_2 (chassis VARCHAR, team VARCHAR)
|
SELECT chassis FROM table_2503102_2 WHERE team = "Rahal Letterman Lanigan Racing"
|
37,392 |
<question>: Who drives the abc supply sponsored cor? <context>: CREATE TABLE table_2503102_2 (driver_s_ VARCHAR, primary_sponsor VARCHAR)
|
SELECT driver_s_ FROM table_2503102_2 WHERE primary_sponsor = "ABC Supply"
|
37,393 |
<question>: Name the number of district for tom marino <context>: CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR)
|
SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Tom Marino"
|
37,394 |
<question>: Name the district for 1994 <context>: CREATE TABLE table_25030512_41 (district VARCHAR, first_elected VARCHAR)
|
SELECT district FROM table_25030512_41 WHERE first_elected = 1994
|
37,395 |
<question>: Name the party for pennsylvania 10 <context>: CREATE TABLE table_25030512_41 (party VARCHAR, district VARCHAR)
|
SELECT party FROM table_25030512_41 WHERE district = "Pennsylvania 10"
|
37,396 |
<question>: Name the result for glenn thompson <context>: CREATE TABLE table_25030512_41 (result VARCHAR, incumbent VARCHAR)
|
SELECT result FROM table_25030512_41 WHERE incumbent = "Glenn Thompson"
|
37,397 |
<question>: Name the number of district for bill shuster <context>: CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR)
|
SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Bill Shuster"
|
37,398 |
<question>: List the total play time for 11 starts. <context>: CREATE TABLE table_25038931_1 (minutes INTEGER, starts VARCHAR)
|
SELECT MAX(minutes) FROM table_25038931_1 WHERE starts = 11
|
37,399 |
<question>: In what region is the enrollment ratio in primary 94.40? <context>: CREATE TABLE table_25042332_22 (region VARCHAR, primary__6_13_years_ VARCHAR)
|
SELECT region FROM table_25042332_22 WHERE primary__6_13_years_ = "94.40"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.