context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_name_45 (presentation_of_credentials VARCHAR, appointed_by VARCHAR, representative VARCHAR) | Name the presentation of credentials for appointed by of grover cleveland and representative of charles w. buck | SELECT presentation_of_credentials FROM table_name_45 WHERE appointed_by = "grover cleveland" AND representative = "charles w. buck" |
CREATE TABLE table_name_99 (operator VARCHAR, region VARCHAR) | What is the operator of the ensemble from Yorkshire? | SELECT operator FROM table_name_99 WHERE region = "yorkshire" |
CREATE TABLE table_name_18 (termination_of_mission VARCHAR, appointed_by VARCHAR, representative VARCHAR) | Name the termination of mission for woodrow wilson appointed by and representative of benton mcmillin | SELECT termination_of_mission FROM table_name_18 WHERE appointed_by = "woodrow wilson" AND representative = "benton mcmillin" |
CREATE TABLE table_name_80 (winning_team VARCHAR, winning_driver VARCHAR, name VARCHAR) | What is the Winning Team with Rick Mears' and Kraco Twin 125 (R1)? | SELECT winning_team FROM table_name_80 WHERE winning_driver = "rick mears" AND name = "kraco twin 125 (r1)" |
CREATE TABLE table_name_41 (total_apps INTEGER, fa_cup_apps VARCHAR, total_goals VARCHAR) | What is the highest apps total with FA cup apps of 26 with total number of goals larger than 9? | SELECT MAX(total_apps) FROM table_name_41 WHERE fa_cup_apps = 26 AND total_goals > 9 |
CREATE TABLE table_name_58 (status VARCHAR, name VARCHAR) | What was the status of joon-hyung park 박준형? | SELECT status FROM table_name_58 WHERE name = "joon-hyung park 박준형" |
CREATE TABLE table_name_68 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR) | What is the Report of Winning Team Penske Racing, and what was Rick Mears' Pole position? | SELECT report FROM table_name_68 WHERE winning_team = "penske racing" AND pole_position = "rick mears" |
CREATE TABLE table_name_41 (pole_position VARCHAR, winning_team VARCHAR, name VARCHAR) | What is the Pole Position for Winning Team Penske Racing, and the Name of II Copa Mexico 150? | SELECT pole_position FROM table_name_41 WHERE winning_team = "penske racing" AND name = "ii copa mexico 150" |
CREATE TABLE table_name_50 (fa_cup_apps VARCHAR, fa_cup_goals VARCHAR, total_apps VARCHAR, league_apps VARCHAR) | What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1? | SELECT COUNT(fa_cup_apps) FROM table_name_50 WHERE total_apps > 12 AND league_apps > 38 AND fa_cup_goals > 1 |
CREATE TABLE table_name_70 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR) | How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2? | SELECT COUNT(silver) FROM table_name_70 WHERE gold < 1 AND rank = 13 AND bronze > 2 |
CREATE TABLE table_name_42 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR) | Which entrant has a Honda V6 engine and a Lotus 99t chassis? | SELECT entrant FROM table_name_42 WHERE engine = "honda v6" AND chassis = "lotus 99t" |
CREATE TABLE table_name_68 (runs INTEGER, wickets VARCHAR, matches VARCHAR) | Name the most runs for wickets of 66 and matches less than 13 | SELECT MAX(runs) FROM table_name_68 WHERE wickets = 66 AND matches < 13 |
CREATE TABLE table_name_29 (score VARCHAR, opponent VARCHAR, record VARCHAR) | What is the score of the game with the San Diego Padres as the opponent and a record of 11-23? | SELECT score FROM table_name_29 WHERE opponent = "san diego padres" AND record = "11-23" |
CREATE TABLE table_name_70 (record VARCHAR, date VARCHAR) | What is the record of the game on 13 May? | SELECT record FROM table_name_70 WHERE date = "13 may" |
CREATE TABLE table_name_92 (sweet_potato_ VARCHAR, g_ VARCHAR, soybean__green__ VARCHAR, f_ VARCHAR) | What is the Sweet Potato amount when the soybean amount is 1.65? | SELECT sweet_potato_[g_] FROM table_name_92 WHERE soybean__green__[f_] = "1.65" |
CREATE TABLE table_name_14 (year_built__converted VARCHAR, _ VARCHAR, no_built__converted VARCHAR) | Tell me the year built for number built of 10 | SELECT year_built__converted * _ FROM table_name_14 WHERE no_built__converted * _ = "10" |
CREATE TABLE table_name_82 (name_of_the_song VARCHAR, kind_of_the_song VARCHAR, drama VARCHAR) | What is the name of the song that is part of the opening theme and has a drama of the revolving doors of vengeance? | SELECT name_of_the_song FROM table_name_82 WHERE kind_of_the_song = "opening theme" AND drama = "revolving doors of vengeance" |
CREATE TABLE table_name_24 (max__number_of_players VARCHAR, developer VARCHAR, main_title___alternate_title_s_ VARCHAR) | What is the maximum number of players for the sega game, hang-on (cartridge version)? | SELECT COUNT(max__number_of_players) FROM table_name_24 WHERE developer = "sega" AND main_title___alternate_title_s_ = "hang-on (cartridge version)" |
CREATE TABLE table_name_37 (term_end VARCHAR, party VARCHAR, minister VARCHAR) | When is the term end of Shlomo-Yisrael Ben-Meir of the National Religious Party? | SELECT term_end FROM table_name_37 WHERE party = "national religious party" AND minister = "shlomo-yisrael ben-meir" |
CREATE TABLE table_name_37 (date VARCHAR, time___et__ VARCHAR, game_site VARCHAR) | What date is the 1:00 pm game at arrowhead stadium? | SELECT date FROM table_name_37 WHERE time___et__ = "1:00 pm" AND game_site = "arrowhead stadium" |
CREATE TABLE table_name_65 (points_classification VARCHAR, team_classification VARCHAR, stage VARCHAR) | Name the points classification for predictor-lotto and stage 1 | SELECT points_classification FROM table_name_65 WHERE team_classification = "predictor-lotto" AND stage = "1" |
CREATE TABLE table_name_2 (game_site VARCHAR, time___et__ VARCHAR) | Where will the game at (ET) of 7:00 pm be at? | SELECT game_site FROM table_name_2 WHERE time___et__ = "7:00 pm" |
CREATE TABLE table_name_35 (branding VARCHAR, callsign VARCHAR) | What is the brand of DXRE? | SELECT branding FROM table_name_35 WHERE callsign = "dxre" |
CREATE TABLE table_name_44 (speed VARCHAR, rider VARCHAR) | What is the average speed of rider Peter Williams? | SELECT speed FROM table_name_44 WHERE rider = "peter williams" |
CREATE TABLE table_name_24 (engine VARCHAR, chassis VARCHAR, drivers VARCHAR) | What engine did Casey Mears use on the Reynard 01i Chassis? | SELECT engine FROM table_name_24 WHERE chassis = "reynard 01i" AND drivers = "casey mears" |
CREATE TABLE table_name_97 (player VARCHAR, pick__number VARCHAR, mls_team VARCHAR) | Tell me the player for pick number less than 29 and mls team of chicago fire | SELECT player FROM table_name_97 WHERE pick__number < 29 AND mls_team = "chicago fire" |
CREATE TABLE table_name_21 (circuit VARCHAR, winning_driver VARCHAR, round VARCHAR) | What circuit did Rupert Keegan win in round 8? | SELECT circuit FROM table_name_21 WHERE winning_driver = "rupert keegan" AND round = 8 |
CREATE TABLE table_name_78 (award VARCHAR, director_s_ VARCHAR) | Name the award for candida scott knight | SELECT award FROM table_name_78 WHERE director_s_ = "candida scott knight" |
CREATE TABLE table_name_22 (sideline_reporter_s_ VARCHAR, year VARCHAR, network VARCHAR, play_by_play VARCHAR) | Who are the sideline reporter(s) on NBC with al michaels on the play-by-play after 2013? | SELECT sideline_reporter_s_ FROM table_name_22 WHERE network = "nbc" AND play_by_play = "al michaels" AND year > 2013 |
CREATE TABLE table_name_69 (peroutka INTEGER, others VARCHAR, electors VARCHAR) | What is the highest Peroutka with 46 others, and less than 15 electors? | SELECT MAX(peroutka) FROM table_name_69 WHERE others = 46 AND electors < 15 |
CREATE TABLE table_name_36 (higher_harmonics VARCHAR, speed VARCHAR) | Which higher harmonics have a speed of 0.0821373? | SELECT higher_harmonics FROM table_name_36 WHERE speed = "0.0821373" |
CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR) | Which home team score occurred at Victoria Park? | SELECT home_team AS score FROM table_name_42 WHERE venue = "victoria park" |
CREATE TABLE table_name_33 (cars_entered INTEGER, winning_driver VARCHAR, season VARCHAR) | What are the largest Cars Entered with a Winning Driver of rodger ward, and a Season smaller than 1959? | SELECT MAX(cars_entered) FROM table_name_33 WHERE winning_driver = "rodger ward" AND season < 1959 |
CREATE TABLE table_name_23 (avg_speed VARCHAR, distance VARCHAR, winning_driver VARCHAR) | What was the average speed over 18.00km for winning driver Jean-Claude Andruet? | SELECT avg_speed FROM table_name_23 WHERE distance = "18.00km" AND winning_driver = "jean-claude andruet" |
CREATE TABLE table_name_55 (tournament VARCHAR) | What shows for 2007 at the Olympic Games as tournament. | SELECT 2007 FROM table_name_55 WHERE tournament = "olympic games" |
CREATE TABLE table_name_95 (position VARCHAR, round VARCHAR, college VARCHAR) | What position does the player from Oklahoma who was drafted in round 7 play? | SELECT position FROM table_name_95 WHERE round = 7 AND college = "oklahoma" |
CREATE TABLE table_name_38 (event VARCHAR, competition VARCHAR, year VARCHAR) | What competition was the World Championships before 2011? | SELECT event FROM table_name_38 WHERE competition = "world championships" AND year < 2011 |
CREATE TABLE table_name_12 (years_as_tallest VARCHAR, street_address VARCHAR) | What's the Years as tallest with a Street address of 324 E. 11th Street? | SELECT years_as_tallest FROM table_name_12 WHERE street_address = "324 e. 11th street" |
CREATE TABLE table_name_15 (tires VARCHAR, team VARCHAR, engine VARCHAR, chassis VARCHAR) | What tires did BFM Enterprises run on their Offy engine and manta chassis? | SELECT tires FROM table_name_15 WHERE engine = "offy" AND chassis = "manta" AND team = "bfm enterprises" |
CREATE TABLE table_name_40 (height_feet___m VARCHAR, street_address VARCHAR) | What is listsed as the Height feet/m and has a Street address of 2345 Grand Avenue? | SELECT height_feet___m FROM table_name_40 WHERE street_address = "2345 grand avenue" |
CREATE TABLE table_name_60 (length VARCHAR, daily_ridership INTEGER) | Daily ridership greater that 414 is associated with which length? | SELECT length FROM table_name_60 WHERE daily_ridership > 414 |
CREATE TABLE table_name_27 (Id VARCHAR) | what is the listing for 1999 when 1990 is more than 0, 2003 is 3, 2007 is more than 1 and 1996 is more than 0? | SELECT SUM(1999) FROM table_name_27 WHERE 1990 > 0 AND 2003 = 3 AND 2007 > 1 AND 1996 > 0 |
CREATE TABLE table_name_75 (competition VARCHAR, venue VARCHAR, notes VARCHAR, year VARCHAR) | Prior to 2004, what was the name of the competition that took place in Johannesburg, South Africa and had the 400 m hurdles event? | SELECT competition FROM table_name_75 WHERE notes = "400 m hurdles" AND year < 2004 AND venue = "johannesburg, south africa" |
CREATE TABLE table_name_56 (position VARCHAR, competition VARCHAR) | What place did Târlea come in at the European Indoor Championships? | SELECT position FROM table_name_56 WHERE competition = "european indoor championships" |
CREATE TABLE table_name_24 (sex_ratio__child_ INTEGER, work_participation___percentage_ VARCHAR) | What is the child sex ration for the population with 37.7% work participation? | SELECT MAX(sex_ratio__child_) FROM table_name_24 WHERE work_participation___percentage_ = "37.7%" |
CREATE TABLE table_name_95 (appearances VARCHAR, goals VARCHAR, rank VARCHAR) | How many appearances were made by people that had 5 goals and less than 7 rank? | SELECT COUNT(appearances) FROM table_name_95 WHERE goals = 5 AND rank < 7 |
CREATE TABLE table_name_29 (name VARCHAR, round VARCHAR) | Tell me the name for round of e | SELECT name FROM table_name_29 WHERE round = "e" |
CREATE TABLE table_name_78 (wins VARCHAR, series VARCHAR, position VARCHAR) | How many wins have a Series of formula nippon, and a Position of 8th? | SELECT wins FROM table_name_78 WHERE series = "formula nippon" AND position = "8th" |
CREATE TABLE table_name_6 (theme VARCHAR, days VARCHAR, series VARCHAR) | What's the theme for a series of season 3 with smaller than 148 days? | SELECT theme FROM table_name_6 WHERE days < 148 AND series = "season 3" |
CREATE TABLE table_name_51 (team VARCHAR, win__number VARCHAR, rating VARCHAR) | What is the name of the team that had 1 win and a rating of +85? | SELECT team FROM table_name_51 WHERE win__number = "1" AND rating = "+85" |
CREATE TABLE table_name_47 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR) | Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average? | SELECT AVG(overall) FROM table_name_47 WHERE position = "defensive tackle" AND round = 4 AND pick__number < 36 |
CREATE TABLE table_name_15 (winning_team VARCHAR, circuit VARCHAR, winning_driver VARCHAR, pole_position VARCHAR) | For the race held at the Cleveland Burke Lakefront Airport circuit, with winning driver Emerson Fittipaldi and pole position Michael Andretti, what was the winning team? | SELECT winning_team FROM table_name_15 WHERE winning_driver = "emerson fittipaldi" AND pole_position = "michael andretti" AND circuit = "cleveland burke lakefront airport" |
CREATE TABLE table_name_47 (muzzle_device VARCHAR, barrel_twist VARCHAR, stock VARCHAR) | What is the muzzle device with a 1:7 barrel twist and a stock 4th generation? | SELECT muzzle_device FROM table_name_47 WHERE barrel_twist = "1:7" AND stock = "4th generation" |
CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR) | What position is played by farmar, jordan jordan farmar? | SELECT position FROM table_name_29 WHERE player = "farmar, jordan jordan farmar" |
CREATE TABLE table_name_7 (last_performance VARCHAR, name VARCHAR, status VARCHAR, style VARCHAR) | what last performance has past status, ballet as style and tommy batchelor? | SELECT last_performance FROM table_name_7 WHERE status = "past" AND style = "ballet" AND name = "tommy batchelor" |
CREATE TABLE table_name_20 (city VARCHAR, host VARCHAR, region VARCHAR, state VARCHAR) | What city in the east region in North Carolina was the round where the University of Richmond was the host? | SELECT city FROM table_name_20 WHERE region = "east" AND state = "north carolina" AND host = "university of richmond" |
CREATE TABLE table_name_67 (crystal_structure VARCHAR, no_of_cu_o_planes_in_unit_cell VARCHAR, t_c__k_ VARCHAR) | Which crystal structures has a Tc(K) of 110 and the number of Cu-O planes in the unit cell is 3? | SELECT crystal_structure FROM table_name_67 WHERE no_of_cu_o_planes_in_unit_cell = 3 AND t_c__k_ = 110 |
CREATE TABLE table_name_62 (host VARCHAR, state VARCHAR, venue VARCHAR) | What was the host of the round in the Montagne Center in Texas? | SELECT host FROM table_name_62 WHERE state = "texas" AND venue = "montagne center" |
CREATE TABLE table_name_4 (event VARCHAR, res VARCHAR, opponent VARCHAR) | Which Event resulted in a Win for Opponent, Shane Ott? | SELECT event FROM table_name_4 WHERE res = "win" AND opponent = "shane ott" |
CREATE TABLE table_name_16 (prime_mover VARCHAR, model VARCHAR) | What is the prime mover of the locomotive with a fa-2 model? | SELECT prime_mover FROM table_name_16 WHERE model = "fa-2" |
CREATE TABLE table_name_38 (goals VARCHAR, name VARCHAR, since VARCHAR, nat VARCHAR, transfer_fee VARCHAR) | How many goals was by Rix from Eng who started before 2005 in the youth system? | SELECT COUNT(goals) FROM table_name_38 WHERE nat = "eng" AND transfer_fee = "youth system" AND since < 2005 AND name = "rix" |
CREATE TABLE table_name_2 (film VARCHAR, music_director VARCHAR, year VARCHAR, language VARCHAR) | What is the 2007 film in Hindi with a music director Shantanu moitra? | SELECT film FROM table_name_2 WHERE year = 2007 AND language = "hindi" AND music_director = "shantanu moitra" |
CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR, score VARCHAR) | Tell me the tournament with a hard surface for 6–1, 6–2 | SELECT tournament FROM table_name_99 WHERE surface = "hard" AND score = "6–1, 6–2" |
CREATE TABLE table_name_29 (section VARCHAR, position VARCHAR, season VARCHAR) | Tell me the section for position of 8th and season of 2003 | SELECT section FROM table_name_29 WHERE position = "8th" AND season = "2003" |
CREATE TABLE table_name_55 (rank VARCHAR, time VARCHAR, lane VARCHAR) | What is the number of the rank when the time is 2:15.98, in a lane larger than 7? | SELECT COUNT(rank) FROM table_name_55 WHERE time = "2:15.98" AND lane > 7 |
CREATE TABLE table_name_64 (lane INTEGER, rank VARCHAR) | What is the smallest lane for rank 6? | SELECT MIN(lane) FROM table_name_64 WHERE rank = 6 |
CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR) | Tell me the average bronze for rank of 43 and total less than 11 | SELECT AVG(bronze) FROM table_name_41 WHERE rank = "43" AND total < 11 |
CREATE TABLE table_name_31 (format VARCHAR, frequency VARCHAR) | Say the frequency of 1290 khz | SELECT format FROM table_name_31 WHERE frequency = "1290 khz" |
CREATE TABLE table_name_88 (calls VARCHAR, frequency VARCHAR) | Tell me the calls for frequency of 1290 khz | SELECT calls FROM table_name_88 WHERE frequency = "1290 khz" |
CREATE TABLE table_name_73 (role VARCHAR, series_title VARCHAR) | The series titled dragon laws i: the undercover has what role? | SELECT role FROM table_name_73 WHERE series_title = "dragon laws i: the undercover" |
CREATE TABLE table_name_56 (time VARCHAR, country VARCHAR, lane VARCHAR) | For how long did Bolivia have a lane greater than 6? | SELECT COUNT(time) FROM table_name_56 WHERE country = "bolivia" AND lane > 6 |
CREATE TABLE table_name_72 (country VARCHAR, heat_rank VARCHAR, overall_rank VARCHAR) | Which country is ranked 56 overall and has a heat rank smaller than 8? | SELECT country FROM table_name_72 WHERE heat_rank < 8 AND overall_rank = "56" |
CREATE TABLE table_name_80 (week INTEGER, venue VARCHAR, attendance VARCHAR) | Tell me the highest week for metropolitan stadium for attendance more than 47,644 | SELECT MAX(week) FROM table_name_80 WHERE venue = "metropolitan stadium" AND attendance > 47 OFFSET 644 |
CREATE TABLE table_name_43 (player VARCHAR, position VARCHAR, school_country VARCHAR) | Which player plays forward and is from Kentucky? | SELECT player FROM table_name_43 WHERE position = "forward" AND school_country = "kentucky" |
CREATE TABLE table_name_43 (promotions INTEGER, team VARCHAR, relegations VARCHAR) | Whats the highest Promotions that has a Team of Pallacanestro Messina, along with Relegations larger than 0? | SELECT MAX(promotions) FROM table_name_43 WHERE team = "pallacanestro messina" AND relegations > 0 |
CREATE TABLE table_name_40 (points INTEGER, chassis VARCHAR) | What are the average points with a Chassis of zakspeed 881? | SELECT AVG(points) FROM table_name_40 WHERE chassis = "zakspeed 881" |
CREATE TABLE table_name_15 (year VARCHAR, party VARCHAR, constituency VARCHAR) | What year was Hazel Grove the constituent for the liberal party? | SELECT year FROM table_name_15 WHERE party = "liberal" AND constituency = "hazel grove" |
CREATE TABLE table_name_18 (days VARCHAR, year VARCHAR, constituency VARCHAR) | What are the number of days in 1945 where the constituent was heywood and radcliffe? | SELECT days FROM table_name_18 WHERE year = "1945" AND constituency = "heywood and radcliffe" |
CREATE TABLE table_name_74 (laps INTEGER, rider VARCHAR, grid VARCHAR, bike VARCHAR) | Tell me the average Laps for grid larger than 12 and bikes of ducati 999rs for dean ellison | SELECT AVG(laps) FROM table_name_74 WHERE grid > 12 AND bike = "ducati 999rs" AND rider = "dean ellison" |
CREATE TABLE table_name_38 (venue VARCHAR, club VARCHAR, league VARCHAR, sport VARCHAR, championships__years_ VARCHAR) | Which Venue has a Sport of baseball, Championships (Years) of 0, a League of milb, florida state league, and a Club of jupiter hammerheads? | SELECT venue FROM table_name_38 WHERE sport = "baseball" AND championships__years_ = "0" AND league = "milb, florida state league" AND club = "jupiter hammerheads" |
CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR) | Which club has a League of american basketball association, and a Venue of tba? | SELECT club FROM table_name_86 WHERE league = "american basketball association" AND venue = "tba" |
CREATE TABLE table_name_97 (name VARCHAR, roll VARCHAR) | Which name has a Roll of 270? | SELECT name FROM table_name_97 WHERE roll = 270 |
CREATE TABLE table_name_63 (venue VARCHAR, opponent VARCHAR) | Where did Zimbabwe play? | SELECT venue FROM table_name_63 WHERE opponent = "zimbabwe" |
CREATE TABLE table_name_78 (money_requested__£_ VARCHAR, entrepreneur_s_ VARCHAR) | How much money did Ian Chamings request? | SELECT money_requested__£_ FROM table_name_78 WHERE entrepreneur_s_ = "ian chamings" |
CREATE TABLE table_name_8 (height_of_bridge_structure VARCHAR, opened VARCHAR, name VARCHAR) | How tall is the Anqing Bridge which opened prior to 2011? | SELECT height_of_bridge_structure FROM table_name_8 WHERE opened < 2011 AND name = "anqing bridge" |
CREATE TABLE table_name_42 (home_team VARCHAR, venue VARCHAR) | Who was the home team in the game played at arden street oval? | SELECT home_team AS score FROM table_name_42 WHERE venue = "arden street oval" |
CREATE TABLE table_name_31 (drivers VARCHAR, team VARCHAR) | Who drove for Arciero Racing? | SELECT drivers FROM table_name_31 WHERE team = "arciero racing" |
CREATE TABLE table_name_22 (caps VARCHAR, player VARCHAR) | How many caps did the player Mile Sterjovski have? | SELECT caps FROM table_name_22 WHERE player = "mile sterjovski" |
CREATE TABLE table_name_33 (report VARCHAR, pole_position VARCHAR, winning_driver VARCHAR) | Which report includes Bobby Unser as the Pole Position and Rick Mears as the Winning driver? | SELECT report FROM table_name_33 WHERE pole_position = "bobby unser" AND winning_driver = "rick mears" |
CREATE TABLE table_name_63 (guns VARCHAR, year VARCHAR, class VARCHAR, rank VARCHAR) | Tell me the guns for third-rate ship of the line and rank of vice-admiral with year of 1802 | SELECT guns FROM table_name_63 WHERE class = "third-rate ship of the line" AND rank = "vice-admiral" AND year = "1802" |
CREATE TABLE table_name_32 (venue VARCHAR, home_team VARCHAR) | What is Melbourne's home venue? | SELECT venue FROM table_name_32 WHERE home_team = "melbourne" |
CREATE TABLE table_name_67 (fixtures INTEGER, round VARCHAR, clubs_involved VARCHAR) | In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved? | SELECT SUM(fixtures) FROM table_name_67 WHERE round = "sixth round" AND clubs_involved > 15 |
CREATE TABLE table_name_8 (club VARCHAR, lost VARCHAR, tries_for VARCHAR) | What is the Club, when the value for Lost is 9, and when the value for Tries is 55? | SELECT club FROM table_name_8 WHERE lost = "9" AND tries_for = "55" |
CREATE TABLE table_name_64 (away_team VARCHAR, venue VARCHAR) | Who was the opposing team at the match played at the Arden Street Oval? | SELECT away_team FROM table_name_64 WHERE venue = "arden street oval" |
CREATE TABLE table_name_15 (capacity VARCHAR, stadium VARCHAR) | Tell me the capacity for city park stadium | SELECT capacity FROM table_name_15 WHERE stadium = "city park stadium" |
CREATE TABLE table_name_66 (date_of_birth VARCHAR, begin_date VARCHAR) | What was the date of birth of the member of the United States House of Representatives that began their term on April 24, 1902? | SELECT date_of_birth FROM table_name_66 WHERE begin_date = "april 24, 1902" |
CREATE TABLE table_name_43 (category VARCHAR, nominated_work VARCHAR, award VARCHAR) | What category is the nominated work of cecilie, winner of the robert award? | SELECT category FROM table_name_43 WHERE nominated_work = "cecilie" AND award = "robert award" |
CREATE TABLE table_name_43 (losses INTEGER, years VARCHAR) | How many losses did Notre Dame have in 1904? | SELECT AVG(losses) FROM table_name_43 WHERE years = "1904" |
CREATE TABLE table_name_83 (years_in_toronto VARCHAR, player VARCHAR) | How long has Sebastian Telfair played for Toronto? | SELECT years_in_toronto FROM table_name_83 WHERE player = "sebastian telfair" |
CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR) | Who is the home captain that played at Edgbaston? | SELECT home_captain FROM table_name_22 WHERE venue = "edgbaston" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.