context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_name_20 (hot_digital_songs_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR) | What is the digital reaction for week of top 5 for Taylor Hicks? | SELECT hot_digital_songs_reaction FROM table_name_20 WHERE week = "top 5" AND performer_s_ = "taylor hicks" |
CREATE TABLE table_1140111_5 (report VARCHAR, winning_driver VARCHAR) | How many different kinds of reports are there for races that Juan Manuel Fangio won? | SELECT COUNT(report) FROM table_1140111_5 WHERE winning_driver = "Juan Manuel Fangio" |
CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR) | Which format had a United States region and a date of August 11, 2009? | SELECT format FROM table_name_92 WHERE region = "united states" AND date = "august 11, 2009" |
CREATE TABLE table_11404452_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | What is the original air date when there were 12.81 million u.s viewers? | SELECT original_air_date FROM table_11404452_1 WHERE us_viewers__millions_ = "12.81" |
CREATE TABLE table_11465521_2 (opponent VARCHAR, attendance VARCHAR) | How many opponents were there at the game with 64,087 people in attendance? | SELECT COUNT(opponent) FROM table_11465521_2 WHERE attendance = "64,087" |
CREATE TABLE table_name_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR) | Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones | SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = "alan jones" |
CREATE TABLE table_1147705_1 (engine_type VARCHAR, max_torque_at_rpm VARCHAR) | What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:? | SELECT engine_type FROM table_1147705_1 WHERE max_torque_at_rpm = "N·m ( lbf·ft ) @ 4,800" |
CREATE TABLE table_name_39 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR) | I want the constructor for brakes and grid less than 14 | SELECT constructor FROM table_name_39 WHERE time_retired = "brakes" AND grid < 14 |
CREATE TABLE table_name_41 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR) | Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1? | SELECT chassis FROM table_name_41 WHERE entrant = "larrousse f1" AND driver = "aguri suzuki" |
CREATE TABLE table_name_70 (entrant VARCHAR, rounds VARCHAR, constructor VARCHAR) | What was the entrant in round 16 were Ferrari was the constructor? | SELECT entrant FROM table_name_70 WHERE rounds = "16" AND constructor = "ferrari" |
CREATE TABLE table_1147701_5 (model_name VARCHAR, engine_code VARCHAR) | What is the model of the engine d5244 t7? | SELECT model_name FROM table_1147701_5 WHERE engine_code = "D5244 T7" |
CREATE TABLE table_name_65 (result VARCHAR, notes VARCHAR, event VARCHAR) | Name the result with notes of quarter-finals and event of adcc 2001 absolute | SELECT result FROM table_name_65 WHERE notes = "quarter-finals" AND event = "adcc 2001 absolute" |
CREATE TABLE table_11545282_18 (no INTEGER, years_for_jazz VARCHAR) | What is the number for years 1985-88 | SELECT MIN(no) FROM table_11545282_18 WHERE years_for_jazz = "1985-88" |
CREATE TABLE table_11545282_18 (position VARCHAR, player VARCHAR) | Which position does Deshawn Stevenson play? | SELECT position FROM table_11545282_18 WHERE player = "DeShawn Stevenson" |
CREATE TABLE table_name_30 (host VARCHAR, ratings VARCHAR) | Who was the host that garnered ratings of 9.6/26? | SELECT host FROM table_name_30 WHERE ratings = "9.6/26" |
CREATE TABLE table_name_83 (ratings VARCHAR, host VARCHAR, viewers VARCHAR) | What were the ratings for host Chris Economaki who had 12.3 million viewers? | SELECT ratings FROM table_name_83 WHERE host = "chris economaki" AND viewers = "12.3 million" |
CREATE TABLE table_11545282_4 (years_for_jazz VARCHAR, no VARCHAR) | What years did number 54 play for the jazz | SELECT years_for_jazz FROM table_11545282_4 WHERE no = 54 |
CREATE TABLE table_11545282_4 (school_club_team VARCHAR, player VARCHAR) | How many schools did darryl dawkins play for | SELECT COUNT(school_club_team) FROM table_11545282_4 WHERE player = "Darryl Dawkins" |
CREATE TABLE table_name_30 (pole_position VARCHAR, fastest_lap VARCHAR, round VARCHAR) | What pole position was Rubens Barrichello when he had the fastest lap and a round larger than 11? | SELECT pole_position FROM table_name_30 WHERE fastest_lap = "rubens barrichello" AND round > 11 |
CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR) | Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver. | SELECT fastest_lap FROM table_name_32 WHERE pole_position = "david coulthard" AND winning_driver = "michael schumacher" |
CREATE TABLE table_11552751_2 (ship_types_delivered VARCHAR) | What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered? | SELECT 1 AS st_ship_delivery_date FROM table_11552751_2 WHERE ship_types_delivered = "S2 (LST) type, S2 (frigate) type, C1-M type" |
CREATE TABLE table_11585313_1 (date_of_debut VARCHAR, date_of_birth VARCHAR) | What is the date of debut that has a date of birth listed at 24-10-1887? | SELECT date_of_debut FROM table_11585313_1 WHERE date_of_birth = "24-10-1887" |
CREATE TABLE table_11602313_4 (frequency VARCHAR, part_number_s_ VARCHAR) | What is the frequency of the model with part number lf80537gf0411m? | SELECT frequency FROM table_11602313_4 WHERE part_number_s_ = "LF80537GF0411M" |
CREATE TABLE table_name_83 (away_team VARCHAR, venue VARCHAR) | What was the score of the away team when the game was played at vfl park? | SELECT away_team AS score FROM table_name_83 WHERE venue = "vfl park" |
CREATE TABLE table_11603006_1 (score VARCHAR, location VARCHAR, purse__$__ VARCHAR) | What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934? | SELECT score FROM table_11603006_1 WHERE location = "Michigan" AND purse__$__ < 1813335.221493934 |
CREATE TABLE table_name_23 (song VARCHAR, film VARCHAR, year VARCHAR, music_director VARCHAR) | Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii | SELECT song FROM table_name_23 WHERE year < 2013 AND music_director = "yuvan shankar raja" AND film = "billa ii" |
CREATE TABLE table_11604804_5 (founded VARCHAR, color VARCHAR) | What was the founding of navy blue? | SELECT founded FROM table_11604804_5 WHERE color = "Navy Blue" |
CREATE TABLE table_11614581_3 (seat VARCHAR, name_in_polish VARCHAR) | What seat does Gubernia Warszawska hold? | SELECT seat FROM table_11614581_3 WHERE name_in_polish = "Gubernia warszawska" |
CREATE TABLE table_11621915_1 (purse__ INTEGER, score VARCHAR) | what's the maximum purse( $ ) with score value of 204 (-9) | SELECT MAX(purse__) AS $__ FROM table_11621915_1 WHERE score = "204 (-9)" |
CREATE TABLE table_11621915_1 (winner VARCHAR, purse__$__ VARCHAR, date VARCHAR) | what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28 | SELECT winner FROM table_11621915_1 WHERE purse__$__ > 964017.2297960471 AND date = "May 28" |
CREATE TABLE table_name_96 (player VARCHAR, college VARCHAR) | Which player plays for the college of manitoba? | SELECT player FROM table_name_96 WHERE college = "manitoba" |
CREATE TABLE table_name_14 (player VARCHAR, overall INTEGER) | What is the name of the player with an Overall larger than 227? | SELECT player FROM table_name_14 WHERE overall > 227 |
CREATE TABLE table_11622255_1 (tournament VARCHAR, winner VARCHAR) | what's the tournament where winner is raymond floyd (1) | SELECT tournament FROM table_11622255_1 WHERE winner = "Raymond Floyd (1)" |
CREATE TABLE table_11622255_1 (date VARCHAR, location VARCHAR) | what's the date where location is illinois | SELECT date FROM table_11622255_1 WHERE location = "Illinois" |
CREATE TABLE table_11622562_1 (location VARCHAR, tournament VARCHAR) | Where was the GTE Suncoast Classic tournament held? | SELECT location FROM table_11622562_1 WHERE tournament = "GTE Suncoast Classic" |
CREATE TABLE table_11622562_1 (location VARCHAR) | What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico? | SELECT MIN(*) AS $__ FROM table_11622562_1 WHERE location = "New Mexico" |
CREATE TABLE table_name_37 (label VARCHAR, date VARCHAR, format VARCHAR) | What label released a CD in 1988? | SELECT label FROM table_name_37 WHERE date = "1988" AND format = "cd" |
CREATE TABLE table_11642945_1 (total_no VARCHAR, original_air_date VARCHAR) | The original air date of 29November2007 has what total no.? | SELECT total_no FROM table_11642945_1 WHERE original_air_date = "29November2007" |
CREATE TABLE table_11630008_7 (series__number VARCHAR, production_code VARCHAR) | What is the number of series with production code 503? | SELECT COUNT(series__number) FROM table_11630008_7 WHERE production_code = 503 |
CREATE TABLE table_11647327_2 (marginal_ordinary_income_tax_rate VARCHAR, married_filing_jointly_or_qualified_widow_er_ VARCHAR) | What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950? | SELECT COUNT(marginal_ordinary_income_tax_rate) FROM table_11647327_2 WHERE married_filing_jointly_or_qualified_widow_er_ = "$208,851–$372,950" |
CREATE TABLE table_1165048_1 (coach VARCHAR, captain VARCHAR, win_loss VARCHAR) | what is the total number of coach where captain is grant welsh and win/loss is 5-15 | SELECT COUNT(coach) FROM table_1165048_1 WHERE captain = "Grant Welsh" AND win_loss = "5-15" |
CREATE TABLE table_name_33 (grid INTEGER, constructor VARCHAR, laps VARCHAR) | What is the average grid with brm and under 63 laps? | SELECT AVG(grid) FROM table_name_33 WHERE constructor = "brm" AND laps < 63 |
CREATE TABLE table_11665016_2 (title VARCHAR, directed_by VARCHAR) | Which episode was directed by steven depaul | SELECT title FROM table_11665016_2 WHERE directed_by = "Steven DePaul" |
CREATE TABLE table_11662133_3 (date_entered_service VARCHAR, ships_name VARCHAR) | what's the date entered service with ships name koningin wilhelmina | SELECT date_entered_service FROM table_11662133_3 WHERE ships_name = "Koningin Wilhelmina" |
CREATE TABLE table_11662133_3 (tonnage INTEGER, date_entered_service VARCHAR) | what is the maximum tonnage where date entered service is 25 march 1986 | SELECT MAX(tonnage) FROM table_11662133_3 WHERE date_entered_service = "25 March 1986" |
CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, date_entered_service VARCHAR) | what are all the date withdrawn for service entered on 21 november 1945 | SELECT date_withdrawn FROM table_11662133_3 WHERE date_entered_service = "21 November 1945" |
CREATE TABLE table_11662133_3 (date_withdrawn VARCHAR, type_of_ship VARCHAR) | what are all the date withdrawn for twin screw ro-ro motorship | SELECT date_withdrawn FROM table_11662133_3 WHERE type_of_ship = "Twin Screw Ro-Ro Motorship" |
CREATE TABLE table_11664625_2 (no_in_season INTEGER, directed_by VARCHAR) | Where is the first season that Anthony Hemingway appears? | SELECT MIN(no_in_season) FROM table_11664625_2 WHERE directed_by = "Anthony Hemingway" |
CREATE TABLE table_11664625_2 (no_in_season INTEGER, us_viewers__millions_ VARCHAR) | When is the first season there were 14.57 million U.S viewers? | SELECT MIN(no_in_season) FROM table_11664625_2 WHERE us_viewers__millions_ = "14.57" |
CREATE TABLE table_11677100_15 (hometown VARCHAR, position VARCHAR) | How many hometowns does the catcher have? | SELECT COUNT(hometown) FROM table_11677100_15 WHERE position = "Catcher" |
CREATE TABLE table_name_69 (away_team VARCHAR, crowd INTEGER) | Who was the away team when the crowd was larger than 41,451? | SELECT away_team FROM table_name_69 WHERE crowd > 41 OFFSET 451 |
CREATE TABLE table_11677100_17 (hometown VARCHAR, player VARCHAR) | What is the hometown of Bubba Starling? | SELECT hometown FROM table_11677100_17 WHERE player = "Bubba Starling" |
CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR) | What is Josh Hamilton's hometown? | SELECT hometown FROM table_11677100_5 WHERE player = "Josh Hamilton" |
CREATE TABLE table_name_93 (college VARCHAR, player VARCHAR) | Which college does the player jon hameister-ries play for? | SELECT college FROM table_name_93 WHERE player = "jon hameister-ries" |
CREATE TABLE table_name_96 (grid INTEGER, laps VARCHAR, points VARCHAR, driver VARCHAR) | Tell me the least Grid with points more than 11 and drivers being sébastien bourdais with laps less than 67 | SELECT MIN(grid) FROM table_name_96 WHERE points > 11 AND driver = "sébastien bourdais" AND laps < 67 |
CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, driver VARCHAR) | Name the most laps for grid more than 9 and the driver being jan heylen | SELECT MAX(laps) FROM table_name_9 WHERE grid > 9 AND driver = "jan heylen" |
CREATE TABLE table_11677100_4 (position VARCHAR, school VARCHAR) | How many positions did the player from Spring High School play? | SELECT COUNT(position) FROM table_11677100_4 WHERE school = "Spring High school" |
CREATE TABLE table_name_17 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR, interview VARCHAR) | What is the lowest evening gown score a contestant with an average less than 8.23, an interview score of 8.11, and a swimsuit larger than 7.84 has? | SELECT MIN(evening_gown) FROM table_name_17 WHERE average < 8.23 AND interview = 8.11 AND swimsuit > 7.84 |
CREATE TABLE table_name_69 (swimsuit INTEGER, state VARCHAR, evening_gown VARCHAR, average VARCHAR, interview VARCHAR) | What is the highest swimsuit a contestant from Kansas with an average larger than 8.48, an interview higher than 8.58, and an evening gown higher than 8.82 has? | SELECT MAX(swimsuit) FROM table_name_69 WHERE average > 8.48 AND interview > 8.58 AND evening_gown > 8.82 AND state = "kansas" |
CREATE TABLE table_11677691_2 (school VARCHAR, college VARCHAR) | WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND? | SELECT school FROM table_11677691_2 WHERE college = "South Carolina" |
CREATE TABLE table_name_4 (prefix VARCHAR, chemical_class VARCHAR) | What prefix has Haloalkane as the chemical class? | SELECT prefix FROM table_name_4 WHERE chemical_class = "haloalkane" |
CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR) | WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY? | SELECT position FROM table_11677691_2 WHERE school = "South Pointe High school" |
CREATE TABLE table_11677691_5 (school VARCHAR, hometown VARCHAR) | Which school is in the hometown of Aledo, Texas? | SELECT school FROM table_11677691_5 WHERE hometown = "Aledo, Texas" |
CREATE TABLE table_name_11 (game INTEGER, high_rebounds VARCHAR, high_assists VARCHAR) | Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)? | SELECT MAX(game) FROM table_name_11 WHERE high_rebounds = "evans (7)" AND high_assists = "evans, ollie (3)" |
CREATE TABLE table_11677691_3 (school VARCHAR, position VARCHAR, college VARCHAR) | Running back Aaron Green went to Nebraska and what high school? | SELECT school FROM table_11677691_3 WHERE position = "Running back" AND college = "Nebraska" |
CREATE TABLE table_11677691_12 (player VARCHAR, school VARCHAR) | who are all the players for mission viejo high school | SELECT player FROM table_11677691_12 WHERE school = "Mission Viejo High school" |
CREATE TABLE table_name_98 (us_rap VARCHAR, album VARCHAR) | What is the U.S. Rap chart number of the album west coast bad boyz, vol. 3: poppin' collars? | SELECT us_rap FROM table_name_98 WHERE album = "west coast bad boyz, vol. 3: poppin' collars" |
CREATE TABLE table_name_77 (location VARCHAR, mountain_peak VARCHAR) | What is the location of Blanca Peak? | SELECT location FROM table_name_77 WHERE mountain_peak = "blanca peak" |
CREATE TABLE table_11713303_2 (replaced_by VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR) | How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit? | SELECT COUNT(replaced_by) FROM table_11713303_2 WHERE date_of_appointment = "10 December 2007" AND manner_of_departure = "Quit" |
CREATE TABLE table_11713303_2 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR) | What is the date of vacancy for 10 december 2007 when quit? | SELECT date_of_vacancy FROM table_11713303_2 WHERE date_of_appointment = "10 December 2007" AND manner_of_departure = "Quit" |
CREATE TABLE table_11703336_1 (display_size VARCHAR, calculator VARCHAR) | what is the display size for the calculator ti-82? | SELECT display_size FROM table_11703336_1 WHERE calculator = "TI-82" |
CREATE TABLE table_name_27 (poles INTEGER, drivers VARCHAR, flaps VARCHAR) | How many Poles have Drivers of juan cruz álvarez, and FLaps larger than 0? | SELECT SUM(poles) FROM table_name_27 WHERE drivers = "juan cruz álvarez" AND flaps > 0 |
CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR) | Who was the away team at Victoria Park? | SELECT away_team FROM table_name_52 WHERE venue = "victoria park" |
CREATE TABLE table_name_12 (home VARCHAR, visitor VARCHAR, date VARCHAR) | Name the home when the visitor was dallas on february 2 | SELECT home FROM table_name_12 WHERE visitor = "dallas" AND date = "february 2" |
CREATE TABLE table_name_93 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR) | Which tournament has an Outcome of runner-up, and an Opponent of maša zec peškirič? | SELECT tournament FROM table_name_93 WHERE outcome = "runner-up" AND opponent = "maša zec peškirič" |
CREATE TABLE table_name_57 (surface VARCHAR, date VARCHAR) | Which surface has a Date of 22 august 2006? | SELECT surface FROM table_name_57 WHERE date = "22 august 2006" |
CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR) | Which tournament has an Outcome of runner-up, a Surface of hard, and a Score of 6–4, 6–2? | SELECT tournament FROM table_name_95 WHERE outcome = "runner-up" AND surface = "hard" AND score = "6–4, 6–2" |
CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR) | Which school, club team, or country played for the rockets in the years 2000-01? | SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = "2000-01" |
CREATE TABLE table_name_53 (tournament VARCHAR, outcome VARCHAR, opponent VARCHAR) | Which tournament has an Outcome of winner, and a Opponent of dia evtimova? | SELECT tournament FROM table_name_53 WHERE outcome = "winner" AND opponent = "dia evtimova" |
CREATE TABLE table_name_37 (outcome VARCHAR, opponent VARCHAR) | What is the outcome with marina erakovic as opponent? | SELECT outcome FROM table_name_37 WHERE opponent = "marina erakovic" |
CREATE TABLE table_11734041_3 (years_for_rockets VARCHAR, no_s_ VARCHAR) | During which years did number 13 play for the Rockets? | SELECT years_for_rockets FROM table_11734041_3 WHERE no_s_ = "13" |
CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR) | What years for the rockets did player ford, alton alton ford play? | SELECT years_for_rockets FROM table_11734041_6 WHERE player = "Ford, Alton Alton Ford" |
CREATE TABLE table_name_57 (launched VARCHAR, builder VARCHAR) | what is the launched date when the builder is john brown, clydebank? | SELECT launched FROM table_name_57 WHERE builder = "john brown, clydebank" |
CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR) | What years for the rockets did the player ford, phil phil ford play? | SELECT years_for_rockets FROM table_11734041_6 WHERE player = "Ford, Phil Phil Ford" |
CREATE TABLE table_name_82 (record VARCHAR, week VARCHAR, date VARCHAR) | What was the record for a week below 13 on July 12? | SELECT record FROM table_name_82 WHERE week < 13 AND date = "july 12" |
CREATE TABLE table_1176371_1 (location VARCHAR, la_matches VARCHAR, name_of_ground VARCHAR) | Where is ropery lane and la matches 7 location? | SELECT location FROM table_1176371_1 WHERE la_matches = 7 AND name_of_ground = "Ropery Lane" |
CREATE TABLE table_1176371_1 (fc_matches INTEGER, name_of_ground VARCHAR) | What is the maximum fc matches at the racecourse? | SELECT MAX(fc_matches) FROM table_1176371_1 WHERE name_of_ground = "The Racecourse" |
CREATE TABLE table_name_12 (date VARCHAR, home VARCHAR) | What date did NY Rangers play at home? | SELECT date FROM table_name_12 WHERE home = "ny rangers" |
CREATE TABLE table_11793221_4 (missing VARCHAR, commander VARCHAR) | What was the missing for lieutenant general sir thomas picton? | SELECT missing FROM table_11793221_4 WHERE commander = "Lieutenant General Sir Thomas Picton" |
CREATE TABLE table_11793221_4 (complement VARCHAR, unit VARCHAR) | Name the number of complement for 4th hanoverian brigade | SELECT COUNT(complement) FROM table_11793221_4 WHERE unit = "4th Hanoverian Brigade" |
CREATE TABLE table_name_31 (analog_channel VARCHAR, digital_channel VARCHAR) | Which analog channel has a digital channel of 4.1? | SELECT analog_channel FROM table_name_31 WHERE digital_channel = "4.1" |
CREATE TABLE table_name_18 (runner_up VARCHAR, third_place VARCHAR, score VARCHAR) | What is the name of the runner up when yevgeny kafelnikov was third place and the score was 3–6, 6–4, [10–3]? | SELECT runner_up FROM table_name_18 WHERE third_place = "yevgeny kafelnikov" AND score = "3–6, 6–4, [10–3]" |
CREATE TABLE table_11803648_17 (overall INTEGER, club_team VARCHAR) | NAME THE OVERALL FOR THE OMAHA (USHL) CLUB TEAM | SELECT MIN(overall) FROM table_11803648_17 WHERE club_team = "Omaha (USHL)" |
CREATE TABLE table_11803648_21 (position VARCHAR, player VARCHAR) | What position does Cody Ceci play? | SELECT position FROM table_11803648_21 WHERE player = "Cody Ceci" |
CREATE TABLE table_11803648_20 (player VARCHAR, round VARCHAR) | Which player is in round 5? | SELECT player FROM table_11803648_20 WHERE round = 5 |
CREATE TABLE table_name_75 (points VARCHAR, against VARCHAR, points_diff VARCHAR) | I want the total number of points for against of 753 and points diff more than -114 | SELECT COUNT(points) FROM table_name_75 WHERE against = 753 AND points_diff > -114 |
CREATE TABLE table_11803648_22 (round INTEGER, club_team VARCHAR) | What is the last round with club team Guelph Storm (ohl)? | SELECT MAX(round) FROM table_11803648_22 WHERE club_team = "Guelph Storm (OHL)" |
CREATE TABLE table_name_88 (Id VARCHAR) | What is the maximum 1985 GDP for the region where 1990 GDP is less than 267, 2000 GDP is 333 and 2005 GDP is less than 658? | SELECT MAX(1985) FROM table_name_88 WHERE 1990 < 267 AND 2000 = 333 AND 2005 < 658 |
CREATE TABLE table_name_40 (hometown VARCHAR, school VARCHAR) | Where is the Hometown that the person who attended Camarillo High School is from? | SELECT hometown FROM table_name_40 WHERE school = "camarillo high school" |
CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR) | what are all the percent (1990) where state is united states | SELECT percent__1990_ FROM table_1182314_5 WHERE state = "United states" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.