context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_12792876_4 (try_bonus VARCHAR, points_against VARCHAR) | Name the try bonus of points against at 430 | SELECT try_bonus FROM table_12792876_4 WHERE points_against = "430" |
CREATE TABLE table_name_69 (high_assists VARCHAR, date VARCHAR) | What is the High assists for march 25? | SELECT high_assists FROM table_name_69 WHERE date = "march 25" |
CREATE TABLE table_name_81 (game INTEGER, high_assists VARCHAR) | What is the highest Game when Morris Peterson (8) had the high assists? | SELECT MAX(game) FROM table_name_81 WHERE high_assists = "morris peterson (8)" |
CREATE TABLE table_12834315_1 (colt_model_no VARCHAR, name VARCHAR, case_deflector VARCHAR, bayonet_lug VARCHAR, stock VARCHAR) | What are the Colt model numbers of the models named GAU-5A/A, with no bayonet lug, no case deflector and stock of 2nd generation? | SELECT colt_model_no FROM table_12834315_1 WHERE bayonet_lug = "No" AND stock = "2nd Generation" AND case_deflector = "No" AND name = "GAU-5A/A" |
CREATE TABLE table_1281200_1 (winners_from_previous_round VARCHAR, phase VARCHAR, clubs_involved VARCHAR) | During the first phase portion of phase and having 16 clubs involved; what would you find for the winners from previous round? | SELECT winners_from_previous_round FROM table_1281200_1 WHERE phase = "First phase" AND clubs_involved = 16 |
CREATE TABLE table_12842068_1 (submitting_country VARCHAR, film_title_used_in_nomination VARCHAR) | What country submitted the movie the orphanage? | SELECT submitting_country FROM table_12842068_1 WHERE film_title_used_in_nomination = "The Orphanage" |
CREATE TABLE table_12896884_1 (endowment VARCHAR, football_stadium VARCHAR) | How many endowments does Mosaic Stadium have? | SELECT COUNT(endowment) FROM table_12896884_1 WHERE football_stadium = "Mosaic Stadium" |
CREATE TABLE table_name_14 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR) | What is the lowest events that have 17 as the cuts made, with a top-25 less than 8? | SELECT MIN(events) FROM table_name_14 WHERE cuts_made = 17 AND top_25 < 8 |
CREATE TABLE table_name_99 (points VARCHAR, position VARCHAR, loses VARCHAR, goals_scored VARCHAR) | How many points are there with more losses than 16, more goals than 44, and a smaller position than 13? | SELECT COUNT(points) FROM table_name_99 WHERE loses > 16 AND goals_scored > 44 AND position < 13 |
CREATE TABLE table_1341453_20 (candidates VARCHAR, first_elected VARCHAR) | How many candidates were elected first in 1980? | SELECT COUNT(candidates) FROM table_1341453_20 WHERE first_elected = 1980 |
CREATE TABLE table_name_46 (date VARCHAR, surface VARCHAR, tournament VARCHAR) | When has a Surface of hard, a Tournament of wrexham , great britain? | SELECT date FROM table_name_46 WHERE surface = "hard" AND tournament = "wrexham , great britain" |
CREATE TABLE table_1341522_50 (status VARCHAR, opponent VARCHAR) | What was the result of the election of doc hastings (r) 53.3% jay inslee (d) 46.7% | SELECT status FROM table_1341522_50 WHERE opponent = "Doc Hastings (R) 53.3% Jay Inslee (D) 46.7%" |
CREATE TABLE table_name_26 (frequency VARCHAR, branding VARCHAR) | Which Frequency has a Branding of country 600? | SELECT frequency FROM table_name_26 WHERE branding = "country 600" |
CREATE TABLE table_name_88 (class_aA VARCHAR, class_a VARCHAR, class_aAA VARCHAR, burnet VARCHAR) | If the Class A is Anton and Class AAA is Burnet, what is Class AA? | SELECT class_aA FROM table_name_88 WHERE class_a = "anton" AND class_aAA = burnet |
CREATE TABLE table_name_61 (attendance VARCHAR, week VARCHAR, game_site VARCHAR, opponent VARCHAR) | After week 2, how many people attended the game at Rich Stadium against the Miami Dolphins? | SELECT COUNT(attendance) FROM table_name_61 WHERE game_site = "rich stadium" AND opponent = "miami dolphins" AND week > 2 |
CREATE TABLE table_1341604_10 (district VARCHAR, result VARCHAR) | what's the district with result being new seat democratic gain | SELECT district FROM table_1341604_10 WHERE result = "New seat Democratic gain" |
CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR) | Name the number of first elected for phil crane | SELECT COUNT(first_elected) FROM table_1341672_14 WHERE incumbent = "Phil Crane" |
CREATE TABLE table_name_46 (solidat__ INTEGER, sn_sb___percentage_ VARCHAR, liquidat__°c_ VARCHAR) | When the Sn/Sb (%) of 13/17, and a Liquidat (c) bigger than 283 what's the solidat (c)? | SELECT SUM(solidat__) AS °c_ FROM table_name_46 WHERE sn_sb___percentage_ = "13/17" AND liquidat__°c_ > 283 |
CREATE TABLE table_name_1 (song VARCHAR, weeks_on_top VARCHAR, artist VARCHAR) | Which song by David Essex spent 2 weeks on top of the charts? | SELECT song FROM table_name_1 WHERE weeks_on_top = 2 AND artist = "david essex" |
CREATE TABLE table_1342218_17 (candidates VARCHAR, party VARCHAR, incumbent VARCHAR) | List all candidates in the democratic party where the election had the incumbent Frank Chelf running. | SELECT candidates FROM table_1342218_17 WHERE party = "Democratic" AND incumbent = "Frank Chelf" |
CREATE TABLE table_name_72 (grid VARCHAR, time_retired VARCHAR) | How many grids had a Time/Retired of +4 laps? | SELECT COUNT(grid) FROM table_name_72 WHERE time_retired = "+4 laps" |
CREATE TABLE table_name_3 (laps VARCHAR, constructor VARCHAR, time_retired VARCHAR) | How many laps had a constructor of toyota and a Time/Retired of +13.409? | SELECT COUNT(laps) FROM table_name_3 WHERE constructor = "toyota" AND time_retired = "+13.409" |
CREATE TABLE table_name_35 (grid INTEGER, constructor VARCHAR, laps VARCHAR) | How many grids had a constructor of renault and less than 4 laps? | SELECT SUM(grid) FROM table_name_35 WHERE constructor = "renault" AND laps < 4 |
CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR) | How many in total were elected first in lost renomination? | SELECT COUNT(first_elected) FROM table_1342338_3 WHERE result = "Lost renomination" |
CREATE TABLE table_name_30 (result VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR) | What is the result for the distance of 10f, and a winner or 2nd of Lampra? | SELECT result FROM table_name_30 WHERE distance = "10f" AND winner_or_2nd = "lampra" |
CREATE TABLE table_1342359_39 (result VARCHAR, incumbent VARCHAR) | What is the result for thomas s. mcmillan? | SELECT result FROM table_1342359_39 WHERE incumbent = "Thomas S. McMillan" |
CREATE TABLE table_1342359_5 (party VARCHAR, incumbent VARCHAR) | what's the party with incumbent being william e. evans | SELECT party FROM table_1342359_5 WHERE incumbent = "William E. Evans" |
CREATE TABLE table_13477468_3 (written_by VARCHAR, us_viewers__millions_ VARCHAR) | Who wrote the episode that received 1.83 million U.S. viewers? | SELECT written_by FROM table_13477468_3 WHERE us_viewers__millions_ = "1.83" |
CREATE TABLE table_name_52 (volleyball VARCHAR, golf VARCHAR, indoor_track VARCHAR) | Which Volleyball has a Golf of 2, and an Indoor track of 3? | SELECT volleyball FROM table_name_52 WHERE golf = "2" AND indoor_track = "3" |
CREATE TABLE table_name_40 (date VARCHAR, opponent VARCHAR, game VARCHAR, location VARCHAR, points VARCHAR) | Date for scotiabank place with less than 20 points, game larger than 16, and an opponent of montreal canadiens? | SELECT date FROM table_name_40 WHERE location = "scotiabank place" AND points < 20 AND game > 16 AND opponent = "montreal canadiens" |
CREATE TABLE table_name_40 (type VARCHAR, moving_from VARCHAR) | What is the type when Rangers are the moving from? | SELECT type FROM table_name_40 WHERE moving_from = "rangers" |
CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) | What date is aston villa away? | SELECT date FROM table_name_67 WHERE away_team = "aston villa" |
CREATE TABLE table_13619135_7 (location_attendance VARCHAR, team VARCHAR) | Where did the team play and what was the attendance against new jersey? | SELECT location_attendance FROM table_13619135_7 WHERE team = "New Jersey" |
CREATE TABLE table_name_95 (tf1__number INTEGER, official__number VARCHAR, air_date__france_ VARCHAR) | What is the most elevated TF1 # that has an Official # larger than 47, and an Air date (France) of 13 july 2010? | SELECT MAX(tf1__number) FROM table_name_95 WHERE official__number > 47 AND air_date__france_ = "13 july 2010" |
CREATE TABLE table_name_58 (location VARCHAR, power__kw_ VARCHAR, branding VARCHAR) | What's the location of Mom's Radio 95.9 Naga having a power of 10kw? | SELECT location FROM table_name_58 WHERE power__kw_ = "10kw" AND branding = "mom's radio 95.9 naga" |
CREATE TABLE table_name_23 (losses INTEGER, win__percentage VARCHAR, no_result VARCHAR) | What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0? | SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = "71.43%" AND no_result > 0 |
CREATE TABLE table_13758945_3 (won VARCHAR, points_against VARCHAR) | what's the won with points against being 597 | SELECT won FROM table_13758945_3 WHERE points_against = "597" |
CREATE TABLE table_name_6 (year VARCHAR, wins VARCHAR, win__percentage VARCHAR, matches VARCHAR) | What year was the Win percentage 50.00%, with more than 14 matches, and wins more than 8? | SELECT year FROM table_name_6 WHERE win__percentage = "50.00%" AND matches > 14 AND wins > 8 |
CREATE TABLE table_name_8 (area__km²_ VARCHAR, pop__km² VARCHAR) | What is the area for a population of 0.58 km? | SELECT area__km²_ FROM table_name_8 WHERE pop__km² = 0.58 |
CREATE TABLE table_name_40 (Box VARCHAR, away_team VARCHAR) | What was the box score for the game where the away team was the sydney spirit? | SELECT Box AS score FROM table_name_40 WHERE away_team = "sydney spirit" |
CREATE TABLE table_name_41 (method VARCHAR, event VARCHAR) | What method of resolution was the fight that took place at hardcore championship fighting: destiny? | SELECT method FROM table_name_41 WHERE event = "hardcore championship fighting: destiny" |
CREATE TABLE table_14038363_1 (position VARCHAR, player VARCHAR) | How many position does Teodor Salparov play on? | SELECT COUNT(position) FROM table_14038363_1 WHERE player = "Teodor Salparov" |
CREATE TABLE table_14181578_1 (games_played INTEGER, goals_for_against VARCHAR) | what is the minimum games played with goals for/against being 7-5 | SELECT MIN(games_played) FROM table_14181578_1 WHERE goals_for_against = "7-5" |
CREATE TABLE table_14209455_1 (fri_30_may VARCHAR, mon_26_may VARCHAR) | what is the numbr for fri may 30 and mon may 26 is 19' 02.890 118.847mph? | SELECT fri_30_may FROM table_14209455_1 WHERE mon_26_may = "19' 02.890 118.847mph" |
CREATE TABLE table_name_69 (pressure_in_hpa__mbar_ VARCHAR, vacuum_range VARCHAR) | What is the Pressure in hPa (mbar), when Vacuum Range is "medium vacuum"? | SELECT pressure_in_hpa__mbar_ FROM table_name_69 WHERE vacuum_range = "medium vacuum" |
CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR) | what is the score on 22 february 1993? | SELECT score FROM table_name_10 WHERE date = "22 february 1993" |
CREATE TABLE table_14342592_8 (extra_points VARCHAR, position VARCHAR) | Name the extra points for left guard | SELECT extra_points FROM table_14342592_8 WHERE position = "Left guard" |
CREATE TABLE table_name_4 (genre VARCHAR, type VARCHAR, developer_s_ VARCHAR) | What type of 3D game did Valve Corporation release? | SELECT genre FROM table_name_4 WHERE type = "3d" AND developer_s_ = "valve corporation" |
CREATE TABLE table_name_39 (date_of_attack VARCHAR, fate VARCHAR, cargo VARCHAR) | What is the Date of attack of the ship with iron ore sunk by u-101 *? | SELECT date_of_attack FROM table_name_39 WHERE fate = "sunk by u-101 *" AND cargo = "iron ore" |
CREATE TABLE table_name_22 (points INTEGER, played VARCHAR, goal_difference VARCHAR, losses VARCHAR, goals_against VARCHAR) | What is the fewest points for positions with under 12 losses, goals against under 50, goal difference over 11, and under 30 played? | SELECT MIN(points) FROM table_name_22 WHERE losses < 12 AND goals_against < 50 AND goal_difference > 11 AND played < 30 |
CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, cmdexe___commandcom VARCHAR) | When the cmd.exe / command.com is type, what are all associated values for powershell (cmdlet)? | SELECT powershell__cmdlet_ FROM table_14465871_1 WHERE cmdexe___commandcom = "type" |
CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, unix_shell VARCHAR) | How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv? | SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = "env, export, set, setenv" |
CREATE TABLE table_name_9 (event VARCHAR, time VARCHAR, round VARCHAR, location VARCHAR) | What is Event, when Round is "1", when Location is "New Town, North Dakota , United States" and when Time is "4:12"? | SELECT event FROM table_name_9 WHERE round = 1 AND location = "new town, north dakota , united states" AND time = "4:12" |
CREATE TABLE table_1447085_1 (median_house__hold_income VARCHAR, place VARCHAR) | What is the median household income for Woodside? | SELECT median_house__hold_income FROM table_1447085_1 WHERE place = "Woodside" |
CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR) | Which common has an area (km2) of 38.38? | SELECT common FROM table_1449169_1 WHERE area__km_2__ = "38.38" |
CREATE TABLE table_1449176_1 (density__inhabitants_km_2__ VARCHAR, area__km_2__ VARCHAR) | What is the density of the common with an area of 20.4 km^2? | SELECT density__inhabitants_km_2__ FROM table_1449176_1 WHERE area__km_2__ = "20.4" |
CREATE TABLE table_name_46 (females INTEGER, males VARCHAR, rank VARCHAR) | What is the biggest number of females where the males are at 28.2 with a rank greater than 5? | SELECT MAX(females) FROM table_name_46 WHERE males = 28.2 AND rank > 5 |
CREATE TABLE table_14608759_1 (result VARCHAR, week VARCHAR) | What are week 4 results? | SELECT result FROM table_14608759_1 WHERE week = 4 |
CREATE TABLE table_1473672_8 (player VARCHAR, nhl_team VARCHAR) | Name the player for chicago black hawks | SELECT player FROM table_1473672_8 WHERE nhl_team = "Chicago Black Hawks" |
CREATE TABLE table_name_34 (nfl_club VARCHAR, pick VARCHAR, position VARCHAR) | What is the NFL club of the cornerback player with a pick greater than 63? | SELECT nfl_club FROM table_name_34 WHERE pick > 63 AND position = "cornerback" |
CREATE TABLE table_name_67 (location VARCHAR, date VARCHAR, competition VARCHAR, lineup VARCHAR) | Which Location has a Competition of Group Stage, a Lineup of Start and a Date of 2000-09-17? | SELECT location FROM table_name_67 WHERE competition = "group stage" AND lineup = "start" AND date = "2000-09-17" |
CREATE TABLE table_14871601_2 (scored INTEGER, points VARCHAR, team VARCHAR) | What is the value scored when there were 19 points for the team 3 de Febrero? | SELECT MAX(scored) FROM table_14871601_2 WHERE points = 19 AND team = "3 de Febrero" |
CREATE TABLE table_name_57 (points_1 INTEGER, goal_difference VARCHAR, drawn VARCHAR, goals_against VARCHAR, lost VARCHAR) | What is the most points 1 when the goals against are fewer than 97, lost less than 22, 9 draws and goal difference of +28? | SELECT MAX(points_1) FROM table_name_57 WHERE goals_against < 97 AND lost < 22 AND drawn = 9 AND goal_difference = "+28" |
CREATE TABLE table_name_9 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR) | What is the maximum lost with points 1 more than 58 and 66 goals against? | SELECT MAX(lost) FROM table_name_9 WHERE points_1 > 58 AND goals_against = 66 |
CREATE TABLE table_name_29 (director VARCHAR, studio VARCHAR, title VARCHAR) | Who directed Predator that was filmed with Fox Studio? | SELECT director FROM table_name_29 WHERE studio = "fox" AND title = "predator" |
CREATE TABLE table_14903081_1 (current_venue VARCHAR, location VARCHAR) | Which current venues location is Mason, Ohio? | SELECT current_venue FROM table_14903081_1 WHERE location = "Mason, Ohio" |
CREATE TABLE table_14929574_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR) | How many viewers did the episode directed by David Nutter draw in? | SELECT us_viewers__million_ FROM table_14929574_3 WHERE directed_by = "David Nutter" |
CREATE TABLE table_14929574_3 (series__number VARCHAR, us_viewers__million_ VARCHAR) | Which episode number drew in 3.35 million viewers in the United States? | SELECT COUNT(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = "3.35" |
CREATE TABLE table_name_2 (country VARCHAR, to_par VARCHAR, player VARCHAR) | What is the country of player chi-chi rodríguez, who has an e to par? | SELECT country FROM table_name_2 WHERE to_par = "e" AND player = "chi-chi rodríguez" |
CREATE TABLE table_name_13 (frequency_mhz INTEGER, city_of_license VARCHAR) | What is average frequency MHZ when is in portales, new mexico? | SELECT AVG(frequency_mhz) FROM table_name_13 WHERE city_of_license = "portales, new mexico" |
CREATE TABLE table_1500146_1 (rhel_release_date VARCHAR, scientific_linux_release VARCHAR) | When is the rhel release date when scientific linux release is 3.0.4 | SELECT rhel_release_date FROM table_1500146_1 WHERE scientific_linux_release = "3.0.4" |
CREATE TABLE table_name_24 (price VARCHAR, upstream VARCHAR, downstream VARCHAR) | What is the price of the internet provider that has an upstream rate of 256 kbit and a downstream rate of 512 kbit? | SELECT price FROM table_name_24 WHERE upstream = "256 kbit" AND downstream = "512 kbit" |
CREATE TABLE table_15185133_1 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR) | What season has an episode written by john o'bryan and directed by ethan spaulding? | SELECT no_in_season FROM table_15185133_1 WHERE written_by = "John O'Bryan" AND directed_by = "Ethan Spaulding" |
CREATE TABLE table_15301258_1 (year VARCHAR, best_supporting_actor VARCHAR) | Name the year for sammo hung for ip man 2 | SELECT year FROM table_15301258_1 WHERE best_supporting_actor = "Sammo Hung for Ip Man 2" |
CREATE TABLE table_15301258_1 (best_supporting_actress VARCHAR, best_supporting_actor VARCHAR) | Name the best supporting actress for sun honglei for mongol | SELECT best_supporting_actress FROM table_15301258_1 WHERE best_supporting_actor = "Sun Honglei for Mongol" |
CREATE TABLE table_name_30 (score VARCHAR, player VARCHAR, country VARCHAR, to_par VARCHAR) | What was the score for United States when the player was Mike Reid and the To par was e? | SELECT score FROM table_name_30 WHERE country = "united states" AND to_par = "e" AND player = "mike reid" |
CREATE TABLE table_name_85 (played VARCHAR, position VARCHAR, points VARCHAR) | Which Played has a Position of 3, and a Points smaller than 15? | SELECT COUNT(played) FROM table_name_85 WHERE position = 3 AND points < 15 |
CREATE TABLE table_name_71 (date VARCHAR, streak VARCHAR, team VARCHAR) | Which Date has a Streak of loss 2, and a Team of @ boston celtics? | SELECT date FROM table_name_71 WHERE streak = "loss 2" AND team = "@ boston celtics" |
CREATE TABLE table_15652027_1 (extortion_theft_3 VARCHAR, united_nations_mission VARCHAR) | What is the extortion and theft rates where the United Nations Observer Mission Uganda-Rwanda is active? | SELECT extortion_theft_3 FROM table_15652027_1 WHERE united_nations_mission = "United Nations Observer Mission Uganda-Rwanda" |
CREATE TABLE table_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR) | Who was the centerfold model when the issue's pictorial was kimberly bell , bunnies of the new playboy club? | SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = "Kimberly Bell , Bunnies of the New Playboy Club" |
CREATE TABLE table_1566852_8 (date VARCHAR) | Who answered the 20 questions on 10-07? | SELECT 20 AS _questions FROM table_1566852_8 WHERE date = "10-07" |
CREATE TABLE table_15700367_2 (name VARCHAR, overs_bowled VARCHAR) | Name the name for when overs bowled is 31.2 | SELECT name FROM table_15700367_2 WHERE overs_bowled = "31.2" |
CREATE TABLE table_name_74 (longitude VARCHAR, year_named VARCHAR, name VARCHAR) | What is the longitude of Carmenta Farra in 1994? | SELECT longitude FROM table_name_74 WHERE year_named = 1994 AND name = "carmenta farra" |
CREATE TABLE table_name_23 (no_8 VARCHAR, no_4 VARCHAR, no_3 VARCHAR) | Name the No. 8 which has a No. 4 of benjamin, and a No. 3 of liam? | SELECT no_8 FROM table_name_23 WHERE no_4 = "benjamin" AND no_3 = "liam" |
CREATE TABLE table_157826_1 (municipality VARCHAR, county VARCHAR, population VARCHAR) | Which municipalities located in the county of Finnmark have populations bigger than 6187.0? | SELECT municipality FROM table_157826_1 WHERE county = "Finnmark" AND population > 6187.0 |
CREATE TABLE table_157826_1 (municipality VARCHAR, population VARCHAR) | Which municipality has a population of 24421? | SELECT municipality FROM table_157826_1 WHERE population = 24421 |
CREATE TABLE table_name_86 (silver INTEGER, event VARCHAR, bronze VARCHAR) | what is the most silver when the event is 2008 summer paralympics and bronze is less than 1? | SELECT MAX(silver) FROM table_name_86 WHERE event = "2008 summer paralympics" AND bronze < 1 |
CREATE TABLE table_name_44 (track_number VARCHAR, album_title VARCHAR, title VARCHAR) | Which Track number has a Album title of 文武双全升级版, and a Title of 老爸你别装酷? | SELECT track_number FROM table_name_44 WHERE album_title = "文武双全升级版" AND title = "老爸你别装酷" |
CREATE TABLE table_name_19 (disc_number VARCHAR, track_number VARCHAR, release_date VARCHAR) | What kind of Disc number has a Track number of 02 on 7 september 2004? | SELECT disc_number FROM table_name_19 WHERE track_number = "02" AND release_date = "7 september 2004" |
CREATE TABLE table_15887683_15 (television_service VARCHAR, country VARCHAR, language VARCHAR) | What television service is in italy and is in english? | SELECT television_service FROM table_15887683_15 WHERE country = "Italy" AND language = "English" |
CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR) | WHAT IS THE AWAY TEAM WHEN HOME IS LEEDS UNITED? | SELECT away_team FROM table_name_44 WHERE home_team = "leeds united" |
CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR) | WHAT IS THE AWAY TEAM WITH HOME OF LEICESTER CITY? | SELECT away_team FROM table_name_33 WHERE home_team = "leicester city" |
CREATE TABLE table_name_99 (club VARCHAR, league_goals VARCHAR, total VARCHAR, league_cup_goals VARCHAR, fa_cup_goals VARCHAR) | Which Club has a League Cup goals of 0, and a FA Cup goals of 1, and a Total larger than 11, and a League goals of 13? | SELECT club FROM table_name_99 WHERE league_cup_goals = "0" AND fa_cup_goals = "1" AND total > 11 AND league_goals = "13" |
CREATE TABLE table_name_61 (league_cup_goals VARCHAR, fa_cup_goals VARCHAR, total VARCHAR, league_goals VARCHAR) | Which League Cup goals have a Total larger than 14, and a League goals of 14, and a FA Cup goals of 0? | SELECT league_cup_goals FROM table_name_61 WHERE total > "14" AND league_goals = "14" AND fa_cup_goals = "0" |
CREATE TABLE table_1590967_6 (episode_number VARCHAR, coat_of_cash_wearing_celebrity VARCHAR) | Name the total number of episodes for coat of cash wearing celebrity is matt di angelo | SELECT COUNT(episode_number) FROM table_1590967_6 WHERE coat_of_cash_wearing_celebrity = "Matt Di Angelo" |
CREATE TABLE table_name_98 (event VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR) | What event had a win, record of 8-1 and n/a round? | SELECT event FROM table_name_98 WHERE res = "win" AND round = "n/a" AND record = "8-1" |
CREATE TABLE table_16275828_4 (program VARCHAR, track_name VARCHAR) | What programs were held at highland speedway? | SELECT program FROM table_16275828_4 WHERE track_name = "Highland Speedway" |
CREATE TABLE table_16388478_3 (away_team VARCHAR, home_team VARCHAR) | What score did the away team receive against home team Port Adelaide? | SELECT away_team AS score FROM table_16388478_3 WHERE home_team = "Port Adelaide" |
CREATE TABLE table_16494599_5 (no INTEGER, years_for_grizzlies VARCHAR) | what's the highest player number from the list from 2000-2001 | SELECT MAX(no) FROM table_16494599_5 WHERE years_for_grizzlies = "2000-2001" |
CREATE TABLE table_name_9 (score VARCHAR, player VARCHAR) | What is Score, when Player is "Bob Murphy"? | SELECT score FROM table_name_9 WHERE player = "bob murphy" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.