question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the nationality of the player that plays forward and is from depaul?
CREATE TABLE table_name_19 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_19 WHERE position = \"forward\" AND school_club_team = \"depaul\"" }
What years did Orlando have stanley roberts on the team?
CREATE TABLE table_name_75 (years_in_orlando VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT years_in_orlando FROM table_name_75 WHERE player = \"stanley roberts\"" }
How many points total are there later than 2003?
CREATE TABLE table_name_99 (points INTEGER, year INTEGER)
{ "SQL_Query": "SELECT SUM(points) FROM table_name_99 WHERE year > 2003" }
Which entrant has a Dallara F398 chassis?
CREATE TABLE table_name_13 (entrant VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT entrant FROM table_name_13 WHERE chassis = \"dallara f398\"" }
What are the lowest points for an engine with a Dallara F303 chassis?
CREATE TABLE table_name_93 (points INTEGER, chassis VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_93 WHERE chassis = \"dallara f303\"" }
What are the lowest points in 2004?
CREATE TABLE table_name_96 (points INTEGER, year VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_96 WHERE year = 2004" }
What is Attendance, when Week is 5?
CREATE TABLE table_name_95 (attendance VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_95 WHERE week = 5" }
What is the label for the catalog of none, and is in the United Kingdom?
CREATE TABLE table_name_12 (label VARCHAR, catalog VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_12 WHERE catalog = \"none\" AND region = \"united kingdom\"" }
What is the region for the date November 18, 2002?
CREATE TABLE table_name_76 (region VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT region FROM table_name_76 WHERE date = \"november 18, 2002\"" }
What is the date for the Nebula Label, and a nebdjx029 catalog?
CREATE TABLE table_name_93 (date VARCHAR, label VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_93 WHERE label = \"nebula\" AND catalog = \"nebdjx029\"" }
What is the label from the Netherlands?
CREATE TABLE table_name_54 (label VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_54 WHERE region = \"netherlands\"" }
What was the Christ made king date with a great tribulation in 1925?
CREATE TABLE table_name_16 (christ_madeking VARCHAR, great_tribulation VARCHAR)
{ "SQL_Query": "SELECT christ_madeking FROM table_name_16 WHERE great_tribulation = \"1925\"" }
What is the resurrection of 144,000 date with a Christ made king date in 1914, a separting sheep & goats date during Christ's presence, and a judgment of religion date in 1878?
CREATE TABLE table_name_63 (resurrection_of144 VARCHAR, judgmentof_religion VARCHAR, christ_madeking VARCHAR, separating_sheep_ VARCHAR, goats VARCHAR)
{ "SQL_Query": "SELECT resurrection_of144, 000 FROM table_name_63 WHERE christ_madeking = \"1914\" AND separating_sheep_ & goats = \"during christ's presence\" AND judgmentof_religion = \"1878\"" }
What is the lowest Cuts made with less than 72.48 scoring average?
CREATE TABLE table_name_63 (cuts_made INTEGER, scoring_average INTEGER)
{ "SQL_Query": "SELECT MIN(cuts_made) FROM table_name_63 WHERE scoring_average < 72.48" }
What is the sum of Events played when the cuts made is less than 0?
CREATE TABLE table_name_82 (events_played INTEGER, cuts_made INTEGER)
{ "SQL_Query": "SELECT SUM(events_played) FROM table_name_82 WHERE cuts_made < 0" }
What is the Scoring rank when there are less than 21 events played with a rank of n/a in years less than 2011?
CREATE TABLE table_name_19 (scoring_rank VARCHAR, year VARCHAR, events_played VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT scoring_rank FROM table_name_19 WHERE events_played < 21 AND rank = \"n/a\" AND year < 2011" }
What is the total number of Wins when 98 is the rank and the scoring average is more than 73.52?
CREATE TABLE table_name_54 (wins VARCHAR, rank VARCHAR, scoring_average VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_name_54 WHERE rank = \"98\" AND scoring_average > 73.52" }
What Title's Start of Reign is 1993?
CREATE TABLE table_name_69 (title VARCHAR, start_of_reign VARCHAR)
{ "SQL_Query": "SELECT title FROM table_name_69 WHERE start_of_reign = 1993" }
What is the Birth Name of the Archbishop with a Current End of Reign?
CREATE TABLE table_name_34 (Birth VARCHAR, end_of_reign VARCHAR)
{ "SQL_Query": "SELECT Birth AS name FROM table_name_34 WHERE end_of_reign = \"current\"" }
What is Angelarios Angelarij with a Start of Reign date before 1986 Birth Name?
CREATE TABLE table_name_45 (Birth VARCHAR, start_of_reign VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT Birth AS name FROM table_name_45 WHERE start_of_reign < 1986 AND name = \"angelarios angelarij\"" }
How many goals that were scored had a place of more than 5, a lost of 11, and goals conceded of less than 45?
CREATE TABLE table_name_7 (goals_scored VARCHAR, goals_conceded VARCHAR, place VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT COUNT(goals_scored) FROM table_name_7 WHERE place > 5 AND lost = 11 AND goals_conceded < 45" }
What is the mean played number where the goals conceded is less than 16?
CREATE TABLE table_name_81 (played INTEGER, goals_conceded INTEGER)
{ "SQL_Query": "SELECT AVG(played) FROM table_name_81 WHERE goals_conceded < 16" }
What is the 1913 Class of the d32 LNER Class?
CREATE TABLE table_name_68 (lner_class VARCHAR)
{ "SQL_Query": "SELECT 1913 AS _class FROM table_name_68 WHERE lner_class = \"d32\"" }
What was the attendance at the Denver game?
CREATE TABLE table_name_59 (location_attendance VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_name_59 WHERE team = \"denver\"" }
What was Matthew Hoggard's high score when he had a strike rate of n/a?
CREATE TABLE table_name_64 (high_score VARCHAR, strike_rate VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT high_score FROM table_name_64 WHERE strike_rate = \"n/a\" AND player = \"matthew hoggard\"" }
What is the lowest Weight when the height is 196, and the date of birth is 24.07.1977?
CREATE TABLE table_name_28 (weight INTEGER, height VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT MIN(weight) FROM table_name_28 WHERE height = 196 AND date_of_birth = \"24.07.1977\"" }
What is the sum of Spike when the Weight was more than 84, and Block was less than 315?
CREATE TABLE table_name_72 (spike INTEGER, weight VARCHAR, block VARCHAR)
{ "SQL_Query": "SELECT SUM(spike) FROM table_name_72 WHERE weight > 84 AND block < 315" }
What was the result of the 2012 Waff Women's Futsal Championship game the team played against Iraq?
CREATE TABLE table_name_96 (result VARCHAR, tournament VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_96 WHERE tournament = \"2012 waff women's futsal championship\" AND opponent = \"iraq\"" }
What was the result of the game played on May 9, 2012?
CREATE TABLE table_name_35 (result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_35 WHERE date = \"may 9, 2012\"" }
What is the result of the game played in Russia on May 9, 2012?
CREATE TABLE table_name_1 (result VARCHAR, venue VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_1 WHERE venue = \"russia\" AND date = \"may 9, 2012\"" }
What is the final result of the game that was played on October 8, 2000?
CREATE TABLE table_name_70 (result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_70 WHERE date = \"october 8, 2000\"" }
Who was the opponent in the game played after Week 4 on October 15, 2000?
CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_37 WHERE week > 4 AND date = \"october 15, 2000\"" }
Where was the game played when the Buffalo Bills had a record of 8-8?
CREATE TABLE table_name_80 (location VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_80 WHERE record = \"8-8\"" }
Who was the opponent the Buffalo Bills played when their record was 4-4?
CREATE TABLE table_name_34 (opponent VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_34 WHERE record = \"4-4\"" }
What is the highest week for Cleveland Browns with 54,205 in attendance?
CREATE TABLE table_name_47 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_name_47 WHERE opponent = \"cleveland browns\" AND attendance > 54 OFFSET 205" }
What date was the opponents the Oakland Raiders?
CREATE TABLE table_name_88 (date VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_88 WHERE opponent = \"oakland raiders\"" }
What was the total attendance October 22, 1972?
CREATE TABLE table_name_18 (attendance INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT SUM(attendance) FROM table_name_18 WHERE date = \"october 22, 1972\"" }
What is the highest heat for Ihor Bodrov when the mark is 6.76 and the lane is less than 1?
CREATE TABLE table_name_8 (heat INTEGER, lane VARCHAR, mark VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT MAX(heat) FROM table_name_8 WHERE mark = \"6.76\" AND name = \"ihor bodrov\" AND lane < 1" }
What is the mark number when the lane for Rabangaki Nawai when it is greater than 2 and the heat is larger than 4?
CREATE TABLE table_name_44 (mark VARCHAR, name VARCHAR, lane VARCHAR, heat VARCHAR)
{ "SQL_Query": "SELECT mark FROM table_name_44 WHERE lane > 2 AND heat > 4 AND name = \"rabangaki nawai\"" }
What is the total lane number for the United States when the mark is 6.62 and the heat is greater than 8?
CREATE TABLE table_name_16 (lane VARCHAR, heat VARCHAR, country VARCHAR, mark VARCHAR)
{ "SQL_Query": "SELECT COUNT(lane) FROM table_name_16 WHERE country = \"united states\" AND mark = \"6.62\" AND heat > 8" }
WHich in 2010–11 has an Event of autumn gold?
CREATE TABLE table_name_99 (event VARCHAR)
{ "SQL_Query": "SELECT 2010 AS _11 FROM table_name_99 WHERE event = \"autumn gold\"" }
Which nation has a bronze greater than 0, a gold greater than 0, a silver greater than 0, and 5 as the rank?
CREATE TABLE table_name_88 (nation VARCHAR, rank VARCHAR, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT nation FROM table_name_88 WHERE bronze > 0 AND gold > 0 AND silver > 0 AND rank = \"5\"" }
What nation has 1 as the gold and 2 as the total?
CREATE TABLE table_name_6 (nation VARCHAR, gold VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT nation FROM table_name_6 WHERE gold = 1 AND total = 2" }
What rank has 0 as the bronze, and a total less than 3, with north korea as the nation?
CREATE TABLE table_name_56 (rank VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_name_56 WHERE bronze = 0 AND total < 3 AND nation = \"north korea\"" }
How many golds have a bronze less than 1, and a silver less than 1?
CREATE TABLE table_name_82 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT COUNT(gold) FROM table_name_82 WHERE bronze < 1 AND silver < 1" }
What average total has cuba as the nation, and a bronze greater than 1?
CREATE TABLE table_name_8 (total INTEGER, nation VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT AVG(total) FROM table_name_8 WHERE nation = \"cuba\" AND bronze > 1" }
What is the highest total that has a bronze greater than 1, a gold greater than 1, with a silver less than 4?
CREATE TABLE table_name_34 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT MAX(total) FROM table_name_34 WHERE bronze > 1 AND gold > 1 AND silver < 4" }
Where was the birthplace of the person born on March 21, 1979?
CREATE TABLE table_name_92 (birthplace VARCHAR, birthdate VARCHAR)
{ "SQL_Query": "SELECT birthplace FROM table_name_92 WHERE birthdate = \"march 21, 1979\"" }
What is Scott Gomez's biggest weight?
CREATE TABLE table_name_57 (weight__kg_ INTEGER, name VARCHAR)
{ "SQL_Query": "SELECT MAX(weight__kg_) FROM table_name_57 WHERE name = \"scott gomez\"" }
What number pick was Paul Seymour in round 1?
CREATE TABLE table_name_31 (pick INTEGER, round VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT SUM(pick) FROM table_name_31 WHERE round = 1 AND player = \"paul seymour\"" }
In how many rounds did USC participate in?
CREATE TABLE table_name_72 (round VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT COUNT(round) FROM table_name_72 WHERE college = \"usc\"" }
What set 2 has 15:33 as the time?
CREATE TABLE table_name_14 (set_2 VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT set_2 FROM table_name_14 WHERE time = \"15:33\"" }
Where did they play against Clemson?
CREATE TABLE table_name_8 (location VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_8 WHERE opponent = \"clemson\"" }
What was the total attendance on 10/05/1974?
CREATE TABLE table_name_10 (attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(attendance) FROM table_name_10 WHERE date = \"10/05/1974\"" }
What is the total number of Height(s), when Spike is less than 352, when Block is greater than 300, and when Name is Pablo Meana?
CREATE TABLE table_name_21 (height VARCHAR, name VARCHAR, spike VARCHAR, block VARCHAR)
{ "SQL_Query": "SELECT COUNT(height) FROM table_name_21 WHERE spike < 352 AND block > 300 AND name = \"pablo meana\"" }
What is the total number of Weight(s), when Block is 300?
CREATE TABLE table_name_26 (weight VARCHAR, block VARCHAR)
{ "SQL_Query": "SELECT COUNT(weight) FROM table_name_26 WHERE block = 300" }
What is the smallest Weight, when Spike is less than 330, when Block is 315, and when Height is greater than 187?
CREATE TABLE table_name_78 (weight INTEGER, height VARCHAR, spike VARCHAR, block VARCHAR)
{ "SQL_Query": "SELECT MIN(weight) FROM table_name_78 WHERE spike < 330 AND block = 315 AND height > 187" }
What is the average Spike, when Name is Gustavo Porporatto, and when Block is greater than 323?
CREATE TABLE table_name_67 (spike INTEGER, name VARCHAR, block VARCHAR)
{ "SQL_Query": "SELECT AVG(spike) FROM table_name_67 WHERE name = \"gustavo porporatto\" AND block > 323" }
What is the Match with Points that are 24?
CREATE TABLE table_name_11 (match VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT match FROM table_name_11 WHERE points = 24" }
What is the Team 2 with a Team 1 that is milli piyango sk?
CREATE TABLE table_name_34 (team_2 VARCHAR, team_1 VARCHAR)
{ "SQL_Query": "SELECT team_2 FROM table_name_34 WHERE team_1 = \"milli piyango sk\"" }
What is the Team 1 with a Team 2 with brest hc meshkov?
CREATE TABLE table_name_69 (team_1 VARCHAR, team_2 VARCHAR)
{ "SQL_Query": "SELECT team_1 FROM table_name_69 WHERE team_2 = \"brest hc meshkov\"" }
What is the position number when there were 29 points, and less than 2 is lost?
CREATE TABLE table_name_86 (position VARCHAR, points VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT COUNT(position) FROM table_name_86 WHERE points = 29 AND lost < 2" }
What is the lowest Points with an against of 20 and less than 1 lost?
CREATE TABLE table_name_92 (points INTEGER, against VARCHAR, lost VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_92 WHERE against = 20 AND lost < 1" }
What is the sum of Points when the against is less than 24 and played is less than 20?
CREATE TABLE table_name_66 (points INTEGER, against VARCHAR, played VARCHAR)
{ "SQL_Query": "SELECT SUM(points) FROM table_name_66 WHERE against < 24 AND played < 20" }
What region is dated April 30, 2004, and cataloged Nebdj058?
CREATE TABLE table_name_37 (region VARCHAR, date VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT region FROM table_name_37 WHERE date = \"april 30, 2004\" AND catalog = \"nebdj058\"" }
What s the format for the catalog nebcd058?
CREATE TABLE table_name_3 (format VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT format FROM table_name_3 WHERE catalog = \"nebcd058\"" }
What region has the catalog sir021-6?
CREATE TABLE table_name_93 (region VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT region FROM table_name_93 WHERE catalog = \"sir021-6\"" }
What label has the catalog nebt058?
CREATE TABLE table_name_10 (label VARCHAR, catalog VARCHAR)
{ "SQL_Query": "SELECT label FROM table_name_10 WHERE catalog = \"nebt058\"" }
What is the game number when the score was l 90–104 (ot)?
CREATE TABLE table_name_59 (game VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(game) FROM table_name_59 WHERE score = \"l 90–104 (ot)\"" }
What is the Score of the game with a Record of 12–12?
CREATE TABLE table_name_93 (score VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_93 WHERE record = \"12–12\"" }
What is the Score for the Game less than 21, and of antonio davis (12)had the High rebounds?
CREATE TABLE table_name_87 (score VARCHAR, game VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_87 WHERE game < 21 AND high_rebounds = \"antonio davis (12)\"" }
What is the Record when antonio davis (14) had the high rebounds?
CREATE TABLE table_name_37 (record VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_37 WHERE high_rebounds = \"antonio davis (14)\"" }
What was the team when vince carter (19) had the high points?
CREATE TABLE table_name_52 (team VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_52 WHERE high_points = \"vince carter (19)\"" }
What is the number for gold where there were total 1, and bronze 1?
CREATE TABLE table_name_86 (gold VARCHAR, total VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT COUNT(gold) FROM table_name_86 WHERE total = 1 AND bronze = 1" }
Which player had a total of 152?
CREATE TABLE table_name_60 (player VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_60 WHERE total = \"152\"" }
Which player won the Masters in 1976?
CREATE TABLE table_name_66 (player VARCHAR, year_s__won VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_66 WHERE year_s__won = \"1976\"" }
What was the total of the player from Spain?
CREATE TABLE table_name_24 (total VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT total FROM table_name_24 WHERE country = \"spain\"" }
Which player won in 1987 and ended with a score of +9?
CREATE TABLE table_name_75 (total VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
{ "SQL_Query": "SELECT total FROM table_name_75 WHERE to_par = \"+9\" AND year_s__won = \"1987\"" }
What's the name of the award given to Team number 23?
CREATE TABLE table_name_77 (award_name VARCHAR, team_number VARCHAR)
{ "SQL_Query": "SELECT award_name FROM table_name_77 WHERE team_number = 23" }
What is Volume:Issue, when Weeks on Top is less than 5, and when Issue Date(s) are 10 July - 24 July?
CREATE TABLE table_name_75 (volume VARCHAR, weeks_on_top VARCHAR, issue_date_s_ VARCHAR)
{ "SQL_Query": "SELECT volume AS :issue FROM table_name_75 WHERE weeks_on_top < 5 AND issue_date_s_ = \"10 july - 24 july\"" }
Which text has traditional characters of 心如猨猴?
CREATE TABLE table_name_47 (text VARCHAR, traditional_characters VARCHAR)
{ "SQL_Query": "SELECT text FROM table_name_47 WHERE traditional_characters = \"心如猨猴\"" }
Which text has simplified characters of 心猿 … 意马?
CREATE TABLE table_name_42 (text VARCHAR, simplified_characters VARCHAR)
{ "SQL_Query": "SELECT text FROM table_name_42 WHERE simplified_characters = \"心猿 … 意马\"" }
Which text has Wade-Giles translation of ai-ma … hsin-yüan?
CREATE TABLE table_name_85 (text VARCHAR, wade_giles VARCHAR)
{ "SQL_Query": "SELECT text FROM table_name_85 WHERE wade_giles = \"ai-ma … hsin-yüan\"" }
What is the Pinyin translation of the Wade-Giles of hsin-yüan-i-ma?
CREATE TABLE table_name_4 (pinyin VARCHAR, wade_giles VARCHAR)
{ "SQL_Query": "SELECT pinyin FROM table_name_4 WHERE wade_giles = \"hsin-yüan-i-ma\"" }
What is the Wade-Giles translation of the Pinyin xīn rú yuánhóu?
CREATE TABLE table_name_44 (wade_giles VARCHAR, pinyin VARCHAR)
{ "SQL_Query": "SELECT wade_giles FROM table_name_44 WHERE pinyin = \"xīn rú yuánhóu\"" }
Which text has a date of c. 1180?
CREATE TABLE table_name_13 (text VARCHAR, date__ce_ VARCHAR)
{ "SQL_Query": "SELECT text FROM table_name_13 WHERE date__ce_ = \"c. 1180\"" }
What is the fewest number of silvers have 0 golds?
CREATE TABLE table_name_42 (silver INTEGER, gold INTEGER)
{ "SQL_Query": "SELECT MIN(silver) FROM table_name_42 WHERE gold < 0" }
What is the smallest total that has 11 golds and bronzes over 2?
CREATE TABLE table_name_42 (total INTEGER, gold VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT MIN(total) FROM table_name_42 WHERE gold = 11 AND bronze > 2" }
What is the total having a bronze value over 1, silver under 5, and ranked 9?
CREATE TABLE table_name_55 (total VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT total FROM table_name_55 WHERE bronze > 1 AND silver < 5 AND rank = \"9\"" }
When did the Chargers play the Denver Broncos before Week 10?
CREATE TABLE table_name_87 (date VARCHAR, week VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_87 WHERE week < 10 AND opponent = \"denver broncos\"" }
What is the sum of Bronze when the rank is more than 11 and gold is less than 0?
CREATE TABLE table_name_47 (bronze INTEGER, rank VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT SUM(bronze) FROM table_name_47 WHERE rank > 11 AND gold < 0" }
What is the total number of Total when Germany is the nation with less than 1 silver?
CREATE TABLE table_name_35 (total VARCHAR, nation VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_35 WHERE nation = \"germany\" AND silver < 1" }
What is the average Total that has a Gold of 0, when the rank is less than 16, the nation is Georgia and there is more than 2 for Bronze?
CREATE TABLE table_name_70 (total INTEGER, bronze VARCHAR, nation VARCHAR, gold VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT AVG(total) FROM table_name_70 WHERE gold = 0 AND rank < 16 AND nation = \"georgia\" AND bronze > 2" }
What is the highest Total when Georgia is the nation with less than 11 rank?
CREATE TABLE table_name_46 (total INTEGER, nation VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT MAX(total) FROM table_name_46 WHERE nation = \"georgia\" AND rank < 11" }
What is the total number of Total with more than 16 rank for the nation of Romania with more than 0 for silver?
CREATE TABLE table_name_36 (total VARCHAR, silver VARCHAR, rank VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_36 WHERE rank > 16 AND nation = \"romania\" AND silver > 0" }
What type of video coding has a format name of dvcam?
CREATE TABLE table_name_69 (video_coding VARCHAR, format_name VARCHAR)
{ "SQL_Query": "SELECT video_coding FROM table_name_69 WHERE format_name = \"dvcam\"" }
What format name has dv as video coding and 4:1:1 as the color sampling?
CREATE TABLE table_name_44 (format_name VARCHAR, video_coding VARCHAR, color_sampling VARCHAR)
{ "SQL_Query": "SELECT format_name FROM table_name_44 WHERE video_coding = \"dv\" AND color_sampling = \"4:1:1\"" }
What bit depth has 4:1:1 as the color sampling?
CREATE TABLE table_name_38 (bit_depth INTEGER, color_sampling VARCHAR)
{ "SQL_Query": "SELECT SUM(bit_depth) FROM table_name_38 WHERE color_sampling = \"4:1:1\"" }
What frame size has pcm 4 ch/16 bit/48khz as audio coding and dvcam as the format name and 4:1:1 as the color sampling?
CREATE TABLE table_name_44 (frame_size VARCHAR, color_sampling VARCHAR, audio_coding VARCHAR, format_name VARCHAR)
{ "SQL_Query": "SELECT frame_size FROM table_name_44 WHERE audio_coding = \"pcm 4 ch/16 bit/48khz\" AND format_name = \"dvcam\" AND color_sampling = \"4:1:1\"" }
Where was the landing site when the duration on the lunar surface was 21:31?
CREATE TABLE table_name_52 (lunar_landing_site VARCHAR, duration_on_lunar_surface VARCHAR)
{ "SQL_Query": "SELECT lunar_landing_site FROM table_name_52 WHERE duration_on_lunar_surface = \"21:31\"" }