context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_name_49 (event VARCHAR, competition VARCHAR, position VARCHAR) | Which Event has 5th Position in the European Championships Competition? | SELECT event FROM table_name_49 WHERE competition = "european championships" AND position = "5th" |
CREATE TABLE table_name_21 (status VARCHAR, population VARCHAR, census_ranking VARCHAR) | What is the current status of a location with a census ranking of 1,769 of 5,008 and population greater than 930? | SELECT status FROM table_name_21 WHERE population > 930 AND census_ranking = "1,769 of 5,008" |
CREATE TABLE table_name_45 (tie_no INTEGER, home_team VARCHAR, date VARCHAR) | What was the highest Tie no when the home team was the Bolton Wanderers, and the date was Middlesbrough? | SELECT MAX(tie_no) FROM table_name_45 WHERE home_team = "bolton wanderers" AND date = "middlesbrough" |
CREATE TABLE table_name_22 (tie_no INTEGER, date VARCHAR) | What is the average Tie no when the date is Birmingham City? | SELECT AVG(tie_no) FROM table_name_22 WHERE date = "birmingham city" |
CREATE TABLE table_name_63 (game INTEGER, opponent VARCHAR, february VARCHAR) | How many games have the New York Islanders as an opponent before February 7? | SELECT SUM(game) FROM table_name_63 WHERE opponent = "new york islanders" AND february < 7 |
CREATE TABLE table_name_32 (opponent VARCHAR, attendance VARCHAR) | Which opponent had 73,428 in attendance? | SELECT opponent FROM table_name_32 WHERE attendance = "73,428" |
CREATE TABLE table_name_42 (date VARCHAR, road_team VARCHAR, result VARCHAR) | Which Date has a Road Team of new york, and a Result of 79-75? | SELECT date FROM table_name_42 WHERE road_team = "new york" AND result = "79-75" |
CREATE TABLE table_name_5 (opponents_in_the_final VARCHAR, score VARCHAR, championship VARCHAR, year VARCHAR) | which opponents in the u.s. championships played after 1945 and had a score of 3β6, 6β4, 2β6, 6β3, 20β18? | SELECT opponents_in_the_final FROM table_name_5 WHERE championship = "u.s. championships" AND year > 1945 AND score = "3β6, 6β4, 2β6, 6β3, 20β18" |
CREATE TABLE table_name_66 (ship VARCHAR, class___type VARCHAR, location VARCHAR) | What is the Cargo Ship located at Birkenhead? | SELECT ship FROM table_name_66 WHERE class___type = "cargo ship" AND location = "birkenhead" |
CREATE TABLE table_name_16 (population INTEGER, state VARCHAR, total_congregations VARCHAR) | What is the highest Population, when State is Puerto Rico, and when Total Congregations is greater than 41? | SELECT MAX(population) FROM table_name_16 WHERE state = "puerto rico" AND total_congregations > 41 |
CREATE TABLE table_name_83 (population VARCHAR, total_congregations VARCHAR, _percentage_lds VARCHAR) | What is Population, when Total Congregations is less than 4, and when % LDS is 0.54%? | SELECT population FROM table_name_83 WHERE total_congregations < 4 AND _percentage_lds = "0.54%" |
CREATE TABLE table_name_91 (actor_in_moscow VARCHAR, _2007 VARCHAR, voyage VARCHAR) | Who was the 2007 actor from Moscow for the voyage of Varenka Bakunin? | SELECT actor_in_moscow, _2007 FROM table_name_91 WHERE voyage = "varenka bakunin" |
CREATE TABLE table_name_48 (affiliation VARCHAR, institution VARCHAR) | What is Southern Illinois University Edwardsville's affiliation? | SELECT affiliation FROM table_name_48 WHERE institution = "southern illinois university edwardsville" |
CREATE TABLE table_name_1 (time VARCHAR, event VARCHAR) | What time was the event k-1 the challenge 1999? | SELECT time FROM table_name_1 WHERE event = "k-1 the challenge 1999" |
CREATE TABLE table_name_13 (high_rebounds VARCHAR, series VARCHAR) | What is the High rebounds with a Series with 4β2? | SELECT high_rebounds FROM table_name_13 WHERE series = "4β2" |
CREATE TABLE table_name_64 (d_49 VARCHAR, d_46 VARCHAR) | Tell me the D 49 and D 46 of r 13 | SELECT d_49 FROM table_name_64 WHERE d_46 = "r 13" |
CREATE TABLE table_name_54 (name VARCHAR, year VARCHAR, high_school VARCHAR) | What is the Name with a Year of junior, and a High School with wheatley? | SELECT name FROM table_name_54 WHERE year = "junior" AND high_school = "wheatley" |
CREATE TABLE table_name_90 (name VARCHAR, height VARCHAR, year VARCHAR, home_town VARCHAR) | What is the Name with a Year with freshman, and a Home Town with los angeles, ca, and a Height of 6β4? | SELECT name FROM table_name_90 WHERE year = "freshman" AND home_town = "los angeles, ca" AND height = "6β4" |
CREATE TABLE table_name_26 (total_seats INTEGER, regional_seats VARCHAR, constituency_seats VARCHAR, party VARCHAR) | What is the full number of Total Seats with a constituency seat number bigger than 0 with the Liberal Democrat party, and the Regional seat number is smaller than 6? | SELECT SUM(total_seats) FROM table_name_26 WHERE constituency_seats > 0 AND party = "liberal democrat" AND regional_seats < 6 |
CREATE TABLE table_name_69 (visitor VARCHAR, date VARCHAR) | Which team was the visitor on January 10? | SELECT visitor FROM table_name_69 WHERE date = "january 10" |
CREATE TABLE table_name_35 (round INTEGER, player VARCHAR, position VARCHAR, nationality VARCHAR) | What is the highest round of Ian Cole, who played position d from the United States? | SELECT MAX(round) FROM table_name_35 WHERE position = "d" AND nationality = "united states" AND player = "ian cole" |
CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | Which college/junior/club team (league) did Brett Sonne play in? | SELECT college_junior_club_team__league_ FROM table_name_45 WHERE player = "brett sonne" |
CREATE TABLE table_name_13 (bike_no INTEGER, driver___passenger VARCHAR, position VARCHAR) | What is the lowest Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is less than 4? | SELECT MIN(bike_no) FROM table_name_13 WHERE driver___passenger = "joris hendrickx / kaspars liepins" AND position < 4 |
CREATE TABLE table_name_82 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR) | What is the highest number of wins with a goal difference less than 4 at the Villarreal CF and more than 38 played? | SELECT MAX(wins) FROM table_name_82 WHERE goal_difference < 4 AND club = "villarreal cf" AND played > 38 |
CREATE TABLE table_name_6 (position INTEGER, points VARCHAR, bike_no VARCHAR, driver___passenger VARCHAR) | What is the lowest Postion, when Bike No is greater than 10, when Driver / Passenger is Nicky Pulinx / Ondrej Cermak, and when Points is greater than 244? | SELECT MIN(position) FROM table_name_6 WHERE bike_no > 10 AND driver___passenger = "nicky pulinx / ondrej cermak" AND points > 244 |
CREATE TABLE table_name_73 (losses INTEGER, position VARCHAR, goals_for VARCHAR) | What is the highest number of loss with a 7 position and more than 45 goals? | SELECT MAX(losses) FROM table_name_73 WHERE position = 7 AND goals_for > 45 |
CREATE TABLE table_name_19 (points INTEGER, bike_no VARCHAR, position VARCHAR, equipment VARCHAR) | What is the highest Points, when Position is less than 4, when Equipment is Zabel - VMC, and when Bike No is less than 1? | SELECT MAX(points) FROM table_name_19 WHERE position < 4 AND equipment = "zabel - vmc" AND bike_no < 1 |
CREATE TABLE table_name_16 (position INTEGER, bike_no VARCHAR, points VARCHAR) | What is the average Position, when Bike No is greater than 8, and when Points is less than 240? | SELECT AVG(position) FROM table_name_16 WHERE bike_no > 8 AND points < 240 |
CREATE TABLE table_name_60 (venue VARCHAR, score VARCHAR) | Which venue has a scoreof 2β0? | SELECT venue FROM table_name_60 WHERE score = "2β0" |
CREATE TABLE table_name_10 (result VARCHAR, week VARCHAR, date VARCHAR) | What was the Result of the game on December 14, 1986 after Week 11? | SELECT result FROM table_name_10 WHERE week > 11 AND date = "december 14, 1986" |
CREATE TABLE table_name_89 (high_school VARCHAR, utah_mr_basketball VARCHAR, year VARCHAR) | Where did Tyler Haws, 2009 Utah Mr. Basketball, go to high school? | SELECT high_school FROM table_name_89 WHERE utah_mr_basketball = "tyler haws" AND year = 2009 |
CREATE TABLE table_name_30 (_number_of_national_votes INTEGER, _number_of_seats_won VARCHAR, leader VARCHAR, election VARCHAR, _percentage_of_prefectural_vote VARCHAR) | What is the average # Of National Votes, when the Election is before 1992, when the % Of Prefectural Vote is 39.5%, when Leader is Takeo Fukuda, and when # Of Seats Won is greater than 63? | SELECT AVG(_number_of_national_votes) FROM table_name_30 WHERE election < 1992 AND _percentage_of_prefectural_vote = "39.5%" AND leader = "takeo fukuda" AND _number_of_seats_won > 63 |
CREATE TABLE table_name_37 (_number_of_prefectural_votes VARCHAR, _percentage_of_prefectural_vote VARCHAR, _number_of_seats_won VARCHAR) | What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61? | SELECT COUNT(_number_of_prefectural_votes) FROM table_name_37 WHERE _percentage_of_prefectural_vote = "48.4%" AND _number_of_seats_won > 61 |
CREATE TABLE table_name_91 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) | What is the high lap total for cards with a grid larger than 21, and a Time/Retired of +2 laps? | SELECT MAX(laps) FROM table_name_91 WHERE grid > 21 AND time_retired = "+2 laps" |
CREATE TABLE table_name_66 (pos VARCHAR, from_club VARCHAR, date VARCHAR) | What is Pos., when From Club is "Chelsea", and when Date is "30 July 2008"? | SELECT pos FROM table_name_66 WHERE from_club = "chelsea" AND date = "30 july 2008" |
CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR) | When Jean Alesi had laps less than 24, what was his highest grid? | SELECT MAX(grid) FROM table_name_75 WHERE driver = "jean alesi" AND laps < 24 |
CREATE TABLE table_name_36 (release_date VARCHAR, writer VARCHAR, company VARCHAR) | What is the release date of the album written by Goss, James James Goss under Audiogo? | SELECT release_date FROM table_name_36 WHERE writer = "goss, james james goss" AND company = "audiogo" |
CREATE TABLE table_name_67 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR) | What is Pegasus' right ascension with a 7318a NGC? | SELECT right_ascension___j2000__ FROM table_name_67 WHERE constellation = "pegasus" AND ngc_number = "7318a" |
CREATE TABLE table_name_7 (home_city VARCHAR, stadium VARCHAR) | What is the home city for angelo massimino stadium? | SELECT home_city FROM table_name_7 WHERE stadium = "angelo massimino" |
CREATE TABLE table_name_55 (home_team VARCHAR, venue VARCHAR) | Who was home at Princes Park? | SELECT home_team AS score FROM table_name_55 WHERE venue = "princes park" |
CREATE TABLE table_name_31 (winner VARCHAR, location VARCHAR, year VARCHAR) | Who was the winner in philadelphia municipal stadium in 1939? | SELECT winner FROM table_name_31 WHERE location = "philadelphia municipal stadium" AND year = 1939 |
CREATE TABLE table_name_96 (left_office VARCHAR, romanized__hangul_ VARCHAR) | When did chang myon (μ₯λ©΄) leave office? | SELECT left_office FROM table_name_96 WHERE romanized__hangul_ = "chang myon (μ₯λ©΄)" |
CREATE TABLE table_name_90 (top_division_titles INTEGER, founded VARCHAR, location VARCHAR) | What was the total number of Top Division Titles where the year founded was prior to 1975 and the location was in Chaguaramas? | SELECT SUM(top_division_titles) FROM table_name_90 WHERE founded < 1975 AND location = "chaguaramas" |
CREATE TABLE table_name_9 (province VARCHAR, ubigeo VARCHAR, districts VARCHAR, region VARCHAR) | What province in Tumbes has less than 11 districts and a UBIGEO of 2401? | SELECT province FROM table_name_9 WHERE districts < 11 AND region = "tumbes" AND ubigeo = 2401 |
CREATE TABLE table_name_68 (games INTEGER, date_of_birth VARCHAR, debut_year VARCHAR) | What is the average games a player born on 17 March 1915 and debut before 1935 had? | SELECT AVG(games) FROM table_name_68 WHERE date_of_birth = "17 march 1915" AND debut_year < 1935 |
CREATE TABLE table_name_39 (year_named INTEGER, name VARCHAR) | What is the Year named of the Ganga Valles? | SELECT MAX(year_named) FROM table_name_39 WHERE name = "ganga valles" |
CREATE TABLE table_name_86 (latitude VARCHAR, year_named VARCHAR, name VARCHAR) | What is the Latitude of the Alajen Vallis named after 1997? | SELECT latitude FROM table_name_86 WHERE year_named > 1997 AND name = "alajen vallis" |
CREATE TABLE table_name_23 (record VARCHAR, high_rebounds VARCHAR) | what is the record when marc gasol (8) had the high rebounds? | SELECT record FROM table_name_23 WHERE high_rebounds = "marc gasol (8)" |
CREATE TABLE table_name_30 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, manufacturer VARCHAR) | Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3? | SELECT rider FROM table_name_30 WHERE laps < 30 AND manufacturer = "yamaha" AND time = "accident" AND grid > 3 |
CREATE TABLE table_name_86 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR) | Who was the manufacturer for the car that dani pedrosa did less than 9 laps in? | SELECT manufacturer FROM table_name_86 WHERE laps < 9 AND rider = "dani pedrosa" |
CREATE TABLE table_name_12 (event VARCHAR, opponent VARCHAR) | What is the event where the opponent was Chris Barden? | SELECT event FROM table_name_12 WHERE opponent = "chris barden" |
CREATE TABLE table_name_98 (place VARCHAR, score VARCHAR) | In what place did the player with a score of 66-67=133 come in? | SELECT place FROM table_name_98 WHERE score = 66 - 67 = 133 |
CREATE TABLE table_name_73 (date VARCHAR, callback_venue VARCHAR) | What day has a callback Venue of total tickets to hollywood? Question | SELECT date FROM table_name_73 WHERE callback_venue = "total tickets to hollywood" |
CREATE TABLE table_name_85 (golden_tickets INTEGER, callback_venue VARCHAR) | How many golden tickets for the georgia international convention center? | SELECT SUM(golden_tickets) FROM table_name_85 WHERE callback_venue = "georgia international convention center" |
CREATE TABLE table_name_20 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR) | Who constructed the car that Derek Warwick raced in with a TG181 chassis? | SELECT constructor FROM table_name_20 WHERE chassis = "tg181" AND driver = "derek warwick" |
CREATE TABLE table_name_11 (replaced_by VARCHAR, date_of_vacancy VARCHAR) | Who was hired to fill the spot that became vacant on 3 March 2009? | SELECT replaced_by FROM table_name_11 WHERE date_of_vacancy = "3 march 2009" |
CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, club_province VARCHAR, caps VARCHAR) | Which player has a Club/province of direito, less than 21 caps, and a Position of lock? | SELECT player FROM table_name_99 WHERE club_province = "direito" AND caps < 21 AND position = "lock" |
CREATE TABLE table_name_62 (outgoing_manager VARCHAR, replaced_by VARCHAR) | What is the name of the manager that was replaced by Michael Oenning? | SELECT outgoing_manager FROM table_name_62 WHERE replaced_by = "michael oenning" |
CREATE TABLE table_name_41 (player VARCHAR, position VARCHAR, caps VARCHAR) | Which player has a Position of fly-half, and a Caps of 3? | SELECT player FROM table_name_41 WHERE position = "fly-half" AND caps = 3 |
CREATE TABLE table_name_12 (constituency VARCHAR, result VARCHAR, liberal_democrats VARCHAR) | In what constituency was the result labour hold and Liberal democrat Elizabeth Newton won? | SELECT constituency FROM table_name_12 WHERE result = "labour hold" AND liberal_democrats = "elizabeth newton" |
CREATE TABLE table_name_92 (attendance VARCHAR, week VARCHAR, opponent VARCHAR) | What is the total attendance in a week greater than 1 with an opponent of Philadelphia Eagles? | SELECT COUNT(attendance) FROM table_name_92 WHERE week > 1 AND opponent = "philadelphia eagles" |
CREATE TABLE table_name_96 (joined INTEGER, institution VARCHAR, enrollment VARCHAR) | Which Joined has an Institution of abraham baldwin agricultural college, and an Enrollment smaller than 3,284? | SELECT MAX(joined) FROM table_name_96 WHERE institution = "abraham baldwin agricultural college" AND enrollment < 3 OFFSET 284 |
CREATE TABLE table_name_62 (car__number INTEGER, points VARCHAR, laps VARCHAR, make VARCHAR) | What is the car number that has less than 369 laps for a Dodge with more than 49 points? | SELECT SUM(car__number) FROM table_name_62 WHERE laps < 369 AND make = "dodge" AND points > 49 |
CREATE TABLE table_name_3 (ties VARCHAR, lost VARCHAR, win__percentage VARCHAR, tenure VARCHAR) | I want the total number of ties for win % more than 0 and tenure of 2001-2011 with lost more than 16 | SELECT COUNT(ties) FROM table_name_3 WHERE win__percentage > 0 AND tenure = "2001-2011" AND lost > 16 |
CREATE TABLE table_name_19 (away_team VARCHAR, ground VARCHAR) | What is Away Team, when Ground is Colonial Stadium? | SELECT away_team FROM table_name_19 WHERE ground = "colonial stadium" |
CREATE TABLE table_name_71 (score VARCHAR, high_rebounds VARCHAR, game VARCHAR, location_attendance VARCHAR) | Which Score has a Game larger than 76, a Location Attendance of madison square garden 19,763, and a High rebounds of wilson chandler (8)? | SELECT score FROM table_name_71 WHERE game > 76 AND location_attendance = "madison square garden 19,763" AND high_rebounds = "wilson chandler (8)" |
CREATE TABLE table_name_27 (round INTEGER, pole_position VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR) | Name the lowest round for when pole position and winning driver is michael schumacher | SELECT MIN(round) FROM table_name_27 WHERE fastest_lap = "michael schumacher" AND winning_driver = "michael schumacher" AND pole_position = "michael schumacher" |
CREATE TABLE table_name_90 (gold INTEGER, bronze VARCHAR, total VARCHAR, rank VARCHAR) | What is the average gold total for nations ranked 6 with 1 total medal and 1 bronze medal? | SELECT AVG(gold) FROM table_name_90 WHERE total = 1 AND rank = "6" AND bronze > 1 |
CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR) | What is the low attendance rate against buffalo bills? | SELECT MIN(attendance) FROM table_name_98 WHERE opponent = "buffalo bills" |
CREATE TABLE table_name_79 (high_points VARCHAR, location_attendance VARCHAR) | What is the highest number of points of the game in Conseco fieldhouse 7,134? | SELECT high_points FROM table_name_79 WHERE location_attendance = "conseco fieldhouse 7,134" |
CREATE TABLE table_name_45 (date VARCHAR, place VARCHAR) | When 7th place, what is the date? | SELECT date FROM table_name_45 WHERE place = "7th" |
CREATE TABLE table_name_78 (date VARCHAR, home_team VARCHAR) | What is the date of the game between Melbourne and Footscray? | SELECT date FROM table_name_78 WHERE home_team = "melbourne" |
CREATE TABLE table_name_70 (player VARCHAR, score VARCHAR, country VARCHAR) | What is Player, when Score is less than 69, and when Country is "United States"? | SELECT player FROM table_name_70 WHERE score < 69 AND country = "united states" |
CREATE TABLE table_name_38 (year VARCHAR, league VARCHAR) | How many years was there a team that was part of the usisl pro league? | SELECT COUNT(year) FROM table_name_38 WHERE league = "usisl pro league" |
CREATE TABLE table_name_37 (teleplay VARCHAR, season VARCHAR, first_broadcast VARCHAR) | What is Teleplay, when Season is greater than 1.1, and when First Broadcast is "February 20, 1981"? | SELECT teleplay FROM table_name_37 WHERE season > 1.1 AND first_broadcast = "february 20, 1981" |
CREATE TABLE table_name_88 (total INTEGER, play_offs VARCHAR, league VARCHAR, player VARCHAR) | What mean total had a league number of 18, Richard Logan as a player, and a play-offs number smaller than 1? | SELECT AVG(total) FROM table_name_88 WHERE league = 18 AND player = "richard logan" AND play_offs < 1 |
CREATE TABLE table_name_61 (rank INTEGER, constituency VARCHAR, swing_to_gain VARCHAR) | what is the lowest rank when the constituency is edinburgh northern and leith and the swing to gain is less than 4.16? | SELECT MIN(rank) FROM table_name_61 WHERE constituency = "edinburgh northern and leith" AND swing_to_gain < 4.16 |
CREATE TABLE table_name_48 (previous_club VARCHAR, date_of_birth VARCHAR) | What previous club was born on October 22, 1993? | SELECT previous_club FROM table_name_48 WHERE date_of_birth = "october 22, 1993" |
CREATE TABLE table_name_14 (attendance INTEGER, venue VARCHAR, opponent VARCHAR) | What is the total of attendance at Venue h when Auxerre were playing? | SELECT SUM(attendance) FROM table_name_14 WHERE venue = "h" AND opponent = "auxerre" |
CREATE TABLE table_name_8 (place VARCHAR, country VARCHAR, score VARCHAR) | What place is the United States in that has a score of 68-73-68=209? | SELECT place FROM table_name_8 WHERE country = "united states" AND score = 68 - 73 - 68 = 209 |
CREATE TABLE table_name_89 (home_team VARCHAR, road_team VARCHAR, game VARCHAR) | Who was the home team when Boston is the road team in game 4? | SELECT home_team FROM table_name_89 WHERE road_team = "boston" AND game = "game 4" |
CREATE TABLE table_name_66 (nationality VARCHAR, position VARCHAR, college_junior_club_team__league_ VARCHAR) | What nationality is the draft pick with w position from leninogorsk (russia-2)? | SELECT nationality FROM table_name_66 WHERE position = "w" AND college_junior_club_team__league_ = "leninogorsk (russia-2)" |
CREATE TABLE table_name_49 (year VARCHAR, laps VARCHAR) | How many years was the number of laps 71? | SELECT COUNT(year) FROM table_name_49 WHERE laps = 71 |
CREATE TABLE table_name_26 (timeslot VARCHAR, air_date VARCHAR) | What is the timeslot for the episode that aired April 28, 2009? | SELECT timeslot FROM table_name_26 WHERE air_date = "april 28, 2009" |
CREATE TABLE table_name_59 (name VARCHAR, college VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR) | What name has 5 as the pick, a round less than 25, ot as the position, at boston college? | SELECT name FROM table_name_59 WHERE pick = 5 AND round < 25 AND position = "ot" AND college = "boston college" |
CREATE TABLE table_name_29 (overall VARCHAR, pick VARCHAR, position VARCHAR, name VARCHAR) | How many overalls have E as the position, buddy payne as the name, and a pick less than 5? | SELECT COUNT(overall) FROM table_name_29 WHERE position = "e" AND name = "buddy payne" AND pick < 5 |
CREATE TABLE table_name_78 (pick INTEGER, name VARCHAR, round VARCHAR) | How many picks have charley sanders as the name, with a round greater than 22? | SELECT SUM(pick) FROM table_name_78 WHERE name = "charley sanders" AND round > 22 |
CREATE TABLE table_name_4 (opponent VARCHAR, points VARCHAR, attendance VARCHAR) | What is the Opponent of the game with more than 13,567 in Attendance with more than 5 Points? | SELECT opponent FROM table_name_4 WHERE points > 5 AND attendance > 13 OFFSET 567 |
CREATE TABLE table_name_64 (home_team VARCHAR, venue VARCHAR) | Which Home team has a Venue of arden street oval? | SELECT home_team FROM table_name_64 WHERE venue = "arden street oval" |
CREATE TABLE table_name_1 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) | Tell me the manner of departure for 3 january date of appointment | SELECT manner_of_departure FROM table_name_1 WHERE date_of_appointment = "3 january" |
CREATE TABLE table_name_84 (date VARCHAR, race VARCHAR) | When did the Argentine Grand Prix race? | SELECT date FROM table_name_84 WHERE race = "argentine grand prix" |
CREATE TABLE table_name_93 (home_team VARCHAR, venue VARCHAR) | What is the home team for victoria park? | SELECT home_team FROM table_name_93 WHERE venue = "victoria park" |
CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR) | Who is the opponent with a score of 6β5 13? | SELECT opponent FROM table_name_82 WHERE score = "6β5 13" |
CREATE TABLE table_name_61 (model VARCHAR, comments VARCHAR) | Which Model has Comments of curved daggerboards. design: morelli und melvin? | SELECT model FROM table_name_61 WHERE comments = "curved daggerboards. design: morelli und melvin" |
CREATE TABLE table_name_10 (sr_no INTEGER, builder VARCHAR, secr_no VARCHAR) | What is Beyer Peacock's SR number with a SECR number of 769? | SELECT AVG(sr_no) FROM table_name_10 WHERE builder = "beyer peacock" AND secr_no = 769 |
CREATE TABLE table_name_72 (crowd VARCHAR, away_team VARCHAR) | What is the listed crowd when hawthorn is away? | SELECT COUNT(crowd) FROM table_name_72 WHERE away_team = "hawthorn" |
CREATE TABLE table_name_55 (tyre VARCHAR, drivers VARCHAR, rounds VARCHAR, team VARCHAR) | What is the tyre of nismo team member satoshi motoyama when he has rounds of all? | SELECT tyre FROM table_name_55 WHERE rounds = "all" AND team = "nismo" AND drivers = "satoshi motoyama" |
CREATE TABLE table_name_24 (tyre VARCHAR, team VARCHAR, drivers VARCHAR) | What is the tyre of real racing with leon team member koudai tsukakoshi? | SELECT tyre FROM table_name_24 WHERE team = "real racing with leon" AND drivers = "koudai tsukakoshi" |
CREATE TABLE table_name_61 (score VARCHAR, opponent VARCHAR, date VARCHAR) | Name the score when the opponent was the dodgers on april 21 | SELECT score FROM table_name_61 WHERE opponent = "dodgers" AND date = "april 21" |
CREATE TABLE table_name_48 (team_1 VARCHAR) | What is the 1st leg where Team 1 is C.D. Plaza Amador? | SELECT 1 AS st_leg FROM table_name_48 WHERE team_1 = "c.d. plaza amador" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.