Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
56,300 | <question>: WHAT ARE THE LAPS WITH POINTS LARGER THAN 5, WITH FORSYTHE RACING, AND GRID 5? <context>: CREATE TABLE table_name_22 (laps INTEGER, grid VARCHAR, points VARCHAR, team VARCHAR) | SELECT MIN(laps) FROM table_name_22 WHERE points > 5 AND team = "forsythe racing" AND grid = 5 |
56,301 | <question>: WHAT IS THE SCORE WHEN THE COMPETITION WAS 1978 world cup qualification? <context>: CREATE TABLE table_name_2 (score VARCHAR, competition VARCHAR) | SELECT score FROM table_name_2 WHERE competition = "1978 world cup qualification" |
56,302 | <question>: What is the average pick number for jerry hackenbruck who was overall pick less than 282? <context>: CREATE TABLE table_name_78 (pick INTEGER, name VARCHAR, overall VARCHAR) | SELECT AVG(pick) FROM table_name_78 WHERE name = "jerry hackenbruck" AND overall < 282 |
56,303 | <question>: What is the lowest draft pick number for mark doak who had an overall pick smaller than 147? <context>: CREATE TABLE table_name_30 (pick INTEGER, name VARCHAR, overall VARCHAR) | SELECT MIN(pick) FROM table_name_30 WHERE name = "mark doak" AND overall < 147 |
56,304 | <question>: What position did the player have who was from the college of california? <context>: CREATE TABLE table_name_55 (position VARCHAR, college VARCHAR) | SELECT position FROM table_name_55 WHERE college = "california" |
56,305 | <question>: What college did jerry hackenbruck come from who had an overall pick less than 344? <context>: CREATE TABLE table_name_60 (college VARCHAR, overall VARCHAR, name VARCHAR) | SELECT college FROM table_name_60 WHERE overall < 344 AND name = "jerry hackenbruck" |
56,306 | <question>: What team was the opponent on 03/18/08? <context>: CREATE TABLE table_name_41 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_41 WHERE date = "03/18/08" |
56,307 | <question>: What is the site where the game was held in the city of Delaware? <context>: CREATE TABLE table_name_39 (site VARCHAR, city VARCHAR) | SELECT site FROM table_name_39 WHERE city = "delaware" |
56,308 | <question>: What city was the game held in when the opponent was Towson? <context>: CREATE TABLE table_name_93 (city VARCHAR, opponent VARCHAR) | SELECT city FROM table_name_93 WHERE opponent = "towson" |
56,309 | <question>: What team was opponen in baltimore, at 2:00pm, on 4/06/08? <context>: CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR, city VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_11 WHERE city = "baltimore" AND time = "2:00pm" AND date = "4/06/08" |
56,310 | <question>: What date was the game held at UMBC Field? <context>: CREATE TABLE table_name_47 (date VARCHAR, site VARCHAR) | SELECT date FROM table_name_47 WHERE site = "umbc field" |
56,311 | <question>: What date was the game held in Towson? <context>: CREATE TABLE table_name_76 (date VARCHAR, city VARCHAR) | SELECT date FROM table_name_76 WHERE city = "towson" |
56,312 | <question>: Which season premiered on 29 October 1990 and had more than 6 episodes? <context>: CREATE TABLE table_name_94 (series INTEGER, premiere VARCHAR, episodes VARCHAR) | SELECT MAX(series) FROM table_name_94 WHERE premiere = "29 october 1990" AND episodes > 6 |
56,313 | <question>: WHAT DATE HAD A SCORE OF 71-64? <context>: CREATE TABLE table_name_46 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_46 WHERE score = "71-64" |
56,314 | <question>: WHAT SCORE WAS ON SEPTEMBER 21? <context>: CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_50 WHERE date = "september 21" |
56,315 | <question>: WHAT SCORE HAD A RECORD OF 1-1? <context>: CREATE TABLE table_name_42 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_42 WHERE record = "1-1" |
56,316 | <question>: WHAT OPPONENT HAD A DATE OF SEPTEMBER 28? <context>: CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_17 WHERE date = "september 28" |
56,317 | <question>: WHAT SCORE HAD A LOSS AND RECORD OF 1-1? <context>: CREATE TABLE table_name_75 (score VARCHAR, result VARCHAR, record VARCHAR) | SELECT score FROM table_name_75 WHERE result = "loss" AND record = "1-1" |
56,318 | <question>: Who is the alternate for Andy Brown, and Nick Grady? <context>: CREATE TABLE table_name_7 (alternate__2_ VARCHAR, coach VARCHAR, captain VARCHAR) | SELECT alternate__2_ FROM table_name_7 WHERE coach = "andy brown" AND captain = "nick grady" |
56,319 | <question>: Which captain has Gintare Karpaviciute as an alternate? <context>: CREATE TABLE table_name_33 (captain VARCHAR, alternate__1_ VARCHAR) | SELECT captain FROM table_name_33 WHERE alternate__1_ = "gintare karpaviciute" |
56,320 | <question>: Which coach works with Robert Harvey? <context>: CREATE TABLE table_name_1 (coach VARCHAR, captain VARCHAR) | SELECT coach FROM table_name_1 WHERE captain = "robert harvey" |
56,321 | <question>: Which Nickname has Founded of 1954? <context>: CREATE TABLE table_name_66 (nickname VARCHAR, founded VARCHAR) | SELECT nickname FROM table_name_66 WHERE founded = 1954 |
56,322 | <question>: Which team played in the Boston Garden when the final score was L 118-130? <context>: CREATE TABLE table_name_18 (team VARCHAR, location_attendance VARCHAR, score VARCHAR) | SELECT team FROM table_name_18 WHERE location_attendance = "boston garden" AND score = "l 118-130" |
56,323 | <question>: What team played at the Boston Garden when the series was 1-0? <context>: CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR, series VARCHAR) | SELECT team FROM table_name_55 WHERE location_attendance = "boston garden" AND series = "1-0" |
56,324 | <question>: Which driver had a grid of 2? <context>: CREATE TABLE table_name_63 (driver VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_63 WHERE grid = 2 |
56,325 | <question>: What is the smallest grid value that had 16 points and a team of Mi-Jack Conquest Racing? <context>: CREATE TABLE table_name_79 (grid INTEGER, team VARCHAR, points VARCHAR) | SELECT MIN(grid) FROM table_name_79 WHERE team = "mi-jack conquest racing" AND points = "16" |
56,326 | <question>: What is the number of points associated with 165 laps? <context>: CREATE TABLE table_name_12 (points VARCHAR, laps VARCHAR) | SELECT points FROM table_name_12 WHERE laps = 165 |
56,327 | <question>: What is the total number of laps associated with 8 points and a grid under 8? <context>: CREATE TABLE table_name_9 (laps VARCHAR, points VARCHAR, grid VARCHAR) | SELECT COUNT(laps) FROM table_name_9 WHERE points = "8" AND grid < 8 |
56,328 | <question>: What is the lowest height in feet for the building located in platz der einheit 1, gallus, that was built after 1961 with a height less than 130 meters? <context>: CREATE TABLE table_name_62 (height__ft_ INTEGER, height__m_ VARCHAR, year_built VARCHAR, location VARCHAR) | SELECT MIN(height__ft_) FROM table_name_62 WHERE year_built > 1961 AND location = "platz der einheit 1, gallus" AND height__m_ < 130 |
56,329 | <question>: What is the sum of the heights in meters for the commerzbank tower built after 1984? <context>: CREATE TABLE table_name_70 (height__m_ INTEGER, year_built VARCHAR, name VARCHAR) | SELECT SUM(height__m_) FROM table_name_70 WHERE year_built > 1984 AND name = "commerzbank tower" |
56,330 | <question>: What is the earliest year that the building in sonnemannstraße/rückertstraße, ostend was built with a height larger than 185 meters? <context>: CREATE TABLE table_name_26 (year_built INTEGER, location VARCHAR, height__m_ VARCHAR) | SELECT MIN(year_built) FROM table_name_26 WHERE location = "sonnemannstraße/rückertstraße, ostend" AND height__m_ > 185 |
56,331 | <question>: What is the lowest height in meters for the building located in mailänder straße 1, sachsenhausen-süd, with a height shorter than 328.1 ft? <context>: CREATE TABLE table_name_70 (height__m_ INTEGER, location VARCHAR, height__ft_ VARCHAR) | SELECT MIN(height__m_) FROM table_name_70 WHERE location = "mailänder straße 1, sachsenhausen-süd" AND height__ft_ < 328.1 |
56,332 | <question>: What is the average population vlue for an area smaller than 26.69 square km and has an official name of Rogersville? <context>: CREATE TABLE table_name_71 (population INTEGER, area_km_2 VARCHAR, official_name VARCHAR) | SELECT AVG(population) FROM table_name_71 WHERE area_km_2 < 26.69 AND official_name = "rogersville" |
56,333 | <question>: What's the name of the album from 2012 with a Hammer Music / Nail Records label? <context>: CREATE TABLE table_name_50 (album VARCHAR, label VARCHAR, year VARCHAR) | SELECT album FROM table_name_50 WHERE label = "hammer music / nail records" AND year = 2012 |
56,334 | <question>: What year had the Hungarian top 40 album charts of 3? <context>: CREATE TABLE table_name_69 (year VARCHAR, hungarian_top_40_album_charts VARCHAR) | SELECT year FROM table_name_69 WHERE hungarian_top_40_album_charts = "3" |
56,335 | <question>: What type of release was Napisten Hava? <context>: CREATE TABLE table_name_81 (release_type VARCHAR, album VARCHAR) | SELECT release_type FROM table_name_81 WHERE album = "napisten hava" |
56,336 | <question>: What was the name of the album that was a demo release? <context>: CREATE TABLE table_name_44 (album VARCHAR, release_type VARCHAR) | SELECT album FROM table_name_44 WHERE release_type = "demo" |
56,337 | <question>: What is the serials issued in 1982 with a format of ABC-123? <context>: CREATE TABLE table_name_60 (serials_issued VARCHAR, serial_format VARCHAR, issued VARCHAR) | SELECT serials_issued FROM table_name_60 WHERE serial_format = "abc-123" AND issued = "1982" |
56,338 | <question>: Which design has a serial format of AB-12-34? <context>: CREATE TABLE table_name_46 (design VARCHAR, serial_format VARCHAR) | SELECT design FROM table_name_46 WHERE serial_format = "ab-12-34" |
56,339 | <question>: Which serials were issued with a design of black on yellow? <context>: CREATE TABLE table_name_78 (serials_issued VARCHAR, design VARCHAR) | SELECT serials_issued FROM table_name_78 WHERE design = "black on yellow" |
56,340 | <question>: WHo was the outgoing manager for the team of fc carl zeiss jena? <context>: CREATE TABLE table_name_36 (outgoing_manager VARCHAR, team VARCHAR) | SELECT outgoing_manager FROM table_name_36 WHERE team = "fc carl zeiss jena" |
56,341 | <question>: What team did the manager come from who departed due to an end of tenure as caretaker? <context>: CREATE TABLE table_name_56 (team VARCHAR, manner_of_departure VARCHAR) | SELECT team FROM table_name_56 WHERE manner_of_departure = "end of tenure as caretaker" |
56,342 | <question>: What was the date of appointment for the replaced manager, reiner geyer? <context>: CREATE TABLE table_name_73 (date_of_appointment VARCHAR, replaced_by VARCHAR) | SELECT date_of_appointment FROM table_name_73 WHERE replaced_by = "reiner geyer" |
56,343 | <question>: What was the date of vacancy after the outgoing manager, ralf santelli departed? <context>: CREATE TABLE table_name_2 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) | SELECT date_of_vacancy FROM table_name_2 WHERE outgoing_manager = "ralf santelli" |
56,344 | <question>: Who was the outgoing manager who departed due to fc energie cottbus purchased rights? <context>: CREATE TABLE table_name_80 (outgoing_manager VARCHAR, manner_of_departure VARCHAR) | SELECT outgoing_manager FROM table_name_80 WHERE manner_of_departure = "fc energie cottbus purchased rights" |
56,345 | <question>: How many times is the position lb and the overall is less than 46? <context>: CREATE TABLE table_name_25 (pick VARCHAR, position VARCHAR, overall VARCHAR) | SELECT COUNT(pick) FROM table_name_25 WHERE position = "lb" AND overall < 46 |
56,346 | <question>: what is the college when the overall is more than 76 for brian mitchell? <context>: CREATE TABLE table_name_98 (college VARCHAR, overall VARCHAR, name VARCHAR) | SELECT college FROM table_name_98 WHERE overall > 76 AND name = "brian mitchell" |
56,347 | <question>: what is the pick when the overall is less than 297 and the college is alabama? <context>: CREATE TABLE table_name_16 (pick VARCHAR, overall VARCHAR, college VARCHAR) | SELECT pick FROM table_name_16 WHERE overall < 297 AND college = "alabama" |
56,348 | <question>: what is the highest round when the college is penn state? <context>: CREATE TABLE table_name_72 (round INTEGER, college VARCHAR) | SELECT MAX(round) FROM table_name_72 WHERE college = "penn state" |
56,349 | <question>: What is the 1989 number when the 200 number is less than 52.8 in Arizona, New Mexico, and Utah <context>: CREATE TABLE table_name_41 (location VARCHAR) | SELECT SUM(1989) FROM table_name_41 WHERE 2000 < 52.8 AND location = "arizona, new mexico, and utah" |
56,350 | <question>: What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8? <context>: CREATE TABLE table_name_97 (location VARCHAR, reservation VARCHAR) | SELECT AVG(2000) FROM table_name_97 WHERE location = "montana" AND reservation = "fort peck indian reservation" AND 1979 < 26.8 |
56,351 | <question>: What is the 2000 number when the 1969 is 54.3, and the 1979 is less than 48.4? <context>: CREATE TABLE table_name_88 (Id VARCHAR) | SELECT SUM(2000) FROM table_name_88 WHERE 1969 = 54.3 AND 1979 < 48.4 |
56,352 | <question>: What is the 2000 number when the 1989 is less than 54.9 in Arizona, New Mexico, and Utah? <context>: CREATE TABLE table_name_94 (location VARCHAR) | SELECT SUM(2000) FROM table_name_94 WHERE 1989 < 54.9 AND location = "arizona, new mexico, and utah" |
56,353 | <question>: What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9? <context>: CREATE TABLE table_name_51 (reservation VARCHAR) | SELECT SUM(1979) FROM table_name_51 WHERE reservation = "standing rock indian reservation" AND 1989 < 54.9 |
56,354 | <question>: What Kerry's percentage where 66 people voted for another candidate? <context>: CREATE TABLE table_name_71 (kerry_percentage VARCHAR, others_number VARCHAR) | SELECT kerry_percentage FROM table_name_71 WHERE others_number = 66 |
56,355 | <question>: Can you tell me the average Laps that has the Time of +17.485, and the Grid smaller than 7? <context>: CREATE TABLE table_name_16 (laps INTEGER, time VARCHAR, grid VARCHAR) | SELECT AVG(laps) FROM table_name_16 WHERE time = "+17.485" AND grid < 7 |
56,356 | <question>: Can you tell me the sum of Grid that has the Manufacturer of aprilia, and the sandro cortese? <context>: CREATE TABLE table_name_96 (grid INTEGER, manufacturer VARCHAR, rider VARCHAR) | SELECT SUM(grid) FROM table_name_96 WHERE manufacturer = "aprilia" AND rider = "sandro cortese" |
56,357 | <question>: What was the date of game 21? <context>: CREATE TABLE table_name_85 (date VARCHAR, game VARCHAR) | SELECT date FROM table_name_85 WHERE game = 21 |
56,358 | <question>: What was the score of the game on June 10? <context>: CREATE TABLE table_name_10 (score_time VARCHAR, date VARCHAR) | SELECT score_time FROM table_name_10 WHERE date = "june 10" |
56,359 | <question>: What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23? <context>: CREATE TABLE table_name_40 (round INTEGER, pick VARCHAR, college_junior_club_team VARCHAR, player VARCHAR) | SELECT SUM(round) FROM table_name_40 WHERE college_junior_club_team = "brandon wheat kings ( whl )" AND player = "mike perovich (d)" AND pick < 23 |
56,360 | <question>: What is the sum of Round, when Player is Tim Hunter (RW), and when Pick is less than 54? <context>: CREATE TABLE table_name_32 (round INTEGER, player VARCHAR, pick VARCHAR) | SELECT SUM(round) FROM table_name_32 WHERE player = "tim hunter (rw)" AND pick < 54 |
56,361 | <question>: Who is the outgoing manager who was replaced by jürgen klopp? <context>: CREATE TABLE table_name_64 (outgoing_manager VARCHAR, replaced_by VARCHAR) | SELECT outgoing_manager FROM table_name_64 WHERE replaced_by = "jürgen klopp" |
56,362 | <question>: What is the date of appointment of the manager who was replaced by markus babbel? <context>: CREATE TABLE table_name_94 (date_of_appointment VARCHAR, replaced_by VARCHAR) | SELECT date_of_appointment FROM table_name_94 WHERE replaced_by = "markus babbel" |
56,363 | <question>: What was the manner of depature of the manager with a date of appointment on 23 November 2008? <context>: CREATE TABLE table_name_9 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) | SELECT manner_of_departure FROM table_name_9 WHERE date_of_appointment = "23 november 2008" |
56,364 | <question>: Who replaced the manager of team arminia bielefeld? <context>: CREATE TABLE table_name_44 (replaced_by VARCHAR, team VARCHAR) | SELECT replaced_by FROM table_name_44 WHERE team = "arminia bielefeld" |
56,365 | <question>: What is the date of vacancy of team fc bayern munich, which had a date of appointment on 27 April 2009? <context>: CREATE TABLE table_name_24 (date_of_vacancy VARCHAR, team VARCHAR, date_of_appointment VARCHAR) | SELECT date_of_vacancy FROM table_name_24 WHERE team = "fc bayern munich" AND date_of_appointment = "27 april 2009" |
56,366 | <question>: What is the date of appointment of outgoing manager fred rutten, who had a sacked manner of departure? <context>: CREATE TABLE table_name_26 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT date_of_appointment FROM table_name_26 WHERE manner_of_departure = "sacked" AND outgoing_manager = "fred rutten" |
56,367 | <question>: What was the length when James Swallow had a release longer than 2.1? <context>: CREATE TABLE table_name_36 (length VARCHAR, writer VARCHAR, release VARCHAR) | SELECT length FROM table_name_36 WHERE writer = "james swallow" AND release > 2.1 |
56,368 | <question>: Who wrote Infiltration? <context>: CREATE TABLE table_name_86 (writer VARCHAR, title VARCHAR) | SELECT writer FROM table_name_86 WHERE title = "infiltration" |
56,369 | <question>: What was the earliest release for Pathogen directed by Sharon Gosling? <context>: CREATE TABLE table_name_81 (release INTEGER, director VARCHAR, title VARCHAR) | SELECT MIN(release) FROM table_name_81 WHERE director = "sharon gosling" AND title = "pathogen" |
56,370 | <question>: What was the length of release 3.6? <context>: CREATE TABLE table_name_54 (length VARCHAR, release VARCHAR) | SELECT length FROM table_name_54 WHERE release = 3.6 |
56,371 | <question>: What day was the score for tournament of alcobaça 6–3, 2–6, 7–5? <context>: CREATE TABLE table_name_21 (date VARCHAR, tournament VARCHAR, score VARCHAR) | SELECT date FROM table_name_21 WHERE tournament = "alcobaça" AND score = "6–3, 2–6, 7–5" |
56,372 | <question>: What was the score for alcobaça when the opponent was in the final of xinyun han? <context>: CREATE TABLE table_name_27 (score VARCHAR, tournament VARCHAR, opponent_in_the_final VARCHAR) | SELECT score FROM table_name_27 WHERE tournament = "alcobaça" AND opponent_in_the_final = "xinyun han" |
56,373 | <question>: What was the score when the opponent was irena pavlovic and the surface was hard? <context>: CREATE TABLE table_name_94 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) | SELECT score FROM table_name_94 WHERE surface = "hard" AND opponent_in_the_final = "irena pavlovic" |
56,374 | <question>: What was the opponent in the final when the score was 6–3, 2–6, 7–5? <context>: CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, score VARCHAR) | SELECT opponent_in_the_final FROM table_name_69 WHERE score = "6–3, 2–6, 7–5" |
56,375 | <question>: What day was the surface clay and the score 6–1, 6–4? <context>: CREATE TABLE table_name_23 (date VARCHAR, surface VARCHAR, score VARCHAR) | SELECT date FROM table_name_23 WHERE surface = "clay" AND score = "6–1, 6–4" |
56,376 | <question>: What is the Phoenician letter for the Hangul of ㄹ? <context>: CREATE TABLE table_name_77 (phoenician VARCHAR, hangul VARCHAR) | SELECT phoenician FROM table_name_77 WHERE hangul = "ㄹ" |
56,377 | <question>: What is the Latin letter for the Tibetan of ས? <context>: CREATE TABLE table_name_13 (latin VARCHAR, tibetan VARCHAR) | SELECT latin FROM table_name_13 WHERE tibetan = "ས" |
56,378 | <question>: to the Latin of f, y, u/v/w? <context>: CREATE TABLE table_name_63 (greek VARCHAR, latin VARCHAR) | SELECT greek FROM table_name_63 WHERE latin = "f, y, u/v/w" |
56,379 | <question>: What is the Hangul equivalent of the Greek ϝ, υ? <context>: CREATE TABLE table_name_96 (hangul VARCHAR, greek VARCHAR) | SELECT hangul FROM table_name_96 WHERE greek = "ϝ, υ" |
56,380 | <question>: What is the Latin equivalent for the Phagspa of ꡙ? <context>: CREATE TABLE table_name_72 (latin VARCHAR, ’phagspa VARCHAR) | SELECT latin FROM table_name_72 WHERE ’phagspa = "ꡙ" |
56,381 | <question>: What was the surface played on for the match than began before 1897? <context>: CREATE TABLE table_name_93 (court_surface VARCHAR, began INTEGER) | SELECT court_surface FROM table_name_93 WHERE began < 1897 |
56,382 | <question>: For the Indian Wells Masters tournament, what was the country? <context>: CREATE TABLE table_name_96 (country VARCHAR, tournament VARCHAR) | SELECT country FROM table_name_96 WHERE tournament = "indian wells masters" |
56,383 | <question>: Which location was in China, and played on a hard court? <context>: CREATE TABLE table_name_69 (location VARCHAR, court_surface VARCHAR, country VARCHAR) | SELECT location FROM table_name_69 WHERE court_surface = "hard" AND country = "china" |
56,384 | <question>: What country was the Paris Masters tournament played in? <context>: CREATE TABLE table_name_83 (country VARCHAR, tournament VARCHAR) | SELECT country FROM table_name_83 WHERE tournament = "paris masters" |
56,385 | <question>: Who was the opponent when the H/A was H and the scorer was Ferguson? <context>: CREATE TABLE table_name_14 (opponents VARCHAR, h___a VARCHAR, scorers VARCHAR) | SELECT opponents FROM table_name_14 WHERE h___a = "h" AND scorers = "ferguson" |
56,386 | <question>: Who was the opponent on 11 August 1991 when the H/A was H? <context>: CREATE TABLE table_name_96 (opponents VARCHAR, h___a VARCHAR, date VARCHAR) | SELECT opponents FROM table_name_96 WHERE h___a = "h" AND date = "11 august 1991" |
56,387 | <question>: What was the H/A when the scorer was Hughes? <context>: CREATE TABLE table_name_50 (h___a VARCHAR, scorers VARCHAR) | SELECT h___a FROM table_name_50 WHERE scorers = "hughes" |
56,388 | <question>: What was the film that grossed $26,010,864 ranked? <context>: CREATE TABLE table_name_76 (rank INTEGER, gross VARCHAR) | SELECT MIN(rank) FROM table_name_76 WHERE gross = "$26,010,864" |
56,389 | <question>: How much did Universal Studio's film Xanadu gross? <context>: CREATE TABLE table_name_79 (gross VARCHAR, studio VARCHAR, title VARCHAR) | SELECT gross FROM table_name_79 WHERE studio = "universal" AND title = "xanadu" |
56,390 | <question>: What is the rank of Bronco Billy? <context>: CREATE TABLE table_name_21 (rank INTEGER, title VARCHAR) | SELECT AVG(rank) FROM table_name_21 WHERE title = "bronco billy" |
56,391 | <question>: Name the lowest Founded with the Name cougars? <context>: CREATE TABLE table_name_42 (founded INTEGER, nickname VARCHAR) | SELECT MIN(founded) FROM table_name_42 WHERE nickname = "cougars" |
56,392 | <question>: Which Affiliation has a Nickname of cougars? <context>: CREATE TABLE table_name_47 (affiliation VARCHAR, nickname VARCHAR) | SELECT affiliation FROM table_name_47 WHERE nickname = "cougars" |
56,393 | <question>: Name the Founded which has a Affiliation of private/methodist? <context>: CREATE TABLE table_name_6 (founded INTEGER, affiliation VARCHAR) | SELECT MAX(founded) FROM table_name_6 WHERE affiliation = "private/methodist" |
56,394 | <question>: What is Label, when Date is 1987? <context>: CREATE TABLE table_name_57 (label VARCHAR, date VARCHAR) | SELECT label FROM table_name_57 WHERE date = "1987" |
56,395 | <question>: What is Date, when Format is Vinyl, and when Label is Mercury? <context>: CREATE TABLE table_name_65 (date VARCHAR, format VARCHAR, label VARCHAR) | SELECT date FROM table_name_65 WHERE format = "vinyl" AND label = "mercury" |
56,396 | <question>: What is Date, when Region is Yugoslavia? <context>: CREATE TABLE table_name_33 (date VARCHAR, region VARCHAR) | SELECT date FROM table_name_33 WHERE region = "yugoslavia" |
56,397 | <question>: What is Format, when Label is Bronze, when Date is 1982, and when Catalogue is 204 636? <context>: CREATE TABLE table_name_12 (format VARCHAR, catalogue VARCHAR, label VARCHAR, date VARCHAR) | SELECT format FROM table_name_12 WHERE label = "bronze" AND date = "1982" AND catalogue = "204 636" |
56,398 | <question>: What is Date, when Label is Jugoton? <context>: CREATE TABLE table_name_48 (date VARCHAR, label VARCHAR) | SELECT date FROM table_name_48 WHERE label = "jugoton" |
56,399 | <question>: What is Premier Date, when Cycle is less than 2? <context>: CREATE TABLE table_name_53 (premiere_date VARCHAR, cycle INTEGER) | SELECT premiere_date FROM table_name_53 WHERE cycle < 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.