combined_text stringlengths 106 1.05k |
|---|
###question:When is the Competition of friendly match with a Result of 2–1?###answer:SELECT date FROM table_name_47 WHERE competition = "friendly match" AND result = "2–1"###context:CREATE TABLE table_name_47 (date VARCHAR, competition VARCHAR, result VARCHAR) |
###question:Which Venue has a Result of 2–0?###answer:SELECT venue FROM table_name_2 WHERE result = "2–0"###context:CREATE TABLE table_name_2 (venue VARCHAR, result VARCHAR) |
###question:What is the Score of 2007 afc asian cup qualification with a Result of 8–0?###answer:SELECT score FROM table_name_81 WHERE competition = "2007 afc asian cup qualification" AND result = "8–0"###context:CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR, result VARCHAR) |
###question:Which Competition has a Result of 3–1?###answer:SELECT competition FROM table_name_54 WHERE result = "3–1"###context:CREATE TABLE table_name_54 (competition VARCHAR, result VARCHAR) |
###question:What was the Indians' record during the game that had 31,467 in attendance?###answer:SELECT record FROM table_name_82 WHERE attendance = "31,467"###context:CREATE TABLE table_name_82 (record VARCHAR, attendance VARCHAR) |
###question:what year is 4:00 long###answer:SELECT COUNT(year) FROM table_name_16 WHERE length = "4:00"###context:CREATE TABLE table_name_16 (year VARCHAR, length VARCHAR) |
###question:What round on average was a defensive tackle selected?###answer:SELECT AVG(round) FROM table_name_87 WHERE position = "defensive tackle"###context:CREATE TABLE table_name_87 (round INTEGER, position VARCHAR) |
###question:What is the lowest total for the silver less than 1, and a rank more than 5, more than 1 bronze?###answer:SELECT MIN(total) FROM table_name_71 WHERE silver < 1 AND rank > 5 AND bronze > 1###context:CREATE TABLE table_name_71 (total INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR) |
###question:Who ha the gold and 1 bronze, and more than 0 silver?###answer:SELECT gold FROM table_name_58 WHERE bronze = 1 AND silver > 0###context:CREATE TABLE table_name_58 (gold VARCHAR, bronze VARCHAR, silver VARCHAR) |
###question:Who has a total of the Bronze less than 4, gold more than 0, and no silver?###answer:SELECT SUM(bronze) FROM table_name_30 WHERE total < 4 AND gold > 0 AND silver = 0###context:CREATE TABLE table_name_30 (bronze INTEGER, silver VARCHAR, total VARCHAR, gold VARCHAR) |
###question:What's the Points average with a Lost of 21, and Position of 22?###answer:SELECT AVG(points) FROM table_name_36 WHERE lost = 21 AND position = 22###context:CREATE TABLE table_name_36 (points INTEGER, lost VARCHAR, position VARCHAR) |
###question:What's the total Lost that has a Played that's larger than 42?###answer:SELECT SUM(lost) FROM table_name_35 WHERE played > 42###context:CREATE TABLE table_name_35 (lost INTEGER, played INTEGER) |
###question:what's the relative value that contains a jyutping of daam3?###answer:SELECT relative_value FROM table_name_72 WHERE jyutping = "daam3"###context:CREATE TABLE table_name_72 (relative_value VARCHAR, jyutping VARCHAR) |
###question:What metric value has a jyutping of lei4?###answer:SELECT metric_value FROM table_name_11 WHERE jyutping = "lei4"###context:CREATE TABLE table_name_11 (metric_value VARCHAR, jyutping VARCHAR) |
###question:what's the imperial that contains a jyutping of cin4?###answer:SELECT imperial_value FROM table_name_51 WHERE jyutping = "cin4"###context:CREATE TABLE table_name_51 (imperial_value VARCHAR, jyutping VARCHAR) |
###question:What was the location that led to a record of 9-0-0?###answer:SELECT location FROM table_name_95 WHERE record = "9-0-0"###context:CREATE TABLE table_name_95 (location VARCHAR, record VARCHAR) |
###question:What is the lowest number of bronze medals with less than 2 silver medals and more than 1 medal in total for Uzbekistan?###answer:SELECT MIN(bronze) FROM table_name_95 WHERE silver < 2 AND total > 1 AND nation = "uzbekistan"###context:CREATE TABLE table_name_95 (bronze INTEGER, nation VARCHAR, silver VARCHA... |
###question:What is the highest round with a pick# of 11, a position of offensive tackle, and overall less than 414?###answer:SELECT MAX(round) FROM table_name_24 WHERE pick__number = 11 AND overall < 414 AND position = "offensive tackle"###context:CREATE TABLE table_name_24 (round INTEGER, position VARCHAR, pick__numb... |
###question:What is the highest round with a pick# of 9, overll less than 468, and position of defensive back?###answer:SELECT MAX(round) FROM table_name_77 WHERE pick__number = 9 AND position = "defensive back" AND overall < 468###context:CREATE TABLE table_name_77 (round INTEGER, overall VARCHAR, pick__number VARCHAR... |
###question:What is the highest round with a guard position and an overall greater than 71?###answer:SELECT MAX(round) FROM table_name_21 WHERE position = "guard" AND overall > 71###context:CREATE TABLE table_name_21 (round INTEGER, position VARCHAR, overall VARCHAR) |
###question:Who has an overall greater than 414 with a pick# bigger than 9?###answer:SELECT name FROM table_name_81 WHERE overall > 414 AND pick__number > 9###context:CREATE TABLE table_name_81 (name VARCHAR, overall VARCHAR, pick__number VARCHAR) |
###question:What is the Gaelic name for an area less than 127 in Kintyre?###answer:SELECT gaelic_name FROM table_name_63 WHERE area___ha__ < 127 AND location = "kintyre"###context:CREATE TABLE table_name_63 (gaelic_name VARCHAR, area___ha__ VARCHAR, location VARCHAR) |
###question:What was the score on 7 february 2008?###answer:SELECT score FROM table_name_42 WHERE date = "7 february 2008"###context:CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR) |
###question:What was the outcome on 13 may 2007?###answer:SELECT outcome FROM table_name_80 WHERE date = "13 may 2007"###context:CREATE TABLE table_name_80 (outcome VARCHAR, date VARCHAR) |
###question:What was the score on 3 may 2009?###answer:SELECT score FROM table_name_82 WHERE date = "3 may 2009"###context:CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR) |
###question:Name the score for venue of jalan besar, singapore###answer:SELECT score FROM table_name_81 WHERE venue = "jalan besar, singapore"###context:CREATE TABLE table_name_81 (score VARCHAR, venue VARCHAR) |
###question:Name the score for 2 june 2008###answer:SELECT score FROM table_name_97 WHERE date = "2 june 2008"###context:CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR) |
###question:Which Opponent has a Game of 63?###answer:SELECT opponent FROM table_name_33 WHERE game = 63###context:CREATE TABLE table_name_33 (opponent VARCHAR, game VARCHAR) |
###question:which Record has a Score of 1–4?###answer:SELECT record FROM table_name_30 WHERE score = "1–4"###context:CREATE TABLE table_name_30 (record VARCHAR, score VARCHAR) |
###question:Which Record has a Points smaller than 62 and a February larger than 16, and a Score of 8–7?###answer:SELECT record FROM table_name_81 WHERE points < 62 AND february > 16 AND score = "8–7"###context:CREATE TABLE table_name_81 (record VARCHAR, score VARCHAR, points VARCHAR, february VARCHAR) |
###question:What is the total number of Issues has a End month of oct-80?###answer:SELECT COUNT(number_of_issues) FROM table_name_60 WHERE end_month = "oct-80"###context:CREATE TABLE table_name_60 (number_of_issues VARCHAR, end_month VARCHAR) |
###question:Which Indicia has anEnd month in feb-75?###answer:SELECT indicia FROM table_name_52 WHERE end_month = "feb-75"###context:CREATE TABLE table_name_52 (indicia VARCHAR, end_month VARCHAR) |
###question:Which HAAT has a Channels TV / RF of 31 (psip) 44 (uhf)###answer:SELECT haat FROM table_name_17 WHERE channels_tv___rf = "31 (psip) 44 (uhf)"###context:CREATE TABLE table_name_17 (haat VARCHAR, channels_tv___rf VARCHAR) |
###question:Which City of license has a Channels TV / RF of 67 ( psip ) 29 ( uhf )###answer:SELECT city_of_license FROM table_name_4 WHERE channels_tv___rf = "67 ( psip ) 29 ( uhf )"###context:CREATE TABLE table_name_4 (city_of_license VARCHAR, channels_tv___rf VARCHAR) |
###question:Which Station has hagerstown?###answer:SELECT station FROM table_name_28 WHERE city_of_license = "hagerstown"###context:CREATE TABLE table_name_28 (station VARCHAR, city_of_license VARCHAR) |
###question:Which HAAT has 65944?###answer:SELECT haat FROM table_name_34 WHERE facility_id = 65944###context:CREATE TABLE table_name_34 (haat VARCHAR, facility_id VARCHAR) |
###question:Which City of license has a Channels TV / RF of 36 (psip) 36 (uhf)? Question 5###answer:SELECT city_of_license FROM table_name_3 WHERE channels_tv___rf = "36 (psip) 36 (uhf)"###context:CREATE TABLE table_name_3 (city_of_license VARCHAR, channels_tv___rf VARCHAR) |
###question:What format is dated October 29, 2004?###answer:SELECT format FROM table_name_8 WHERE date = "october 29, 2004"###context:CREATE TABLE table_name_8 (format VARCHAR, date VARCHAR) |
###question:What is the date with the catalogue number ptcd-1015-6?###answer:SELECT date FROM table_name_59 WHERE catalogue__number = "ptcd-1015-6"###context:CREATE TABLE table_name_59 (date VARCHAR, catalogue__number VARCHAR) |
###question:What is the label for December 2004?###answer:SELECT label FROM table_name_73 WHERE date = "december 2004"###context:CREATE TABLE table_name_73 (label VARCHAR, date VARCHAR) |
###question:What is the date for Hydra Head Records with a CD format?###answer:SELECT date FROM table_name_21 WHERE label = "hydra head records" AND format = "cd"###context:CREATE TABLE table_name_21 (date VARCHAR, label VARCHAR, format VARCHAR) |
###question:Which country has Hydra Head Records on February 2005?###answer:SELECT country FROM table_name_96 WHERE label = "hydra head records" AND date = "february 2005"###context:CREATE TABLE table_name_96 (country VARCHAR, label VARCHAR, date VARCHAR) |
###question:Which country has Hydra Head Records with a 2lp format?###answer:SELECT country FROM table_name_97 WHERE format = "2lp" AND label = "hydra head records"###context:CREATE TABLE table_name_97 (country VARCHAR, format VARCHAR, label VARCHAR) |
###question:Who rode mad rush?###answer:SELECT jockey FROM table_name_44 WHERE horse = "mad rush"###context:CREATE TABLE table_name_44 (jockey VARCHAR, horse VARCHAR) |
###question:What place was the horse with a barrier of 20 and weighing less than 54 kg###answer:SELECT placing FROM table_name_35 WHERE weight__kg_ < 54 AND barrier_[b_] = "20"###context:CREATE TABLE table_name_35 (placing VARCHAR, weight__kg_ VARCHAR, barrier_ VARCHAR, b_ VARCHAR) |
###question:What place was the viewed horse?###answer:SELECT placing FROM table_name_13 WHERE horse = "viewed"###context:CREATE TABLE table_name_13 (placing VARCHAR, horse VARCHAR) |
###question:What is the average number of wins of the year with less than 5 top 10s, a winning of $39,190 and less than 2 starts?###answer:SELECT AVG(wins) FROM table_name_17 WHERE top_10 < 5 AND winnings = "$39,190" AND starts < 2###context:CREATE TABLE table_name_17 (wins INTEGER, starts VARCHAR, top_10 VARCHAR, winn... |
###question:What is the highest number of poles of the year before 1992 with more than 18 starts and winnings of $125,102?###answer:SELECT MAX(poles) FROM table_name_81 WHERE starts > 18 AND winnings = "$125,102" AND year < 1992###context:CREATE TABLE table_name_81 (poles INTEGER, year VARCHAR, starts VARCHAR, winnings... |
###question:Author of stanisław wyspiański, and a Year of 1969 happened in what theatre?###answer:SELECT theatre FROM table_name_5 WHERE author = "stanisław wyspiański" AND year = 1969###context:CREATE TABLE table_name_5 (theatre VARCHAR, author VARCHAR, year VARCHAR) |
###question:Which game did New Jersey Devils played in?###answer:SELECT game FROM table_name_54 WHERE opponent = "new jersey devils"###context:CREATE TABLE table_name_54 (game VARCHAR, opponent VARCHAR) |
###question:What score has a record of 21-25-7-4?###answer:SELECT score FROM table_name_92 WHERE record = "21-25-7-4"###context:CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR) |
###question:What score has a record of 22-28-7-4?###answer:SELECT score FROM table_name_9 WHERE record = "22-28-7-4"###context:CREATE TABLE table_name_9 (score VARCHAR, record VARCHAR) |
###question:What group has 1200 m as the distance?###answer:SELECT group FROM table_name_82 WHERE distance = "1200 m"###context:CREATE TABLE table_name_82 (group VARCHAR, distance VARCHAR) |
###question:What venue has g1 as the group?###answer:SELECT venue FROM table_name_45 WHERE group = "g1"###context:CREATE TABLE table_name_45 (venue VARCHAR, group VARCHAR) |
###question:What's the highest Points with the Team of Tacuary, and has Losses that's smaller than 4?###answer:SELECT MAX(points) FROM table_name_56 WHERE team = "tacuary" AND losses < 4###context:CREATE TABLE table_name_56 (points INTEGER, team VARCHAR, losses VARCHAR) |
###question:What's the sum of Losses that Scored larger than 15, has Points that's larger than 16, and Played that's larger than 9?###answer:SELECT SUM(losses) FROM table_name_15 WHERE scored > 15 AND points > 16 AND played > 9###context:CREATE TABLE table_name_15 (losses INTEGER, played VARCHAR, scored VARCHAR, points... |
###question:What's the highest Played with a Scored of 15, and Draws that's less than 1?###answer:SELECT MAX(played) FROM table_name_80 WHERE scored = 15 AND draws < 1###context:CREATE TABLE table_name_80 (played INTEGER, scored VARCHAR, draws VARCHAR) |
###question:What's the sum of WIns with Draws that's larger than 1, Losses that's smaller than 4, and Conceded of 20?###answer:SELECT SUM(wins) FROM table_name_82 WHERE draws > 1 AND losses < 4 AND conceded = 20###context:CREATE TABLE table_name_82 (wins INTEGER, conceded VARCHAR, draws VARCHAR, losses VARCHAR) |
###question:What's the lowest Position with a Conceded that's larger than 16, Draws of 3, and Losses that's larger than 3?###answer:SELECT MIN(position) FROM table_name_6 WHERE conceded > 16 AND draws = 3 AND losses > 3###context:CREATE TABLE table_name_6 (position INTEGER, losses VARCHAR, conceded VARCHAR, draws VARCH... |
###question:Which processors are supported with a PCI-express of x16: 1 slot x1: 4 slots and the nforce 550 model?###answer:SELECT processors_supported FROM table_name_82 WHERE pci_express = "x16: 1 slot x1: 4 slots" AND model = "nforce 550"###context:CREATE TABLE table_name_82 (processors_supported VARCHAR, pci_expres... |
###question:What are the processors supported by a ddr2 memory and the nforce 550 model?###answer:SELECT processors_supported FROM table_name_91 WHERE memory = "ddr2" AND model = "nforce 550"###context:CREATE TABLE table_name_91 (processors_supported VARCHAR, memory VARCHAR, model VARCHAR) |
###question:What is the PCI-express with a ddr2 memory and a nforce 520 model?###answer:SELECT pci_express FROM table_name_80 WHERE memory = "ddr2" AND model = "nforce 520"###context:CREATE TABLE table_name_80 (pci_express VARCHAR, memory VARCHAR, model VARCHAR) |
###question:What is the Russian word for wine glass that contains 4.16 fl. oz.?###answer:SELECT russian FROM table_name_14 WHERE us_customary = "4.16 fl. oz."###context:CREATE TABLE table_name_14 (russian VARCHAR, us_customary VARCHAR) |
###question:What are the imperial size for the unit that has a ratio of 1/20?###answer:SELECT imperial FROM table_name_11 WHERE ratio = "1/20"###context:CREATE TABLE table_name_11 (imperial VARCHAR, ratio VARCHAR) |
###question:How big in metric terms is the unit that has a ratio of 1/20?###answer:SELECT metric_value FROM table_name_54 WHERE ratio = "1/20"###context:CREATE TABLE table_name_54 (metric_value VARCHAR, ratio VARCHAR) |
###question:How large in US customary terms is the unit called butylka (vodochnaya)?###answer:SELECT us_customary FROM table_name_33 WHERE unit = "butylka (vodochnaya)"###context:CREATE TABLE table_name_33 (us_customary VARCHAR, unit VARCHAR) |
###question:What is the translation of chetvert?###answer:SELECT translation FROM table_name_81 WHERE unit = "chetvert"###context:CREATE TABLE table_name_81 (translation VARCHAR, unit VARCHAR) |
###question:What Russian word translates to bucket?###answer:SELECT russian FROM table_name_34 WHERE translation = "bucket"###context:CREATE TABLE table_name_34 (russian VARCHAR, translation VARCHAR) |
###question:Points larger than 6, and a Results of 522:443 had what lowest matches?###answer:SELECT MIN(matches) FROM table_name_44 WHERE points > 6 AND results = "522:443"###context:CREATE TABLE table_name_44 (matches INTEGER, points VARCHAR, results VARCHAR) |
###question:Loses of 2, and a Pos. smaller than 2 had how many highest matches?###answer:SELECT MAX(matches) FROM table_name_75 WHERE loses = 2 AND pos < 2###context:CREATE TABLE table_name_75 (matches INTEGER, loses VARCHAR, pos VARCHAR) |
###question:What was the outcome when the game was played on clay and on 2 May 2009?###answer:SELECT outcome FROM table_name_49 WHERE surface = "clay" AND date = "2 may 2009"###context:CREATE TABLE table_name_49 (outcome VARCHAR, surface VARCHAR, date VARCHAR) |
###question:What person was played against when the playing surface was hard?###answer:SELECT opponent FROM table_name_42 WHERE surface = "hard"###context:CREATE TABLE table_name_42 (opponent VARCHAR, surface VARCHAR) |
###question:With the score of 6–3, 2–6, [10–8] and played on clay who was the opponent?###answer:SELECT opponent FROM table_name_69 WHERE surface = "clay" AND score = "6–3, 2–6, [10–8]"###context:CREATE TABLE table_name_69 (opponent VARCHAR, surface VARCHAR, score VARCHAR) |
###question:What is the rank of the park in pigeon forge, tennessee in the best food category?###answer:SELECT COUNT(rank) FROM table_name_57 WHERE location = "pigeon forge, tennessee" AND category = "best food"###context:CREATE TABLE table_name_57 (rank VARCHAR, location VARCHAR, category VARCHAR) |
###question:What building is in Shenzhen, have less than 115 floors, and was completed before 2017?###answer:SELECT name FROM table_name_79 WHERE city = "shenzhen" AND completion < 2017 AND floors < 115###context:CREATE TABLE table_name_79 (name VARCHAR, floors VARCHAR, city VARCHAR, completion VARCHAR) |
###question:What is the earliest year having a length of 11:25?###answer:SELECT MIN(year) FROM table_name_21 WHERE length = "11:25"###context:CREATE TABLE table_name_21 (year INTEGER, length VARCHAR) |
###question:What year had a version called Wolf Mix?###answer:SELECT AVG(year) FROM table_name_11 WHERE version = "wolf mix"###context:CREATE TABLE table_name_11 (year INTEGER, version VARCHAR) |
###question:In 1978 what is the NFL team?###answer:SELECT nfl_team FROM table_name_30 WHERE draft_year = 1978###context:CREATE TABLE table_name_30 (nfl_team VARCHAR, draft_year VARCHAR) |
###question:Who was the opponent with attendance at 64,002?###answer:SELECT opponent FROM table_name_87 WHERE attendance = "64,002"###context:CREATE TABLE table_name_87 (opponent VARCHAR, attendance VARCHAR) |
###question:What was the highest week with 84,856 in attendance?###answer:SELECT MAX(week) FROM table_name_96 WHERE attendance = "84,856"###context:CREATE TABLE table_name_96 (week INTEGER, attendance VARCHAR) |
###question:What was the record in a week less than 13 on November 9, 2003?###answer:SELECT record FROM table_name_69 WHERE week < 13 AND date = "november 9, 2003"###context:CREATE TABLE table_name_69 (record VARCHAR, week VARCHAR, date VARCHAR) |
###question:On what date was the result w 20-17?###answer:SELECT date FROM table_name_43 WHERE result = "w 20-17"###context:CREATE TABLE table_name_43 (date VARCHAR, result VARCHAR) |
###question:What was the attendance for record 2-0?###answer:SELECT attendance FROM table_name_52 WHERE record = "2-0"###context:CREATE TABLE table_name_52 (attendance VARCHAR, record VARCHAR) |
###question:On what date was the game at Lincoln Financial Field?###answer:SELECT date FROM table_name_40 WHERE game_site = "lincoln financial field"###context:CREATE TABLE table_name_40 (date VARCHAR, game_site VARCHAR) |
###question:Which player has a pick of 175?###answer:SELECT player FROM table_name_58 WHERE pick = 175###context:CREATE TABLE table_name_58 (player VARCHAR, pick VARCHAR) |
###question:Zack Jordan has the lowest pick and a round of less than 28?###answer:SELECT MIN(pick) FROM table_name_69 WHERE player = "zack jordan" AND round < 28###context:CREATE TABLE table_name_69 (pick INTEGER, player VARCHAR, round VARCHAR) |
###question:What is the sum of the pick for player roger zatkoff?###answer:SELECT SUM(pick) FROM table_name_24 WHERE player = "roger zatkoff"###context:CREATE TABLE table_name_24 (pick INTEGER, player VARCHAR) |
###question:Which metal has a size that is 26mm (across scallops)?###answer:SELECT metal FROM table_name_56 WHERE size = "26mm (across scallops)"###context:CREATE TABLE table_name_56 (metal VARCHAR, size VARCHAR) |
###question:What is the weight with the shape of scalloped, and that is a size of 20mm (across scallops)?###answer:SELECT weight FROM table_name_92 WHERE shape = "scalloped" AND size = "20mm (across scallops)"###context:CREATE TABLE table_name_92 (weight VARCHAR, shape VARCHAR, size VARCHAR) |
###question:What is the weight with a denomination that is three paise?###answer:SELECT weight FROM table_name_41 WHERE denomination = "three paise"###context:CREATE TABLE table_name_41 (weight VARCHAR, denomination VARCHAR) |
###question:What is the weight with a denomination that is ten paise?###answer:SELECT weight FROM table_name_53 WHERE denomination = "ten paise"###context:CREATE TABLE table_name_53 (weight VARCHAR, denomination VARCHAR) |
###question:What is the highest number of games drawn, where the games played was less than 7?###answer:SELECT MAX(drawn) FROM table_name_86 WHERE games < 7###context:CREATE TABLE table_name_86 (drawn INTEGER, games INTEGER) |
###question:Which October is the lowest one that has an Opponent of washington capitals?###answer:SELECT MIN(october) FROM table_name_38 WHERE opponent = "washington capitals"###context:CREATE TABLE table_name_38 (october INTEGER, opponent VARCHAR) |
###question:Which Score has a Game larger than 7, and Points smaller than 14?###answer:SELECT score FROM table_name_17 WHERE game > 7 AND points < 14###context:CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, points VARCHAR) |
###question:How many Points have an Opponent of @ calgary flames?###answer:SELECT SUM(points) FROM table_name_77 WHERE opponent = "@ calgary flames"###context:CREATE TABLE table_name_77 (points INTEGER, opponent VARCHAR) |
###question:What is the mean number of events where the rank is 1 and there are more than 3 wins?###answer:SELECT AVG(events) FROM table_name_50 WHERE rank = 1 AND wins > 3###context:CREATE TABLE table_name_50 (events INTEGER, rank VARCHAR, wins VARCHAR) |
###question:Which Supercopa 1994 has a Team of estudiantes?###answer:SELECT supercopa_1994 FROM table_name_10 WHERE team = "estudiantes"###context:CREATE TABLE table_name_10 (supercopa_1994 VARCHAR, team VARCHAR) |
###question:Which CONMEBOL 1994 has a Supercopa 1994 of n/a, and a Recopa 1994 of n/a, and a Team of san lorenzo?###answer:SELECT conmebol_1994 FROM table_name_12 WHERE supercopa_1994 = "n/a" AND recopa_1994 = "n/a" AND team = "san lorenzo"###context:CREATE TABLE table_name_12 (conmebol_1994 VARCHAR, team VARCHAR, supe... |
###question:Which Recopa 1994 has a Supercopa 1994 of 1st round, and a Team of argentinos juniors?###answer:SELECT recopa_1994 FROM table_name_54 WHERE supercopa_1994 = "1st round" AND team = "argentinos juniors"###context:CREATE TABLE table_name_54 (recopa_1994 VARCHAR, supercopa_1994 VARCHAR, team VARCHAR) |
###question:Which Team has a Recopa 1994 of n/a and a CONMEBOL 1994 of 1st round?###answer:SELECT team FROM table_name_92 WHERE recopa_1994 = "n/a" AND conmebol_1994 = "1st round"###context:CREATE TABLE table_name_92 (team VARCHAR, recopa_1994 VARCHAR, conmebol_1994 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.