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