context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_name_32 (week INTEGER, result VARCHAR, opponent VARCHAR) | In what Week has a Result of l 24–20, and a Opponent of at new england patriots? | SELECT MAX(week) FROM table_name_32 WHERE result = "l 24–20" AND opponent = "at new england patriots" |
CREATE TABLE table_name_6 (seats INTEGER, general_election VARCHAR, share_of_votes VARCHAR, share_of_seats VARCHAR) | Which Seatshave a Share of votes of 18%, and a Share of seats of 3%, and a General election smaller than 1992? | SELECT MIN(seats) FROM table_name_6 WHERE share_of_votes = "18%" AND share_of_seats = "3%" AND general_election < 1992 |
CREATE TABLE table_name_62 (seats INTEGER, general_election VARCHAR, share_of_votes VARCHAR, share_of_seats VARCHAR) | Which Seats have a Share of votes of 18%, and a Share of seats of 3%, and a General election larger than 1992? | SELECT MAX(seats) FROM table_name_62 WHERE share_of_votes = "18%" AND share_of_seats = "3%" AND general_election > 1992 |
CREATE TABLE table_name_92 (l2_cache VARCHAR, sspec_number VARCHAR) | What is the L2 cache with ec number of slbmm(c2)slbsr(k0)? | SELECT l2_cache FROM table_name_92 WHERE sspec_number = "slbmm(c2)slbsr(k0)" |
CREATE TABLE table_name_4 (frequency VARCHAR, part_number_s_ VARCHAR, i_o_bus VARCHAR, voltage VARCHAR) | What is the frequency for I/O bus of DMI, voltage of 0.725–1.4v and part cn80617004458ab? | SELECT frequency FROM table_name_4 WHERE i_o_bus = "dmi" AND voltage = "0.725–1.4v" AND part_number_s_ = "cn80617004458ab" |
CREATE TABLE table_name_13 (memory VARCHAR, release_date VARCHAR, socket VARCHAR) | What is the memory when release date is January 2010 and socket is BGA-1288? | SELECT memory FROM table_name_13 WHERE release_date = "january 2010" AND socket = "bga-1288" |
CREATE TABLE table_name_89 (matches VARCHAR, rank VARCHAR) | Can you tell me the Matches that has the Rank of 1? | SELECT matches FROM table_name_89 WHERE rank = 1 |
CREATE TABLE table_name_65 (number INTEGER, type VARCHAR) | What is the sum of numbers that had a type of Driving Van Trailer? | SELECT SUM(number) FROM table_name_65 WHERE type = "driving van trailer" |
CREATE TABLE table_name_21 (location VARCHAR, _number___county VARCHAR, enrollment VARCHAR) | What is the location with enrollment of 316 and county is 68 Randolph? | SELECT location FROM table_name_21 WHERE _number___county = "68 randolph" AND enrollment = 316 |
CREATE TABLE table_name_42 (gold INTEGER, silver INTEGER) | What is the most gold where silver is 0? | SELECT MAX(gold) FROM table_name_42 WHERE silver < 0 |
CREATE TABLE table_name_53 (year VARCHAR, category VARCHAR) | What year had the category of best international newcomer? | SELECT COUNT(year) FROM table_name_53 WHERE category = "best international newcomer" |
CREATE TABLE table_name_30 (not_usable INTEGER, block VARCHAR, launch_failures VARCHAR, retired VARCHAR) | What is the highest number of not usable satellites when there are more than 0 launch failures, less than 30 retired, and the block is I? | SELECT MAX(not_usable) FROM table_name_30 WHERE launch_failures > 0 AND retired < 30 AND block = "block i" |
CREATE TABLE table_name_36 (general_classification VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR) | What's the general classification of Ignatas Konovalovas when the mountains classification was Stefano Garzelli and points classification was Danilo Di Luca? | SELECT general_classification FROM table_name_36 WHERE mountains_classification = "stefano garzelli" AND points_classification = "danilo di luca" AND winner = "ignatas konovalovas" |
CREATE TABLE table_name_26 (mountains_classification VARCHAR, points_classification VARCHAR, general_classification VARCHAR) | What's the mountains classification when the points classification is Alessandro Petacchi and the general classification is Danilo Di Luca? | SELECT mountains_classification FROM table_name_26 WHERE points_classification = "alessandro petacchi" AND general_classification = "danilo di luca" |
CREATE TABLE table_name_60 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR) | Who was the winner of Stage 9 when then general classification was Danilo Di Luca? | SELECT winner FROM table_name_60 WHERE general_classification = "danilo di luca" AND stage = "9" |
CREATE TABLE table_name_31 (kickoff___et__ VARCHAR, opponent VARCHAR) | What time was the kickoff when the miami dolphins were the opponent? | SELECT kickoff___et__ FROM table_name_31 WHERE opponent = "miami dolphins" |
CREATE TABLE table_name_30 (place INTEGER, machine VARCHAR, speed VARCHAR) | How many places have yamaha as the machine, and 89.85mph as the speed? | SELECT SUM(place) FROM table_name_30 WHERE machine = "yamaha" AND speed = "89.85mph" |
CREATE TABLE table_name_85 (musical_guest_song_performed VARCHAR, original_airdate VARCHAR) | What is the Musical Guest/Song with an original airdate of january 2008? | SELECT musical_guest_song_performed FROM table_name_85 WHERE original_airdate = "january 2008" |
CREATE TABLE table_name_68 (wins VARCHAR, points VARCHAR, finishes VARCHAR, starts VARCHAR) | What is the number of wins associated with 1 point, more than 1 start, and under 7 finishes? | SELECT wins FROM table_name_68 WHERE finishes < 7 AND starts > 1 AND points = 1 |
CREATE TABLE table_name_79 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR) | Which acquisition via has a position of forward and is on the state school or club? | SELECT acquisition_via FROM table_name_79 WHERE position = "forward" AND school_club_team = "state" |
CREATE TABLE table_name_34 (designated_home VARCHAR, date VARCHAR, designated_visitors VARCHAR) | Who was the home team on October 28 when the new england patriots were the visitors? | SELECT designated_home FROM table_name_34 WHERE date = "october 28" AND designated_visitors = "new england patriots" |
CREATE TABLE table_name_42 (designated_visitors VARCHAR, designated_home VARCHAR) | Who were the visitors when the Atlanta Falcons were the home team? | SELECT designated_visitors FROM table_name_42 WHERE designated_home = "atlanta falcons" |
CREATE TABLE table_name_53 (designated_home VARCHAR, date VARCHAR, television VARCHAR, year VARCHAR) | Who were the home team during the game that aired on Fox after 2007 on October 23? | SELECT designated_home FROM table_name_53 WHERE television = "fox" AND year > 2007 AND date = "october 23" |
CREATE TABLE table_name_40 (outcome VARCHAR, tournament VARCHAR, opponent VARCHAR) | what is the outcome when the tournament is san diego and the opponent is ann grossman? | SELECT outcome FROM table_name_40 WHERE tournament = "san diego" AND opponent = "ann grossman" |
CREATE TABLE table_name_47 (film VARCHAR, ceremony VARCHAR, name VARCHAR) | What is the Film with winner Jerome Kern in the 19th Ceremony? | SELECT film FROM table_name_47 WHERE ceremony = "19th" AND name = "jerome kern" |
CREATE TABLE table_name_36 (zaaps___ziips VARCHAR, model VARCHAR) | For Model e64 what is the zAAPs/zIIPs? | SELECT zaaps___ziips FROM table_name_36 WHERE model = "e64" |
CREATE TABLE table_name_36 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) | What date was there a playoff on the margin of victory during the Shirley Englehorn Invitational? | SELECT date FROM table_name_36 WHERE margin_of_victory = "playoff" AND tournament = "shirley englehorn invitational" |
CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) | Who is the runner(s)-up for the Lady Carling Open with 3 strokes margin of victory? | SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = "3 strokes" AND tournament = "lady carling open" |
CREATE TABLE table_name_48 (set_2 VARCHAR, set_1 VARCHAR, set_5 VARCHAR) | What is the set 2 with a 25-23 set 1 and a 17-19 set 5? | SELECT set_2 FROM table_name_48 WHERE set_1 = "25-23" AND set_5 = "17-19" |
CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, round VARCHAR) | Who had the high pick of the round of 10 for Fairmont State college? | SELECT MAX(pick) FROM table_name_13 WHERE college = "fairmont state" AND round > 10 |
CREATE TABLE table_name_11 (acl_qualification VARCHAR, finals_qualification VARCHAR, minor_ladder_position VARCHAR) | What's the ACL qualification when the minor ladder position is 5th and the finals qualifications were DNQ? | SELECT acl_qualification FROM table_name_11 WHERE finals_qualification = "dnq" AND minor_ladder_position = "5th" |
CREATE TABLE table_name_80 (date VARCHAR, location VARCHAR) | What is the Date for the game at michie stadium • west point, ny? | SELECT date FROM table_name_80 WHERE location = "michie stadium • west point, ny" |
CREATE TABLE table_name_43 (opponent_in_the_final VARCHAR, date VARCHAR) | Who is the opponent in the final on 24 November 2008? | SELECT opponent_in_the_final FROM table_name_43 WHERE date = "24 november 2008" |
CREATE TABLE table_name_96 (tournament VARCHAR, winning_score VARCHAR) | Which tournament had a winning score of 67-61-68-67=263? | SELECT tournament FROM table_name_96 WHERE winning_score = 67 - 61 - 68 - 67 = 263 |
CREATE TABLE table_name_30 (week INTEGER, opponent VARCHAR) | What is the Week of the game against Seattle Seahawks? | SELECT AVG(week) FROM table_name_30 WHERE opponent = "seattle seahawks" |
CREATE TABLE table_name_35 (miss_air__1st_runner_up_ VARCHAR, year VARCHAR, miss_water__2nd_runner_up_ VARCHAR) | Who won Miss Air (1st Runner-up) when Catherine Untalan was Miss Water (2nd Runner-up) earlier than 2007? | SELECT miss_air__1st_runner_up_ FROM table_name_35 WHERE year < 2007 AND miss_water__2nd_runner_up_ = "catherine untalan" |
CREATE TABLE table_name_86 (attendance VARCHAR, location VARCHAR, result VARCHAR) | What was the attendance for the game at groves stadium • winston-salem, nc with a result of L 0-14? | SELECT COUNT(attendance) FROM table_name_86 WHERE location = "groves stadium • winston-salem, nc" AND result = "l 0-14" |
CREATE TABLE table_name_99 (height VARCHAR, sr_no VARCHAR, locale VARCHAR, floors VARCHAR) | what is the height when the locale is nepean sea road, floors is more than 30 and sr no is 58? | SELECT height FROM table_name_99 WHERE locale = "nepean sea road" AND floors > 30 AND sr_no = 58 |
CREATE TABLE table_name_94 (competition_description VARCHAR, rank_qualifying VARCHAR, apparatus VARCHAR) | What competition had a Rank-Qualifying of 1st and a ball apparatus? | SELECT competition_description FROM table_name_94 WHERE rank_qualifying = "1st" AND apparatus = "ball" |
CREATE TABLE table_name_13 (tonnage INTEGER, nationality VARCHAR, ship VARCHAR) | What is the highest tonnage for a ship from Great Britain named Newton Ash? | SELECT MAX(tonnage) FROM table_name_13 WHERE nationality = "great britain" AND ship = "newton ash" |
CREATE TABLE table_name_77 (bowl_game VARCHAR, conference_matchups VARCHAR) | Which bowl game had a conference matchup of Ohio State vs. Texas? | SELECT bowl_game FROM table_name_77 WHERE conference_matchups = "ohio state vs. texas" |
CREATE TABLE table_name_3 (comp VARCHAR, score VARCHAR) | What is the Comp of the Shooter with a Score of 489.5? | SELECT comp FROM table_name_3 WHERE score = "489.5" |
CREATE TABLE table_name_83 (total INTEGER, gold VARCHAR, silver VARCHAR) | What is the average total for countries with under 3 golds and 0 silvers? | SELECT AVG(total) FROM table_name_83 WHERE gold < 3 AND silver < 0 |
CREATE TABLE table_name_37 (points_against INTEGER, team VARCHAR, tries_against VARCHAR) | How many Points against that have a Team of harlequins and Tries against smaller than 8? | SELECT SUM(points_against) FROM table_name_37 WHERE team = "harlequins" AND tries_against < 8 |
CREATE TABLE table_name_77 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR) | Which city has a C1 class and Identifier of CBCD-FM? | SELECT city_of_license FROM table_name_77 WHERE class = "c1" AND identifier = "cbcd-fm" |
CREATE TABLE table_name_54 (rank INTEGER, heat VARCHAR, nationality VARCHAR) | What is the highest rank of an athlete from Switzerland in a heat larger than 3? | SELECT MAX(rank) FROM table_name_54 WHERE heat > 3 AND nationality = "switzerland" |
CREATE TABLE table_name_29 (goals INTEGER, games VARCHAR, debut_year VARCHAR, player VARCHAR) | What are the most goals listed when Jack Trehey was the player, with the listed debut year of 1902, games less than 1? | SELECT MAX(goals) FROM table_name_29 WHERE debut_year = 1902 AND player = "jack trehey" AND games < 1 |
CREATE TABLE table_name_5 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR) | For player Wally Johnson, with goals larger than 0, the debut year later than 1904, and games greater than 136, what were the years at club? | SELECT years_at_club FROM table_name_5 WHERE goals > 0 AND debut_year > 1904 AND games > 136 AND player = "wally johnson" |
CREATE TABLE table_name_67 (japanese_title VARCHAR, average_ratings VARCHAR) | What Japanese title had average ratings at 9.1%? | SELECT japanese_title FROM table_name_67 WHERE average_ratings = "9.1%" |
CREATE TABLE table_name_70 (motion_picture VARCHAR, award VARCHAR, actor VARCHAR, year VARCHAR, result VARCHAR) | What Motion Picture after 2003 had Viola Davis nominated for Best Supporting Actress? | SELECT motion_picture FROM table_name_70 WHERE year > 2003 AND result = "nominated" AND actor = "viola davis" AND award = "best supporting actress" |
CREATE TABLE table_name_19 (week INTEGER, date VARCHAR) | What is the lowest week that has November 30, 2003 as the date? | SELECT MIN(week) FROM table_name_19 WHERE date = "november 30, 2003" |
CREATE TABLE table_name_51 (package_option VARCHAR, language VARCHAR, television_service VARCHAR) | What is Package/Option, when Language is Italian, and when Television Service is Sky Radio? | SELECT package_option FROM table_name_51 WHERE language = "italian" AND television_service = "sky radio" |
CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR) | What is HDTV, when Language is English, and when Television Service is MTV Dance? | SELECT hdtv FROM table_name_82 WHERE language = "english" AND television_service = "mtv dance" |
CREATE TABLE table_name_71 (part_number_s_ VARCHAR, l3_cache VARCHAR, sspec_number VARCHAR) | Which Part number(s) has a L3 cache of 8 mb and a sSpec number of sr0pl(e1)? | SELECT part_number_s_ FROM table_name_71 WHERE l3_cache = "8 mb" AND sspec_number = "sr0pl(e1)" |
CREATE TABLE table_name_20 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR, sspec_number VARCHAR) | Which Release price (USD ) has a GPU frequency of 650–1150 mhz and a sSpec number of sr0pq(e1)? | SELECT release_price___usd__ FROM table_name_20 WHERE gpu_frequency = "650–1150 mhz" AND sspec_number = "sr0pq(e1)" |
CREATE TABLE table_name_90 (release_price___usd__ VARCHAR, release_date VARCHAR, part_number_s_ VARCHAR) | Which Release price (USD ) that has a Release date on april 2012 and a Part number(s) of cm8063701211900bx80637i73770s? | SELECT release_price___usd__ FROM table_name_90 WHERE release_date = "april 2012" AND part_number_s_ = "cm8063701211900bx80637i73770s" |
CREATE TABLE table_name_93 (height__cm_ VARCHAR, birthplace VARCHAR) | What is the 1999-2000 team, when the Height (cm) is less than 187, and when the Birthplace is Cloquet, Minnesota? | SELECT 1999 AS _2000_team FROM table_name_93 WHERE height__cm_ < 187 AND birthplace = "cloquet, minnesota" |
CREATE TABLE table_name_33 (game VARCHAR, platform_s_ VARCHAR, genre VARCHAR) | What game has a platform(s) of playstation 3, when the genre is platform game? | SELECT game FROM table_name_33 WHERE platform_s_ = "playstation 3" AND genre = "platform game" |
CREATE TABLE table_name_89 (game VARCHAR, genre VARCHAR) | When the genre is fighting what is the game? | SELECT game FROM table_name_89 WHERE genre = "fighting" |
CREATE TABLE table_name_31 (score VARCHAR, country VARCHAR, player VARCHAR) | What is the score for Lucas Glover of the United States? | SELECT score FROM table_name_31 WHERE country = "united states" AND player = "lucas glover" |
CREATE TABLE table_name_51 (airline VARCHAR, notes VARCHAR) | What is the Airline when the notes show aoc 135? | SELECT airline FROM table_name_51 WHERE notes = "aoc 135" |
CREATE TABLE table_name_38 (total INTEGER, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) | What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5? | SELECT AVG(total) FROM table_name_38 WHERE nominated_by_the_taoiseach = 0 AND agricultural_panel > 5 |
CREATE TABLE table_name_90 (cultural_and_educational_panel INTEGER, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR) | What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0? | SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0 |
CREATE TABLE table_name_54 (tonnage VARCHAR, u_boats_destroyed__kuk_ VARCHAR, ships_sunk__pola_ VARCHAR) | What is the listed Tonnage that has U-boats destroyed (KuK) of 2 and Ships sunk (Pola) of (not recorded)? | SELECT tonnage FROM table_name_54 WHERE u_boats_destroyed__kuk_ = "2" AND ships_sunk__pola_ = "(not recorded)" |
CREATE TABLE table_name_56 (distance VARCHAR) | What is the number of passengers in millions that have traveled a distance of 1075km? | SELECT COUNT(*) FROM table_name_56 WHERE distance = "1075km" |
CREATE TABLE table_name_2 (termination VARCHAR, earpads VARCHAR, us_msrp VARCHAR) | What was the termination type for the headphones with comfort pads and selling for $150? | SELECT termination FROM table_name_2 WHERE earpads = "comfort pads" AND us_msrp = "$150" |
CREATE TABLE table_name_32 (rank INTEGER, prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR) | Which Rank has a Col (m) of 0, and a Peak of aoraki/mount cook, and a Prominence (m) larger than 3,755? | SELECT SUM(rank) FROM table_name_32 WHERE col__m_ = 0 AND peak = "aoraki/mount cook" AND prominence__m_ > 3 OFFSET 755 |
CREATE TABLE table_name_26 (young_classification VARCHAR, sprint_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish? | SELECT young_classification FROM table_name_26 WHERE general_classification = "christian vande velde" AND team_classification = "team columbia" AND sprint_classification = "mark cavendish" |
CREATE TABLE table_name_80 (mountains_classification VARCHAR, general_classification VARCHAR, team_classification VARCHAR) | What mountains classification corresponds to Mark Cavendish and the Garmin-Chipotle-H30? | SELECT mountains_classification FROM table_name_80 WHERE general_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" |
CREATE TABLE table_name_42 (stage__winner_ VARCHAR, young_classification VARCHAR, sprint_classification VARCHAR, team_classification VARCHAR) | Who was the winner for a Sprint Classification and Young Classification to Mark Cavendish and Garmin-Chipotle-H30 for team? | SELECT stage__winner_ FROM table_name_42 WHERE sprint_classification = "mark cavendish" AND team_classification = "garmin-chipotle-h30" AND young_classification = "mark cavendish" |
CREATE TABLE table_name_62 (turbo VARCHAR, part_number_s_ VARCHAR) | what is the turbo when the part number is cm8062300834302bx80623i72600bxc80623i72600? | SELECT turbo FROM table_name_62 WHERE part_number_s_ = "cm8062300834302bx80623i72600bxc80623i72600" |
CREATE TABLE table_name_78 (format VARCHAR, catalog VARCHAR) | What is the Format with a Catalog that is vcrd 103? | SELECT format FROM table_name_78 WHERE catalog = "vcrd 103" |
CREATE TABLE table_name_8 (gpu_model VARCHAR, frequency VARCHAR, sspec_number VARCHAR) | what is the gpu model when the frequency is 3.4 ghz and the sspec number is sr00b(d2)? | SELECT gpu_model FROM table_name_8 WHERE frequency = "3.4 ghz" AND sspec_number = "sr00b(d2)" |
CREATE TABLE table_name_7 (place_of_birth VARCHAR, elevator VARCHAR, elector VARCHAR) | What is the place of birth when the elevator is Nicholas IV, and elector is Napoleone Orsini Frangipani? | SELECT place_of_birth FROM table_name_7 WHERE elevator = "nicholas iv" AND elector = "napoleone orsini frangipani" |
CREATE TABLE table_name_21 (elevator VARCHAR, elevated VARCHAR, cardinalatial_title VARCHAR) | What is the elevator when elevated is May 16, 1288, and cardinalatial title shows Deacon of S. Adriano? | SELECT elevator FROM table_name_21 WHERE elevated = "may 16, 1288" AND cardinalatial_title = "deacon of s. adriano" |
CREATE TABLE table_name_86 (margin VARCHAR, match_date VARCHAR) | What is Margin, when Match Date is Oct 17, 2007? | SELECT margin FROM table_name_86 WHERE match_date = "oct 17, 2007" |
CREATE TABLE table_name_78 (place_of_birth VARCHAR, elevated VARCHAR, cardinalatial_title VARCHAR) | What is the place of birth when elevated is May 16, 1288, and cardinalatial title is Deacon of S. Eustachio? | SELECT place_of_birth FROM table_name_78 WHERE elevated = "may 16, 1288" AND cardinalatial_title = "deacon of s. eustachio" |
CREATE TABLE table_name_88 (s_no VARCHAR, margin VARCHAR) | What is the total number of S No(s), when the Margin is 16 runs? | SELECT COUNT(s_no) FROM table_name_88 WHERE margin = "16 runs" |
CREATE TABLE table_name_20 (catalog VARCHAR, format VARCHAR, date VARCHAR) | Released on April 12, 1968 in LP format, what was the catalog? | SELECT catalog FROM table_name_20 WHERE format = "lp" AND date = "april 12, 1968" |
CREATE TABLE table_name_8 (s_no INTEGER, match_date VARCHAR) | What is the highest S No, when the Match Date is Nov 1, 2003? | SELECT MAX(s_no) FROM table_name_8 WHERE match_date = "nov 1, 2003" |
CREATE TABLE table_name_27 (draws INTEGER, al_ahly_wins VARCHAR, el_zamalek_wins VARCHAR, total VARCHAR) | What is the sum of draws for El Zamalek wins under 36, total over 2, and Al Ahly wins over 37? | SELECT SUM(draws) FROM table_name_27 WHERE el_zamalek_wins < 36 AND total > 2 AND al_ahly_wins > 37 |
CREATE TABLE table_name_15 (points INTEGER, team VARCHAR, position VARCHAR) | Which Points has a Team of são paulo athletic, and a Position larger than 5? | SELECT SUM(points) FROM table_name_15 WHERE team = "são paulo athletic" AND position > 5 |
CREATE TABLE table_name_99 (lane INTEGER, athlete VARCHAR, time VARCHAR) | What is the greatest lane that David Payne was in when he ran longer than 13.17? | SELECT MAX(lane) FROM table_name_99 WHERE athlete = "david payne" AND time > 13.17 |
CREATE TABLE table_name_13 (pick INTEGER, player VARCHAR, position VARCHAR, team VARCHAR) | What is the lowest pick number for Arturo McDowell, who plays the OF position for the San Francisco Giants? | SELECT MIN(pick) FROM table_name_13 WHERE position = "of" AND team = "san francisco giants" AND player = "arturo mcdowell" |
CREATE TABLE table_name_10 (round_of_32 VARCHAR, event VARCHAR, quarterfinals VARCHAR, finals VARCHAR, semifinals VARCHAR) | What's the round of 32 during the 56kg when the quarterfinals, semifinals, and finals did not advance? | SELECT round_of_32 FROM table_name_10 WHERE finals = "did not advance" AND semifinals = "did not advance" AND quarterfinals = "did not advance" AND event = "56kg" |
CREATE TABLE table_name_16 (round_of_16 VARCHAR, event VARCHAR) | What's the 69kg of Round 16? | SELECT round_of_16 FROM table_name_16 WHERE event = "69kg" |
CREATE TABLE table_name_5 (date VARCHAR, title VARCHAR) | When did the Issue with the Title Homecoming come out? | SELECT date FROM table_name_5 WHERE title = "homecoming" |
CREATE TABLE table_name_10 (place VARCHAR, artist VARCHAR, draw VARCHAR) | What is the Place of the Song by Artist Rosie Hunter with a Draw of 1 or larger? | SELECT COUNT(place) FROM table_name_10 WHERE artist = "rosie hunter" AND draw > 1 |
CREATE TABLE table_name_65 (bronze VARCHAR, gold VARCHAR, games VARCHAR, total VARCHAR, silver VARCHAR) | Which Bronze has a Total larger than 7 and a Silver of 3, and a Games of summer, and a Gold of 5? | SELECT bronze FROM table_name_65 WHERE total > 7 AND silver = 3 AND games = "summer" AND gold = 5 |
CREATE TABLE table_name_24 (semi_final_heat_host VARCHAR, national_final_main_host VARCHAR, national_final_co_host VARCHAR) | What was the host for the semi final heat, when Terry Wogan was the National Final main host, and Gaby Roslin was the National Final co-host? | SELECT semi_final_heat_host FROM table_name_24 WHERE national_final_main_host = "terry wogan" AND national_final_co_host = "gaby roslin" |
CREATE TABLE table_name_83 (national_final_main_host VARCHAR, semi_final_heat_host VARCHAR, year_s_ VARCHAR) | What is the name of the national final main host when the semi final/heat host shows internal selection in 2011? | SELECT national_final_main_host FROM table_name_83 WHERE semi_final_heat_host = "internal selection" AND year_s_ = "2011" |
CREATE TABLE table_name_85 (national_final_co_host VARCHAR, year_s_ VARCHAR, national_final_main_host VARCHAR, selection_show VARCHAR) | What is the name of the national final co host when David Jacobs was the National final main host, and the selection show was a song for europe in 1966? | SELECT national_final_co_host FROM table_name_85 WHERE national_final_main_host = "david jacobs" AND selection_show = "a song for europe" AND year_s_ = "1966" |
CREATE TABLE table_name_75 (national_final_main_host VARCHAR, venue VARCHAR, selection_show VARCHAR) | What is the name of the national final main host at BBC Television Centre, and the selection show was Eurovision: Your Country Needs You? | SELECT national_final_main_host FROM table_name_75 WHERE venue = "bbc television centre" AND selection_show = "eurovision: your country needs you" |
CREATE TABLE table_name_48 (nation VARCHAR, result VARCHAR, year VARCHAR, competition VARCHAR) | What is the Nation with 2012 as the year, and a Competition of preseason, and a Result of w 0–3? | SELECT nation FROM table_name_48 WHERE year = 2012 AND competition = "preseason" AND result = "w 0–3" |
CREATE TABLE table_name_94 (competition VARCHAR, club VARCHAR) | What is the Competition when the Club was costa rica u-20? | SELECT competition FROM table_name_94 WHERE club = "costa rica u-20" |
CREATE TABLE table_name_28 (year INTEGER, competition VARCHAR, club VARCHAR) | What is the average Year when the Competition was friendly, and a Club of everton? | SELECT AVG(year) FROM table_name_28 WHERE competition = "friendly" AND club = "everton" |
CREATE TABLE table_name_31 (total VARCHAR, a_score VARCHAR, b_score VARCHAR) | Can you tell me the Total that has the A Score larger than 6.4, and the B Score smaller than 9.025? | SELECT total FROM table_name_31 WHERE a_score > 6.4 AND b_score < 9.025 |
CREATE TABLE table_name_41 (television_service VARCHAR, content VARCHAR, hdtv VARCHAR) | Which television service has programmi per adulti 24h/24 content and no HDTV? | SELECT television_service FROM table_name_41 WHERE content = "programmi per adulti 24h/24" AND hdtv = "no" |
CREATE TABLE table_name_84 (poles INTEGER, position VARCHAR, team VARCHAR) | What is the lowest poles of team comtec racing, which has a nc position? | SELECT MIN(poles) FROM table_name_84 WHERE position = "nc" AND team = "comtec racing" |
CREATE TABLE table_name_21 (date VARCHAR, time__greatest_ VARCHAR, magnitude VARCHAR, saros VARCHAR, type VARCHAR) | what is the date when saros is more than 124, the type is total, the magnitude is more than 1.0535 and the time (greatest) is 20:55:28? | SELECT date FROM table_name_21 WHERE saros > 124 AND type = "total" AND magnitude > 1.0535 AND time__greatest_ = "20:55:28" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.