combined_text stringlengths 106 1.05k |
|---|
###question:Which Representative has a Presentation of Credentials on september 8, 2005?###answer:SELECT representative FROM table_name_93 WHERE presentation_of_credentials = "september 8, 2005"###context:CREATE TABLE table_name_93 (representative VARCHAR, presentation_of_credentials VARCHAR) |
###question:Which Termination of Mission has a Presentation of Credentials on October 29, 1981###answer:SELECT termination_of_mission FROM table_name_5 WHERE presentation_of_credentials = "october 29, 1981"###context:CREATE TABLE table_name_5 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR) |
###question:What is the total for danny allsopp?###answer:SELECT total FROM table_name_98 WHERE name = "danny allsopp"###context:CREATE TABLE table_name_98 (total VARCHAR, name VARCHAR) |
###question:Where is the area of operation that had drilling during the year 1999?###answer:SELECT area_of_operation FROM table_name_19 WHERE services = "drilling" AND years_of_operation = "1999"###context:CREATE TABLE table_name_19 (area_of_operation VARCHAR, services VARCHAR, years_of_operation VARCHAR) |
###question:What country did the client Agiba-agip work in?###answer:SELECT country FROM table_name_5 WHERE client = "agiba-agip"###context:CREATE TABLE table_name_5 (country VARCHAR, client VARCHAR) |
###question:What years was soc a client?###answer:SELECT years_of_operation FROM table_name_88 WHERE client = "soc"###context:CREATE TABLE table_name_88 (years_of_operation VARCHAR, client VARCHAR) |
###question:What years was El Mabrouk the area of operation?###answer:SELECT years_of_operation FROM table_name_42 WHERE area_of_operation = "el mabrouk"###context:CREATE TABLE table_name_42 (years_of_operation VARCHAR, area_of_operation VARCHAR) |
###question:What services were in the area of operation Wadi Borjuj?###answer:SELECT services FROM table_name_2 WHERE area_of_operation = "wadi borjuj"###context:CREATE TABLE table_name_2 (services VARCHAR, area_of_operation VARCHAR) |
###question:How many points did the Cosworth v8 engine get in 1972?###answer:SELECT points FROM table_name_42 WHERE year = 1972 AND engine = "cosworth v8"###context:CREATE TABLE table_name_42 (points VARCHAR, year VARCHAR, engine VARCHAR) |
###question:Which gold Coast has a Melbourne of yes, a Perth of yes, an Auckland of no, and a Sydney of no?###answer:SELECT gold_coast FROM table_name_36 WHERE melbourne = "yes" AND perth = "yes" AND auckland = "no" AND sydney = "no"###context:CREATE TABLE table_name_36 (gold_coast VARCHAR, sydney VARCHAR, auckland VAR... |
###question:Which Adelaide has an Auckland of no and a Melbourne of no?###answer:SELECT adelaide FROM table_name_76 WHERE auckland = "no" AND melbourne = "no"###context:CREATE TABLE table_name_76 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR) |
###question:Which Sydney has a Gold Coast of yes, an Adelaide of no, and an Auckland of yes?###answer:SELECT sydney FROM table_name_13 WHERE gold_coast = "yes" AND adelaide = "no" AND auckland = "yes"###context:CREATE TABLE table_name_13 (sydney VARCHAR, auckland VARCHAR, gold_coast VARCHAR, adelaide VARCHAR) |
###question:Which Sydney has a Perth of no, an Adelaide of yes, and a Gold Coast of no?###answer:SELECT sydney FROM table_name_84 WHERE perth = "no" AND adelaide = "yes" AND gold_coast = "no"###context:CREATE TABLE table_name_84 (sydney VARCHAR, gold_coast VARCHAR, perth VARCHAR, adelaide VARCHAR) |
###question:Which Adelaide has a Sydney of yes, a Perth of no, a Melbourne of yes, and an Auckland of no?###answer:SELECT adelaide FROM table_name_30 WHERE sydney = "yes" AND perth = "no" AND melbourne = "yes" AND auckland = "no"###context:CREATE TABLE table_name_30 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHA... |
###question:Which Melbourne has a Perth of yes, and an Auckland of yes?###answer:SELECT melbourne FROM table_name_35 WHERE perth = "yes" AND auckland = "yes"###context:CREATE TABLE table_name_35 (melbourne VARCHAR, perth VARCHAR, auckland VARCHAR) |
###question:what is the analog type for wxmi?###answer:SELECT analog FROM table_name_9 WHERE callsign = "wxmi"###context:CREATE TABLE table_name_9 (analog VARCHAR, callsign VARCHAR) |
###question:what is the callsign for independent affiliation?###answer:SELECT callsign FROM table_name_69 WHERE affiliation = "independent"###context:CREATE TABLE table_name_69 (callsign VARCHAR, affiliation VARCHAR) |
###question:what is the analog type for cw on digital 26?###answer:SELECT analog FROM table_name_45 WHERE affiliation = "cw" AND digital = "26"###context:CREATE TABLE table_name_45 (analog VARCHAR, affiliation VARCHAR, digital VARCHAR) |
###question:what is the callsign for analog 19?###answer:SELECT callsign FROM table_name_42 WHERE analog = "19"###context:CREATE TABLE table_name_42 (callsign VARCHAR, analog VARCHAR) |
###question:Who is the winner of the European Poker Tour Grand Final?###answer:SELECT winner FROM table_name_11 WHERE event = "european poker tour grand final"###context:CREATE TABLE table_name_11 (winner VARCHAR, event VARCHAR) |
###question:What is the name of the event that had a prize of zł 1,226,711?###answer:SELECT event FROM table_name_22 WHERE prize = "zł 1,226,711"###context:CREATE TABLE table_name_22 (event VARCHAR, prize VARCHAR) |
###question:Who was the winner of the prize zł 1,226,711?###answer:SELECT winner FROM table_name_39 WHERE prize = "zł 1,226,711"###context:CREATE TABLE table_name_39 (winner VARCHAR, prize VARCHAR) |
###question:What is the score of Goal For which has a Ties larger 0?###answer:SELECT MIN(goals_for) FROM table_name_98 WHERE ties > 0###context:CREATE TABLE table_name_98 (goals_for INTEGER, ties INTEGER) |
###question:Name the sum of goals conceded when lost is more than 7 and points less than 26###answer:SELECT SUM(goals_conceded) FROM table_name_60 WHERE lost > 7 AND points < 26###context:CREATE TABLE table_name_60 (goals_conceded INTEGER, lost VARCHAR, points VARCHAR) |
###question:Name the most place for goals scored more than 28 and played less than 18###answer:SELECT MAX(place) FROM table_name_23 WHERE goals_scored > 28 AND played < 18###context:CREATE TABLE table_name_23 (place INTEGER, goals_scored VARCHAR, played VARCHAR) |
###question:Name the D46 when it has D 44 of ← majority###answer:SELECT d_46 FROM table_name_50 WHERE d_44 = "← majority"###context:CREATE TABLE table_name_50 (d_46 VARCHAR, d_44 VARCHAR) |
###question:Name the D 45 which has D 44 of d 53###answer:SELECT d_45 FROM table_name_40 WHERE d_44 = "d 53"###context:CREATE TABLE table_name_40 (d_45 VARCHAR, d_44 VARCHAR) |
###question:Name the D 43 when it has D 45 of d 25###answer:SELECT d_43 FROM table_name_45 WHERE d_45 = "d 25"###context:CREATE TABLE table_name_45 (d_43 VARCHAR, d_45 VARCHAR) |
###question:Name the D 43 when it has D 41 of d 56###answer:SELECT d_43 FROM table_name_35 WHERE d_41 = "d 56"###context:CREATE TABLE table_name_35 (d_43 VARCHAR, d_41 VARCHAR) |
###question:Name the D 46 which has D 42 of r 14###answer:SELECT d_46 FROM table_name_36 WHERE d_42 = "r 14"###context:CREATE TABLE table_name_36 (d_46 VARCHAR, d_42 VARCHAR) |
###question:Which nominating festival did Russia enter?###answer:SELECT nominating_festival FROM table_name_12 WHERE country = "russia"###context:CREATE TABLE table_name_12 (nominating_festival VARCHAR, country VARCHAR) |
###question:Which nominating festival did Olga Baillif enter?###answer:SELECT nominating_festival FROM table_name_72 WHERE director_s_ = "olga baillif"###context:CREATE TABLE table_name_72 (nominating_festival VARCHAR, director_s_ VARCHAR) |
###question:Which nominating festival did Bosnia and Herzegovina enter?###answer:SELECT nominating_festival FROM table_name_62 WHERE country = "bosnia and herzegovina"###context:CREATE TABLE table_name_62 (nominating_festival VARCHAR, country VARCHAR) |
###question:Which director made Mi-temps?###answer:SELECT director_s_ FROM table_name_13 WHERE film = "mi-temps"###context:CREATE TABLE table_name_13 (director_s_ VARCHAR, film VARCHAR) |
###question:Which nominating festival did United Kingdom enter?###answer:SELECT nominating_festival FROM table_name_72 WHERE country = "united kingdom"###context:CREATE TABLE table_name_72 (nominating_festival VARCHAR, country VARCHAR) |
###question:How many years was Audi Sport Team Joest in 3rd position?###answer:SELECT COUNT(year) FROM table_name_8 WHERE team = "audi sport team joest" AND pos = "3rd"###context:CREATE TABLE table_name_8 (year VARCHAR, team VARCHAR, pos VARCHAR) |
###question:Who were the co-drivers with more than 377 laps in 1st position?###answer:SELECT co_drivers FROM table_name_62 WHERE laps > 377 AND pos = "1st"###context:CREATE TABLE table_name_62 (co_drivers VARCHAR, laps VARCHAR, pos VARCHAR) |
###question:How many goals were scored when they had over 28 points and played over 18 games?###answer:SELECT MAX(goals_scored) FROM table_name_33 WHERE points > 28 AND played > 18###context:CREATE TABLE table_name_33 (goals_scored INTEGER, points VARCHAR, played VARCHAR) |
###question:What place is associated with under 28 points, under 11 games lost, and under 18 games played?###answer:SELECT SUM(place) FROM table_name_71 WHERE points < 28 AND lost < 11 AND played < 18###context:CREATE TABLE table_name_71 (place INTEGER, played VARCHAR, points VARCHAR, lost VARCHAR) |
###question:How many points are there when they have under 27 goals scored, conceded 24 goals, and lost less than 6 times?###answer:SELECT SUM(points) FROM table_name_40 WHERE goals_scored < 27 AND goals_conceded = 24 AND lost < 6###context:CREATE TABLE table_name_40 (points INTEGER, lost VARCHAR, goals_scored VARCHAR,... |
###question:What year did Bryant Heating enter?###answer:SELECT SUM(year) FROM table_name_48 WHERE entrant = "bryant heating"###context:CREATE TABLE table_name_48 (year INTEGER, entrant VARCHAR) |
###question:Russia has films in which category?###answer:SELECT category FROM table_name_45 WHERE country = "russia"###context:CREATE TABLE table_name_45 (category VARCHAR, country VARCHAR) |
###question:The Prix UIP Vilo Do Conde festival nominated which film?###answer:SELECT film FROM table_name_7 WHERE nominating_festival = "prix uip vilo do conde"###context:CREATE TABLE table_name_7 (film VARCHAR, nominating_festival VARCHAR) |
###question:Which country made Le Portefeuille?###answer:SELECT country FROM table_name_98 WHERE film = "le portefeuille"###context:CREATE TABLE table_name_98 (country VARCHAR, film VARCHAR) |
###question:Which nominating festival nominated Iao Lethem's film?###answer:SELECT nominating_festival FROM table_name_80 WHERE director_s_ = "iao lethem"###context:CREATE TABLE table_name_80 (nominating_festival VARCHAR, director_s_ VARCHAR) |
###question:Julio Robledo represents which country?###answer:SELECT country FROM table_name_55 WHERE director_s_ = "julio robledo"###context:CREATE TABLE table_name_55 (country VARCHAR, director_s_ VARCHAR) |
###question:(A) Torzija was nominated in which category?###answer:SELECT category FROM table_name_60 WHERE film = "(a) torzija"###context:CREATE TABLE table_name_60 (category VARCHAR, film VARCHAR) |
###question:How many losses altogether were had by teams that won 12 times, had 40-4 points, and more than 57 goals?###answer:SELECT SUM(losses) FROM table_name_11 WHERE wins = 12 AND points = "40-4" AND goals_for > 57###context:CREATE TABLE table_name_11 (losses INTEGER, goals_for VARCHAR, wins VARCHAR, points VARCHAR... |
###question:What's the average number of played games from Rayo Vallecano with less than 12 wins?###answer:SELECT AVG(played) FROM table_name_81 WHERE club = "rayo vallecano" AND wins < 12###context:CREATE TABLE table_name_81 (played INTEGER, club VARCHAR, wins VARCHAR) |
###question:Who has canidae as family and canis rufus audubon & bachman, 1851 as species/authority?###answer:SELECT name FROM table_name_24 WHERE family = "canidae" AND species_authority = "canis rufus audubon & bachman, 1851"###context:CREATE TABLE table_name_24 (name VARCHAR, family VARCHAR, species_authority VARCHAR... |
###question:Name the lowest league for play-offs more than 0 and total of 25###answer:SELECT MIN(league) FROM table_name_88 WHERE play_offs > 0 AND total = 25###context:CREATE TABLE table_name_88 (league INTEGER, play_offs VARCHAR, total VARCHAR) |
###question:What are the earliest year with games played fewer than 2?###answer:SELECT MIN(first_game) FROM table_name_96 WHERE played < 2###context:CREATE TABLE table_name_96 (first_game INTEGER, played INTEGER) |
###question:What is the number of games played in the season before 2005?###answer:SELECT SUM(played) FROM table_name_18 WHERE first_game < 2005###context:CREATE TABLE table_name_18 (played INTEGER, first_game INTEGER) |
###question:Name the least selection for ron barnett###answer:SELECT MIN(selection) FROM table_name_39 WHERE player = "ron barnett"###context:CREATE TABLE table_name_39 (selection INTEGER, player VARCHAR) |
###question:Name the player that went to notre dame###answer:SELECT player FROM table_name_88 WHERE college = "notre dame"###context:CREATE TABLE table_name_88 (player VARCHAR, college VARCHAR) |
###question:What is the to par that has bill collins as the player?###answer:SELECT to_par FROM table_name_72 WHERE player = "bill collins"###context:CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR) |
###question:How much money has 76-70-68-73=287 as a score?###answer:SELECT SUM(money___) AS $__ FROM table_name_86 WHERE score = 76 - 70 - 68 - 73 = 287###context:CREATE TABLE table_name_86 (money___ INTEGER, score VARCHAR) |
###question:What is the commissioned for Vietnam?###answer:SELECT commissioned FROM table_name_29 WHERE operator = "vietnam"###context:CREATE TABLE table_name_29 (commissioned VARCHAR, operator VARCHAR) |
###question:What is the commissioned with a 636.3 project, and ordered status?###answer:SELECT commissioned FROM table_name_24 WHERE project = "636.3" AND status = "ordered"###context:CREATE TABLE table_name_24 (commissioned VARCHAR, project VARCHAR, status VARCHAR) |
###question:When was the date that had a Loss of Shirley (0-1)?###answer:SELECT date FROM table_name_31 WHERE loss = "shirley (0-1)"###context:CREATE TABLE table_name_31 (date VARCHAR, loss VARCHAR) |
###question:Where was the game on Thursday, April 29, and they played the Chicago Cubs?###answer:SELECT site FROM table_name_84 WHERE opponent = "chicago cubs" AND date = "thursday, april 29"###context:CREATE TABLE table_name_84 (site VARCHAR, opponent VARCHAR, date VARCHAR) |
###question:Who were they playing when Bird (1-4) had a loss?###answer:SELECT opponent FROM table_name_42 WHERE loss = "bird (1-4)"###context:CREATE TABLE table_name_42 (opponent VARCHAR, loss VARCHAR) |
###question:What was the score of the game when there was a loss of Kern (0-2)?###answer:SELECT score FROM table_name_44 WHERE loss = "kern (0-2)"###context:CREATE TABLE table_name_44 (score VARCHAR, loss VARCHAR) |
###question:What camera has the highest Mpix with an aspect ratio of 2:1, a height less than 1536, and a width smaller than 2048?###answer:SELECT MAX(mpix) FROM table_name_51 WHERE aspect_ratio = "2:1" AND height < 1536 AND width < 2048###context:CREATE TABLE table_name_51 (mpix INTEGER, width VARCHAR, aspect_ratio VAR... |
###question:What is the max fps of a camera with mpix larger than 8.4 and frame size of 4k 16:9?###answer:SELECT COUNT(max_fps) FROM table_name_5 WHERE mpix > 8.4 AND frame_size = "4k 16:9"###context:CREATE TABLE table_name_5 (max_fps VARCHAR, mpix VARCHAR, frame_size VARCHAR) |
###question:What frame size corresponds the selection with a max fps of 120, a width of 2048, and height of 1024?###answer:SELECT frame_size FROM table_name_74 WHERE max_fps = 120 AND width = 2048 AND height = 1024###context:CREATE TABLE table_name_74 (frame_size VARCHAR, height VARCHAR, max_fps VARCHAR, width VARCHAR) |
###question:What is the overall record of the Ravens?###answer:SELECT overall_record FROM table_name_16 WHERE team = "ravens"###context:CREATE TABLE table_name_16 (overall_record VARCHAR, team VARCHAR) |
###question:What is the division record of Sussex Central?###answer:SELECT division_record FROM table_name_41 WHERE school = "sussex central"###context:CREATE TABLE table_name_41 (division_record VARCHAR, school VARCHAR) |
###question:Which Engine has Points of 3?###answer:SELECT engine FROM table_name_30 WHERE points = 3###context:CREATE TABLE table_name_30 (engine VARCHAR, points VARCHAR) |
###question:What are the highest points with a Chassis of gordini t16, and a Year smaller than 1954?###answer:SELECT MAX(points) FROM table_name_41 WHERE chassis = "gordini t16" AND year < 1954###context:CREATE TABLE table_name_41 (points INTEGER, chassis VARCHAR, year VARCHAR) |
###question:What is the lowest grid that Paul Tracy had when he had over 4 points?###answer:SELECT MIN(grid) FROM table_name_67 WHERE name = "paul tracy" AND points > 4###context:CREATE TABLE table_name_67 (grid INTEGER, name VARCHAR, points VARCHAR) |
###question:What is the Date, when the Winner is Aaron Gustavson?###answer:SELECT date FROM table_name_79 WHERE winner = "aaron gustavson"###context:CREATE TABLE table_name_79 (date VARCHAR, winner VARCHAR) |
###question:What is the Date, when the City is Warsaw?###answer:SELECT date FROM table_name_39 WHERE city = "warsaw"###context:CREATE TABLE table_name_39 (date VARCHAR, city VARCHAR) |
###question:What is the Prize, when the Winner is Aaron Gustavson?###answer:SELECT prize FROM table_name_90 WHERE winner = "aaron gustavson"###context:CREATE TABLE table_name_90 (prize VARCHAR, winner VARCHAR) |
###question:Who is the Winner, when the City is Berlin?###answer:SELECT winner FROM table_name_19 WHERE city = "berlin"###context:CREATE TABLE table_name_19 (winner VARCHAR, city VARCHAR) |
###question:What is the name of the party called name?###answer:SELECT party FROM table_name_45 WHERE "name" = "name"###context:CREATE TABLE table_name_45 (party VARCHAR) |
###question:What is the Left Office of cabinet secretary for culture and external affairs named?###answer:SELECT name FROM table_name_16 WHERE left_office = "cabinet secretary for culture and external affairs"###context:CREATE TABLE table_name_16 (name VARCHAR, left_office VARCHAR) |
###question:What left office does the First Minister of henry mcleish belong to?###answer:SELECT left_office FROM table_name_49 WHERE first_minister = "henry mcleish"###context:CREATE TABLE table_name_49 (left_office VARCHAR, first_minister VARCHAR) |
###question:What was the sum total of the region after 1976 when Mareeba had population was more than 18,212?###answer:SELECT SUM(population__region_total_) FROM table_name_1 WHERE year > 1976 AND population__mareeba_ > 18 OFFSET 212###context:CREATE TABLE table_name_1 (population__region_total_ INTEGER, year VARCHAR, ... |
###question:Name the most games for standing of 5th, lebel and goals against larger than 220 with lost more than 52###answer:SELECT MAX(games) FROM table_name_2 WHERE standing = "5th, lebel" AND goals_against > 220 AND lost > 52###context:CREATE TABLE table_name_2 (games INTEGER, lost VARCHAR, standing VARCHAR, goals_a... |
###question:Name the least tied with games more than 70 and goals for less than 310 with points of 98###answer:SELECT MIN(tied) FROM table_name_94 WHERE games > 70 AND goals_for < 310 AND points = 98###context:CREATE TABLE table_name_94 (tied INTEGER, points VARCHAR, games VARCHAR, goals_for VARCHAR) |
###question:Which player had a place of T4?###answer:SELECT player FROM table_name_62 WHERE place = "t4"###context:CREATE TABLE table_name_62 (player VARCHAR, place VARCHAR) |
###question:What is the latest year with less than 0 points?###answer:SELECT MAX(year) FROM table_name_54 WHERE points < 0###context:CREATE TABLE table_name_54 (year INTEGER, points INTEGER) |
###question:What entrant has a year earlier than 1960 and a veritas straight-6 engine?###answer:SELECT entrant FROM table_name_77 WHERE year < 1960 AND engine = "veritas straight-6"###context:CREATE TABLE table_name_77 (entrant VARCHAR, year VARCHAR, engine VARCHAR) |
###question:What is the average Year with a Veritas rs chassis and more than 0 points?###answer:SELECT AVG(year) FROM table_name_73 WHERE chassis = "veritas rs" AND points > 0###context:CREATE TABLE table_name_73 (year INTEGER, chassis VARCHAR, points VARCHAR) |
###question:What is the number of points for the Entrant of wolfgang seidel and a Cooper t45 chassis later than 1960?###answer:SELECT COUNT(points) FROM table_name_74 WHERE entrant = "wolfgang seidel" AND chassis = "cooper t45" AND year > 1960###context:CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR, entrant ... |
###question:What is the latest year for a Emeryson 1006 chassis with more than 0 points?###answer:SELECT MAX(year) FROM table_name_37 WHERE chassis = "emeryson 1006" AND points > 0###context:CREATE TABLE table_name_37 (year INTEGER, chassis VARCHAR, points VARCHAR) |
###question:What was the score of the second leg with an agg of 4-6?###answer:SELECT 2 AS nd_leg FROM table_name_50 WHERE agg = "4-6"###context:CREATE TABLE table_name_50 (agg VARCHAR) |
###question:What is the second team that has first team of Africa sports?###answer:SELECT team_2 FROM table_name_25 WHERE team_1 = "africa sports"###context:CREATE TABLE table_name_25 (team_2 VARCHAR, team_1 VARCHAR) |
###question:What is team one that has tp englebert for team 2?###answer:SELECT team_1 FROM table_name_32 WHERE team_2 = "tp englebert"###context:CREATE TABLE table_name_32 (team_1 VARCHAR, team_2 VARCHAR) |
###question:Which team has far rabat as the team 1?###answer:SELECT team_2 FROM table_name_64 WHERE team_1 = "far rabat"###context:CREATE TABLE table_name_64 (team_2 VARCHAR, team_1 VARCHAR) |
###question:with a Time/Retired of +47.376 what is the lap sum?###answer:SELECT SUM(laps) FROM table_name_67 WHERE time_retired = "+47.376"###context:CREATE TABLE table_name_67 (laps INTEGER, time_retired VARCHAR) |
###question:with a Rider of marco melandri, and a Grid smaller than 10, what is the highest lap count?###answer:SELECT MAX(laps) FROM table_name_85 WHERE rider = "marco melandri" AND grid < 10###context:CREATE TABLE table_name_85 (laps INTEGER, rider VARCHAR, grid VARCHAR) |
###question:with more than 32 laps and sylvain guintoli as rider, what's the lowest grid ?###answer:SELECT MIN(grid) FROM table_name_15 WHERE rider = "sylvain guintoli" AND laps > 32###context:CREATE TABLE table_name_15 (grid INTEGER, rider VARCHAR, laps VARCHAR) |
###question:Who came in 2nd place when Ding Junhui won in 2010?###answer:SELECT runner_up FROM table_name_53 WHERE year > 2010 AND winner = "ding junhui"###context:CREATE TABLE table_name_53 (runner_up VARCHAR, year VARCHAR, winner VARCHAR) |
###question:What ethnic group is 65,104 in 1931?###answer:SELECT malay_ethnic_group FROM table_name_43 WHERE 1931 = "65,104"###context:CREATE TABLE table_name_43 (malay_ethnic_group VARCHAR) |
###question:For Vegas Verdicts week, what was the result?###answer:SELECT result FROM table_name_21 WHERE week = "vegas verdicts"###context:CREATE TABLE table_name_21 (result VARCHAR, week VARCHAR) |
###question:Which week had a theme of Heroes?###answer:SELECT week FROM table_name_47 WHERE theme = "heroes"###context:CREATE TABLE table_name_47 (week VARCHAR, theme VARCHAR) |
###question:What was the theme for Vegas Verdicts week with a result of Advanced?###answer:SELECT theme FROM table_name_30 WHERE result = "advanced" AND week = "vegas verdicts"###context:CREATE TABLE table_name_30 (theme VARCHAR, result VARCHAR, week VARCHAR) |
###question:What is the Placement when the Votes are fewer than 208, and when the Candidate is Jordan Turner?###answer:SELECT placement FROM table_name_58 WHERE votes < 208 AND candidate = "jordan turner"###context:CREATE TABLE table_name_58 (placement VARCHAR, votes VARCHAR, candidate VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.