question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
On what Date was the Score in Final 6–3, 6–3? | CREATE TABLE table_name_70 (date VARCHAR, score_in_final VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_70 WHERE score_in_final = \"6–3, 6–3\""
} |
What was the Opponents in Final during the match with a Score in Final of 6–4, 3–6, 5–7? | CREATE TABLE table_name_5 (opponents_in_final VARCHAR, score_in_final VARCHAR) | {
"SQL_Query": "SELECT opponents_in_final FROM table_name_5 WHERE score_in_final = \"6–4, 3–6, 5–7\""
} |
How many seasons took place in aspen, usa? | CREATE TABLE table_name_34 (season VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT COUNT(season) FROM table_name_34 WHERE location = \"aspen, usa\""
} |
Which place was earned on 12 feb 2012? | CREATE TABLE table_name_93 (place VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_93 WHERE date = \"12 feb 2012\""
} |
Where was the race on 28 dec 2010 held? | CREATE TABLE table_name_69 (location VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_69 WHERE date = \"28 dec 2010\""
} |
What is the overall length with a designation of s-8ko? | CREATE TABLE table_name_38 (length_overall VARCHAR, designation VARCHAR) | {
"SQL_Query": "SELECT length_overall FROM table_name_38 WHERE designation = \"s-8ko\""
} |
What designation has a launch weight of 11.3kg? | CREATE TABLE table_name_37 (designation VARCHAR, launch_weight VARCHAR) | {
"SQL_Query": "SELECT designation FROM table_name_37 WHERE launch_weight = \"11.3kg\""
} |
What type has an overall length of 1.605 m? | CREATE TABLE table_name_92 (type VARCHAR, length_overall VARCHAR) | {
"SQL_Query": "SELECT type FROM table_name_92 WHERE length_overall = \"1.605 m\""
} |
How many touchdowns were made where field goals were less than 0? | CREATE TABLE table_name_81 (touchdowns INTEGER, field_goals INTEGER) | {
"SQL_Query": "SELECT SUM(touchdowns) FROM table_name_81 WHERE field_goals < 0"
} |
While Duncan Thompson played, how many points did he have where there were 0 field goals, 0 extra points, and more than 9 touchdowns? | CREATE TABLE table_name_86 (points INTEGER, player VARCHAR, extra_points VARCHAR, field_goals VARCHAR, touchdowns VARCHAR) | {
"SQL_Query": "SELECT AVG(points) FROM table_name_86 WHERE field_goals = 0 AND touchdowns > 9 AND extra_points = 0 AND player = \"duncan thompson\""
} |
When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points? | CREATE TABLE table_name_87 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR) | {
"SQL_Query": "SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = \"herb graver\" AND touchdowns < 15"
} |
How many field goals were there, where the points where less than 45 and there were less than 15 touchdowns? | CREATE TABLE table_name_79 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT AVG(field_goals) FROM table_name_79 WHERE touchdowns < 15 AND points < 45"
} |
What is the position of the race with a point of test driver? | CREATE TABLE table_name_70 (position VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_70 WHERE points = \"test driver\""
} |
How many wins did team Kolles & Heinz union, with f/laps of 0, have in the Formula Three Euroseries? | CREATE TABLE table_name_16 (wins VARCHAR, team VARCHAR, f_laps VARCHAR, series VARCHAR) | {
"SQL_Query": "SELECT wins FROM table_name_16 WHERE f_laps = \"0\" AND series = \"formula three euroseries\" AND team = \"kolles & heinz union\""
} |
Which series has 4 f/laps? | CREATE TABLE table_name_58 (series VARCHAR, f_laps VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_58 WHERE f_laps = \"4\""
} |
How many wins did Team Autotecnica, with 0 podiums, have? | CREATE TABLE table_name_82 (wins VARCHAR, podiums VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT wins FROM table_name_82 WHERE podiums = \"0\" AND team = \"team autotecnica\""
} |
How many races had 10.5 points? | CREATE TABLE table_name_99 (races VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT races FROM table_name_99 WHERE points = \"10.5\""
} |
How many wins did the team with 5 podiums have? | CREATE TABLE table_name_15 (wins VARCHAR, podiums VARCHAR) | {
"SQL_Query": "SELECT wins FROM table_name_15 WHERE podiums = \"5\""
} |
What is recorded as the lowest Round for the Player Jim Thompson? | CREATE TABLE table_name_26 (round INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MIN(round) FROM table_name_26 WHERE player = \"jim thompson\""
} |
What is the highest Round that has a Position of Tackle and the Player Fred Neilsen? | CREATE TABLE table_name_91 (round INTEGER, position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT MAX(round) FROM table_name_91 WHERE position = \"tackle\" AND player = \"fred neilsen\""
} |
What Position has a Round of 27? | CREATE TABLE table_name_95 (position VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_95 WHERE round = 27"
} |
Name the sum of drawn for points less than 6 and games more than 8 | CREATE TABLE table_name_85 (drawn INTEGER, points VARCHAR, games VARCHAR) | {
"SQL_Query": "SELECT SUM(drawn) FROM table_name_85 WHERE points < 6 AND games > 8"
} |
How much Displacement (tons) has an Armament of 2 x -inch (mm), 16 x -inch (mm)? | CREATE TABLE table_name_52 (displacement__tons_ VARCHAR, armament VARCHAR) | {
"SQL_Query": "SELECT COUNT(displacement__tons_) FROM table_name_52 WHERE armament = \"2 x -inch (mm), 16 x -inch (mm)\""
} |
Which Opponent has a Round larger than 1, and an Event of king of the cage 31? | CREATE TABLE table_name_3 (opponent VARCHAR, round VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_3 WHERE round > 1 AND event = \"king of the cage 31\""
} |
Which Time has a Round larger than 1, and an Event of total fighting alliance 2? | CREATE TABLE table_name_21 (time VARCHAR, round VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_21 WHERE round > 1 AND event = \"total fighting alliance 2\""
} |
Which res has a Record of 3-0? | CREATE TABLE table_name_35 (res VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT res FROM table_name_35 WHERE record = \"3-0\""
} |
Which Location has an Event of king of the cage: flash point? | CREATE TABLE table_name_16 (location VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_16 WHERE event = \"king of the cage: flash point\""
} |
Who were the opposing team when a Loss was listed with Lowe (1-4)? | CREATE TABLE table_name_63 (opponent VARCHAR, loss VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_63 WHERE loss = \"lowe (1-4)\""
} |
What body styles have 6/75 as the model? | CREATE TABLE table_name_4 (body_styles VARCHAR, model VARCHAR) | {
"SQL_Query": "SELECT body_styles FROM table_name_4 WHERE model = \"6/75\""
} |
What body styles have devaux-hall inline 6 as the engine? | CREATE TABLE table_name_9 (body_styles VARCHAR, engine VARCHAR) | {
"SQL_Query": "SELECT body_styles FROM table_name_9 WHERE engine = \"devaux-hall inline 6\""
} |
What model has de vaux continental as the make? | CREATE TABLE table_name_50 (model VARCHAR, make VARCHAR) | {
"SQL_Query": "SELECT model FROM table_name_50 WHERE make = \"de vaux continental\""
} |
What wheelbase has sport coupe (4p.) as the body style? | CREATE TABLE table_name_20 (wheelbase VARCHAR, body_styles VARCHAR) | {
"SQL_Query": "SELECT wheelbase FROM table_name_20 WHERE body_styles = \"sport coupe (4p.)\""
} |
What was the score when the home team was Toronto? | CREATE TABLE table_name_89 (score VARCHAR, home VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_89 WHERE home = \"toronto\""
} |
What was the record when Minnesota was the home team? | CREATE TABLE table_name_64 (record VARCHAR, home VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_64 WHERE home = \"minnesota\""
} |
Which city held the game in Old Trafford before 1907 when the Opposition was sussex? | CREATE TABLE table_name_49 (city VARCHAR, opposition VARCHAR, year VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT city FROM table_name_49 WHERE year < 1907 AND venue = \"old trafford\" AND opposition = \"sussex\""
} |
What was the score when the opposition was sussex after 1890? | CREATE TABLE table_name_49 (score VARCHAR, opposition VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_49 WHERE opposition = \"sussex\" AND year > 1890"
} |
What city had a score of 20 in aigburth after 1907? | CREATE TABLE table_name_76 (city VARCHAR, venue VARCHAR, year VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT city FROM table_name_76 WHERE year > 1907 AND score > 20 AND venue = \"aigburth\""
} |
What was the score when the opposition was sussex in liverpool? | CREATE TABLE table_name_96 (score INTEGER, opposition VARCHAR, city VARCHAR) | {
"SQL_Query": "SELECT SUM(score) FROM table_name_96 WHERE opposition = \"sussex\" AND city = \"liverpool\""
} |
What is Director Erik Matti's Producer? | CREATE TABLE table_name_57 (producer VARCHAR, director VARCHAR) | {
"SQL_Query": "SELECT producer FROM table_name_57 WHERE director = \"erik matti\""
} |
What is Director Bona Fajardo's Producer? | CREATE TABLE table_name_32 (producer VARCHAR, director VARCHAR) | {
"SQL_Query": "SELECT producer FROM table_name_32 WHERE director = \"bona fajardo\""
} |
What is the Producer on December 25, 2006? | CREATE TABLE table_name_77 (producer VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT producer FROM table_name_77 WHERE year = \"december 25, 2006\""
} |
What Title has a Role of Mylene? | CREATE TABLE table_name_79 (title VARCHAR, role VARCHAR) | {
"SQL_Query": "SELECT title FROM table_name_79 WHERE role = \"mylene\""
} |
In what Year is there a Role of (cameo)? | CREATE TABLE table_name_55 (year VARCHAR, role VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_55 WHERE role = \"(cameo)\""
} |
On what date was the result 106-105? | CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_57 WHERE result = \"106-105\""
} |
What was the result for Portland at home on June 12? | CREATE TABLE table_name_26 (result VARCHAR, home_team VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_26 WHERE home_team = \"portland\" AND date = \"june 12\""
} |
Who was the home team with a result of 105-99? | CREATE TABLE table_name_32 (home_team VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_32 WHERE result = \"105-99\""
} |
On what date was Game 1? | CREATE TABLE table_name_54 (date VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_54 WHERE game = \"game 1\""
} |
On what date was Game 3? | CREATE TABLE table_name_2 (date VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_2 WHERE game = \"game 3\""
} |
On what date was Portland on the road for Game 2? | CREATE TABLE table_name_95 (date VARCHAR, road_team VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_95 WHERE road_team = \"portland\" AND game = \"game 2\""
} |
What was the highest number of games played when they had over 14 against and 3 losses? | CREATE TABLE table_name_27 (played INTEGER, against VARCHAR, lost VARCHAR) | {
"SQL_Query": "SELECT MAX(played) FROM table_name_27 WHERE against > 14 AND lost = 3"
} |
What was the position for team corinthians with over 14 against? | CREATE TABLE table_name_90 (position INTEGER, team VARCHAR, against VARCHAR) | {
"SQL_Query": "SELECT AVG(position) FROM table_name_90 WHERE team = \"corinthians\" AND against > 14"
} |
How many games played for team bangu with under 15 against, and over 9 points? | CREATE TABLE table_name_19 (played INTEGER, points VARCHAR, against VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT MAX(played) FROM table_name_19 WHERE against < 15 AND team = \"bangu\" AND points > 9"
} |
When is Northern Ireland the opponent? | CREATE TABLE table_name_55 (date VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_55 WHERE opponent = \"northern ireland\""
} |
Name the length for class of gts-2 and date of october 8 | CREATE TABLE table_name_27 (length VARCHAR, class VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT length FROM table_name_27 WHERE class = \"gts-2\" AND date = \"october 8\""
} |
Name the circuit with class of gts | CREATE TABLE table_name_78 (circuit VARCHAR, class VARCHAR) | {
"SQL_Query": "SELECT circuit FROM table_name_78 WHERE class = \"gts\""
} |
Name the length for all class and date of march 18 | CREATE TABLE table_name_63 (length VARCHAR, class VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT length FROM table_name_63 WHERE class = \"all\" AND date = \"march 18\""
} |
How many Games has a Team of chicago? | CREATE TABLE table_name_55 (game VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT COUNT(game) FROM table_name_55 WHERE team = \"chicago\""
} |
What is the High points of charles oakley , kevin willis (11)? | CREATE TABLE table_name_55 (high_points VARCHAR, high_rebounds VARCHAR) | {
"SQL_Query": "SELECT high_points FROM table_name_55 WHERE high_rebounds = \"charles oakley , kevin willis (11)\""
} |
Which Game has a Score of w 90–82 (ot)? | CREATE TABLE table_name_40 (game VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT game FROM table_name_40 WHERE score = \"w 90–82 (ot)\""
} |
What is the High rebounds of washington Team? | CREATE TABLE table_name_43 (high_rebounds VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_name_43 WHERE team = \"washington\""
} |
What is the sum of Game on february 28? | CREATE TABLE table_name_52 (game INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT SUM(game) FROM table_name_52 WHERE date = \"february 28\""
} |
Which Country has a number of Wins larger than 2? | CREATE TABLE table_name_71 (country VARCHAR, wins INTEGER) | {
"SQL_Query": "SELECT country FROM table_name_71 WHERE wins > 2"
} |
What ranking has the nationality of spain and the goals of 26? | CREATE TABLE table_name_95 (ranking VARCHAR, nationality VARCHAR, goals VARCHAR) | {
"SQL_Query": "SELECT ranking FROM table_name_95 WHERE nationality = \"spain\" AND goals = 26"
} |
What name is the goals of 25? | CREATE TABLE table_name_18 (name VARCHAR, goals VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_18 WHERE goals = 25"
} |
what's the grid with time +37.949? | CREATE TABLE table_name_59 (grid VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT COUNT(grid) FROM table_name_59 WHERE time = \"+37.949\""
} |
what driver has 12 in grid? | CREATE TABLE table_name_80 (driver VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_name_80 WHERE grid = 12"
} |
what is the highest grid for new zealand? | CREATE TABLE table_name_59 (grid INTEGER, team VARCHAR) | {
"SQL_Query": "SELECT MAX(grid) FROM table_name_59 WHERE team = \"new zealand\""
} |
what team has +1'25.337 for the time? | CREATE TABLE table_name_92 (team VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_92 WHERE time = \"+1'25.337\""
} |
What was the result at A Arena, the SL league, and a match number over 16? | CREATE TABLE table_name_15 (result VARCHAR, match VARCHAR, arena VARCHAR, league VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_15 WHERE arena = \"a\" AND league = \"sl\" AND match > 16"
} |
Opponent of @ atlanta flames had what game? | CREATE TABLE table_name_44 (game VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT game FROM table_name_44 WHERE opponent = \"@ atlanta flames\""
} |
Record of 3-3-1 had what lowest game? | CREATE TABLE table_name_81 (game INTEGER, record VARCHAR) | {
"SQL_Query": "SELECT MIN(game) FROM table_name_81 WHERE record = \"3-3-1\""
} |
What was the date when the game had a save by Aguilera (5)? | CREATE TABLE table_name_65 (date VARCHAR, save VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_65 WHERE save = \"aguilera (5)\""
} |
What was the Save in the game that has a Loss of sanderson (6-5)? | CREATE TABLE table_name_96 (save VARCHAR, loss VARCHAR) | {
"SQL_Query": "SELECT save FROM table_name_96 WHERE loss = \"sanderson (6-5)\""
} |
Which Wins have a Rank of 3? | CREATE TABLE table_name_77 (wins INTEGER, rank VARCHAR) | {
"SQL_Query": "SELECT AVG(wins) FROM table_name_77 WHERE rank = 3"
} |
Which Events have a Player of tom kite, and Earnings ($) smaller than 760,405? | CREATE TABLE table_name_60 (events INTEGER, player VARCHAR, earnings___$__ VARCHAR) | {
"SQL_Query": "SELECT AVG(events) FROM table_name_60 WHERE player = \"tom kite\" AND earnings___$__ < 760 OFFSET 405"
} |
Which events have a Rank of 1? | CREATE TABLE table_name_7 (events VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT events FROM table_name_7 WHERE rank = 1"
} |
What is the fewest Points that has Willie Heston as Player and less than 3 as Touchdowns? | CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, touchdowns VARCHAR) | {
"SQL_Query": "SELECT MIN(points) FROM table_name_12 WHERE player = \"willie heston\" AND touchdowns < 3"
} |
What is the Departure time at Rajendranagar Terminal? | CREATE TABLE table_name_66 (departure VARCHAR, station_name VARCHAR) | {
"SQL_Query": "SELECT departure FROM table_name_66 WHERE station_name = \"rajendranagar terminal\""
} |
What is the Station Code of the Destination Station Departure? | CREATE TABLE table_name_37 (station_code VARCHAR, departure VARCHAR) | {
"SQL_Query": "SELECT station_code FROM table_name_37 WHERE departure = \"destination station\""
} |
At what Platform is the Departure 18:00? | CREATE TABLE table_name_26 (platform VARCHAR, departure VARCHAR) | {
"SQL_Query": "SELECT platform FROM table_name_26 WHERE departure = \"18:00\""
} |
What is the Station Name of the Arrival Starting Station? | CREATE TABLE table_name_63 (station_name VARCHAR, arrival VARCHAR) | {
"SQL_Query": "SELECT station_name FROM table_name_63 WHERE arrival = \"starting station\""
} |
What is the Arrival time of the Patna Junction Station? | CREATE TABLE table_name_62 (arrival VARCHAR, station_name VARCHAR) | {
"SQL_Query": "SELECT arrival FROM table_name_62 WHERE station_name = \"patna junction\""
} |
What Station Name has an Arrival time of 01:10? | CREATE TABLE table_name_97 (station_name VARCHAR, arrival VARCHAR) | {
"SQL_Query": "SELECT station_name FROM table_name_97 WHERE arrival = \"01:10\""
} |
What was the score for the game against the New Jersey Nets? | CREATE TABLE table_name_14 (score VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_14 WHERE opponent = \"new jersey nets\""
} |
On which date was the game played against the Milwaukee Bucks? | CREATE TABLE table_name_36 (date VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_36 WHERE opponent = \"milwaukee bucks\""
} |
What was the result of the game against Luxembourg? | CREATE TABLE table_name_13 (results¹ VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT results¹ FROM table_name_13 WHERE opponent = \"luxembourg\""
} |
When did the city of Novi Sad participate? | CREATE TABLE table_name_14 (date VARCHAR, city VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_14 WHERE city = \"novi sad\""
} |
What was the result of the game against Luxembourg? | CREATE TABLE table_name_97 (results¹ VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT results¹ FROM table_name_97 WHERE opponent = \"luxembourg\""
} |
What was the result for the game at Memorial Stadium in week 15? | CREATE TABLE table_name_24 (result VARCHAR, game_site VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_24 WHERE game_site = \"memorial stadium\" AND week = 15"
} |
Which Series has a Score of 0–6? | CREATE TABLE table_name_99 (series VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_99 WHERE score = \"0–6\""
} |
Which Series has a Game larger than 1, and a Date of april 18? | CREATE TABLE table_name_39 (series VARCHAR, game VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_39 WHERE game > 1 AND date = \"april 18\""
} |
Which Series has an Opponent of new york rangers, and a Score of 3–2 ot? | CREATE TABLE table_name_59 (series VARCHAR, opponent VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_59 WHERE opponent = \"new york rangers\" AND score = \"3–2 ot\""
} |
Which Series has an Opponent of @ new york rangers, and a Date of april 22? | CREATE TABLE table_name_70 (series VARCHAR, opponent VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_70 WHERE opponent = \"@ new york rangers\" AND date = \"april 22\""
} |
How many Played have a Lost smaller than 3, and a Difference of 6, and Points larger than 6? | CREATE TABLE table_name_99 (played VARCHAR, points VARCHAR, lost VARCHAR, difference VARCHAR) | {
"SQL_Query": "SELECT COUNT(played) FROM table_name_99 WHERE lost < 3 AND difference = \"6\" AND points > 6"
} |
How many Points have a Drawn smaller than 0? | CREATE TABLE table_name_36 (points VARCHAR, drawn INTEGER) | {
"SQL_Query": "SELECT COUNT(points) FROM table_name_36 WHERE drawn < 0"
} |
How many Drawn have an Against smaller than 5, and a Played smaller than 3? | CREATE TABLE table_name_38 (drawn VARCHAR, against VARCHAR, played VARCHAR) | {
"SQL_Query": "SELECT COUNT(drawn) FROM table_name_38 WHERE against < 5 AND played < 3"
} |
Which Position has an Against of 5, and a Drawn larger than 0? | CREATE TABLE table_name_35 (position INTEGER, against VARCHAR, drawn VARCHAR) | {
"SQL_Query": "SELECT SUM(position) FROM table_name_35 WHERE against = 5 AND drawn > 0"
} |
Which Played is the highest one that has a Lost smaller than 1, and a Difference of 6, and an Against larger than 2? | CREATE TABLE table_name_66 (played INTEGER, against VARCHAR, lost VARCHAR, difference VARCHAR) | {
"SQL_Query": "SELECT MAX(played) FROM table_name_66 WHERE lost < 1 AND difference = \"6\" AND against > 2"
} |
Which Points is the lowest one that has a Position larger than 5? | CREATE TABLE table_name_36 (points INTEGER, position INTEGER) | {
"SQL_Query": "SELECT MIN(points) FROM table_name_36 WHERE position > 5"
} |
what team lost the most points | CREATE TABLE table_name_56 (lost VARCHAR) | {
"SQL_Query": "SELECT lost FROM table_name_56 WHERE \"points\" = \"points\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.