answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT film FROM table_name_21 WHERE year < 2002 AND category = "outstanding actress" | CREATE TABLE table_name_21 (film VARCHAR, year VARCHAR, category VARCHAR) | what is the film when the year is earlier than 2002 and the category is outstanding actress? |
SELECT COUNT(latitude) FROM table_name_45 WHERE land___sqmi__ > 34.846 AND geo_id < 3805529660 AND township = "greenland" AND ansi_code > 1036405 | CREATE TABLE table_name_45 (latitude VARCHAR, ansi_code VARCHAR, township VARCHAR, land___sqmi__ VARCHAR, geo_id VARCHAR) | What is the total latitude of the greenland township with more than 34.846 sqmi of land, a geo id less than 3805529660, and an ANSI code greater than 1036405? |
SELECT SUM(land___sqmi__) FROM table_name_36 WHERE ansi_code < 1036538 AND pop__2010_ < 42 AND longitude > -99.442872 AND water__sqmi_ > 0.882 | CREATE TABLE table_name_36 (land___sqmi__ INTEGER, water__sqmi_ VARCHAR, longitude VARCHAR, ansi_code VARCHAR, pop__2010_ VARCHAR) | What is the sum of the land in sq mi with an ansi code less than 1036538, a 2010 population less than 42, a longitude greater than -99.442872, and more than 0.882 sq mi of water? |
SELECT MAX(water__sqmi_) FROM table_name_91 WHERE land___sqmi__ > 33.576 AND township = "glenila" AND latitude > 48.832189 | CREATE TABLE table_name_91 (water__sqmi_ INTEGER, latitude VARCHAR, land___sqmi__ VARCHAR, township VARCHAR) | What is the highest water (sq mi) of the township glenila, which has more than 33.576 sq mi of land and a latitude greater than 48.832189? |
SELECT SUM(pop__2010_) FROM table_name_64 WHERE latitude > 47.710905 AND longitude = -101.79876 AND land___sqmi__ < 35.695 | CREATE TABLE table_name_64 (pop__2010_ INTEGER, land___sqmi__ VARCHAR, latitude VARCHAR, longitude VARCHAR) | What is the sum of the 2010 population with a latitude greater than 47.710905, a longitude of -101.79876, and less than 35.695 sq mi of land? |
SELECT MIN(land___sqmi__) FROM table_name_27 WHERE longitude = -99.172785 AND water__sqmi_ < 0.973 | CREATE TABLE table_name_27 (land___sqmi__ INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR) | What is the lowest land in sq mi with a longitude of -99.172785 and less than 0.973 sq mi of water? |
SELECT name FROM table_name_19 WHERE position = "head coach" | CREATE TABLE table_name_19 (name VARCHAR, position VARCHAR) | Who was the head coach? |
SELECT name FROM table_name_49 WHERE year_at_cu = "1st" AND alma_mater = "dayton ('07)" | CREATE TABLE table_name_49 (name VARCHAR, year_at_cu VARCHAR, alma_mater VARCHAR) | Who has the alma mater of Dayton ('07), and was in their 1st year at CU? |
SELECT year_at_cu FROM table_name_8 WHERE experience < 1 AND position = "video services" | CREATE TABLE table_name_8 (year_at_cu VARCHAR, experience VARCHAR, position VARCHAR) | What year at CU is the person in video services with an experience less than 1? |
SELECT experience FROM table_name_29 WHERE year_at_cu = "1st" AND position = "graduate assistant" | CREATE TABLE table_name_29 (experience VARCHAR, year_at_cu VARCHAR, position VARCHAR) | The graduate assistant who was in the 1st year at CU has what experience? |
SELECT name FROM table_name_86 WHERE experience > 19 AND alma_mater = "eastern nazarene ('74)" | CREATE TABLE table_name_86 (name VARCHAR, experience VARCHAR, alma_mater VARCHAR) | What person has the alma mater of Eastern Nazarene ('74), and greater than 19 experience? |
SELECT COUNT(engine_capacity) FROM table_name_50 WHERE transmission = "a4" AND mpg_us_urban > 19 AND mpg_us_extra_urban > 38.6 AND model = "aveo" | CREATE TABLE table_name_50 (engine_capacity VARCHAR, model VARCHAR, mpg_us_extra_urban VARCHAR, transmission VARCHAR, mpg_us_urban VARCHAR) | What is the total engine capacity of the a4 transmission, which has an urban mpg-US greater than 19, an mpg-us extra-urban greater than 38.6, and an aveo model? |
SELECT MAX(engine_capacity) FROM table_name_25 WHERE manufacturer = "bmw" AND mpg_uk_extra_urban = 52.3 AND co_2_g_km = 176 AND mpg_us_urban > 27.3 | CREATE TABLE table_name_25 (engine_capacity INTEGER, mpg_us_urban VARCHAR, co_2_g_km VARCHAR, manufacturer VARCHAR, mpg_uk_extra_urban VARCHAR) | What is the highest engine capacity with a bmw manufacturer, an mpg-UK extra-urban of 52.3, a 176 CO 2 g/km, and an mpg-us urban greater than 27.3? |
SELECT mpg_uk_combined FROM table_name_89 WHERE mpg_uk_urban__cold_ > 26.6 AND transmission = "m5" AND fuel_type = "diesel" AND engine_capacity < 1560 | CREATE TABLE table_name_89 (mpg_uk_combined VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_urban__cold_ VARCHAR, transmission VARCHAR) | What is the mpg-uk combined with an mpg-uk urban (cold) greater than 26.6, a m5 transmission, a diesel fuel type, and an engine capacity less than 1560? |
SELECT l_100km_urban__cold_ FROM table_name_24 WHERE co_2_g_km < 222 AND mpg_us_urban > 17.8 AND mpg_uk_extra_urban = 55.4 AND engine_capacity > 1560 | CREATE TABLE table_name_24 (l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, mpg_uk_extra_urban VARCHAR, co_2_g_km VARCHAR, mpg_us_urban VARCHAR) | What is the l/100km urban (cold) with a CO 2 g/km less than 222, an mpg-us urban greater than 17.8, an mpg-uk extra-urban of 55.4, and an engine capacity greater than 1560? |
SELECT model FROM table_name_6 WHERE green_rating = "g" AND manufacturer = "chrysler jeep" AND l_100km_urban__cold_ < 18 AND mpg_uk_combined = 27.7 | CREATE TABLE table_name_6 (model VARCHAR, mpg_uk_combined VARCHAR, l_100km_urban__cold_ VARCHAR, green_rating VARCHAR, manufacturer VARCHAR) | What model has a g green rating, has chrysler jeep as a manufacturer, has an l/100km urban (cold) less than 18, and has an mpg-uk combined of 27.7? |
SELECT league_cup_apps FROM table_name_54 WHERE total_goals < 2 AND total_apps = "12" | CREATE TABLE table_name_54 (league_cup_apps VARCHAR, total_goals VARCHAR, total_apps VARCHAR) | what is the league cup apps when the total goals is less than 2 and the total apps is 12? |
SELECT AVG(fa_cup_goals) FROM table_name_96 WHERE league_cup_apps = "2" AND fa_cup_apps = "3" AND league_goals = 3 | CREATE TABLE table_name_96 (fa_cup_goals INTEGER, league_goals VARCHAR, league_cup_apps VARCHAR, fa_cup_apps VARCHAR) | what is the average ga cup goals when the league cup apps is 2, the fa cup apps is 3 and the league goals is 3? |
SELECT MAX(fa_cup_goals) FROM table_name_96 WHERE flt_goals > 0 | CREATE TABLE table_name_96 (fa_cup_goals INTEGER, flt_goals INTEGER) | what is the highest fa cup goals when flt goals is more than 0? |
SELECT total_apps FROM table_name_80 WHERE league_apps = "4 (2)" | CREATE TABLE table_name_80 (total_apps VARCHAR, league_apps VARCHAR) | what is the total apps when the league apps is 4 (2)? |
SELECT COUNT(silver) FROM table_name_44 WHERE total > 9 AND gold = 14 | CREATE TABLE table_name_44 (silver VARCHAR, total VARCHAR, gold VARCHAR) | How much Silver has a Total larger than 9, and a Gold of 14? |
SELECT rank FROM table_name_24 WHERE total > 9 AND gold > 6 | CREATE TABLE table_name_24 (rank VARCHAR, total VARCHAR, gold VARCHAR) | Which Rank has a Total larger than 9, and a Gold larger than 6? |
SELECT COUNT(silver) FROM table_name_36 WHERE rank = "4" AND bronze < 12 | CREATE TABLE table_name_36 (silver VARCHAR, rank VARCHAR, bronze VARCHAR) | How much Silver has a Rank of 4, and a Bronze smaller than 12? |
SELECT SUM(bronze) FROM table_name_68 WHERE total = 9 | CREATE TABLE table_name_68 (bronze INTEGER, total VARCHAR) | How many bronzes have a Total of 9? |
SELECT SUM(gold) FROM table_name_37 WHERE nation = "mongolia" AND total > 18 | CREATE TABLE table_name_37 (gold INTEGER, nation VARCHAR, total VARCHAR) | How much Gold has a Nation of mongolia, and a Total larger than 18? |
SELECT lok_sabha FROM table_name_13 WHERE party_affiliation = "dravida munnetra kazhagam" AND duration = "1999-04" | CREATE TABLE table_name_13 (lok_sabha VARCHAR, party_affiliation VARCHAR, duration VARCHAR) | What is the Lok Sabha for Dravida Munnetra Kazhagam, in 1999-04? |
SELECT duration FROM table_name_86 WHERE lok_sabha = "fifth" | CREATE TABLE table_name_86 (duration VARCHAR, lok_sabha VARCHAR) | What is the duration when Lok Sabha shows fifth? |
SELECT result FROM table_name_50 WHERE date = "december 20, 1970" | CREATE TABLE table_name_50 (result VARCHAR, date VARCHAR) | What was the result for the game played on December 20, 1970? |
SELECT result FROM table_name_50 WHERE week = 2 | CREATE TABLE table_name_50 (result VARCHAR, week VARCHAR) | What was the result for week 2? |
SELECT SUM(rank) FROM table_name_36 WHERE notes = "fb" AND time = "6:47.30" | CREATE TABLE table_name_36 (rank INTEGER, notes VARCHAR, time VARCHAR) | What is the rank of the athletes that have Notes of fb, and a Time of 6:47.30? |
SELECT MIN(rank) FROM table_name_80 WHERE time = "6:36.65" | CREATE TABLE table_name_80 (rank INTEGER, time VARCHAR) | What is the least rank for athletes with a time of 6:36.65? |
SELECT AVG(react) FROM table_name_36 WHERE rank > 8 | CREATE TABLE table_name_36 (react INTEGER, rank INTEGER) | What is the average react for a rank more than 8? |
SELECT MAX(rank) FROM table_name_4 WHERE react = 0.198 AND time > 20.42 | CREATE TABLE table_name_4 (rank INTEGER, react VARCHAR, time VARCHAR) | What is the highest rank for the react of 0.198, and the time more than 20.42? |
SELECT SUM(time) FROM table_name_70 WHERE lane > 6 AND nationality = "canada" AND react < 0.151 | CREATE TABLE table_name_70 (time INTEGER, react VARCHAR, lane VARCHAR, nationality VARCHAR) | What is the sum of time with a lane larger than 6, a nationality of canada, and the react smaller than 0.151? |
SELECT human_gene__protein_ FROM table_name_41 WHERE yeast_ortholog = "rad26" | CREATE TABLE table_name_41 (human_gene__protein_ VARCHAR, yeast_ortholog VARCHAR) | What human gene has a yeast ortholog of RAD26? |
SELECT human_gene__protein_ FROM table_name_27 WHERE mouse_ortholog = "lig1" | CREATE TABLE table_name_27 (human_gene__protein_ VARCHAR, mouse_ortholog VARCHAR) | What is the human gene that has a mouse ortholog of LIG1? |
SELECT yeast_ortholog FROM table_name_19 WHERE subpathway = "ggr" AND genecards_entry = "cetn2" | CREATE TABLE table_name_19 (yeast_ortholog VARCHAR, subpathway VARCHAR, genecards_entry VARCHAR) | What is the yeast ortholog that has a subpathway of GGR and GeneCards entry CETN2? |
SELECT yeast_ortholog FROM table_name_18 WHERE mouse_ortholog = "mms19" | CREATE TABLE table_name_18 (yeast_ortholog VARCHAR, mouse_ortholog VARCHAR) | What is the yeast ortholog of mouse ortholog MMS19? |
SELECT tournament FROM table_name_67 WHERE opponent = "vladimir zednik" | CREATE TABLE table_name_67 (tournament VARCHAR, opponent VARCHAR) | What is the Tournament against Vladimir Zednik? |
SELECT tournament FROM table_name_95 WHERE score = "4β6, 6β7, 3β6" | CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR) | What Tournament had a Score of 4β6, 6β7, 3β6? |
SELECT score FROM table_name_68 WHERE outcome = "runner-up" AND opponent = "tim gullikson" | CREATE TABLE table_name_68 (score VARCHAR, outcome VARCHAR, opponent VARCHAR) | What is the Score of the of the Tournament against Tim Gullikson with Outcome of runner-up? |
SELECT doha_, _qatar FROM table_name_17 WHERE snatch = "total" | CREATE TABLE table_name_17 (doha_ VARCHAR, _qatar VARCHAR, snatch VARCHAR) | What is the Doha, Qatar when the snatch is total? |
SELECT doha_, _qatar FROM table_name_93 WHERE snatch = "clean & jerk" | CREATE TABLE table_name_93 (doha_ VARCHAR, _qatar VARCHAR, snatch VARCHAR) | What is the Doha, Qatar when the snatch is clean & jerk? |
SELECT SUM(points) FROM table_name_3 WHERE name = "stephen myler" AND tries < 0 | CREATE TABLE table_name_3 (points INTEGER, name VARCHAR, tries VARCHAR) | How many Points have a Name of stephen myler, and Tries smaller than 0? |
SELECT AVG(pick) FROM table_name_34 WHERE college = "new mexico" | CREATE TABLE table_name_34 (pick INTEGER, college VARCHAR) | What is the pick number for New Mexico? |
SELECT player FROM table_name_43 WHERE team = "denver broncos" | CREATE TABLE table_name_43 (player VARCHAR, team VARCHAR) | What player is from the Denver Broncos? |
SELECT college FROM table_name_38 WHERE team = "new york jets" | CREATE TABLE table_name_38 (college VARCHAR, team VARCHAR) | Which college has their team as the New York Jets? |
SELECT constituency_number FROM table_name_73 WHERE name = "total:" | CREATE TABLE table_name_73 (constituency_number VARCHAR, name VARCHAR) | What is the Constituency Number of Total:? |
SELECT district FROM table_name_43 WHERE constituency_number = "22" | CREATE TABLE table_name_43 (district VARCHAR, constituency_number VARCHAR) | Which District is Constituency number 22? |
SELECT MIN(number_of_electorates__2003_) FROM table_name_85 WHERE district = "bhind" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "11" | CREATE TABLE table_name_85 (number_of_electorates__2003_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR) | What is the lowest number of Electorates (2003) in District bhind, Reserved for none, and Constituency Number 11? |
SELECT school_club_team FROM table_name_31 WHERE pick = 33 | CREATE TABLE table_name_31 (school_club_team VARCHAR, pick VARCHAR) | What school/club had pick 33? |
SELECT attendance FROM table_name_81 WHERE date = "october 16, 2005" | CREATE TABLE table_name_81 (attendance VARCHAR, date VARCHAR) | What attendance has October 16, 2005 as the date? |
SELECT result FROM table_name_25 WHERE week < 16 AND date = "october 31, 2005" | CREATE TABLE table_name_25 (result VARCHAR, week VARCHAR, date VARCHAR) | What result has a week less than 16, and October 31, 2005 as the date? |
SELECT MIN(year) FROM table_name_37 WHERE manager = "bobby dews" AND playoffs = "lost in 1st round" | CREATE TABLE table_name_37 (year INTEGER, manager VARCHAR, playoffs VARCHAR) | Which Year has a Manager of bobby dews, and Playoffs of lost in 1st round? |
SELECT COUNT(year) FROM table_name_74 WHERE record = "73-65" | CREATE TABLE table_name_74 (year VARCHAR, record VARCHAR) | How many years have a Record of 73-65? |
SELECT record FROM table_name_33 WHERE year > 1974 AND finish = "3rd" | CREATE TABLE table_name_33 (record VARCHAR, year VARCHAR, finish VARCHAR) | Which Record has a Year larger than 1974, and a Finish of 3rd? |
SELECT song FROM table_name_14 WHERE year < 1994 AND uk_chart = "42" | CREATE TABLE table_name_14 (song VARCHAR, year VARCHAR, uk_chart VARCHAR) | Which Song of the Year was 42 on the UK charts prior to 1994? |
SELECT uk_chart FROM table_name_84 WHERE artist = "scott fitzgerald" | CREATE TABLE table_name_84 (uk_chart VARCHAR, artist VARCHAR) | Where did Scott Fitzgerald rank on the UK charts? |
SELECT uk_chart FROM table_name_33 WHERE year > 1961 AND at_eurovision = "2nd" AND artist = "michael ball" | CREATE TABLE table_name_33 (uk_chart VARCHAR, artist VARCHAR, year VARCHAR, at_eurovision VARCHAR) | Where did the song by Michael Ball, which placed 2nd in Eurovision prior to 1961, place on the UK charts? |
SELECT 3 AS rd_day FROM table_name_65 WHERE year < 2012 AND finish_position = "33rd" | CREATE TABLE table_name_65 (year VARCHAR, finish_position VARCHAR) | What is the 3rd day result for years under 2012 and a finish position of 33rd? |
SELECT origin FROM table_name_57 WHERE in_service = 1 | CREATE TABLE table_name_57 (origin VARCHAR, in_service VARCHAR) | For the vessel with a listed In service of 1, what is the origin given? |
SELECT MIN(in_service) FROM table_name_71 WHERE vessel = "xavery czernicki class" | CREATE TABLE table_name_71 (in_service INTEGER, vessel VARCHAR) | What is the lowest listed In service for a vessel of xavery czernicki class? |
SELECT vessel FROM table_name_72 WHERE type = "logistic support" | CREATE TABLE table_name_72 (vessel VARCHAR, type VARCHAR) | Which vessel has a type of logistic support? |
SELECT type FROM table_name_77 WHERE vessel = "lublin class" | CREATE TABLE table_name_77 (type VARCHAR, vessel VARCHAR) | What is the type for a vessel of lublin class? |
SELECT MAX(in_service) FROM table_name_37 WHERE unit = "12th minesweeper squadron" | CREATE TABLE table_name_37 (in_service INTEGER, unit VARCHAR) | What is the highest In service for a vessel with a listed Unit of 12th minesweeper squadron? |
SELECT type FROM table_name_49 WHERE unit = "naval base swinoujscie (auxiliary squadron)" | CREATE TABLE table_name_49 (type VARCHAR, unit VARCHAR) | What is the type for a vessel with a listed unit of naval base swinoujscie (auxiliary squadron)? |
SELECT rider FROM table_name_44 WHERE team = "600cc yamaha" | CREATE TABLE table_name_44 (rider VARCHAR, team VARCHAR) | Which rider was on the 600cc Yamaha team? |
SELECT speed FROM table_name_55 WHERE rider = "john hildreth" | CREATE TABLE table_name_55 (speed VARCHAR, rider VARCHAR) | What was John Hildreth's speed? |
SELECT AVG(draw) FROM table_name_29 WHERE time = "22:29" | CREATE TABLE table_name_29 (draw INTEGER, time VARCHAR) | What is the average draw number of an entrant with a time of 22:29? |
SELECT brand FROM table_name_28 WHERE entrant = "mark henry" | CREATE TABLE table_name_28 (brand VARCHAR, entrant VARCHAR) | What is Mark Henry's brand? |
SELECT author___editor___source FROM table_name_86 WHERE world_ranking__1_ = "35" AND countries_sampled > 100 | CREATE TABLE table_name_86 (author___editor___source VARCHAR, world_ranking__1_ VARCHAR, countries_sampled VARCHAR) | Who is the Author/Editor/Source for more than 100 countries sampled and has a 35 world ranking? |
SELECT SUM(countries_sampled) FROM table_name_71 WHERE year_of_publication = "2010" AND world_ranking__1_ = "33" AND ranking_in_latin_america__2_ < 3 | CREATE TABLE table_name_71 (countries_sampled INTEGER, ranking_in_latin_america__2_ VARCHAR, year_of_publication VARCHAR, world_ranking__1_ VARCHAR) | How many countries sampled has a world ranking of 33 in 2010 and less than 3 ranking in Latin America? |
SELECT world_ranking__1_ FROM table_name_87 WHERE year_of_publication = "2011" AND ranking_in_latin_america__2_ > 3 AND countries_sampled > 142 | CREATE TABLE table_name_87 (world_ranking__1_ VARCHAR, countries_sampled VARCHAR, year_of_publication VARCHAR, ranking_in_latin_america__2_ VARCHAR) | What's the world ranking in 2011 having more than 142 countries sampled, and more than a 3 for ranking in Latin America? |
SELECT home_team FROM table_name_44 WHERE tie_no = "20" | CREATE TABLE table_name_44 (home_team VARCHAR, tie_no VARCHAR) | What home team has a tie no of 20? |
SELECT date FROM table_name_96 WHERE score = "3β3" AND away_team = "barnet" | CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR, away_team VARCHAR) | What date was the score 3β3, and away team was Barnet? |
SELECT tie_no FROM table_name_12 WHERE home_team = "wimbledon" | CREATE TABLE table_name_12 (tie_no VARCHAR, home_team VARCHAR) | What is the Tie no when Wimbledon is the home team? |
SELECT score FROM table_name_43 WHERE tie_no = "replay" AND away_team = "york city" | CREATE TABLE table_name_43 (score VARCHAR, tie_no VARCHAR, away_team VARCHAR) | What is the score when the Tie no is replay, and the away team is York City? |
SELECT tie_no FROM table_name_83 WHERE away_team = "chester" | CREATE TABLE table_name_83 (tie_no VARCHAR, away_team VARCHAR) | What is the Tie no when Chester is the away team? |
SELECT broadcast_date FROM table_name_39 WHERE viewership__millions_ = 9.65 | CREATE TABLE table_name_39 (broadcast_date VARCHAR, viewership__millions_ VARCHAR) | What is the broadcast date of the episode with 9.65 million viewers? |
SELECT MIN(viewership__millions_) FROM table_name_54 WHERE broadcast_date = "7 september 2001" | CREATE TABLE table_name_54 (viewership__millions_ INTEGER, broadcast_date VARCHAR) | What is the lowest viewership in millions of the episode broadcast on 7 September 2001? |
SELECT episode_number FROM table_name_79 WHERE broadcast_date = "21 september 2001" | CREATE TABLE table_name_79 (episode_number VARCHAR, broadcast_date VARCHAR) | What is the episode number of the episode broadcast on 21 September 2001? |
SELECT COUNT(draw) FROM table_name_65 WHERE points = 8 AND place > 8 | CREATE TABLE table_name_65 (draw VARCHAR, points VARCHAR, place VARCHAR) | How many times is the points 8 and the place larger than 8? |
SELECT AVG(draw) FROM table_name_62 WHERE place = 5 AND points > 15 | CREATE TABLE table_name_62 (draw INTEGER, place VARCHAR, points VARCHAR) | what is the average draw when the place is 5 and points more than 15? |
SELECT MAX(draw) FROM table_name_54 WHERE points < 11 AND language = "norwegian" | CREATE TABLE table_name_54 (draw INTEGER, points VARCHAR, language VARCHAR) | what is the highest draw when points is less than 11 and language is norwegian? |
SELECT COUNT(pick) FROM table_name_62 WHERE pba_team = "purefoods tender juicy hotdogs" | CREATE TABLE table_name_62 (pick VARCHAR, pba_team VARCHAR) | What is the total number of picks from the PBA team of purefoods tender juicy hotdogs? |
SELECT pba_team FROM table_name_50 WHERE college = "santo tomas" | CREATE TABLE table_name_50 (pba_team VARCHAR, college VARCHAR) | What is the pba team for the player who went to santo tomas college? |
SELECT pba_team FROM table_name_41 WHERE pick < 11 AND player = "roberto jabar" | CREATE TABLE table_name_41 (pba_team VARCHAR, pick VARCHAR, player VARCHAR) | What is the PBA team for roberto jabar who was picked before number 11? |
SELECT most_spoken_language FROM table_name_91 WHERE code > 70403 AND area__km_2__ > 3.79 AND population > 73 OFFSET 283 | CREATE TABLE table_name_91 (most_spoken_language VARCHAR, population VARCHAR, code VARCHAR, area__km_2__ VARCHAR) | What is the Most Spoken language in the Place with Code 70403 with an Area (km 2) larger than 3.79 and a Population larger than 73,283? |
SELECT COUNT(population) FROM table_name_51 WHERE area__km_2__ > 498.77 | CREATE TABLE table_name_51 (population VARCHAR, area__km_2__ INTEGER) | What is the Population of the Place with an Area (km 2) larger than 498.77? |
SELECT MIN(population) FROM table_name_66 WHERE code < 70409 AND area__km_2__ < 5.97 AND place = "tshepiso" | CREATE TABLE table_name_66 (population INTEGER, place VARCHAR, code VARCHAR, area__km_2__ VARCHAR) | What is the Population of Tshepiso with a Code of 70409 or smaller and an Area (km 2) smaller than 5.97? |
SELECT time FROM table_name_76 WHERE react > 0.187 AND athlete = "paul hession" | CREATE TABLE table_name_76 (time VARCHAR, react VARCHAR, athlete VARCHAR) | What the time of Paul Hession with more than an 0.187 react? |
SELECT MAX(lane) FROM table_name_85 WHERE react < 0.164 AND time = "20.45" | CREATE TABLE table_name_85 (lane INTEGER, react VARCHAR, time VARCHAR) | What's the lane number when time was 20.45 and the react was less than 0.164? |
SELECT 1958 FROM table_name_67 WHERE 1957 = "2" AND 1956 = "3" | CREATE TABLE table_name_67 (Id VARCHAR) | what is 1958 when 1957 is 2 and 1956 is 3? |
SELECT 1955 FROM table_name_78 WHERE 1961 = "n/a" | CREATE TABLE table_name_78 (Id VARCHAR) | what is 1955 when 1961 is n/a? |
SELECT date FROM table_name_80 WHERE tie_no = "7" | CREATE TABLE table_name_80 (date VARCHAR, tie_no VARCHAR) | What date has 7 as the tie no.? |
SELECT year FROM table_name_87 WHERE venue = "beijing" | CREATE TABLE table_name_87 (year VARCHAR, venue VARCHAR) | Which year was held in beijing? |
SELECT COUNT(year) FROM table_name_88 WHERE venue = "eindhoven" | CREATE TABLE table_name_88 (year VARCHAR, venue VARCHAR) | How many years had a Venue of eindhoven? |
SELECT competition FROM table_name_92 WHERE venue = "manchester" AND year = 2009 | CREATE TABLE table_name_92 (competition VARCHAR, venue VARCHAR, year VARCHAR) | Which Competition has a Venue of manchester in 2009? |
SELECT year FROM table_name_4 WHERE position = "2nd" AND notes = "-63kg" AND venue = "manchester" | CREATE TABLE table_name_4 (year VARCHAR, venue VARCHAR, position VARCHAR, notes VARCHAR) | Which Year has a Position of 2nd, and Notes of -63kg, and a Venue of manchester? |
SELECT best FROM table_name_12 WHERE name = "rodolfo lavΓn" | CREATE TABLE table_name_12 (best VARCHAR, name VARCHAR) | Name the the Best of rodolfo lavΓn |
Subsets and Splits