Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
10,400
<question>: How many total drawn has less than 4 lost and 8 points? <context>: CREATE TABLE table_name_59 (drawn INTEGER, lost VARCHAR, points VARCHAR)
SELECT SUM(drawn) FROM table_name_59 WHERE lost < 4 AND points = 8
10,401
<question>: How many lost are there before game 7? <context>: CREATE TABLE table_name_5 (lost INTEGER, games INTEGER)
SELECT SUM(lost) FROM table_name_5 WHERE games < 7
10,402
<question>: How many touchdowns did the player with less than 4495 yards, long of less than 80, and yds/att less than 5.5 have? <context>: CREATE TABLE table_name_65 (touchdowns VARCHAR, yds_att VARCHAR, net_yds VARCHAR, long VARCHAR)
SELECT COUNT(touchdowns) FROM table_name_65 WHERE net_yds < 4495 AND long < 80 AND yds_att < 5.5
10,403
<question>: How many attempts did the player ranking with a number higher than 1, who started after 1997 and had yds/att of 5 have? <context>: CREATE TABLE table_name_66 (attempts INTEGER, rank VARCHAR, start VARCHAR, yds_att VARCHAR)
SELECT SUM(attempts) FROM table_name_66 WHERE start > 1997 AND yds_att = 5 AND rank > 1
10,404
<question>: What is the average net yds for the player who had a long of 68 and started after 1984? <context>: CREATE TABLE table_name_59 (net_yds INTEGER, long VARCHAR, start VARCHAR)
SELECT AVG(net_yds) FROM table_name_59 WHERE long = 68 AND start > 1984
10,405
<question>: What is the lowest number of attempts for the player with a rank number larger than 3, who started after 1984 and had less than 6.1 yds/att? <context>: CREATE TABLE table_name_57 (attempts INTEGER, yds_att VARCHAR, rank VARCHAR, start VARCHAR)
SELECT MIN(attempts) FROM table_name_57 WHERE rank > 3 AND start > 1984 AND yds_att < 6.1
10,406
<question>: Which film was made before 2002? <context>: CREATE TABLE table_name_1 (film VARCHAR, year INTEGER)
SELECT film FROM table_name_1 WHERE year < 2002
10,407
<question>: Which film has a role named Taylor? <context>: CREATE TABLE table_name_68 (film VARCHAR, role VARCHAR)
SELECT film FROM table_name_68 WHERE role = "taylor"
10,408
<question>: What notes does the film Touch & go have? <context>: CREATE TABLE table_name_3 (notes VARCHAR, film VARCHAR)
SELECT notes FROM table_name_3 WHERE film = "touch & go"
10,409
<question>: What language is the film Marion Bridge? <context>: CREATE TABLE table_name_46 (language VARCHAR, film VARCHAR)
SELECT language FROM table_name_46 WHERE film = "marion bridge"
10,410
<question>: What language is the film with a character named Annabelle? <context>: CREATE TABLE table_name_90 (language VARCHAR, role VARCHAR)
SELECT language FROM table_name_90 WHERE role = "annabelle"
10,411
<question>: What is the lowest pick from the Furman School that is a round smaller than 8? <context>: CREATE TABLE table_name_83 (pick INTEGER, school VARCHAR, round VARCHAR)
SELECT MIN(pick) FROM table_name_83 WHERE school = "furman" AND round < 8
10,412
<question>: What is the total number of round picks from the Morris Brown School? <context>: CREATE TABLE table_name_59 (round VARCHAR, school VARCHAR)
SELECT COUNT(round) FROM table_name_59 WHERE school = "morris brown"
10,413
<question>: What is the total number of rounds for the player of Rell Tipton? <context>: CREATE TABLE table_name_58 (round VARCHAR, player VARCHAR)
SELECT COUNT(round) FROM table_name_58 WHERE player = "rell tipton"
10,414
<question>: On what date was game 3 played? <context>: CREATE TABLE table_name_44 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_44 WHERE game = 3
10,415
<question>: Which game took place on April 22? <context>: CREATE TABLE table_name_8 (game VARCHAR, date VARCHAR)
SELECT game FROM table_name_8 WHERE date = "april 22"
10,416
<question>: What was the standing in the series after game 1? <context>: CREATE TABLE table_name_1 (series VARCHAR, game VARCHAR)
SELECT series FROM table_name_1 WHERE game = 1
10,417
<question>: Which race had a time of 1:24.35? <context>: CREATE TABLE table_name_90 (race VARCHAR, time VARCHAR)
SELECT race FROM table_name_90 WHERE time = "1:24.35"
10,418
<question>: What was the date for the G1 group race at Flemington? <context>: CREATE TABLE table_name_98 (date VARCHAR, group VARCHAR, venue VARCHAR)
SELECT date FROM table_name_98 WHERE group = "g1" AND venue = "flemington"
10,419
<question>: What was the combined weight in kilograms of the horses in the race at Chelmsford stakes? <context>: CREATE TABLE table_name_42 (weight__kg_ VARCHAR, race VARCHAR)
SELECT COUNT(weight__kg_) FROM table_name_42 WHERE race = "chelmsford stakes"
10,420
<question>: In what year was the artist Afro-dite? <context>: CREATE TABLE table_name_54 (year VARCHAR, artist VARCHAR)
SELECT year FROM table_name_54 WHERE artist = "afro-dite"
10,421
<question>: What stadium was the game held at on December 23, 2001? <context>: CREATE TABLE table_name_2 (stadium VARCHAR, date VARCHAR)
SELECT stadium FROM table_name_2 WHERE date = "december 23, 2001"
10,422
<question>: What is the Record for the game held on December 2, 2001? <context>: CREATE TABLE table_name_52 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_52 WHERE date = "december 2, 2001"
10,423
<question>: What is the average Game where there were 65,666 in attendance? <context>: CREATE TABLE table_name_24 (game INTEGER, attendance VARCHAR)
SELECT AVG(game) FROM table_name_24 WHERE attendance = "65,666"
10,424
<question>: Driving Force EX of 25cm (10-inch) involves what feature? <context>: CREATE TABLE table_name_46 (feature VARCHAR, driving_force_ex VARCHAR)
SELECT feature FROM table_name_46 WHERE driving_force_ex = "25cm (10-inch)"
10,425
<question>: GT Force of no, and a Driving Force Pro of no, and a G27 Racing Wheel of no has what driving force gt? <context>: CREATE TABLE table_name_2 (driving_force_gt VARCHAR, g27_racing_wheel VARCHAR, gt_force VARCHAR, driving_force_pro VARCHAR)
SELECT driving_force_gt FROM table_name_2 WHERE gt_force = "no" AND driving_force_pro = "no" AND g27_racing_wheel = "no"
10,426
<question>: Feature of gear stick involves which driving force gt? <context>: CREATE TABLE table_name_34 (driving_force_gt VARCHAR, feature VARCHAR)
SELECT driving_force_gt FROM table_name_34 WHERE feature = "gear stick"
10,427
<question>: Driving Force EX of no, and a Driving Force GT of yes, and a Driving Force Pro of yes has what feature? <context>: CREATE TABLE table_name_64 (feature VARCHAR, driving_force_pro VARCHAR, driving_force_ex VARCHAR, driving_force_gt VARCHAR)
SELECT feature FROM table_name_64 WHERE driving_force_ex = "no" AND driving_force_gt = "yes" AND driving_force_pro = "yes"
10,428
<question>: Driving Force EX of no, and a Driving Force Pro of no, and a G25 Racing Wheel of no involves which g27 racing wheel? <context>: CREATE TABLE table_name_45 (g27_racing_wheel VARCHAR, g25_racing_wheel VARCHAR, driving_force_ex VARCHAR, driving_force_pro VARCHAR)
SELECT g27_racing_wheel FROM table_name_45 WHERE driving_force_ex = "no" AND driving_force_pro = "no" AND g25_racing_wheel = "no"
10,429
<question>: GT Force of yes, and a G27 Racing Wheel of 16 involves which driving force ex? <context>: CREATE TABLE table_name_87 (driving_force_ex VARCHAR, gt_force VARCHAR, g27_racing_wheel VARCHAR)
SELECT driving_force_ex FROM table_name_87 WHERE gt_force = "yes" AND g27_racing_wheel = "16"
10,430
<question>: What is the score on october 7? <context>: CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_95 WHERE date = "october 7"
10,431
<question>: How many people went to the game that had 17-13? <context>: CREATE TABLE table_name_39 (attendance INTEGER, score VARCHAR)
SELECT SUM(attendance) FROM table_name_39 WHERE score = "17-13"
10,432
<question>: What is the highest rank for the airport with a code of HKG/VHHH? <context>: CREATE TABLE table_name_56 (rank INTEGER, code__iata_icao_ VARCHAR)
SELECT MAX(rank) FROM table_name_56 WHERE code__iata_icao_ = "hkg/vhhh"
10,433
<question>: How many Points have Drawn of 7, and a Team of corinthians, and a Played larger than 18? <context>: CREATE TABLE table_name_72 (points VARCHAR, played VARCHAR, drawn VARCHAR, team VARCHAR)
SELECT COUNT(points) FROM table_name_72 WHERE drawn = 7 AND team = "corinthians" AND played > 18
10,434
<question>: Which Points is the highest one that has a Position of 5, and a Played smaller than 18? <context>: CREATE TABLE table_name_80 (points INTEGER, position VARCHAR, played VARCHAR)
SELECT MAX(points) FROM table_name_80 WHERE position = 5 AND played < 18
10,435
<question>: Which Drawn is the average one that has a Position smaller than 9, and Points smaller than 22, and a Lost smaller than 9, and an Against larger than 29? <context>: CREATE TABLE table_name_76 (drawn INTEGER, against VARCHAR, lost VARCHAR, position VARCHAR, points VARCHAR)
SELECT AVG(drawn) FROM table_name_76 WHERE position < 9 AND points < 22 AND lost < 9 AND against > 29
10,436
<question>: How many Against have Played smaller than 18? <context>: CREATE TABLE table_name_54 (against VARCHAR, played INTEGER)
SELECT COUNT(against) FROM table_name_54 WHERE played < 18
10,437
<question>: What is the points difference associated with more than 3 points and more than 0 losses? <context>: CREATE TABLE table_name_66 (points_difference VARCHAR, points VARCHAR, lost VARCHAR)
SELECT points_difference FROM table_name_66 WHERE points > 3 AND lost > 0
10,438
<question>: What is the difference associated with more than 2 losses and more than 1 point? <context>: CREATE TABLE table_name_45 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)
SELECT points_difference FROM table_name_45 WHERE lost > 2 AND points > 1
10,439
<question>: What location did game 64 take place <context>: CREATE TABLE table_name_34 (location VARCHAR, game VARCHAR)
SELECT location FROM table_name_34 WHERE game = 64
10,440
<question>: What was the Attendance after Week 7 at Tiger Stadium? <context>: CREATE TABLE table_name_27 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_27 WHERE game_site = "tiger stadium" AND week > 7
10,441
<question>: What was the Attendance at the Game with a Result of w 21–7? <context>: CREATE TABLE table_name_71 (attendance INTEGER, result VARCHAR)
SELECT AVG(attendance) FROM table_name_71 WHERE result = "w 21–7"
10,442
<question>: How many years have a Make/ Model of new flyer c40lfr? <context>: CREATE TABLE table_name_4 (year VARCHAR, make__model VARCHAR)
SELECT COUNT(year) FROM table_name_4 WHERE make__model = "new flyer c40lfr"
10,443
<question>: Which Make/ Model that Numbers (Quantity Ordered) of 1461–1500 (40 buses)? <context>: CREATE TABLE table_name_36 (make__model VARCHAR, numbers__quantity_ordered_ VARCHAR)
SELECT make__model FROM table_name_36 WHERE numbers__quantity_ordered_ = "1461–1500 (40 buses)"
10,444
<question>: Which Fuel Propulsion has Numbers (Quantity Ordered) of 7124-7156 (33 buses)? <context>: CREATE TABLE table_name_34 (fuel_propulsion VARCHAR, numbers__quantity_ordered_ VARCHAR)
SELECT fuel_propulsion FROM table_name_34 WHERE numbers__quantity_ordered_ = "7124-7156 (33 buses)"
10,445
<question>: Which Numbers (Quantity Ordered) have a Fuel Propulsion of cng, and a Year smaller than 2008, and a Make/ Model of nabi 40-lfw? <context>: CREATE TABLE table_name_96 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR, fuel_propulsion VARCHAR, year VARCHAR)
SELECT numbers__quantity_ordered_ FROM table_name_96 WHERE fuel_propulsion = "cng" AND year < 2008 AND make__model = "nabi 40-lfw"
10,446
<question>: Which Numbers (Quantity Ordered) have a Make/ Model of eldorado national passport? <context>: CREATE TABLE table_name_88 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR)
SELECT numbers__quantity_ordered_ FROM table_name_88 WHERE make__model = "eldorado national passport"
10,447
<question>: What is the earliest year for Alabama with a pick under 26? <context>: CREATE TABLE table_name_78 (year INTEGER, college VARCHAR, pick VARCHAR)
SELECT MIN(year) FROM table_name_78 WHERE college = "alabama" AND pick < 26
10,448
<question>: Which player was pick 2 later than 2010? <context>: CREATE TABLE table_name_23 (player VARCHAR, year VARCHAR, pick VARCHAR)
SELECT player FROM table_name_23 WHERE year > 2010 AND pick = 2
10,449
<question>: Which position has a pick greater than 28? <context>: CREATE TABLE table_name_31 (position VARCHAR, pick INTEGER)
SELECT position FROM table_name_31 WHERE pick > 28
10,450
<question>: what team played on august 25 <context>: CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_14 WHERE date = "august 25"
10,451
<question>: What class is associated with 0 stages won, a hummer, and before 2009? <context>: CREATE TABLE table_name_83 (class VARCHAR, year VARCHAR, stages_won VARCHAR, vehicle VARCHAR)
SELECT class FROM table_name_83 WHERE stages_won = "0" AND vehicle = "hummer" AND year < 2009
10,452
<question>: What position did he finish in 2012? <context>: CREATE TABLE table_name_59 (position VARCHAR, year VARCHAR)
SELECT position FROM table_name_59 WHERE year = 2012
10,453
<question>: What year did he compete in the car class and win 0 stages? <context>: CREATE TABLE table_name_59 (year VARCHAR, class VARCHAR, stages_won VARCHAR)
SELECT year FROM table_name_59 WHERE class = "car" AND stages_won = "0"
10,454
<question>: on week of february 12, in the west division, what is the position? <context>: CREATE TABLE table_name_16 (position VARCHAR, division VARCHAR, week VARCHAR)
SELECT position FROM table_name_16 WHERE division = "west" AND week = "february 12"
10,455
<question>: What is the listed Location with a # found of 4? <context>: CREATE TABLE table_name_47 (location VARCHAR, _number_found VARCHAR)
SELECT location FROM table_name_47 WHERE _number_found = "4"
10,456
<question>: What's the Ball Diameter with the Location oof El Manati, and the Period of 1200 BCE? <context>: CREATE TABLE table_name_87 (ball_diameter VARCHAR, location VARCHAR, period VARCHAR)
SELECT ball_diameter FROM table_name_87 WHERE location = "el manati" AND period = "1200 bce"
10,457
<question>: What's the Ball Diameter with the Culture of Olmec? <context>: CREATE TABLE table_name_54 (ball_diameter VARCHAR, culture VARCHAR)
SELECT ball_diameter FROM table_name_54 WHERE culture = "olmec"
10,458
<question>: What's the Period with # found of 5? <context>: CREATE TABLE table_name_81 (period VARCHAR, _number_found VARCHAR)
SELECT period FROM table_name_81 WHERE _number_found = "5"
10,459
<question>: Which Country has azeri tv tower? <context>: CREATE TABLE table_name_61 (country VARCHAR, name VARCHAR)
SELECT country FROM table_name_61 WHERE name = "azeri tv tower"
10,460
<question>: What is Pinnacle height of chimney of orot rabin? <context>: CREATE TABLE table_name_31 (pinnacle_height VARCHAR, name VARCHAR)
SELECT pinnacle_height FROM table_name_31 WHERE name = "chimney of orot rabin"
10,461
<question>: Which Country has a Pinnacle height of metres (ft) and a Name of azeri tv tower? <context>: CREATE TABLE table_name_37 (country VARCHAR, pinnacle_height VARCHAR, name VARCHAR)
SELECT country FROM table_name_37 WHERE pinnacle_height = "metres (ft)" AND name = "azeri tv tower"
10,462
<question>: Which Town has a Structural type of guyed mast and a Country of belgium? <context>: CREATE TABLE table_name_29 (town VARCHAR, structural_type VARCHAR, country VARCHAR)
SELECT town FROM table_name_29 WHERE structural_type = "guyed mast" AND country = "belgium"
10,463
<question>: What is the Main use of emley moor tower (mk.3)? <context>: CREATE TABLE table_name_54 (main_use VARCHAR, name VARCHAR)
SELECT main_use FROM table_name_54 WHERE name = "emley moor tower (mk.3)"
10,464
<question>: What is the Main use of transmitter solt in Hungary? <context>: CREATE TABLE table_name_75 (main_use VARCHAR, country VARCHAR, name VARCHAR)
SELECT main_use FROM table_name_75 WHERE country = "hungary" AND name = "transmitter solt"
10,465
<question>: what day was the sandown <context>: CREATE TABLE table_name_56 (date VARCHAR, race_title VARCHAR)
SELECT date FROM table_name_56 WHERE race_title = "sandown"
10,466
<question>: What is the Birth of the lady that has a Became Duchess on 18 august 1593 husband's accession? <context>: CREATE TABLE table_name_52 (birth VARCHAR, became_duchess VARCHAR)
SELECT birth FROM table_name_52 WHERE became_duchess = "18 august 1593 husband's accession"
10,467
<question>: Who is the Spouse of the Duchess that has a Birth on 29 october 1451? <context>: CREATE TABLE table_name_47 (spouse VARCHAR, birth VARCHAR)
SELECT spouse FROM table_name_47 WHERE birth = "29 october 1451"
10,468
<question>: Who is The Spouse of the Duchess that has a Became Duchess on 31 october 1733 husband's accession? <context>: CREATE TABLE table_name_31 (spouse VARCHAR, became_duchess VARCHAR)
SELECT spouse FROM table_name_31 WHERE became_duchess = "31 october 1733 husband's accession"
10,469
<question>: WHo Became Duchess that has a Death of 26 october 1614? <context>: CREATE TABLE table_name_84 (became_duchess VARCHAR, death VARCHAR)
SELECT became_duchess FROM table_name_84 WHERE death = "26 october 1614"
10,470
<question>: What is the Spouse of the Duchess that has a Death on 6 april 1780? <context>: CREATE TABLE table_name_61 (spouse VARCHAR, death VARCHAR)
SELECT spouse FROM table_name_61 WHERE death = "6 april 1780"
10,471
<question>: Which season with 16 races had less than 321 points and a larger percent than 65.78 possible? <context>: CREATE TABLE table_name_17 (season VARCHAR, races VARCHAR, points VARCHAR, percentage_of_possible_points VARCHAR)
SELECT season FROM table_name_17 WHERE points < 321 AND percentage_of_possible_points > 65.78 AND races = 16
10,472
<question>: What season had less than 301 points and 17 races? <context>: CREATE TABLE table_name_28 (season VARCHAR, points VARCHAR, races VARCHAR)
SELECT season FROM table_name_28 WHERE points < 301 AND races = 17
10,473
<question>: What time did bruce anstey complete in a honda 1000cc? <context>: CREATE TABLE table_name_88 (time VARCHAR, machine VARCHAR, rider_s_ VARCHAR)
SELECT time FROM table_name_88 WHERE machine = "honda 1000cc" AND rider_s_ = "bruce anstey"
10,474
<question>: Who holds the time of 17:11.572? <context>: CREATE TABLE table_name_88 (race VARCHAR, time VARCHAR)
SELECT race FROM table_name_88 WHERE time = "17:11.572"
10,475
<question>: Who holds the time of 17:11.572? <context>: CREATE TABLE table_name_83 (race VARCHAR, time VARCHAR)
SELECT race FROM table_name_83 WHERE time = "17:11.572"
10,476
<question>: What machine did susan jenness trophy earn the trophy? <context>: CREATE TABLE table_name_75 (machine VARCHAR, trophy VARCHAR)
SELECT machine FROM table_name_75 WHERE trophy = "susan jenness trophy"
10,477
<question>: Agri culture b larger than 12.6, what is the lowest vehicles per 1000? <context>: CREATE TABLE table_name_14 (vehicles__per_1000__d INTEGER, agri_culture_b INTEGER)
SELECT MIN(vehicles__per_1000__d) FROM table_name_14 WHERE agri_culture_b > 12.6
10,478
<question>: Income poverty f smaller than 13.6, and a Mining b of 1, and a Structural poverty g smaller than 7.8, so what is the total number of agriculture? <context>: CREATE TABLE table_name_10 (agri_culture_b VARCHAR, structural_poverty_g VARCHAR, income_poverty_f VARCHAR, mining_b VARCHAR)
SELECT COUNT(agri_culture_b) FROM table_name_10 WHERE income_poverty_f < 13.6 AND mining_b = 1 AND structural_poverty_g < 7.8
10,479
<question>: What's the bulgarian word for January? <context>: CREATE TABLE table_name_95 (bulgarian_name VARCHAR, english_name VARCHAR)
SELECT bulgarian_name FROM table_name_95 WHERE english_name = "january"
10,480
<question>: What's the Bulgarian word for september? <context>: CREATE TABLE table_name_56 (bulgarian_name VARCHAR, english_name VARCHAR)
SELECT bulgarian_name FROM table_name_56 WHERE english_name = "september"
10,481
<question>: Who was the Opponent when the Save was || 36,388 ||15-7||? <context>: CREATE TABLE table_name_26 (opponent VARCHAR, save VARCHAR)
SELECT opponent FROM table_name_26 WHERE save = "|| 36,388 ||15-7||"
10,482
<question>: What Opponent played on the Date May 21? <context>: CREATE TABLE table_name_55 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_55 WHERE date = "may 21"
10,483
<question>: What was the Score when the Loss was ruthven (1-4)? <context>: CREATE TABLE table_name_68 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_68 WHERE loss = "ruthven (1-4)"
10,484
<question>: What was the highest pick for Penn State? <context>: CREATE TABLE table_name_57 (pick__number INTEGER, college VARCHAR)
SELECT MAX(pick__number) FROM table_name_57 WHERE college = "penn state"
10,485
<question>: What position does pick number 12 play? <context>: CREATE TABLE table_name_87 (position VARCHAR, pick__number VARCHAR)
SELECT position FROM table_name_87 WHERE pick__number = 12
10,486
<question>: What is the pick number for the College of Central Missouri State? <context>: CREATE TABLE table_name_45 (pick__number VARCHAR, college VARCHAR)
SELECT pick__number FROM table_name_45 WHERE college = "central missouri state"
10,487
<question>: What was Rich Voltzke's highest pick number? <context>: CREATE TABLE table_name_79 (pick__number INTEGER, player VARCHAR)
SELECT MAX(pick__number) FROM table_name_79 WHERE player = "rich voltzke"
10,488
<question>: How many Games has Points larger than 0 and a Lost smaller than 4? <context>: CREATE TABLE table_name_44 (games VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR)
SELECT COUNT(games) FROM table_name_44 WHERE points > 0 AND lost < 4 AND drawn < 0
10,489
<question>: which Points has Games smaller than 7? <context>: CREATE TABLE table_name_32 (points INTEGER, games INTEGER)
SELECT MAX(points) FROM table_name_32 WHERE games < 7
10,490
<question>: How many Drawns have Points smaller than 5 and a Lost larger than 7? <context>: CREATE TABLE table_name_87 (drawn VARCHAR, points VARCHAR, lost VARCHAR)
SELECT COUNT(drawn) FROM table_name_87 WHERE points < 5 AND lost > 7
10,491
<question>: Which record has a date of January 29? <context>: CREATE TABLE table_name_35 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_35 WHERE date = "january 29"
10,492
<question>: Which score has a visitor of New York? <context>: CREATE TABLE table_name_62 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_62 WHERE visitor = "new york"
10,493
<question>: What is the name of the visitor on January 24? <context>: CREATE TABLE table_name_40 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_40 WHERE date = "january 24"
10,494
<question>: Which home game has a date of January 7? <context>: CREATE TABLE table_name_3 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_3 WHERE date = "january 7"
10,495
<question>: What is the highest number of doctorates the college of informatics and systems, which has 0 specialists and less than 2 master's degrees, have? <context>: CREATE TABLE table_name_10 (doctorate INTEGER, masters VARCHAR, specialist VARCHAR, college VARCHAR)
SELECT MAX(doctorate) FROM table_name_10 WHERE specialist = 0 AND college = "informatics and systems" AND masters < 2
10,496
<question>: On what Date is the Blue Coalition 8,80%? <context>: CREATE TABLE table_name_62 (date VARCHAR, blue_coalition VARCHAR)
SELECT date FROM table_name_62 WHERE blue_coalition = "8,80%"
10,497
<question>: What Source has an Attack of 9,77%? <context>: CREATE TABLE table_name_8 (source VARCHAR, attack VARCHAR)
SELECT source FROM table_name_8 WHERE attack = "9,77%"
10,498
<question>: What Attack has a Source of NCIOM? <context>: CREATE TABLE table_name_71 (attack VARCHAR, source VARCHAR)
SELECT attack FROM table_name_71 WHERE source = "nciom"
10,499
<question>: What Attack has a 30,00% GERB? <context>: CREATE TABLE table_name_74 (attack VARCHAR, gerb VARCHAR)
SELECT attack FROM table_name_74 WHERE gerb = "30,00%"