text stringlengths 114 1.06k |
|---|
### question: Which label is dated February 14, 2002? ### answer: SELECT label FROM table_name_32 WHERE date = "february 14, 2002" ### context: CREATE TABLE table_name_32 (label VARCHAR, date VARCHAR) |
### question: Which catalog is in cd format? ### answer: SELECT catalog FROM table_name_54 WHERE format = "cd" ### context: CREATE TABLE table_name_54 (catalog VARCHAR, format VARCHAR) |
### question: What event did Mark Teltscher win? ### answer: SELECT event FROM table_name_9 WHERE winner = "mark teltscher" ### context: CREATE TABLE table_name_9 (event VARCHAR, winner VARCHAR) |
### question: When was the event in the City of Baden? ### answer: SELECT date FROM table_name_35 WHERE city = "baden" ### context: CREATE TABLE table_name_35 (date VARCHAR, city VARCHAR) |
### question: What event had a prize of €900,000? ### answer: SELECT event FROM table_name_80 WHERE prize = "€900,000" ### context: CREATE TABLE table_name_80 (event VARCHAR, prize VARCHAR) |
### question: When was the event in Dublin? ### answer: SELECT date FROM table_name_50 WHERE city = "dublin" ### context: CREATE TABLE table_name_50 (date VARCHAR, city VARCHAR) |
### question: What city did an event have a prize of €288,180? ### answer: SELECT city FROM table_name_96 WHERE prize = "€288,180" ### context: CREATE TABLE table_name_96 (city VARCHAR, prize VARCHAR) |
### question: What city was the event in when Patrik Antonius won? ### answer: SELECT city FROM table_name_93 WHERE winner = "patrik antonius" ### context: CREATE TABLE table_name_93 (city VARCHAR, winner VARCHAR) |
### question: Who was the winning constructor at the circuit of parioli? ### answer: SELECT winning_constructor FROM table_name_71 WHERE circuit = "parioli" ### context: CREATE TABLE table_name_71 (winning_constructor VARCHAR, circuit VARCHAR) |
### question: When did Gaspare Bona win the Pozzo Circuit? ### answer: SELECT date FROM table_name_98 WHERE winning_driver = "gaspare bona" AND name = "pozzo circuit" ### context: CREATE TABLE table_name_98 (date VARCHAR, winning_driver VARCHAR, name VARCHAR) |
### question: Who was the winning constructor of the Grand Prix Du Salon ? ### answer: SELECT winning_constructor FROM table_name_24 WHERE name = "grand prix du salon" ### context: CREATE TABLE table_name_24 (winning_constructor VARCHAR, name VARCHAR) |
### question: Which circuit did françois eysermann win ? ### answer: SELECT circuit FROM table_name_54 WHERE winning_driver = "françois eysermann" ### context: CREATE TABLE table_name_54 (circuit VARCHAR, winning_driver VARCHAR) |
### question: What is the largest silver with Gold larger than 4, a Nation of united states, and a Total larger than 26? ### answer: SELECT MAX(silver) FROM table_name_19 WHERE gold > 4 AND nation = "united states" AND total > 26 ### context: CREATE TABLE table_name_19 (silver INTEGER, total VARCHAR, gold VARCHAR, nati... |
### question: How many silvers have a Nation of hungary, and a Rank larger than 10? ### answer: SELECT COUNT(silver) FROM table_name_30 WHERE nation = "hungary" AND rank > 10 ### context: CREATE TABLE table_name_30 (silver VARCHAR, nation VARCHAR, rank VARCHAR) |
### question: Which silver has a Gold smaller than 12, a Rank smaller than 5, and a Bronze of 5? ### answer: SELECT silver FROM table_name_24 WHERE gold < 12 AND rank < 5 AND bronze = 5 ### context: CREATE TABLE table_name_24 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR) |
### question: Who did they play on August 12? ### answer: SELECT opponent FROM table_name_48 WHERE date = "august 12" ### context: CREATE TABLE table_name_48 (opponent VARCHAR, date VARCHAR) |
### question: Which model has 175 seats? ### answer: SELECT model FROM table_name_92 WHERE seats = 175 ### context: CREATE TABLE table_name_92 (model VARCHAR, seats VARCHAR) |
### question: In what year was the ctc-3 model built? ### answer: SELECT year_built FROM table_name_41 WHERE model = "ctc-3" ### context: CREATE TABLE table_name_41 (year_built VARCHAR, model VARCHAR) |
### question: How many seats does the BTC-5 model have? ### answer: SELECT SUM(seats) FROM table_name_57 WHERE model = "btc-5" ### context: CREATE TABLE table_name_57 (seats INTEGER, model VARCHAR) |
### question: For the train built in 2012 with less than 179 seats, what is the Fleet ID? ### answer: SELECT fleet_id FROM table_name_37 WHERE year_built = "2012" AND seats < 179 ### context: CREATE TABLE table_name_37 (fleet_id VARCHAR, year_built VARCHAR, seats VARCHAR) |
### question: What was the record at the game attended by 10,389? ### answer: SELECT record FROM table_name_48 WHERE attendance = "10,389" ### context: CREATE TABLE table_name_48 (record VARCHAR, attendance VARCHAR) |
### question: What was the score of the game that had a loss of Drese (2-2)? ### answer: SELECT score FROM table_name_99 WHERE loss = "drese (2-2)" ### context: CREATE TABLE table_name_99 (score VARCHAR, loss VARCHAR) |
### question: What is the score of the game attended by 25,034? ### answer: SELECT score FROM table_name_85 WHERE attendance = "25,034" ### context: CREATE TABLE table_name_85 (score VARCHAR, attendance VARCHAR) |
### question: How often are the Olympic games hosted? ### answer: SELECT AVG(year) FROM table_name_74 WHERE tournament = "olympic games" ### context: CREATE TABLE table_name_74 (year INTEGER, tournament VARCHAR) |
### question: Where was the 1984 Olympics hosted? ### answer: SELECT tournament FROM table_name_29 WHERE year = 1984 ### context: CREATE TABLE table_name_29 (tournament VARCHAR, year VARCHAR) |
### question: How many years was the issue price $19.95? ### answer: SELECT COUNT(year_of_issue) FROM table_name_52 WHERE issue_price = "$19.95" ### context: CREATE TABLE table_name_52 (year_of_issue VARCHAR, issue_price VARCHAR) |
### question: Which composition has an issue price of $99.00? ### answer: SELECT composition FROM table_name_79 WHERE issue_price = "$99.00" ### context: CREATE TABLE table_name_79 (composition VARCHAR, issue_price VARCHAR) |
### question: Tier of 2, and a Season of 2000–01 is what European competitions? ### answer: SELECT european_competitions FROM table_name_35 WHERE tier = 2 AND season = "2000–01" ### context: CREATE TABLE table_name_35 (european_competitions VARCHAR, tier VARCHAR, season VARCHAR) |
### question: Season of 2012–13 is what league? ### answer: SELECT league FROM table_name_68 WHERE season = "2012–13" ### context: CREATE TABLE table_name_68 (league VARCHAR, season VARCHAR) |
### question: Tier of 2, and a Season of 2004–05 is what European competitions? ### answer: SELECT european_competitions FROM table_name_49 WHERE tier = 2 AND season = "2004–05" ### context: CREATE TABLE table_name_49 (european_competitions VARCHAR, tier VARCHAR, season VARCHAR) |
### question: Which operator has a rank of 7? ### answer: SELECT operator FROM table_name_20 WHERE rank = 7 ### context: CREATE TABLE table_name_20 (operator VARCHAR, rank VARCHAR) |
### question: What's the lowest ranking source of copper, copper ore, concentrated and leached? ### answer: SELECT MIN(rank) FROM table_name_60 WHERE source_of_copper = "copper ore, concentrated and leached" ### context: CREATE TABLE table_name_60 (rank INTEGER, source_of_copper VARCHAR) |
### question: What was Stéphan Perrot rank average? ### answer: SELECT AVG(rank) FROM table_name_61 WHERE name = "stéphan perrot" ### context: CREATE TABLE table_name_61 (rank INTEGER, name VARCHAR) |
### question: What was Maxim Podoprigora's lowest rank? ### answer: SELECT MIN(rank) FROM table_name_91 WHERE name = "maxim podoprigora" ### context: CREATE TABLE table_name_91 (rank INTEGER, name VARCHAR) |
### question: Who is the away captain for Kingsmead? ### answer: SELECT away_captain FROM table_name_81 WHERE venue = "kingsmead" ### context: CREATE TABLE table_name_81 (away_captain VARCHAR, venue VARCHAR) |
### question: What was the first year that had a prize of 50,000? ### answer: SELECT first_year_aired FROM table_name_28 WHERE prize = "50,000" ### context: CREATE TABLE table_name_28 (first_year_aired VARCHAR, prize VARCHAR) |
### question: What year did Zone Rouge first air? ### answer: SELECT first_year_aired FROM table_name_79 WHERE name = "zone rouge" ### context: CREATE TABLE table_name_79 (first_year_aired VARCHAR, name VARCHAR) |
### question: What was the host of Horrid Henry? ### answer: SELECT host FROM table_name_74 WHERE country = "horrid henry" ### context: CREATE TABLE table_name_74 (host VARCHAR, country VARCHAR) |
### question: What is the average launch date of the vmv-1 vessel in Germany? ### answer: SELECT AVG(launched) FROM table_name_37 WHERE location = "germany" AND ship = "vmv-1" ### context: CREATE TABLE table_name_37 (launched INTEGER, location VARCHAR, ship VARCHAR) |
### question: Which location has a date of may 21? ### answer: SELECT location FROM table_name_95 WHERE date = "may 21" ### context: CREATE TABLE table_name_95 (location VARCHAR, date VARCHAR) |
### question: What is the total Decile that has a state authority, fairlie area and roll smarter than 206? ### answer: SELECT COUNT(decile) FROM table_name_49 WHERE authority = "state" AND area = "fairlie" AND roll < 206 ### context: CREATE TABLE table_name_49 (decile VARCHAR, roll VARCHAR, authority VARCHAR, area VARC... |
### question: What area is named Mackenzie college? ### answer: SELECT area FROM table_name_50 WHERE name = "mackenzie college" ### context: CREATE TABLE table_name_50 (area VARCHAR, name VARCHAR) |
### question: What is the highest percent of Bruce Arena when he loses more than 11 games? ### answer: SELECT MAX(pts) FROM table_name_9 WHERE coach = "bruce arena" AND loss > 11 ### context: CREATE TABLE table_name_9 (pts INTEGER, coach VARCHAR, loss VARCHAR) |
### question: What is the sum of points when Bruce Arena has 21 wins? ### answer: SELECT SUM(pts) FROM table_name_96 WHERE wins = 21 AND coach = "bruce arena" ### context: CREATE TABLE table_name_96 (pts INTEGER, wins VARCHAR, coach VARCHAR) |
### question: What was the outcome of the game played on 19-Sep-2006? ### answer: SELECT outcome FROM table_name_68 WHERE date = "19-sep-2006" ### context: CREATE TABLE table_name_68 (outcome VARCHAR, date VARCHAR) |
### question: Where was the tournament played on Oct. 8, 2006? ### answer: SELECT tournament FROM table_name_56 WHERE date = "oct. 8, 2006" ### context: CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR) |
### question: What is the final score of the tournament played in Clearwater, Florida? ### answer: SELECT score FROM table_name_47 WHERE tournament = "clearwater, florida" ### context: CREATE TABLE table_name_47 (score VARCHAR, tournament VARCHAR) |
### question: What is the score of the game that was played against Maria Kondratieva? ### answer: SELECT score FROM table_name_35 WHERE opponent = "maria kondratieva" ### context: CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR) |
### question: What was the surface of the game that resulted in a final score of 6-1 7-5? ### answer: SELECT surface FROM table_name_90 WHERE score = "6-1 7-5" ### context: CREATE TABLE table_name_90 (surface VARCHAR, score VARCHAR) |
### question: What was the Attendance when the Time was 2:13? ### answer: SELECT MIN(attendance) FROM table_name_34 WHERE time = "2:13" ### context: CREATE TABLE table_name_34 (attendance INTEGER, time VARCHAR) |
### question: What was the attendance when the record was 77-54? ### answer: SELECT MIN(attendance) FROM table_name_90 WHERE record = "77-54" ### context: CREATE TABLE table_name_90 (attendance INTEGER, record VARCHAR) |
### question: What did Xavier Doherty (Tasmania) set as his highest Overs? ### answer: SELECT MAX(overs) FROM table_name_25 WHERE player = "xavier doherty (tasmania)" ### context: CREATE TABLE table_name_25 (overs INTEGER, player VARCHAR) |
### question: What country does Tiger Woods play for? ### answer: SELECT country FROM table_name_17 WHERE player = "tiger woods" ### context: CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR) |
### question: What place did the player from England come in? ### answer: SELECT place FROM table_name_50 WHERE country = "england" ### context: CREATE TABLE table_name_50 (place VARCHAR, country VARCHAR) |
### question: What's the English Title of Fanny Och Alexander? ### answer: SELECT english_title FROM table_name_20 WHERE original_title = "fanny och alexander" ### context: CREATE TABLE table_name_20 (english_title VARCHAR, original_title VARCHAR) |
### question: What was the original title that was directed by Alain Resnais in France before 1986? ### answer: SELECT original_title FROM table_name_22 WHERE year < 1986 AND country = "france" AND director_s_ = "alain resnais" ### context: CREATE TABLE table_name_22 (original_title VARCHAR, director_s_ VARCHAR, year V... |
### question: What was the year of Megáll az Idö? ### answer: SELECT year FROM table_name_60 WHERE original_title = "megáll az idö" ### context: CREATE TABLE table_name_60 (year VARCHAR, original_title VARCHAR) |
### question: Avg/G smaller than 225.5, and a GP-GS of 8–0 has what name? ### answer: SELECT name FROM table_name_2 WHERE avg_g < 225.5 AND gp_gs = "8–0" ### context: CREATE TABLE table_name_2 (name VARCHAR, avg_g VARCHAR, gp_gs VARCHAR) |
### question: Avg/G that has a GP-GS of 13–13, and a Effic smaller than 114.23 has what total of numbers? ### answer: SELECT COUNT(avg_g) FROM table_name_82 WHERE gp_gs = "13–13" AND effic < 114.23 ### context: CREATE TABLE table_name_82 (avg_g VARCHAR, gp_gs VARCHAR, effic VARCHAR) |
### question: Avg/G of 2.7 is what effic? ### answer: SELECT effic FROM table_name_54 WHERE avg_g = 2.7 ### context: CREATE TABLE table_name_54 (effic VARCHAR, avg_g VARCHAR) |
### question: Avg/G that has a Att-Cmp-Int of 1–1–0, and an Effic larger than 394 is what total? ### answer: SELECT COUNT(avg_g) FROM table_name_62 WHERE att_cmp_int = "1–1–0" AND effic > 394 ### context: CREATE TABLE table_name_62 (avg_g VARCHAR, att_cmp_int VARCHAR, effic VARCHAR) |
### question: Which area has a Decile of 9, and a Roll of 31? ### answer: SELECT area FROM table_name_98 WHERE decile = 9 AND roll = 31 ### context: CREATE TABLE table_name_98 (area VARCHAR, decile VARCHAR, roll VARCHAR) |
### question: How many deciles have Years of 9–13? ### answer: SELECT COUNT(decile) FROM table_name_68 WHERE years = "9–13" ### context: CREATE TABLE table_name_68 (decile VARCHAR, years VARCHAR) |
### question: What is the name with a Decile less than 10, and a Roll of 297? ### answer: SELECT name FROM table_name_55 WHERE decile < 10 AND roll = 297 ### context: CREATE TABLE table_name_55 (name VARCHAR, decile VARCHAR, roll VARCHAR) |
### question: Which name has a Roll larger than 297, and Years of 7–13? ### answer: SELECT name FROM table_name_1 WHERE roll > 297 AND years = "7–13" ### context: CREATE TABLE table_name_1 (name VARCHAR, roll VARCHAR, years VARCHAR) |
### question: Which years have a Name of ladbrooks school? ### answer: SELECT years FROM table_name_97 WHERE name = "ladbrooks school" ### context: CREATE TABLE table_name_97 (years VARCHAR, name VARCHAR) |
### question: What is the total of the roll with a Decile of 8, and an Area of hororata? ### answer: SELECT SUM(roll) FROM table_name_73 WHERE decile = 8 AND area = "hororata" ### context: CREATE TABLE table_name_73 (roll INTEGER, decile VARCHAR, area VARCHAR) |
### question: What is the highest number of laps that also has a finish total of 8? ### answer: SELECT MAX(laps) FROM table_name_98 WHERE finish = "8" ### context: CREATE TABLE table_name_98 (laps INTEGER, finish VARCHAR) |
### question: Which qual also has a finish total of 9? ### answer: SELECT qual FROM table_name_75 WHERE finish = "9" ### context: CREATE TABLE table_name_75 (qual VARCHAR, finish VARCHAR) |
### question: Which qual has both 200 total laps and took place in 1957? ### answer: SELECT qual FROM table_name_80 WHERE laps = 200 AND year = "1957" ### context: CREATE TABLE table_name_80 (qual VARCHAR, laps VARCHAR, year VARCHAR) |
### question: What is the code name when the Southbridge shows as amd-766, via-vt82c686b? ### answer: SELECT code_name FROM table_name_26 WHERE southbridge = "amd-766, via-vt82c686b" ### context: CREATE TABLE table_name_26 (code_name VARCHAR, southbridge VARCHAR) |
### question: What is the Southbridge when the CPU support was athlon, athlonxp, duron( socketa ), alpha21264? ### answer: SELECT southbridge FROM table_name_56 WHERE cpu_support = "athlon, athlonxp, duron( socketa ), alpha21264" ### context: CREATE TABLE table_name_56 (southbridge VARCHAR, cpu_support VARCHAR) |
### question: What is the code name when the FSB / HT (MHz) is 100 (fsb)? ### answer: SELECT code_name FROM table_name_12 WHERE fsb___ht__mhz_ = "100 (fsb)" ### context: CREATE TABLE table_name_12 (code_name VARCHAR, fsb___ht__mhz_ VARCHAR) |
### question: What is the FSB / HT (MHz) when the Southbridge is amd-8131 amd-8132? ### answer: SELECT fsb___ht__mhz_ FROM table_name_50 WHERE southbridge = "amd-8131 amd-8132" ### context: CREATE TABLE table_name_50 (fsb___ht__mhz_ VARCHAR, southbridge VARCHAR) |
### question: What shows for Southbridge when the Model number is amd-640 chipset? ### answer: SELECT southbridge FROM table_name_7 WHERE model = "amd-640 chipset" ### context: CREATE TABLE table_name_7 (southbridge VARCHAR, model VARCHAR) |
### question: Which stadium is for football with the China League One? ### answer: SELECT stadium FROM table_name_34 WHERE sport = "football" AND league = "china league one" ### context: CREATE TABLE table_name_34 (stadium VARCHAR, sport VARCHAR, league VARCHAR) |
### question: Which tier is for football at Tianhe Stadium? ### answer: SELECT tier FROM table_name_62 WHERE sport = "football" AND stadium = "tianhe stadium" ### context: CREATE TABLE table_name_62 (tier VARCHAR, sport VARCHAR, stadium VARCHAR) |
### question: Which Little League World Series took place in Parsippany? ### answer: SELECT llws FROM table_name_70 WHERE city = "parsippany" ### context: CREATE TABLE table_name_70 (llws VARCHAR, city VARCHAR) |
### question: What is the Tennessee that Georgia of kevin butler is in? ### answer: SELECT tennessee FROM table_name_27 WHERE georgia = "kevin butler" ### context: CREATE TABLE table_name_27 (tennessee VARCHAR, georgia VARCHAR) |
### question: What is the Tennessee with a Kentucky of Larry Seiple ### answer: SELECT tennessee FROM table_name_11 WHERE kentucky = "larry seiple" ### context: CREATE TABLE table_name_11 (tennessee VARCHAR, kentucky VARCHAR) |
### question: What is the total Year of jeff van note ( Kentucky) ### answer: SELECT SUM(year) FROM table_name_10 WHERE kentucky = "jeff van note" ### context: CREATE TABLE table_name_10 (year INTEGER, kentucky VARCHAR) |
### question: How many cabins were built in the time between 1967-1987? ### answer: SELECT built FROM table_name_51 WHERE period = "1967-1987" ### context: CREATE TABLE table_name_51 (built VARCHAR, period VARCHAR) |
### question: Between which years were there 241 fokker 70 model cabins built? ### answer: SELECT period FROM table_name_43 WHERE built < 241 AND model = "fokker 70" ### context: CREATE TABLE table_name_43 (period VARCHAR, built VARCHAR, model VARCHAR) |
### question: Name the sum of year for engine of brm p202 3.0 v12 brm p200 3.0 v12 ### answer: SELECT SUM(year) FROM table_name_43 WHERE engine_s_ = "brm p202 3.0 v12 brm p200 3.0 v12" ### context: CREATE TABLE table_name_43 (year INTEGER, engine_s_ VARCHAR) |
### question: Name the chassis for 1970 and tyres of d ### answer: SELECT chassis FROM table_name_12 WHERE tyres = "d" AND year = 1970 ### context: CREATE TABLE table_name_12 (chassis VARCHAR, tyres VARCHAR, year VARCHAR) |
### question: Name the point for 1974 ### answer: SELECT points FROM table_name_24 WHERE year = 1974 ### context: CREATE TABLE table_name_24 (points VARCHAR, year VARCHAR) |
### question: Name the chassis of 1961 ### answer: SELECT chassis FROM table_name_33 WHERE year = 1961 ### context: CREATE TABLE table_name_33 (chassis VARCHAR, year VARCHAR) |
### question: What is the year opened for Chicagoland Speedway with a seating smaller than 75,000? ### answer: SELECT AVG(year_opened) FROM table_name_17 WHERE track_name = "chicagoland speedway" AND seating < 75 OFFSET 000 ### context: CREATE TABLE table_name_17 (year_opened INTEGER, track_name VARCHAR, seating VARCHA... |
### question: What type of photos of Angelina Jolie cost $500,000? ### answer: SELECT type FROM table_name_21 WHERE reported_price = "$500,000" AND person_s_ = "angelina jolie" ### context: CREATE TABLE table_name_21 (type VARCHAR, reported_price VARCHAR, person_s_ VARCHAR) |
### question: What was the publication date of the photos of Sean Preston Federline that cost $500,000 and were published by People? ### answer: SELECT publication_date FROM table_name_90 WHERE reported_price = "$500,000" AND publisher_s_ = "people" AND person_s_ = "sean preston federline" ### context: CREATE TABLE tab... |
### question: Who won on 28 May? ### answer: SELECT winner FROM table_name_38 WHERE date = "28 may" ### context: CREATE TABLE table_name_38 (winner VARCHAR, date VARCHAR) |
### question: Which country is the film Tent of Miracles from? ### answer: SELECT country FROM table_name_9 WHERE film_title_used_in_nomination = "tent of miracles" ### context: CREATE TABLE table_name_9 (country VARCHAR, film_title_used_in_nomination VARCHAR) |
### question: Which country is the director Roland Verhavert from? ### answer: SELECT country FROM table_name_30 WHERE director = "roland verhavert" ### context: CREATE TABLE table_name_30 (country VARCHAR, director VARCHAR) |
### question: What is the title of the German film that is originally called Mama, Ich Lebe? ### answer: SELECT film_title_used_in_nomination FROM table_name_14 WHERE language = "german" AND original_name = "mama, ich lebe" ### context: CREATE TABLE table_name_14 (film_title_used_in_nomination VARCHAR, language VARCHAR... |
### question: Which director is from Italy? ### answer: SELECT director FROM table_name_41 WHERE country = "italy" ### context: CREATE TABLE table_name_41 (director VARCHAR, country VARCHAR) |
### question: Where is the director Dariush Mehrjui from? ### answer: SELECT country FROM table_name_99 WHERE director = "dariush mehrjui" ### context: CREATE TABLE table_name_99 (country VARCHAR, director VARCHAR) |
### question: Who were the Investing Dragons in the episode that first aired on 18 January 2005 with the entrepreneur Tracey Herrtage? ### answer: SELECT investing_dragon_s_ FROM table_name_65 WHERE first_aired = "18 january 2005" AND entrepreneur_s_ = "tracey herrtage" ### context: CREATE TABLE table_name_65 (investin... |
### question: What is the average money requested in the episode first aired on 18 January 2005 by the company/product name IV Cam ### answer: SELECT AVG(money_requested__) AS £_ FROM table_name_96 WHERE first_aired = "18 january 2005" AND company_or_product_name = "iv cam" ### context: CREATE TABLE table_name_96 (mone... |
### question: What is the population for Rank 11? ### answer: SELECT population FROM table_name_95 WHERE rank = 11 ### context: CREATE TABLE table_name_95 (population VARCHAR, rank VARCHAR) |
### question: Name the trailers for formed from pan/pul/res cars ### answer: SELECT trailers FROM table_name_47 WHERE formed_from = "pan/pul/res cars" ### context: CREATE TABLE table_name_47 (trailers VARCHAR, formed_from VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.