answer stringlengths 32 484 | context stringlengths 27 489 | question stringlengths 12 244 |
|---|---|---|
SELECT country FROM table_name_49 WHERE score = 79 - 68 - 74 = 212 | CREATE TABLE table_name_49 (country VARCHAR, score VARCHAR) | Which Country has a Score of 79-68-74=212? |
SELECT to_par FROM table_name_22 WHERE country = "united states" AND player = "duffy waldorf" | CREATE TABLE table_name_22 (to_par VARCHAR, country VARCHAR, player VARCHAR) | Which To par has a Country of united states, and a Player of duffy waldorf? |
SELECT opponent_in_final FROM table_name_72 WHERE surface = "hard" AND location = "wellington, new zealand" AND date = "6 february 2000" | CREATE TABLE table_name_72 (opponent_in_final VARCHAR, date VARCHAR, surface VARCHAR, location VARCHAR) | What is Opponent In Final, when Surface is Hard, when Location is Wellington, New Zealand, and when Date is 6 February 2000? |
SELECT surface FROM table_name_85 WHERE date = "2 may 1999" | CREATE TABLE table_name_85 (surface VARCHAR, date VARCHAR) | What is Surface, when Date is 2 May 1999? |
SELECT 2 AS nd_leg FROM table_name_44 WHERE team__number1 = "rubin kazan" | CREATE TABLE table_name_44 (team__number1 VARCHAR) | What is the 2nd leg when team #1 is Rubin Kazan? |
SELECT agg FROM table_name_24 WHERE team__number2 = "2006 uefa intertoto cup" | CREATE TABLE table_name_24 (agg VARCHAR, team__number2 VARCHAR) | What is the agg when team #2 is 2006 UEFA Intertoto Cup? |
SELECT MAX(market_value__billion_) AS $_ FROM table_name_79 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ > 166.99 | CREATE TABLE table_name_79 (market_value__billion_ INTEGER, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR) | What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets? |
SELECT COUNT(market_value__billion_) AS $_ FROM table_name_34 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ < 166.99 | CREATE TABLE table_name_34 (market_value__billion_ VARCHAR, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR) | What is the total market value in billions of the company with 20.96 billion in profits and less than 166.99 billions in assets? |
SELECT AVG(assets__billion_) AS $_ FROM table_name_70 WHERE company = "bank of america" AND sales__billion_$_ < 49.01 | CREATE TABLE table_name_70 (assets__billion_ INTEGER, company VARCHAR, sales__billion_$_ VARCHAR) | What is the average assets in billions of the company Bank of America, which has less than 49.01 billions in sales? |
SELECT MAX(profits__billion_) AS $_ FROM table_name_87 WHERE headquarters = "usa" AND market_value__billion_$_ = 194.87 AND sales__billion_$_ < 76.66 | CREATE TABLE table_name_87 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, headquarters VARCHAR, market_value__billion_$_ VARCHAR) | What is the highest profits in billions of the company headquartered in the USA with a market value of 194.87 billions and less than 76.66 billions in sales? |
SELECT MIN(total) FROM table_name_55 WHERE nation = "japan" AND silver > 2 | CREATE TABLE table_name_55 (total INTEGER, nation VARCHAR, silver VARCHAR) | Which Total has a Nation of japan, and a Silver larger than 2? |
SELECT nation FROM table_name_74 WHERE gold > 0 AND total > 4 AND rank = "6" | CREATE TABLE table_name_74 (nation VARCHAR, rank VARCHAR, gold VARCHAR, total VARCHAR) | Which Nation has a Gold larger than 0, and a Total larger than 4, and a Rank of 6? |
SELECT SUM(silver) FROM table_name_80 WHERE rank = "1" AND total < 11 | CREATE TABLE table_name_80 (silver INTEGER, rank VARCHAR, total VARCHAR) | Which Silver has a Rank of 1, and a Total smaller than 11? |
SELECT MAX(total) FROM table_name_4 WHERE nation = "united states" AND bronze > 3 | CREATE TABLE table_name_4 (total INTEGER, nation VARCHAR, bronze VARCHAR) | Which Total has a Nation of united states, and a Bronze larger than 3? |
SELECT venue FROM table_name_71 WHERE opponent = "queensland" AND batsmen = "jamie cox & daniel marsh" | CREATE TABLE table_name_71 (venue VARCHAR, opponent VARCHAR, batsmen VARCHAR) | Where did jamie cox & daniel marsh play against queensland? |
SELECT venue FROM table_name_24 WHERE batsmen = "jamie cox & scott kremerskothen" | CREATE TABLE table_name_24 (venue VARCHAR, batsmen VARCHAR) | Where were jamie cox & scott kremerskothen paired? |
SELECT batsmen FROM table_name_83 WHERE wicket = "7" | CREATE TABLE table_name_83 (batsmen VARCHAR, wicket VARCHAR) | Who were the batsmen paired for wicket 7? |
SELECT runs FROM table_name_13 WHERE opponent = "new south wales" AND season = "2002/03" | CREATE TABLE table_name_13 (runs VARCHAR, opponent VARCHAR, season VARCHAR) | How many runs did they get against new south wales in 2002/03? |
SELECT season FROM table_name_81 WHERE opponent = "queensland" AND wicket = "4" | CREATE TABLE table_name_81 (season VARCHAR, opponent VARCHAR, wicket VARCHAR) | What season did they play queensland at wicket 4? |
SELECT peak_position FROM table_name_12 WHERE date = "july 11, 2001" | CREATE TABLE table_name_12 (peak_position VARCHAR, date VARCHAR) | What was the Peak Position on July 11, 2001? |
SELECT weeks FROM table_name_18 WHERE date = "december 12, 2001" | CREATE TABLE table_name_18 (weeks VARCHAR, date VARCHAR) | On December 12, 2001, how many weeks had the single been in its position? |
SELECT nationality FROM table_name_73 WHERE school_club_team = "purdue" | CREATE TABLE table_name_73 (nationality VARCHAR, school_club_team VARCHAR) | What is the nationality of the Team Purdue? |
SELECT nationality FROM table_name_47 WHERE school_club_team = "georgia tech" | CREATE TABLE table_name_47 (nationality VARCHAR, school_club_team VARCHAR) | What is the nationality of the Team Georgia Tech? |
SELECT nationality FROM table_name_60 WHERE position = "forward" AND years_for_grizzlies = "2011" | CREATE TABLE table_name_60 (nationality VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR) | What is the nationality of the forward position on the Grizzlies in 2011? |
SELECT runner_up FROM table_name_53 WHERE venue = "tartu, estonia" | CREATE TABLE table_name_53 (runner_up VARCHAR, venue VARCHAR) | Who was the runner-up at the event held in Tartu, Estonia? |
SELECT runner_up FROM table_name_90 WHERE venue = "tartu, estonia" | CREATE TABLE table_name_90 (runner_up VARCHAR, venue VARCHAR) | For the event held in Tartu, Estonia, what is the name of the runner-up? |
SELECT third_place FROM table_name_82 WHERE year = 2012 | CREATE TABLE table_name_82 (third_place VARCHAR, year VARCHAR) | Who took third place in 2012? |
SELECT year FROM table_name_13 WHERE venue = "oslo, norway" | CREATE TABLE table_name_13 (year VARCHAR, venue VARCHAR) | In what year was this event held in Oslo, Norway? |
SELECT head_s__of_government FROM table_name_77 WHERE name = "don stephen senanayake" | CREATE TABLE table_name_77 (head_s__of_government VARCHAR, name VARCHAR) | What is the head of government for Don Stephen Senanayake? |
SELECT team FROM table_name_20 WHERE pos = "14th" | CREATE TABLE table_name_20 (team VARCHAR, pos VARCHAR) | Which team is in 14th position? |
SELECT 2 AS nd_leg FROM table_name_96 WHERE team__number2 = "san lorenzo" | CREATE TABLE table_name_96 (team__number2 VARCHAR) | What is 2nd Leg, when Team #2 is "San Lorenzo"? |
SELECT clock_speed FROM table_name_63 WHERE fsb_speed = "400 mhz" AND model_number = "c7-m 794" | CREATE TABLE table_name_63 (clock_speed VARCHAR, fsb_speed VARCHAR, model_number VARCHAR) | Which Clock Speed has a FSB Speed of 400 mhz, and a Model Number of c7-m 794? |
SELECT socket FROM table_name_16 WHERE fsb_speed = "400 mhz" AND voltage_range = "1.004 v" | CREATE TABLE table_name_16 (socket VARCHAR, fsb_speed VARCHAR, voltage_range VARCHAR) | Which Socket has a FSB Speed of 400 mhz, and a Voltage Range of 1.004 v? |
SELECT clock_multiplier FROM table_name_69 WHERE clock_speed = "1.6 ghz" AND model_number = "c7-m 764" | CREATE TABLE table_name_69 (clock_multiplier VARCHAR, clock_speed VARCHAR, model_number VARCHAR) | Which Clock Multiplier has a Clock Speed of 1.6 ghz, and a Model Number of c7-m 764? |
SELECT fsb_speed FROM table_name_46 WHERE model_number = "c7-m 765" | CREATE TABLE table_name_46 (fsb_speed VARCHAR, model_number VARCHAR) | Which FSB Speed has a Model Number of c7-m 765? |
SELECT clock_multiplier FROM table_name_23 WHERE model_number = "c7-m 764" | CREATE TABLE table_name_23 (clock_multiplier VARCHAR, model_number VARCHAR) | Which Clock Multiplier has a Model Number of c7-m 764? |
SELECT release_date FROM table_name_34 WHERE voltage_range = "1.148 v - 1.196 v" | CREATE TABLE table_name_34 (release_date VARCHAR, voltage_range VARCHAR) | Which Release Date has a Voltage Range of 1.148 v - 1.196 v? |
SELECT player FROM table_name_33 WHERE place = "t2" | CREATE TABLE table_name_33 (player VARCHAR, place VARCHAR) | Who are the players that placed t2? |
SELECT country FROM table_name_97 WHERE player = "lee trevino" | CREATE TABLE table_name_97 (country VARCHAR, player VARCHAR) | Which country is Lee Trevino from? |
SELECT player FROM table_name_76 WHERE country = "south africa" | CREATE TABLE table_name_76 (player VARCHAR, country VARCHAR) | Which player(s) is from South Africa? |
SELECT record FROM table_name_51 WHERE year > 1992 AND manager = "tom kotchman" AND finish = "2nd" | CREATE TABLE table_name_51 (record VARCHAR, finish VARCHAR, year VARCHAR, manager VARCHAR) | what is the record when the year is after 1992, manager is tom kotchman and finish is 2nd? |
SELECT finish FROM table_name_82 WHERE manager = "tom kotchman" AND record = "43-33" | CREATE TABLE table_name_82 (finish VARCHAR, manager VARCHAR, record VARCHAR) | what is the finish when the manager is tom kotchman and record is 43-33? |
SELECT finish FROM table_name_50 WHERE manager = "tom kotchman" AND record = "40-36" | CREATE TABLE table_name_50 (finish VARCHAR, manager VARCHAR, record VARCHAR) | what is the finish when the manager is tom kotchman and the record is 40-36? |
SELECT manager FROM table_name_6 WHERE year < 1994 AND finish = "5th" | CREATE TABLE table_name_6 (manager VARCHAR, year VARCHAR, finish VARCHAR) | who is the manager when the year is before 1994 and finish is 5th? |
SELECT record FROM table_name_45 WHERE year = 2011 | CREATE TABLE table_name_45 (record VARCHAR, year VARCHAR) | what is the record when the year is 2011? |
SELECT player FROM table_name_61 WHERE total = 294 AND year_s__won = "1955" | CREATE TABLE table_name_61 (player VARCHAR, total VARCHAR, year_s__won VARCHAR) | What is Player, when Total is "294", and when Year(s) Won is "1955"? |
SELECT player FROM table_name_28 WHERE to_par < 14 | CREATE TABLE table_name_28 (player VARCHAR, to_par INTEGER) | What is Player, when To Par is less than 14? |
SELECT to_par FROM table_name_55 WHERE player = "tommy bolt" | CREATE TABLE table_name_55 (to_par VARCHAR, player VARCHAR) | What is To Par, when Player is "Tommy Bolt"? |
SELECT SUM(total) FROM table_name_4 WHERE player = "tommy bolt" | CREATE TABLE table_name_4 (total INTEGER, player VARCHAR) | What is the sum of Total, when Player is "Tommy Bolt"? |
SELECT COUNT(total) FROM table_name_50 WHERE to_par = 7 | CREATE TABLE table_name_50 (total VARCHAR, to_par VARCHAR) | What is the total number of Total, when To Par is "7"? |
SELECT award FROM table_name_77 WHERE result = "won" AND nomination = "senses around" | CREATE TABLE table_name_77 (award VARCHAR, result VARCHAR, nomination VARCHAR) | Which award was won when the nomination was Senses Around? |
SELECT nomination FROM table_name_43 WHERE year < 2009 | CREATE TABLE table_name_43 (nomination VARCHAR, year INTEGER) | What was the nomination in a year earlier than 2009? |
SELECT award FROM table_name_55 WHERE category = "best new artist" | CREATE TABLE table_name_55 (award VARCHAR, category VARCHAR) | Which award is for the category Best New Artist? |
SELECT MIN(year) FROM table_name_53 WHERE category = "top 10 selling mandarin albums of the year" | CREATE TABLE table_name_53 (year INTEGER, category VARCHAR) | What is the earliest year with a category of Top 10 Selling Mandarin Albums of the Year? |
SELECT discipline FROM table_name_31 WHERE championship = "usac national championship" | CREATE TABLE table_name_31 (discipline VARCHAR, championship VARCHAR) | For the USAC National Championship, what is the Discipline? |
SELECT championship FROM table_name_72 WHERE session = "race" AND event = "indianapolis sweepstakes" | CREATE TABLE table_name_72 (championship VARCHAR, session VARCHAR, event VARCHAR) | In the Indianapolis Sweepstakes race session, what is the championship? |
SELECT circuit FROM table_name_29 WHERE championship = "sprint cup series" | CREATE TABLE table_name_29 (circuit VARCHAR, championship VARCHAR) | What circuit is the Sprint Cup series championship? |
SELECT result FROM table_name_91 WHERE attendance = "25,000" | CREATE TABLE table_name_91 (result VARCHAR, attendance VARCHAR) | What were the Results for 25,000 Attendance? |
SELECT result FROM table_name_80 WHERE date = "10/06/1934" | CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR) | What was the result on 10/06/1934? |
SELECT SUM(founded) FROM table_name_18 WHERE stadium = "hiram bithorn stadium" AND club = "atlético de san juan fc" | CREATE TABLE table_name_18 (founded INTEGER, stadium VARCHAR, club VARCHAR) | What year was the team Club of atlético de san juan fc who plays at hiram bithorn stadium founded. |
SELECT branding FROM table_name_38 WHERE power = "10 kw" AND location = "iloilo city" | CREATE TABLE table_name_38 (branding VARCHAR, power VARCHAR, location VARCHAR) | What is the Branding of the Iloilo City Frequency with a Power of 10 Kw? |
SELECT power FROM table_name_48 WHERE callsign = "dxll" | CREATE TABLE table_name_48 (power VARCHAR, callsign VARCHAR) | What is the Power of the Frequency with a Callsign of DXLL? |
SELECT frequency FROM table_name_91 WHERE location = "davao city" | CREATE TABLE table_name_91 (frequency VARCHAR, location VARCHAR) | What is the Frequency in Davao City? |
SELECT branding FROM table_name_99 WHERE callsign = "dwll" | CREATE TABLE table_name_99 (branding VARCHAR, callsign VARCHAR) | What is the Branding with a Callsign DWLL? |
SELECT branding FROM table_name_19 WHERE location = "metro manila" AND callsign = "dwbl" | CREATE TABLE table_name_19 (branding VARCHAR, location VARCHAR, callsign VARCHAR) | What is the Branding of the Metro Manila Frequency with a Callsign of DWBL? |
SELECT location FROM table_name_89 WHERE callsign = "dxbl" | CREATE TABLE table_name_89 (location VARCHAR, callsign VARCHAR) | What is the Location of the Frequency with a Callsign of DXBL? |
SELECT name FROM table_name_91 WHERE year_named > 1997 AND longitude = "213.0e" | CREATE TABLE table_name_91 (name VARCHAR, year_named VARCHAR, longitude VARCHAR) | What name in a year after 1997 has a longitude of 213.0e? |
SELECT COUNT(year_named) FROM table_name_72 WHERE longitude = "36.8e" AND diameter__km_ > 697 | CREATE TABLE table_name_72 (year_named VARCHAR, longitude VARCHAR, diameter__km_ VARCHAR) | How many years correspond to longitude of 36.8e and diameter greater than 697? |
SELECT COUNT(pick__number) FROM table_name_87 WHERE position = "center" AND round < 6 | CREATE TABLE table_name_87 (pick__number VARCHAR, position VARCHAR, round VARCHAR) | What was the pick # for a center picked before round 6? |
SELECT team FROM table_name_75 WHERE seed > 7 AND notes = "ncraa champion" | CREATE TABLE table_name_75 (team VARCHAR, seed VARCHAR, notes VARCHAR) | What team with a seed value greater than 7 has a note that they were an NCRAA champion? |
SELECT COUNT(oricon_peak) FROM table_name_72 WHERE label = "atlantic" AND title = "subhuman race" AND date_of_release > 1995 | CREATE TABLE table_name_72 (oricon_peak VARCHAR, date_of_release VARCHAR, label VARCHAR, title VARCHAR) | WHAT IS THE ORICON PEAK NUMBER WITH AN ATLANTIC LABEL, SUBHUMAN RACE, LATER THAN 1995? |
SELECT label FROM table_name_80 WHERE date_of_release = 1991 | CREATE TABLE table_name_80 (label VARCHAR, date_of_release VARCHAR) | WHAT LABEL HAD A RELEASE DATE OF 1991? |
SELECT AVG(date_of_release) FROM table_name_33 WHERE title = "thickskin" | CREATE TABLE table_name_33 (date_of_release INTEGER, title VARCHAR) | WHAT IS THE AVERAGE DATE OF RELEASE FOR THICKSKIN? |
SELECT MIN(enrollment) FROM table_name_17 WHERE left = 2012 AND current_conference = "mid-south" | CREATE TABLE table_name_17 (enrollment INTEGER, left VARCHAR, current_conference VARCHAR) | What is the lowest enrollment amount for a year left of 2012 and a current conference of Mid-South? |
SELECT SUM(season) FROM table_name_40 WHERE score = "1:3" AND venue = "national stadium, maldives" | CREATE TABLE table_name_40 (season INTEGER, score VARCHAR, venue VARCHAR) | Which season was there a game with the score of 1:3 played at the venue of national stadium, maldives? |
SELECT venue FROM table_name_61 WHERE score = "1:3" AND team_2 = "binh duong" | CREATE TABLE table_name_61 (venue VARCHAR, score VARCHAR, team_2 VARCHAR) | What was the venue of the match where the score was 1:3 and team 2 was binh duong? |
SELECT score FROM table_name_70 WHERE team_2 = "club valencia" | CREATE TABLE table_name_70 (score VARCHAR, team_2 VARCHAR) | What was the score of the game when team 2 was club valencia? |
SELECT venue FROM table_name_59 WHERE team_2 = "pea" AND score = "1:3" | CREATE TABLE table_name_59 (venue VARCHAR, team_2 VARCHAR, score VARCHAR) | What was the venue of the match where team 2 was pea and the score was 1:3? |
SELECT solar FROM table_name_48 WHERE year = 2011 AND hydroelectricity < 119.6 | CREATE TABLE table_name_48 (solar VARCHAR, year VARCHAR, hydroelectricity VARCHAR) | In 2011 with a hydroelectricity less than 119.6, what was the solar? |
SELECT MIN(hydroelectricity) FROM table_name_51 WHERE total < 116.4 AND solar > 18.637 | CREATE TABLE table_name_51 (hydroelectricity INTEGER, total VARCHAR, solar VARCHAR) | What is the minimum hydroelectricity with a less than 116.4 total, and a greater than 18.637 solar? |
SELECT AVG(hydroelectricity) FROM table_name_73 WHERE year > 2011 AND wind_power < 13.333 | CREATE TABLE table_name_73 (hydroelectricity INTEGER, year VARCHAR, wind_power VARCHAR) | In 2011 with a less than 13.333 wind power what is the mean hydroelectricity? |
SELECT country FROM table_name_38 WHERE total < 136.1 AND solar = 0.02 | CREATE TABLE table_name_38 (country VARCHAR, total VARCHAR, solar VARCHAR) | What country has a less than 136.1 total and a 0.02 solar? |
SELECT home FROM table_name_4 WHERE away = "hispano" | CREATE TABLE table_name_4 (home VARCHAR, away VARCHAR) | Home for away of hispano? |
SELECT position FROM table_name_12 WHERE pick__number < 23 AND player = "garrett sutherland" | CREATE TABLE table_name_12 (position VARCHAR, pick__number VARCHAR, player VARCHAR) | Which Position has a Pick # smaller than 23, and a Player of garrett sutherland? |
SELECT cfl_team FROM table_name_53 WHERE player = "chris evraire" | CREATE TABLE table_name_53 (cfl_team VARCHAR, player VARCHAR) | Name the CFL Team which has a Player of chris evraire? |
SELECT player FROM table_name_13 WHERE pick__number = 27 | CREATE TABLE table_name_13 (player VARCHAR, pick__number VARCHAR) | Name The Player who has a Pick # of 27? |
SELECT player FROM table_name_24 WHERE cfl_team = "toronto" | CREATE TABLE table_name_24 (player VARCHAR, cfl_team VARCHAR) | Name the Player who has a CFL Team of toronto? |
SELECT SUM(pick__number) FROM table_name_74 WHERE position = "lb" AND cfl_team = "winnipeg" | CREATE TABLE table_name_74 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR) | Name the Pick # which has a Position of lb, and a CFL Team of winnipeg? |
SELECT SUM(attendance) FROM table_name_26 WHERE home = "detroit" AND points > 33 | CREATE TABLE table_name_26 (attendance INTEGER, home VARCHAR, points VARCHAR) | WHAT IS THE SUM OF ATTENDANCE FOR DETROIT, WHEN POINTS ARE LARGER THAN 33? |
SELECT location_attendance FROM table_name_68 WHERE date = "december 12" | CREATE TABLE table_name_68 (location_attendance VARCHAR, date VARCHAR) | What was the location and attendance for the game on December 12? |
SELECT MIN(touchdowns) FROM table_name_14 WHERE player = "andrew glover" AND yards > 281 | CREATE TABLE table_name_14 (touchdowns INTEGER, player VARCHAR, yards VARCHAR) | What is the lowest Touchdowns, when Player is Andrew Glover, and when Yards is greater than 281? |
SELECT AVG(touchdowns) FROM table_name_7 WHERE yards < 293 AND long > 39 | CREATE TABLE table_name_7 (touchdowns INTEGER, yards VARCHAR, long VARCHAR) | What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39? |
SELECT COUNT(attempts) FROM table_name_61 WHERE touchdowns = 6 | CREATE TABLE table_name_61 (attempts VARCHAR, touchdowns VARCHAR) | What is the total number of Attempts, when Touchdowns is 6? |
SELECT venue FROM table_name_39 WHERE extra = "pentathlon" | CREATE TABLE table_name_39 (venue VARCHAR, extra VARCHAR) | What is Venue, when Extra is Pentathlon? |
SELECT MAX(year) FROM table_name_33 WHERE extra = "pentathlon" | CREATE TABLE table_name_33 (year INTEGER, extra VARCHAR) | What is the highest Year, when Extra is Pentathlon? |
SELECT SUM(year) FROM table_name_10 WHERE result = "9th" | CREATE TABLE table_name_10 (year INTEGER, result VARCHAR) | What is the sum of Year, when Result is 9th? |
SELECT tournament FROM table_name_74 WHERE result = "2nd" AND year = 2009 | CREATE TABLE table_name_74 (tournament VARCHAR, result VARCHAR, year VARCHAR) | What is Tournament, when Result is 2nd, and when Year is 2009? |
SELECT result FROM table_name_77 WHERE venue = "götzis , austria" | CREATE TABLE table_name_77 (result VARCHAR, venue VARCHAR) | What is Result, when Venue is Götzis , Austria? |
SELECT label FROM table_name_24 WHERE region = "germany" | CREATE TABLE table_name_24 (label VARCHAR, region VARCHAR) | What label does Germany have? |
SELECT region FROM table_name_13 WHERE label = "chrysalis" AND catalog = "chr 1047" | CREATE TABLE table_name_13 (region VARCHAR, label VARCHAR, catalog VARCHAR) | What region has the Chrysalis label, and a Catalog of chr 1047? |
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.