question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the population when the area km2 is 173.4? | CREATE TABLE table_name_93 (population VARCHAR, area_km_2 VARCHAR) | {
"SQL_Query": "SELECT population FROM table_name_93 WHERE area_km_2 = 173.4"
} |
what is the census ranking when the area km 2 is 173.4? | CREATE TABLE table_name_32 (census_ranking VARCHAR, area_km_2 VARCHAR) | {
"SQL_Query": "SELECT census_ranking FROM table_name_32 WHERE area_km_2 = 173.4"
} |
WHAT IS THE FRANCE WITH PEOPLE UNDER 18 OF SUB-SAHARAN AFRICA? | CREATE TABLE table_name_37 (france VARCHAR, _percentage_people_under_18__2005_ VARCHAR) | {
"SQL_Query": "SELECT france FROM table_name_37 WHERE _percentage_people_under_18__2005_ = \"sub-saharan africa\""
} |
WHAT IS THE PARIS WITH A FRANCE OF 1.4%? | CREATE TABLE table_name_71 (paris VARCHAR, france VARCHAR) | {
"SQL_Query": "SELECT paris FROM table_name_71 WHERE france = \"1.4%\""
} |
WHAT IS THE VAL-DE-MARNE WITH A Seine-Saint-Denis of 2.7%? | CREATE TABLE table_name_18 (val_de_marne VARCHAR, seine_saint_denis VARCHAR) | {
"SQL_Query": "SELECT val_de_marne FROM table_name_18 WHERE seine_saint_denis = \"2.7%\""
} |
WHAT IS A Seine-Saint-Denis WITH A PARIS OF 12.1%? | CREATE TABLE table_name_90 (seine_saint_denis VARCHAR, paris VARCHAR) | {
"SQL_Query": "SELECT seine_saint_denis FROM table_name_90 WHERE paris = \"12.1%\""
} |
WHAT IS Val-de-Marne WITH Seine-Saint-Denis of 4.0%? | CREATE TABLE table_name_52 (val_de_marne VARCHAR, seine_saint_denis VARCHAR) | {
"SQL_Query": "SELECT val_de_marne FROM table_name_52 WHERE seine_saint_denis = \"4.0%\""
} |
What was the score for the match at the tournament in canada f7, toronto? | CREATE TABLE table_name_87 (score VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_87 WHERE tournament = \"canada f7, toronto\""
} |
Who were the opponents that played on a hard surface on July 13, 2008? | CREATE TABLE table_name_85 (opponents VARCHAR, surface VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT opponents FROM table_name_85 WHERE surface = \"hard\" AND date = \"july 13, 2008\""
} |
What type of surface was played on when the score was 2–6, 6–1, [10–5]? | CREATE TABLE table_name_7 (surface VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_name_7 WHERE score = \"2–6, 6–1, [10–5]\""
} |
What type of surface was played on July 27, 2013? | CREATE TABLE table_name_31 (surface VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_name_31 WHERE date = \"july 27, 2013\""
} |
What party was the member peter howson part of? | CREATE TABLE table_name_85 (party VARCHAR, member VARCHAR) | {
"SQL_Query": "SELECT party FROM table_name_85 WHERE member = \"peter howson\""
} |
Who was the electorate when the member was rex connor? | CREATE TABLE table_name_61 (electorate VARCHAR, member VARCHAR) | {
"SQL_Query": "SELECT electorate FROM table_name_61 WHERE member = \"rex connor\""
} |
What was the term of office for noel beaton? | CREATE TABLE table_name_1 (term_of_office VARCHAR, member VARCHAR) | {
"SQL_Query": "SELECT term_of_office FROM table_name_1 WHERE member = \"noel beaton\""
} |
What was the term of office for the electorate warringah? | CREATE TABLE table_name_1 (term_of_office VARCHAR, electorate VARCHAR) | {
"SQL_Query": "SELECT term_of_office FROM table_name_1 WHERE electorate = \"warringah\""
} |
What is the total number of people in attendance when the game was at TD Banknorth Garden, in a game higher than 31? | CREATE TABLE table_name_20 (attendance VARCHAR, location VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT COUNT(attendance) FROM table_name_20 WHERE location = \"td banknorth garden\" AND game > 31"
} |
What state is Wesson in? | CREATE TABLE table_name_13 (state VARCHAR, owner VARCHAR) | {
"SQL_Query": "SELECT state FROM table_name_13 WHERE owner = \"wesson\""
} |
What is the College/Junior/Club Team (League) when the position is rw, and the player is Don Murdoch? | CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT college_junior_club_team__league_ FROM table_name_31 WHERE position = \"rw\" AND player = \"don murdoch\""
} |
What is the position when the round is less than 2? | CREATE TABLE table_name_68 (position VARCHAR, round INTEGER) | {
"SQL_Query": "SELECT position FROM table_name_68 WHERE round < 2"
} |
What is the nationality when Claude Periard is the player? | CREATE TABLE table_name_33 (nationality VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT nationality FROM table_name_33 WHERE player = \"claude periard\""
} |
What is the lowest round for the player Claude Periard? | CREATE TABLE table_name_68 (round INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MIN(round) FROM table_name_68 WHERE player = \"claude periard\""
} |
When did the consort who had talal i as a spouse die? | CREATE TABLE table_name_98 (died VARCHAR, spouse_to VARCHAR) | {
"SQL_Query": "SELECT died FROM table_name_98 WHERE spouse_to = \"talal i\""
} |
Who was the spouse of the consort who was born as rania al yassin? | CREATE TABLE table_name_27 (spouse_to VARCHAR, born_as VARCHAR) | {
"SQL_Query": "SELECT spouse_to FROM table_name_27 WHERE born_as = \"rania al yassin\""
} |
When the Overall is under 102, what's the round played? | CREATE TABLE table_name_74 (round VARCHAR, overall INTEGER) | {
"SQL_Query": "SELECT round FROM table_name_74 WHERE overall < 102"
} |
What is the highest Week, when Date is "November 8, 1970"? | CREATE TABLE table_name_66 (week INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT MAX(week) FROM table_name_66 WHERE date = \"november 8, 1970\""
} |
What is the lowest Attendance, when Date is "December 20, 1970", and when Week is less than 14? | CREATE TABLE table_name_69 (attendance INTEGER, date VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT MIN(attendance) FROM table_name_69 WHERE date = \"december 20, 1970\" AND week < 14"
} |
What is Opponent, when Week is "5"? | CREATE TABLE table_name_70 (opponent VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_70 WHERE week = 5"
} |
What is the place with the 68 score? | CREATE TABLE table_name_30 (place VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_30 WHERE score = 68"
} |
what is the voltage when release date is june 2001 and frequency is 1.13ghz? | CREATE TABLE table_name_92 (voltage VARCHAR, release_date VARCHAR, frequency VARCHAR) | {
"SQL_Query": "SELECT voltage FROM table_name_92 WHERE release_date = \"june 2001\" AND frequency = \"1.13ghz\""
} |
what is the part number(s) when l2 cache is 512 kb, release date is june 2001 and sSpec number is sl5lv, sl5pu, sl6bw, sl6jm? | CREATE TABLE table_name_71 (part_number_s_ VARCHAR, sspec_number VARCHAR, l2_cache VARCHAR, release_date VARCHAR) | {
"SQL_Query": "SELECT part_number_s_ FROM table_name_71 WHERE l2_cache = \"512 kb\" AND release_date = \"june 2001\" AND sspec_number = \"sl5lv, sl5pu, sl6bw, sl6jm\""
} |
What is the L2 Cache when the Part Number(s) is rk80530pz014256? | CREATE TABLE table_name_94 (l2_cache VARCHAR, part_number_s_ VARCHAR) | {
"SQL_Query": "SELECT l2_cache FROM table_name_94 WHERE part_number_s_ = \"rk80530pz014256\""
} |
What is the Release Date when sSpec Number is sl5xl, sl657, sl6by, sl6jp? | CREATE TABLE table_name_96 (release_date VARCHAR, sspec_number VARCHAR) | {
"SQL_Query": "SELECT release_date FROM table_name_96 WHERE sspec_number = \"sl5xl, sl657, sl6by, sl6jp\""
} |
What is the Socket when the Part Number(s) is rk80530pz001256? | CREATE TABLE table_name_5 (socket VARCHAR, part_number_s_ VARCHAR) | {
"SQL_Query": "SELECT socket FROM table_name_5 WHERE part_number_s_ = \"rk80530pz001256\""
} |
what is the semifinalists when the surface is hard (i)? | CREATE TABLE table_name_9 (semifinalists VARCHAR, surface VARCHAR) | {
"SQL_Query": "SELECT semifinalists FROM table_name_9 WHERE surface = \"hard (i)\""
} |
what is the surface when the winner and score is gustavo kuerten 6-4, 7-5, 7-6(6)? | CREATE TABLE table_name_76 (surface VARCHAR, winner_and_score VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_name_76 WHERE winner_and_score = \"gustavo kuerten 6-4, 7-5, 7-6(6)\""
} |
who is the winner and score for the week of august 9? | CREATE TABLE table_name_6 (winner_and_score VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT winner_and_score FROM table_name_6 WHERE week = \"august 9\""
} |
what is the surface for the week of october 25? | CREATE TABLE table_name_51 (surface VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_name_51 WHERE week = \"october 25\""
} |
who is the winner and score for finalist sébastien grosjean? | CREATE TABLE table_name_28 (winner_and_score VARCHAR, finalist VARCHAR) | {
"SQL_Query": "SELECT winner_and_score FROM table_name_28 WHERE finalist = \"sébastien grosjean\""
} |
what is the week when the finalist is marcelo ríos? | CREATE TABLE table_name_16 (week VARCHAR, finalist VARCHAR) | {
"SQL_Query": "SELECT week FROM table_name_16 WHERE finalist = \"marcelo ríos\""
} |
What country did Chris Witty represent? | CREATE TABLE table_name_50 (nation VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT nation FROM table_name_50 WHERE name = \"chris witty\""
} |
On what day was the record set at the 2002 Salt Lake City games with a time of 3:57.70? | CREATE TABLE table_name_49 (date VARCHAR, games VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_49 WHERE games = \"2002 salt lake city\" AND time = \"3:57.70\""
} |
Who set the record in the 500 metres event? | CREATE TABLE table_name_14 (name VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_14 WHERE event = \"500 metres\""
} |
When was the attendance 3686? | CREATE TABLE table_name_23 (date VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_23 WHERE attendance = 3686"
} |
What is the away team whose home is Victoria? | CREATE TABLE table_name_42 (away VARCHAR, home VARCHAR) | {
"SQL_Query": "SELECT away FROM table_name_42 WHERE home = \"victoria\""
} |
What was the attendance when the away team was Real Espana? | CREATE TABLE table_name_67 (attendance INTEGER, away VARCHAR) | {
"SQL_Query": "SELECT MIN(attendance) FROM table_name_67 WHERE away = \"real espana\""
} |
Where is nac breda club located? | CREATE TABLE table_name_76 (location VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_76 WHERE club = \"nac breda\""
} |
Ron Jans is a manager of which kit maker? | CREATE TABLE table_name_68 (kit_maker VARCHAR, manager VARCHAR) | {
"SQL_Query": "SELECT kit_maker FROM table_name_68 WHERE manager = \"ron jans\""
} |
Which manager sponsor arke shirt? | CREATE TABLE table_name_90 (manager VARCHAR, shirt_sponsor VARCHAR) | {
"SQL_Query": "SELECT manager FROM table_name_90 WHERE shirt_sponsor = \"arke\""
} |
Which kit maker have Trond Sollied as a manager? | CREATE TABLE table_name_44 (kit_maker VARCHAR, manager VARCHAR) | {
"SQL_Query": "SELECT kit_maker FROM table_name_44 WHERE manager = \"trond sollied\""
} |
Who is the manager of club fc twente? | CREATE TABLE table_name_48 (manager VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT manager FROM table_name_48 WHERE club = \"fc twente\""
} |
What is the date of the game with 62 points? | CREATE TABLE table_name_51 (date VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_51 WHERE points = 62"
} |
Who was the home team on January 4? | CREATE TABLE table_name_85 (home VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT home FROM table_name_85 WHERE date = \"january 4\""
} |
What is Player, when Years With Spurs is 1988-95? | CREATE TABLE table_name_7 (player VARCHAR, years_with_spurs VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_7 WHERE years_with_spurs = \"1988-95\""
} |
What is Height in Ft., when Years With Spurs is 1973-74? | CREATE TABLE table_name_87 (height_in_ft VARCHAR, years_with_spurs VARCHAR) | {
"SQL_Query": "SELECT height_in_ft FROM table_name_87 WHERE years_with_spurs = \"1973-74\""
} |
What is Position, when School/Previous Club Team/Country is Kentucky? | CREATE TABLE table_name_67 (position VARCHAR, school_previous_club_team_country VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_67 WHERE school_previous_club_team_country = \"kentucky\""
} |
What is Position, when Height in Ft. is 6-10? | CREATE TABLE table_name_21 (position VARCHAR, height_in_ft VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_21 WHERE height_in_ft = \"6-10\""
} |
What was the lowest fumble with an average of less than 5.7 and 236 yards? | CREATE TABLE table_name_35 (fumbles INTEGER, avg VARCHAR, yards VARCHAR) | {
"SQL_Query": "SELECT MIN(fumbles) FROM table_name_35 WHERE avg < 5.7 AND yards = 236"
} |
What was Buck Pierce's highest average when there were less than 2 fumbles? | CREATE TABLE table_name_41 (avg INTEGER, player VARCHAR, fumbles VARCHAR) | {
"SQL_Query": "SELECT MAX(avg) FROM table_name_41 WHERE player = \"buck pierce\" AND fumbles < 2"
} |
What is the census ranking for the community with an area smaller than 9.94 km2 and a population smaller than 817? | CREATE TABLE table_name_93 (census_ranking VARCHAR, area_km_2 VARCHAR, population VARCHAR) | {
"SQL_Query": "SELECT census_ranking FROM table_name_93 WHERE area_km_2 < 9.94 AND population < 817"
} |
What is the area (in km2) for the community that has a status of village, a census ranking of 2,471 of 5,008, and a population of less than 748? | CREATE TABLE table_name_10 (area_km_2 INTEGER, population VARCHAR, status VARCHAR, census_ranking VARCHAR) | {
"SQL_Query": "SELECT SUM(area_km_2) FROM table_name_10 WHERE status = \"village\" AND census_ranking = \"2,471 of 5,008\" AND population < 748"
} |
What is the area (in km2) for the village of Paquetville, with a population over 706? | CREATE TABLE table_name_89 (area_km_2 INTEGER, population VARCHAR, status VARCHAR, official_name VARCHAR) | {
"SQL_Query": "SELECT AVG(area_km_2) FROM table_name_89 WHERE status = \"village\" AND official_name = \"paquetville\" AND population > 706"
} |
Who had the high assists in Game 22? | CREATE TABLE table_name_85 (high_assists VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT high_assists FROM table_name_85 WHERE game = 22"
} |
On December 3, where was the game held and how many were in attendance? | CREATE TABLE table_name_56 (location_attendance VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT location_attendance FROM table_name_56 WHERE date = \"december 3\""
} |
Which venue is rank 3? | CREATE TABLE table_name_38 (venue VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_38 WHERE rank = \"3\""
} |
Which opponent played in 2001/02? | CREATE TABLE table_name_65 (opponent VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_65 WHERE season = \"2001/02\""
} |
Which season is rank 4? | CREATE TABLE table_name_31 (season VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_31 WHERE rank = \"4\""
} |
Which season has rank 2? | CREATE TABLE table_name_35 (season VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_35 WHERE rank = \"2\""
} |
Which venue is rank 3? | CREATE TABLE table_name_4 (venue VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_4 WHERE rank = \"3\""
} |
What conference has 2009 as the season, with super leg final as the format? | CREATE TABLE table_name_8 (conference VARCHAR, season VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT conference FROM table_name_8 WHERE season = 2009 AND format = \"super leg final\""
} |
What series has a season after 2008, super leg final as the format, and conference v as the conference? | CREATE TABLE table_name_39 (series VARCHAR, conference VARCHAR, season VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_39 WHERE season > 2008 AND format = \"super leg final\" AND conference = \"conference v\""
} |
Which series has a season prior to 2009? | CREATE TABLE table_name_46 (series VARCHAR, season INTEGER) | {
"SQL_Query": "SELECT series FROM table_name_46 WHERE season < 2009"
} |
What format has conference iii as the conference? | CREATE TABLE table_name_42 (format VARCHAR, conference VARCHAR) | {
"SQL_Query": "SELECT format FROM table_name_42 WHERE conference = \"conference iii\""
} |
Round 3 with less than 54 for Round 4? | CREATE TABLE table_name_69 (round_3 VARCHAR, round_4 VARCHAR) | {
"SQL_Query": "SELECT round_3 FROM table_name_69 WHERE round_4 = \"54\""
} |
Round 4 for larger than 19 Round 1 and a 27 Round 2? | CREATE TABLE table_name_45 (round_4 VARCHAR, round_1 VARCHAR, round_2 VARCHAR) | {
"SQL_Query": "SELECT round_4 FROM table_name_45 WHERE round_1 > 19 AND round_2 = \"27\""
} |
Round 3 with a round 4 of 50? | CREATE TABLE table_name_39 (round_3 VARCHAR, round_4 VARCHAR) | {
"SQL_Query": "SELECT round_3 FROM table_name_39 WHERE round_4 = \"50\""
} |
How much did the away team b3 score on August 12, 2014? | CREATE TABLE table_name_17 (score VARCHAR, away_team VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_17 WHERE away_team = \"b3\" AND date = \"august 12, 2014\""
} |
Which away team played on June 9, 2015 with a home team of f1? | CREATE TABLE table_name_34 (away_team VARCHAR, date VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_34 WHERE date = \"june 9, 2015\" AND home_team = \"f1\""
} |
Which Margin has a Winning score of –7 (71-72-67-71=281)? | CREATE TABLE table_name_26 (margin VARCHAR, winning_score VARCHAR) | {
"SQL_Query": "SELECT margin FROM table_name_26 WHERE winning_score = –7(71 - 72 - 67 - 71 = 281)"
} |
Which Year has a Runner(s)-up of tammie green? | CREATE TABLE table_name_71 (year INTEGER, runner_s__up VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_71 WHERE runner_s__up = \"tammie green\""
} |
Which Year has a Winning score of –4 (69-72-70-69=280)? | CREATE TABLE table_name_42 (year INTEGER, winning_score VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_42 WHERE winning_score = –4(69 - 72 - 70 - 69 = 280)"
} |
What work was nominated at Rockferendum 2007 and got 1st place and got the award for best album? | CREATE TABLE table_name_55 (nominated_work VARCHAR, award VARCHAR, type VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT nominated_work FROM table_name_55 WHERE type = \"rockferendum 2007\" AND position = \"1st place\" AND award = \"best album\""
} |
What was the position that the nominated work La Quinta Esencia, which also won an award for best CD coverbox, won? | CREATE TABLE table_name_18 (position VARCHAR, nominated_work VARCHAR, award VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_18 WHERE nominated_work = \"la quinta esencia\" AND award = \"best cd coverbox\""
} |
What was the type that had an award for song of the year and the position of 3rd place? | CREATE TABLE table_name_1 (type VARCHAR, award VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT type FROM table_name_1 WHERE award = \"song of the year\" AND position = \"3rd place\""
} |
In what place is Phil Mickelson? | CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_65 WHERE player = \"phil mickelson\""
} |
The score of 73-71-70=214 belongs to what country? | CREATE TABLE table_name_77 (country VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_77 WHERE score = 73 - 71 - 70 = 214"
} |
Which country has a score of 73-74-69=216? | CREATE TABLE table_name_95 (country VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_95 WHERE score = 73 - 74 - 69 = 216"
} |
Which team had Christoph John as an outgoing manager? | CREATE TABLE table_name_45 (team VARCHAR, outgoing_manager VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_45 WHERE outgoing_manager = \"christoph john\""
} |
In what venue was the Batting team India who featured partners Sachin Tendulkar and Rahul Dravid? | CREATE TABLE table_name_15 (venue VARCHAR, batting_team VARCHAR, batting_partners VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_15 WHERE batting_team = \"india\" AND batting_partners = \"sachin tendulkar and rahul dravid\""
} |
In what venue did the fielding team Sri Lanka play? | CREATE TABLE table_name_86 (venue VARCHAR, fielding_team VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_86 WHERE fielding_team = \"sri lanka\""
} |
What was the wicket ranking for the match featuring partners Mohammad Azharuddin and Ajay Jadeja and also a fielding team of Sri Lanka? | CREATE TABLE table_name_93 (wicket VARCHAR, batting_partners VARCHAR, fielding_team VARCHAR) | {
"SQL_Query": "SELECT wicket FROM table_name_93 WHERE batting_partners = \"mohammad azharuddin and ajay jadeja\" AND fielding_team = \"sri lanka\""
} |
What was the wicket ranking for the match that had a fielding team of Sri Lanka? | CREATE TABLE table_name_73 (wicket VARCHAR, fielding_team VARCHAR) | {
"SQL_Query": "SELECT wicket FROM table_name_73 WHERE fielding_team = \"sri lanka\""
} |
What date was the game against inverurie loco works when more than 342 attend? | CREATE TABLE table_name_3 (date VARCHAR, attendance VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_3 WHERE attendance > 342 AND opponent = \"inverurie loco works\""
} |
Which Score has a Date of july 20? | CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_2 WHERE date = \"july 20\""
} |
Which Score has a Date of may 20? | CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_76 WHERE date = \"may 20\""
} |
Which Result has a Score of 69-81? | CREATE TABLE table_name_25 (result VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_25 WHERE score = \"69-81\""
} |
Which Record has a Date of june 26? | CREATE TABLE table_name_81 (record VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_81 WHERE date = \"june 26\""
} |
Which Date has a Record of 6-6? | CREATE TABLE table_name_82 (date VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_82 WHERE record = \"6-6\""
} |
Which Score has a Record of 5-4? | CREATE TABLE table_name_36 (score VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_36 WHERE record = \"5-4\""
} |
Who had the highest rebounds on December 30? | CREATE TABLE table_name_4 (high_rebounds VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT high_rebounds FROM table_name_4 WHERE date = \"december 30\""
} |
Who had the highest assists on the l.a. lakers? | CREATE TABLE table_name_21 (high_assists VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT high_assists FROM table_name_21 WHERE team = \"l.a. lakers\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.