question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the L2 cache for the core i7-2635QM? | CREATE TABLE table_name_65 (l2_cache VARCHAR, model_number VARCHAR) | {
"SQL_Query": "SELECT l2_cache FROM table_name_65 WHERE model_number = \"core i7-2635qm\""
} |
What is the release price for the GPU frequency of standard power, embedded? | CREATE TABLE table_name_96 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR) | {
"SQL_Query": "SELECT release_price___usd__ FROM table_name_96 WHERE gpu_frequency = \"standard power, embedded\""
} |
What is the socked when the turbo is 8/8/10/11? | CREATE TABLE table_name_40 (socket VARCHAR, turbo VARCHAR) | {
"SQL_Query": "SELECT socket FROM table_name_40 WHERE turbo = \"8/8/10/11\""
} |
Which round did the bout that led to a 1-0 record end in? | CREATE TABLE table_name_42 (round VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT round FROM table_name_42 WHERE record = \"1-0\""
} |
Which Time has a Lane smaller than 2, and a Nationality of spain? | CREATE TABLE table_name_73 (time VARCHAR, lane VARCHAR, nationality VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_73 WHERE lane < 2 AND nationality = \"spain\""
} |
How many Heats have a Name of miguel molina? | CREATE TABLE table_name_39 (heat VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT COUNT(heat) FROM table_name_39 WHERE name = \"miguel molina\""
} |
what is the league when the fa cup is qr4 and the fa trophy is qf? | CREATE TABLE table_name_46 (league VARCHAR, fa_cup VARCHAR, fa_trophy VARCHAR) | {
"SQL_Query": "SELECT league FROM table_name_46 WHERE fa_cup = \"qr4\" AND fa_trophy = \"qf\""
} |
what is the fa trophy when the leading scorer is lee gregory (8)? | CREATE TABLE table_name_66 (fa_trophy VARCHAR, leading_scorer VARCHAR) | {
"SQL_Query": "SELECT fa_trophy FROM table_name_66 WHERE leading_scorer = \"lee gregory (8)\""
} |
what is the year when the position is 1/22 promoted and the leading scorer is james dean (27)? | CREATE TABLE table_name_81 (year VARCHAR, position VARCHAR, leading_scorer VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_81 WHERE position = \"1/22 promoted\" AND leading_scorer = \"james dean (27)\""
} |
When the Altrincham was the home team what was the tie no? | CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT tie_no FROM table_name_52 WHERE home_team = \"altrincham\""
} |
Crawley Town as the home team has what as the tie no? | CREATE TABLE table_name_77 (tie_no VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT tie_no FROM table_name_77 WHERE home_team = \"crawley town\""
} |
What is the nationality of the swimmer with a rank over 2 with a time of 55.77? | CREATE TABLE table_name_47 (nationality VARCHAR, rank VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT nationality FROM table_name_47 WHERE rank > 2 AND time = \"55.77\""
} |
What is the earliest heat with a finisher from the Czech Republic and a rank over 41? | CREATE TABLE table_name_51 (heat INTEGER, nationality VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT MIN(heat) FROM table_name_51 WHERE nationality = \"czech republic\" AND rank > 41"
} |
What is the total number of heats with a finisher named Gregor Tait in lanes over 6? | CREATE TABLE table_name_38 (heat VARCHAR, name VARCHAR, lane VARCHAR) | {
"SQL_Query": "SELECT COUNT(heat) FROM table_name_38 WHERE name = \"gregor tait\" AND lane > 6"
} |
What is the time of the swimmer in rank 40? | CREATE TABLE table_name_47 (time VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_47 WHERE rank = 40"
} |
From what series was Tokio Jokio, directed by Norm McCabe? | CREATE TABLE table_name_35 (series VARCHAR, director VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_35 WHERE director = \"norm mccabe\" AND title = \"tokio jokio\""
} |
When was Inki and the Minah Bird released? | CREATE TABLE table_name_71 (release_date VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT release_date FROM table_name_71 WHERE title = \"inki and the minah bird\""
} |
From what series is Peck Up Your Troubles? | CREATE TABLE table_name_66 (series VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_66 WHERE title = \"peck up your troubles\""
} |
When the president was Yoweri Museveni, and the year was 1993, with rank of 6 under political rights, what was the total of civil liberties? | CREATE TABLE table_name_78 (civil_liberties INTEGER, year VARCHAR, political_rights VARCHAR, president VARCHAR) | {
"SQL_Query": "SELECT SUM(civil_liberties) FROM table_name_78 WHERE political_rights = 6 AND president = \"yoweri museveni\" AND year = 1993"
} |
What is the year average when not free was the status, and less than 7 was the civil liberties, and less than 6 political rights? | CREATE TABLE table_name_39 (year INTEGER, political_rights VARCHAR, status VARCHAR, civil_liberties VARCHAR) | {
"SQL_Query": "SELECT AVG(year) FROM table_name_39 WHERE status = \"not free\" AND civil_liberties < 7 AND political_rights < 6"
} |
What is the least political rights rank in 1976? | CREATE TABLE table_name_54 (political_rights INTEGER, year VARCHAR) | {
"SQL_Query": "SELECT MIN(political_rights) FROM table_name_54 WHERE year = 1976"
} |
What is average ratings for Japanese title of ホタルノヒカリ, with episodes larger than 9? | CREATE TABLE table_name_38 (average_ratings VARCHAR, episodes VARCHAR, japanese_title VARCHAR) | {
"SQL_Query": "SELECT average_ratings FROM table_name_38 WHERE episodes > 9 AND japanese_title = \"ホタルノヒカリ\""
} |
Which episodes has the lowest average ratings of 8.7%? | CREATE TABLE table_name_65 (episodes INTEGER, average_ratings VARCHAR) | {
"SQL_Query": "SELECT MIN(episodes) FROM table_name_65 WHERE average_ratings = \"8.7%\""
} |
Which romaji title, has Japanese title of 菊次郎とさき 3? | CREATE TABLE table_name_94 (romaji_title VARCHAR, japanese_title VARCHAR) | {
"SQL_Query": "SELECT romaji_title FROM table_name_94 WHERE japanese_title = \"菊次郎とさき 3\""
} |
Which TV station, has romaji title of tantei gakuen q and episodes larger than 10? | CREATE TABLE table_name_45 (tv_station VARCHAR, episodes VARCHAR, romaji_title VARCHAR) | {
"SQL_Query": "SELECT tv_station FROM table_name_45 WHERE episodes > 10 AND romaji_title = \"tantei gakuen q\""
} |
What is the Almaty, Kazakhstan when Sergey Filimonov ( KAZ ) is 210kg? | CREATE TABLE table_name_17 (almaty_ VARCHAR, _kazakhstan VARCHAR, sergey_filimonov___kaz__ VARCHAR) | {
"SQL_Query": "SELECT almaty_, _kazakhstan FROM table_name_17 WHERE sergey_filimonov___kaz__ = \"210kg\""
} |
What shows for Sergey Filimonov (KAZ) when the Snatch shows snatch? | CREATE TABLE table_name_69 (sergey_filimonov___kaz__ VARCHAR) | {
"SQL_Query": "SELECT sergey_filimonov___kaz__ FROM table_name_69 WHERE \"snatch\" = \"snatch\""
} |
What is the Almaty, Kazakhstan when the Sergey Filimonov (KAZ) is 210kg? | CREATE TABLE table_name_42 (almaty_ VARCHAR, _kazakhstan VARCHAR, sergey_filimonov___kaz__ VARCHAR) | {
"SQL_Query": "SELECT almaty_, _kazakhstan FROM table_name_42 WHERE sergey_filimonov___kaz__ = \"210kg\""
} |
What year was the main role a character named Guan Yu (關羽)? | CREATE TABLE table_name_89 (year INTEGER, role VARCHAR, character VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_89 WHERE role = \"main\" AND character = \"guan yu (關羽)\""
} |
What is the English character for Lin Ming Kuan (林明寬)? | CREATE TABLE table_name_88 (english VARCHAR, character VARCHAR) | {
"SQL_Query": "SELECT english FROM table_name_88 WHERE character = \"lin ming kuan (林明寬)\""
} |
What character has a Year larger than 2010 with a lead role, and Chinese Title of 戀夏38℃? | CREATE TABLE table_name_85 (character VARCHAR, chinese_title VARCHAR, year VARCHAR, role VARCHAR) | {
"SQL_Query": "SELECT character FROM table_name_85 WHERE year > 2010 AND role = \"lead role\" AND chinese_title = \"戀夏38℃\""
} |
What is the year that has a character named Wu Ji Wei (無極威)? | CREATE TABLE table_name_27 (year INTEGER, character VARCHAR) | {
"SQL_Query": "SELECT AVG(year) FROM table_name_27 WHERE character = \"wu ji wei (無極威)\""
} |
Which Round has an Opponent of aleksandr pitchkounov? | CREATE TABLE table_name_81 (round INTEGER, opponent VARCHAR) | {
"SQL_Query": "SELECT MIN(round) FROM table_name_81 WHERE opponent = \"aleksandr pitchkounov\""
} |
Which Result has a Round of 5, and an Event of mt one? | CREATE TABLE table_name_92 (result VARCHAR, round VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_92 WHERE round = 5 AND event = \"mt one\""
} |
Mortlake club has more than 924 against, less than 14 losses, and how many total draws? | CREATE TABLE table_name_66 (draws VARCHAR, losses VARCHAR, against VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT COUNT(draws) FROM table_name_66 WHERE against > 924 AND club = \"mortlake\" AND losses < 14"
} |
What is the total number of wins for Cobden club when there are more than 2 draws? | CREATE TABLE table_name_39 (wins INTEGER, club VARCHAR, draws VARCHAR) | {
"SQL_Query": "SELECT SUM(wins) FROM table_name_39 WHERE club = \"cobden\" AND draws > 2"
} |
When against is 797 and wins is more than 10, what is the sum of draws? | CREATE TABLE table_name_28 (draws VARCHAR, against VARCHAR, wins VARCHAR) | {
"SQL_Query": "SELECT COUNT(draws) FROM table_name_28 WHERE against = 797 AND wins > 10"
} |
Club warrnambool has less than 9 wins and what average of draws? | CREATE TABLE table_name_63 (draws INTEGER, wins VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT AVG(draws) FROM table_name_63 WHERE wins < 9 AND club = \"warrnambool\""
} |
What is the average number of draws for Mortlake club when they have less than 0 wins? | CREATE TABLE table_name_11 (draws INTEGER, club VARCHAR, wins VARCHAR) | {
"SQL_Query": "SELECT AVG(draws) FROM table_name_11 WHERE club = \"mortlake\" AND wins < 0"
} |
Which Foreign population has a Population (2004) larger than 234733? | CREATE TABLE table_name_26 (foreign_population INTEGER, population__2004_ INTEGER) | {
"SQL_Query": "SELECT AVG(foreign_population) FROM table_name_26 WHERE population__2004_ > 234733"
} |
Which Population (2004) has a Moroccan population larger than 234506? | CREATE TABLE table_name_38 (population__2004_ INTEGER, moroccan_population INTEGER) | {
"SQL_Query": "SELECT AVG(population__2004_) FROM table_name_38 WHERE moroccan_population > 234506"
} |
What date was the opponent VFL Sindelfingen? | CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_98 WHERE opponent = \"vfl sindelfingen\""
} |
What date was the attendance 1,804? | CREATE TABLE table_name_44 (date VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_44 WHERE attendance = \"1,804\""
} |
Who was the opponent with an attendance of 628? | CREATE TABLE table_name_98 (opponent VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_98 WHERE attendance = \"628\""
} |
What bike has a grid greater than 17, laps less than 8, with milos cihak as the rider? | CREATE TABLE table_name_24 (bike VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT bike FROM table_name_24 WHERE grid > 17 AND laps < 8 AND rider = \"milos cihak\""
} |
What is the highest grid that has gregorio lavilla as the rider? | CREATE TABLE table_name_89 (grid INTEGER, rider VARCHAR) | {
"SQL_Query": "SELECT MAX(grid) FROM table_name_89 WHERE rider = \"gregorio lavilla\""
} |
What rider has laps less than 20, a ducati 1098 rs 08 as the bike, with accident as the time, and a grid less than 14? | CREATE TABLE table_name_64 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, bike VARCHAR) | {
"SQL_Query": "SELECT rider FROM table_name_64 WHERE laps < 20 AND bike = \"ducati 1098 rs 08\" AND time = \"accident\" AND grid < 14"
} |
How many overs when there are 5231 runs and fewer than 37 matches? | CREATE TABLE table_name_33 (overs INTEGER, runs VARCHAR, matches VARCHAR) | {
"SQL_Query": "SELECT SUM(overs) FROM table_name_33 WHERE runs = 5231 AND matches < 37"
} |
What are the fewest wickets when player's career spanned 1946-1960 and maidens were more than 419? | CREATE TABLE table_name_84 (wickets INTEGER, career VARCHAR, maidens VARCHAR) | {
"SQL_Query": "SELECT MIN(wickets) FROM table_name_84 WHERE career = \"1946-1960\" AND maidens > 419"
} |
What is the largest number of wickets when there are more than 630 maidens and a best of 7/72? | CREATE TABLE table_name_55 (wickets INTEGER, maidens VARCHAR, best VARCHAR) | {
"SQL_Query": "SELECT MAX(wickets) FROM table_name_55 WHERE maidens > 630 AND best = \"7/72\""
} |
Who has fewer than 2047.3 overs, more than 200 wickets and an average of 29.02? | CREATE TABLE table_name_53 (name VARCHAR, average VARCHAR, overs VARCHAR, wickets VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_53 WHERE overs < 2047.3 AND wickets > 200 AND average > 29.02"
} |
How many people attended the Scottish Cup on 29.02.2000? | CREATE TABLE table_name_60 (attendance VARCHAR, competition VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT attendance FROM table_name_60 WHERE competition = \"scottish cup\" AND date = \"29.02.2000\""
} |
What was the score of the league cup in the 2007-08 season? | CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_90 WHERE competition = \"league cup\" AND season = \"2007-08\""
} |
What is the attendance in the game in the 2010-11 season, when the score was 2–0? | CREATE TABLE table_name_39 (attendance INTEGER, season VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT MIN(attendance) FROM table_name_39 WHERE season = \"2010-11\" AND score = \"2–0\""
} |
What team was in 1st plate in a year later than 1956? | CREATE TABLE table_name_84 (year INTEGER) | {
"SQL_Query": "SELECT 1 AS st_place_team FROM table_name_84 WHERE year > 1956"
} |
Which base has a company of Theatro Technis Karolos Koun? | CREATE TABLE table_name_59 (base VARCHAR, company VARCHAR) | {
"SQL_Query": "SELECT base FROM table_name_59 WHERE company = \"theatro technis karolos koun\""
} |
Which company has an author of Aristophanes and play of Plutus? | CREATE TABLE table_name_74 (company VARCHAR, author VARCHAR, play VARCHAR) | {
"SQL_Query": "SELECT company FROM table_name_74 WHERE author = \"aristophanes\" AND play = \"plutus\""
} |
Which author has a company of the Semeio Theatre? | CREATE TABLE table_name_22 (author VARCHAR, company VARCHAR) | {
"SQL_Query": "SELECT author FROM table_name_22 WHERE company = \"semeio theatre\""
} |
Which play was done by the Radu Stanca National Theatre company? | CREATE TABLE table_name_47 (play VARCHAR, company VARCHAR) | {
"SQL_Query": "SELECT play FROM table_name_47 WHERE company = \"radu stanca national theatre\""
} |
Which play had a base of Aosta? | CREATE TABLE table_name_96 (play VARCHAR, base VARCHAR) | {
"SQL_Query": "SELECT play FROM table_name_96 WHERE base = \"aosta\""
} |
What is the country of the play based in Athens at the Attis Theatre company? | CREATE TABLE table_name_33 (country VARCHAR, base VARCHAR, company VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_33 WHERE base = \"athens\" AND company = \"attis theatre\""
} |
Which Class has a Quantity larger than 96? | CREATE TABLE table_name_14 (class VARCHAR, quantity INTEGER) | {
"SQL_Query": "SELECT class FROM table_name_14 WHERE quantity > 96"
} |
How much Quantity has a Type of 1′c1′ h2t? | CREATE TABLE table_name_11 (quantity VARCHAR, type VARCHAR) | {
"SQL_Query": "SELECT COUNT(quantity) FROM table_name_11 WHERE type = \"1′c1′ h2t\""
} |
Which Class has a Type of 1′c n2t? | CREATE TABLE table_name_85 (class VARCHAR, type VARCHAR) | {
"SQL_Query": "SELECT class FROM table_name_85 WHERE type = \"1′c n2t\""
} |
Which Year(s) of manufacture has a Quantity larger than 39, and a Type of 1′c1′ h2t? | CREATE TABLE table_name_90 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR) | {
"SQL_Query": "SELECT year_s__of_manufacture FROM table_name_90 WHERE quantity > 39 AND type = \"1′c1′ h2t\""
} |
Which Year(s) of manufacture has a Quantity of 2, and a Type of b n2t? | CREATE TABLE table_name_13 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR) | {
"SQL_Query": "SELECT year_s__of_manufacture FROM table_name_13 WHERE quantity = 2 AND type = \"b n2t\""
} |
what is the highest place when lost is more than 4, points is less than 18 and team is Team of atlético veragüense? | CREATE TABLE table_name_18 (place INTEGER, team VARCHAR, lost VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT MAX(place) FROM table_name_18 WHERE lost > 4 AND points < 18 AND team = \"atlético veragüense\""
} |
what is the least lost when the place is higher than 4, goals scored is 12 and points is more than 4? | CREATE TABLE table_name_72 (lost INTEGER, points VARCHAR, place VARCHAR, goals_scored VARCHAR) | {
"SQL_Query": "SELECT MIN(lost) FROM table_name_72 WHERE place > 4 AND goals_scored = 12 AND points > 4"
} |
how many times is the team tauro and played less than 18? | CREATE TABLE table_name_85 (place VARCHAR, team VARCHAR, played VARCHAR) | {
"SQL_Query": "SELECT COUNT(place) FROM table_name_85 WHERE team = \"tauro\" AND played < 18"
} |
what is the least played when points is 36 and place is more than 2? | CREATE TABLE table_name_39 (played INTEGER, points VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT MIN(played) FROM table_name_39 WHERE points = 36 AND place > 2"
} |
what is the average points when goals conceded is 14 and goals scored is less than 32? | CREATE TABLE table_name_97 (points INTEGER, goals_conceded VARCHAR, goals_scored VARCHAR) | {
"SQL_Query": "SELECT AVG(points) FROM table_name_97 WHERE goals_conceded = 14 AND goals_scored < 32"
} |
Playing against the Seattle Seahawks in a week after week 1 before 69,149 people what was the result of the game? | CREATE TABLE table_name_63 (result VARCHAR, opponent VARCHAR, week VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_63 WHERE week > 1 AND attendance = \"69,149\" AND opponent = \"seattle seahawks\""
} |
How many weeks in total has bye as the date? | CREATE TABLE table_name_23 (week VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(week) FROM table_name_23 WHERE date = \"bye\""
} |
What country does Tiger Woods come from? | CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_58 WHERE player = \"tiger woods\""
} |
What's the Ri Song-Hui when the olympic record is the world record and snatch was snatch? | CREATE TABLE table_name_49 (ri_song_hui___prk__ VARCHAR, world_record VARCHAR) | {
"SQL_Query": "SELECT ri_song_hui___prk__ FROM table_name_49 WHERE world_record = \"olympic record\" AND \"snatch\" = \"snatch\""
} |
What's the 102kg when the Ri Song-Hui was 226kg? | CREATE TABLE table_name_56 (ri_song_hui___prk__ VARCHAR) | {
"SQL_Query": "SELECT 102 AS kg FROM table_name_56 WHERE ri_song_hui___prk__ = \"226kg\""
} |
What's the 102kg when the snatch was snatch and the olympic record was the world record? | CREATE TABLE table_name_56 (world_record VARCHAR) | {
"SQL_Query": "SELECT 102 AS kg FROM table_name_56 WHERE world_record = \"olympic record\" AND \"snatch\" = \"snatch\""
} |
What was the average pick made by the Texas Rangers? | CREATE TABLE table_name_82 (pick INTEGER, team VARCHAR) | {
"SQL_Query": "SELECT AVG(pick) FROM table_name_82 WHERE team = \"texas rangers\""
} |
What was the home town of Bob Geren, picked by the San Diego Padres? | CREATE TABLE table_name_18 (hometown_school VARCHAR, team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT hometown_school FROM table_name_18 WHERE team = \"san diego padres\" AND player = \"bob geren\""
} |
What was the position of Jon Perlman? | CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_94 WHERE player = \"jon perlman\""
} |
What college has a pick smaller than 87 for the position of tackle? | CREATE TABLE table_name_73 (college VARCHAR, position VARCHAR, pick VARCHAR) | {
"SQL_Query": "SELECT college FROM table_name_73 WHERE position = \"tackle\" AND pick < 87"
} |
What college had the pick of 85? | CREATE TABLE table_name_51 (college VARCHAR, pick VARCHAR) | {
"SQL_Query": "SELECT college FROM table_name_51 WHERE pick = 85"
} |
What are the least losses of Mortlake having less than 970 against? | CREATE TABLE table_name_96 (losses INTEGER, club VARCHAR, against VARCHAR) | {
"SQL_Query": "SELECT MIN(losses) FROM table_name_96 WHERE club = \"mortlake\" AND against < 970"
} |
What's the total against when the draws are more than 0? | CREATE TABLE table_name_30 (against VARCHAR, draws INTEGER) | {
"SQL_Query": "SELECT COUNT(against) FROM table_name_30 WHERE draws > 0"
} |
What's the total wins when the draws are less than 0? | CREATE TABLE table_name_92 (wins VARCHAR, draws INTEGER) | {
"SQL_Query": "SELECT COUNT(wins) FROM table_name_92 WHERE draws < 0"
} |
What's the least against number for Cobden with draws more than 0? | CREATE TABLE table_name_50 (against INTEGER, club VARCHAR, draws VARCHAR) | {
"SQL_Query": "SELECT MIN(against) FROM table_name_50 WHERE club = \"cobden\" AND draws > 0"
} |
What's the most against when the draws are more than 0? | CREATE TABLE table_name_43 (against INTEGER, draws INTEGER) | {
"SQL_Query": "SELECT MAX(against) FROM table_name_43 WHERE draws > 0"
} |
What are the total wins when there are 1261 against? | CREATE TABLE table_name_46 (wins INTEGER, against VARCHAR) | {
"SQL_Query": "SELECT SUM(wins) FROM table_name_46 WHERE against = 1261"
} |
What is the notes entry for the row with a Time of 1:42.309? | CREATE TABLE table_name_33 (notes VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT notes FROM table_name_33 WHERE time = \"1:42.309\""
} |
What is the rank for China? | CREATE TABLE table_name_96 (rank INTEGER, country VARCHAR) | {
"SQL_Query": "SELECT SUM(rank) FROM table_name_96 WHERE country = \"china\""
} |
What is the time for Cuba, with a notes entry of QS? | CREATE TABLE table_name_54 (time VARCHAR, notes VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_54 WHERE notes = \"qs\" AND country = \"cuba\""
} |
What is the Week number on October 10, 1976? | CREATE TABLE table_name_17 (week VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(week) FROM table_name_17 WHERE date = \"october 10, 1976\""
} |
What is the Date of the game with a Result of L 33–14? | CREATE TABLE table_name_89 (date VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_89 WHERE result = \"l 33–14\""
} |
The Major third of D has what for the Augmented fifth? | CREATE TABLE table_name_48 (augmented_fifth VARCHAR, major_third VARCHAR) | {
"SQL_Query": "SELECT augmented_fifth FROM table_name_48 WHERE major_third = \"d\""
} |
A major third of C has what listed for the Minor seventh? | CREATE TABLE table_name_29 (minor_seventh VARCHAR, major_third VARCHAR) | {
"SQL_Query": "SELECT minor_seventh FROM table_name_29 WHERE major_third = \"c\""
} |
What is the listed chord for a Minor seventh of F? | CREATE TABLE table_name_23 (chord VARCHAR, minor_seventh VARCHAR) | {
"SQL_Query": "SELECT chord FROM table_name_23 WHERE minor_seventh = \"f\""
} |
Which Episode has a Rank of 1? | CREATE TABLE table_name_71 (episode VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT episode FROM table_name_71 WHERE rank = 1"
} |
Where was adac rally deutschland's rally HQ? | CREATE TABLE table_name_62 (rally_hq VARCHAR, rally_name VARCHAR) | {
"SQL_Query": "SELECT rally_hq FROM table_name_62 WHERE rally_name = \"adac rally deutschland\""
} |
Where was the Rally HQ for Round 1? | CREATE TABLE table_name_9 (rally_hq VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT rally_hq FROM table_name_9 WHERE round = 1"
} |
Which Support Category had a Round score of 9? | CREATE TABLE table_name_67 (support_category VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT support_category FROM table_name_67 WHERE round = 9"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.