question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the sum of the game numbers for games with less than 30 points? | CREATE TABLE table_name_41 (game INTEGER, points INTEGER) | SELECT SUM(game) FROM table_name_41 WHERE points < 30 |
Name the number of clock rate mhz when bandwidth mb/s is 2400 | CREATE TABLE table_142573_1 (clock_rate__mhz_ VARCHAR, bandwidth__mb_s_ VARCHAR) | SELECT COUNT(clock_rate__mhz_) FROM table_142573_1 WHERE bandwidth__mb_s_ = 2400 |
How much Elevation (m) has a Prominence (m) larger than 1,754? | CREATE TABLE table_name_45 (elevation__m_ INTEGER, prominence__m_ INTEGER) | SELECT SUM(elevation__m_) FROM table_name_45 WHERE prominence__m_ > 1 OFFSET 754 |
What is the total value for Solo, when the value of Sacks is 2, and when the Team is New York Jets? | CREATE TABLE table_name_45 (solo VARCHAR, sacks VARCHAR, team VARCHAR) | SELECT COUNT(solo) FROM table_name_45 WHERE sacks = 2 AND team = "new york jets" |
What's the try bonus that had 423 points? | CREATE TABLE table_name_38 (try_bonus VARCHAR, points_for VARCHAR) | SELECT try_bonus FROM table_name_38 WHERE points_for = "423" |
What is the score when To par was −3, in South Africa, for Richard Sterne? | CREATE TABLE table_name_74 (score INTEGER, player VARCHAR, to_par VARCHAR, country VARCHAR) | SELECT AVG(score) FROM table_name_74 WHERE to_par = "−3" AND country = "south africa" AND player = "richard sterne" |
What was the name of the winner or 2nd when the result was –, and weight was 6.7? | CREATE TABLE table_name_91 (winner_or_2nd VARCHAR, result VARCHAR, weight VARCHAR) | SELECT winner_or_2nd FROM table_name_91 WHERE result = "–" AND weight = 6.7 |
Who was the opponent that anke huber played against in the leipzig tournament? | CREATE TABLE table_name_53 (opponent VARCHAR, tournament VARCHAR) | SELECT opponent FROM table_name_53 WHERE tournament = "leipzig" |
Which month has the most happy hours? | CREATE TABLE happy_hour (MONTH VARCHAR) | SELECT MONTH FROM happy_hour GROUP BY MONTH ORDER BY COUNT(*) DESC LIMIT 1 |
What is the total capacity (MW) of the farm that is noted as being under construction? | CREATE TABLE table_name_17 (capacity__mw_ VARCHAR, notes VARCHAR) | SELECT COUNT(capacity__mw_) FROM table_name_17 WHERE notes = "under construction" |
What was the result for years prior to 2005? | CREATE TABLE table_name_83 (result VARCHAR, year INTEGER) | SELECT result FROM table_name_83 WHERE year < 2005 |
Name the stage for no award | CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR) | SELECT stage FROM table_22713796_14 WHERE mountains_classification = "no award" |
What are the club number for the first round? | CREATE TABLE table_name_43 (clubs VARCHAR, round VARCHAR) | SELECT clubs FROM table_name_43 WHERE round = "first round" |
Name the defensive for week 9 | CREATE TABLE table_23265433_2 (defensive VARCHAR, week VARCHAR) | SELECT defensive FROM table_23265433_2 WHERE week = 9 |
Can you tell me the highest Against that has the Status of six nations, and the Date of 02/03/2002? | CREATE TABLE table_name_35 (against INTEGER, status VARCHAR, date VARCHAR) | SELECT MAX(against) FROM table_name_35 WHERE status = "six nations" AND date = "02/03/2002" |
Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Body Length/mm larger than 18.4? | CREATE TABLE table_name_48 (body_width_mm INTEGER, lead_pitch_mm VARCHAR, body_length_mm VARCHAR) | SELECT MIN(body_width_mm) FROM table_name_48 WHERE lead_pitch_mm < 0.55 AND body_length_mm > 18.4 |
What Division One team were champions at the same time the Division Two Hereford Lads Club Colts were champs? | CREATE TABLE table_name_61 (division_one VARCHAR, division_two VARCHAR) | SELECT division_one FROM table_name_61 WHERE division_two = "hereford lads club colts" |
What place did the player from South Africa finish? | CREATE TABLE table_name_97 (place VARCHAR, country VARCHAR) | SELECT place FROM table_name_97 WHERE country = "south africa" |
Show the names of customers who have both an order in completed status and an order in part status. | CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_status_code VARCHAR) | SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = 'Completed' INTERSECT SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = 'Part' |
how many times is races more than 14, position is 9th and wins less than 0? | CREATE TABLE table_name_48 (season VARCHAR, wins VARCHAR, races VARCHAR, position VARCHAR) | SELECT COUNT(season) FROM table_name_48 WHERE races > 14 AND position = "9th" AND wins < 0 |
Which production company has the year of 2005 listed? | CREATE TABLE table_name_45 (production_company VARCHAR, year VARCHAR) | SELECT production_company FROM table_name_45 WHERE year = "2005" |
Name the total number of trofeo fast team of stage 16 | CREATE TABLE table_12261806_2 (trofeo_fast_team VARCHAR, stage VARCHAR) | SELECT COUNT(trofeo_fast_team) FROM table_12261806_2 WHERE stage = "16" |
What was the away team at mcg? | CREATE TABLE table_name_44 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_44 WHERE venue = "mcg" |
Name the number of party for kentucky 1 | CREATE TABLE table_2668378_5 (party VARCHAR, district VARCHAR) | SELECT COUNT(party) FROM table_2668378_5 WHERE district = "Kentucky 1" |
Which item has the suffix containing thiocyanato- (-scn) as a prefix? | CREATE TABLE table_name_77 (suffix VARCHAR, prefix VARCHAR) | SELECT suffix FROM table_name_77 WHERE prefix = "thiocyanato- (-scn)" |
In what Season were there 86 Assists in the WCJHL League? | CREATE TABLE table_name_53 (season VARCHAR, league VARCHAR, assists VARCHAR) | SELECT season FROM table_name_53 WHERE league = "wcjhl" AND assists = 86 |
What is the largest number of Games Played with Losses of 3, and more Wins than 5? | CREATE TABLE table_name_40 (games_played INTEGER, losses VARCHAR, wins VARCHAR) | SELECT MAX(games_played) FROM table_name_40 WHERE losses = 3 AND wins > 5 |
what's the position with team being skilled racing team | CREATE TABLE table_14139408_1 (position VARCHAR, team VARCHAR) | SELECT position FROM table_14139408_1 WHERE team = "Skilled Racing team" |
Who is the oldest person? | CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE person (name VARCHAR, age INTEGER) | SELECT name FROM Person WHERE age = (SELECT MAX(age) FROM person) |
What is the result for Brent Spiner? | CREATE TABLE table_name_46 (result VARCHAR, nominee VARCHAR) | SELECT result FROM table_name_46 WHERE nominee = "brent spiner" |
How many FG percent values are associated with 59 assists and offensive rebounds under 40? | CREATE TABLE table_name_21 (fg_pct VARCHAR, asst VARCHAR, off_reb VARCHAR) | SELECT COUNT(fg_pct) FROM table_name_21 WHERE asst = 59 AND off_reb < 40 |
Which year did Maryland hold the title with Railroaders LL Brunswick? | CREATE TABLE table_13012165_1 (year VARCHAR, maryland VARCHAR) | SELECT year FROM table_13012165_1 WHERE maryland = "Railroaders LL Brunswick" |
What is footscray's away team score? | CREATE TABLE table_name_66 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_66 WHERE home_team = "footscray" |
Which Accolade had a publication of Under the Radar? | CREATE TABLE table_name_44 (accolade VARCHAR, publication VARCHAR) | SELECT accolade FROM table_name_44 WHERE publication = "under the radar" |
When the crowd was bigger than 26,063, who was the Away team? | CREATE TABLE table_name_74 (away_team VARCHAR, crowd INTEGER) | SELECT away_team FROM table_name_74 WHERE crowd > 26 OFFSET 063 |
What is Chosen By, when Couple is Katee Shean Joshua Allen, and when Choreographer(s) is Nakul Dev Mahajan? | CREATE TABLE table_name_10 (chosen_by VARCHAR, couple VARCHAR, choreographer_s_ VARCHAR) | SELECT chosen_by FROM table_name_10 WHERE couple = "katee shean joshua allen" AND choreographer_s_ = "nakul dev mahajan" |
What event did Tim hague have a fight that had a time of 5:00 and a record of 10-4? | CREATE TABLE table_name_88 (event VARCHAR, time VARCHAR, record VARCHAR) | SELECT event FROM table_name_88 WHERE time = "5:00" AND record = "10-4" |
What was the overall record in the game won by D. Klein (2-0)? | CREATE TABLE table_27862483_3 (overall_record VARCHAR, win VARCHAR) | SELECT overall_record FROM table_27862483_3 WHERE win = "D. Klein (2-0)" |
What was the score when the record was 39-62? | CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_29 WHERE record = "39-62" |
Tell me the venue with result of eng by 6 wkts | CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR) | SELECT venue FROM table_name_72 WHERE result = "eng by 6 wkts" |
Who made the car that Alberto Ascari went more than 35 laps on a grid less than 7? | CREATE TABLE table_name_4 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR) | SELECT constructor FROM table_name_4 WHERE grid < 7 AND laps > 35 AND driver = "alberto ascari" |
Qhat was the position of sail 6606? | CREATE TABLE table_1858574_3 (position VARCHAR, sail_number VARCHAR) | SELECT position FROM table_1858574_3 WHERE sail_number = "6606" |
what is the analog type for wxmi? | CREATE TABLE table_name_9 (analog VARCHAR, callsign VARCHAR) | SELECT analog FROM table_name_9 WHERE callsign = "wxmi" |
Name the lowest reported isn for russia | CREATE TABLE table_name_28 (reported_isn INTEGER, citizenship VARCHAR) | SELECT MIN(reported_isn) FROM table_name_28 WHERE citizenship = "russia" |
What horse won with a trainer of "no race"? | CREATE TABLE table_name_21 (winner VARCHAR, trainer VARCHAR) | SELECT winner FROM table_name_21 WHERE trainer = "no race" |
How many results does the California 29 voting district have? | CREATE TABLE table_1342149_6 (result VARCHAR, district VARCHAR) | SELECT COUNT(result) FROM table_1342149_6 WHERE district = "California 29" |
The competition that took place on 4 Apr 1997 ended with what as the score? | CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_42 WHERE date = "4 apr 1997" |
How many draws have french as the language, with a place less than 1? | CREATE TABLE table_name_93 (draw INTEGER, language VARCHAR, place VARCHAR) | SELECT SUM(draw) FROM table_name_93 WHERE language = "french" AND place < 1 |
What is the customer id of the customer who has the most orders? | CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR) | SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1 |
What is the division for the division semifinals playoffs? | CREATE TABLE table_1087659_2 (division VARCHAR, playoffs VARCHAR) | SELECT division FROM table_1087659_2 WHERE playoffs = "division Semifinals" |
What away team has wrexham as the home team? | CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_44 WHERE home_team = "wrexham" |
What is the total number of bronze a team with more than 0 silver, a total of 7 medals, and less than 1 gold medal has? | CREATE TABLE table_name_97 (bronze VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR) | SELECT COUNT(bronze) FROM table_name_97 WHERE silver > 0 AND total = 7 AND gold < 1 |
In the Phoenix Open, what was the winning score? | CREATE TABLE table_name_28 (winning_score VARCHAR, tournament VARCHAR) | SELECT winning_score FROM table_name_28 WHERE tournament = "phoenix open" |
What NFL Teams have the player Aaron Williams? | CREATE TABLE table_2508633_11 (nfl_team VARCHAR, player VARCHAR) | SELECT nfl_team FROM table_2508633_11 WHERE player = "Aaron Williams" |
In what season was the pct % 0.552? | CREATE TABLE table_2110959_1 (season VARCHAR, pct__percentage VARCHAR) | SELECT season FROM table_2110959_1 WHERE pct__percentage = "0.552" |
What percentage of browsers were using Internet Explorer during the period in which 24.91% were using Chrome? | CREATE TABLE table_name_97 (internet_explorer VARCHAR, chrome VARCHAR) | SELECT internet_explorer FROM table_name_97 WHERE chrome = "24.91%" |
What is the rank of the gatchaman of Jinpei? | CREATE TABLE table_name_76 (rank VARCHAR, gatchaman VARCHAR) | SELECT rank FROM table_name_76 WHERE gatchaman = "jinpei" |
What is the 2007 Lukoil oil prodroduction when in 2010 oil production 3.137 million tonnes? | CREATE TABLE table_name_8 (Id VARCHAR) | SELECT 2007 FROM table_name_8 WHERE 2010 = "3.137" |
For teams in the Sun Belt conference, what is the conference record? | CREATE TABLE table_16295365_1 (conf_record VARCHAR, conference VARCHAR) | SELECT conf_record FROM table_16295365_1 WHERE conference = "Sun Belt" |
What is the Place of the Player with a Score of 72-70-72=214? | CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_86 WHERE score = 72 - 70 - 72 = 214 |
how many times is the rank more than 29, the athlete is barbara pierre and the heat less than 5? | CREATE TABLE table_name_8 (time VARCHAR, heat VARCHAR, rank VARCHAR, athlete VARCHAR) | SELECT COUNT(time) FROM table_name_8 WHERE rank > 29 AND athlete = "barbara pierre" AND heat < 5 |
What is the number eliminated for the person with a time of 12:38? | CREATE TABLE table_name_15 (eliminated VARCHAR, time VARCHAR) | SELECT eliminated AS by FROM table_name_15 WHERE time = "12:38" |
What is the Hanzi for píngfáng qū? | CREATE TABLE table_name_4 (hanzi VARCHAR, hanyu_pinyin VARCHAR) | SELECT hanzi FROM table_name_4 WHERE hanyu_pinyin = "píngfáng qū" |
What format has France as the region, with Universal Licensing Music (ulm) as the label? | CREATE TABLE table_name_72 (format VARCHAR, region VARCHAR, label VARCHAR) | SELECT format FROM table_name_72 WHERE region = "france" AND label = "universal licensing music (ulm)" |
How many millions of Blackberry OS smartphones were shipped when 10.4 million Symbian smartphones were shipped? | CREATE TABLE table_14260687_3 (blackberry_os VARCHAR, symbian VARCHAR) | SELECT blackberry_os FROM table_14260687_3 WHERE symbian = "10.4" |
Which Tournament has a Winner and score of goran ivanišević 6–4, 6–2, 7–6(2)? | CREATE TABLE table_name_33 (tournament VARCHAR, winner_and_score VARCHAR) | SELECT tournament FROM table_name_33 WHERE winner_and_score = "goran ivanišević 6–4, 6–2, 7–6(2)" |
Where was the place that the downhill was 71.6 and the average was less than 90.06? | CREATE TABLE table_name_87 (place INTEGER, average VARCHAR, downhill VARCHAR) | SELECT SUM(place) FROM table_name_87 WHERE average < 90.06 AND downhill = 71.6 |
What's cameron dantley's total avg/g for loss less than 35? | CREATE TABLE table_name_69 (avg_g VARCHAR, name VARCHAR, loss VARCHAR) | SELECT COUNT(avg_g) FROM table_name_69 WHERE name = "cameron dantley" AND loss < 35 |
Who directed the episode that was viewed by 2.50 million people in the U.S.? | CREATE TABLE table_11820086_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) | SELECT directed_by FROM table_11820086_1 WHERE us_viewers__millions_ = "2.50" |
What are the final points a 0 total and 22 draws? | CREATE TABLE table_name_60 (final_points VARCHAR, total VARCHAR, draw VARCHAR) | SELECT final_points FROM table_name_60 WHERE total = "0" AND draw = 22 |
What was the name of the tournament that the final was played against Yi Jingqian? | CREATE TABLE table_name_89 (tournament VARCHAR, opponent_in_the_final VARCHAR) | SELECT tournament FROM table_name_89 WHERE opponent_in_the_final = "yi jingqian" |
Which To par has a Country of australia, and a Year(s) won of 1990? | CREATE TABLE table_name_42 (to_par INTEGER, country VARCHAR, year_s__won VARCHAR) | SELECT MIN(to_par) FROM table_name_42 WHERE country = "australia" AND year_s__won = "1990" |
What is Record, when Home is "New York Rangers", and when Date is "April 17"? | CREATE TABLE table_name_4 (record VARCHAR, home VARCHAR, date VARCHAR) | SELECT record FROM table_name_4 WHERE home = "new york rangers" AND date = "april 17" |
What's the total number of overall rankings of 廖尹宁 jvnne leow's events that are eliminated? | CREATE TABLE table_name_12 (overall_ranking VARCHAR, status VARCHAR, name VARCHAR) | SELECT COUNT(overall_ranking) FROM table_name_12 WHERE status = "eliminated" AND name = "廖尹宁 jvnne leow" |
What is Name, when Prize is "$279.330"? | CREATE TABLE table_name_64 (name VARCHAR, prize VARCHAR) | SELECT name FROM table_name_64 WHERE prize = "$279.330" |
What is the away team whose home is Victoria? | CREATE TABLE table_name_42 (away VARCHAR, home VARCHAR) | SELECT away FROM table_name_42 WHERE home = "victoria" |
What was the publication year ranking l.a. is 1st? | CREATE TABLE table_19948664_2 (year_of_publication VARCHAR, ranking_la__2_ VARCHAR) | SELECT year_of_publication FROM table_19948664_2 WHERE ranking_la__2_ = "1st" |
What is the date for the Nebula Label, and a nebdjx029 catalog? | CREATE TABLE table_name_93 (date VARCHAR, label VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_93 WHERE label = "nebula" AND catalog = "nebdjx029" |
Name the number of records for 30 game | CREATE TABLE table_23285805_5 (record VARCHAR, game VARCHAR) | SELECT COUNT(record) FROM table_23285805_5 WHERE game = 30 |
Who were the superintendent(s) when the middle school principal was alan degroote, the gorham principal was paul lahue, and the year was 2006-2007? | CREATE TABLE table_25037577_1 (superintendent VARCHAR, year VARCHAR, middle_school_principal VARCHAR, gorham_principal VARCHAR) | SELECT superintendent FROM table_25037577_1 WHERE middle_school_principal = "Alan Degroote" AND gorham_principal = "Paul Lahue" AND year = "2006-2007" |
What is the position of the song thar genjor mcnell performed? | CREATE TABLE table_23585197_3 (position VARCHAR, artist VARCHAR) | SELECT position FROM table_23585197_3 WHERE artist = "Genjor McNell" |
How many households have yadkin as the county? | CREATE TABLE table_name_71 (number_of_households VARCHAR, county VARCHAR) | SELECT number_of_households FROM table_name_71 WHERE county = "yadkin" |
What is the NCBI Accession Number of the Homo Sapiens species? | CREATE TABLE table_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR) | SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE species = "Homo sapiens" |
Who is the driver when the laps are smaller than 14, the grid is smaller than 16, and the Time/retired is not classified? | CREATE TABLE table_name_82 (driver VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_82 WHERE laps < 14 AND grid < 16 AND time_retired = "not classified" |
What's the Date for the Region of Europe and has the Catalog of 28765 22392 8? | CREATE TABLE table_name_70 (date VARCHAR, region VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_70 WHERE region = "europe" AND catalog = "28765 22392 8" |
What is every value for Under-11 if Under-19 is Leong Siu Lynn? | CREATE TABLE table_26368963_2 (under_11 VARCHAR, under_19 VARCHAR) | SELECT under_11 FROM table_26368963_2 WHERE under_19 = "Leong Siu Lynn" |
Which poll had a week 10 larger than 2, a week 2 of exactly 12, and a week 13 of 8? | CREATE TABLE table_name_10 (poll VARCHAR, wk_13 VARCHAR, wk_10 VARCHAR, wk_2 VARCHAR) | SELECT poll FROM table_name_10 WHERE wk_10 > 2 AND wk_2 = "12" AND wk_13 = 8 |
Which vocal type did the musician with last name "Heilo" played in the song with title "Der Kapitan"? | CREATE TABLE band (id VARCHAR, lastname VARCHAR); CREATE TABLE vocals (songid VARCHAR, bandmate VARCHAR); CREATE TABLE songs (songid VARCHAR, title VARCHAR) | SELECT TYPE FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid JOIN band AS T3 ON T1.bandmate = T3.id WHERE T3.lastname = "Heilo" AND T2.title = "Der Kapitan" |
what is the score for the game on 21 april 2001? | CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_25 WHERE date = "21 april 2001" |
What are names of countries with the top 3 largest population? | CREATE TABLE country (Name VARCHAR, Population VARCHAR) | SELECT Name FROM country ORDER BY Population DESC LIMIT 3 |
what fleet is associated with the number L4? | CREATE TABLE table_name_61 (fleet VARCHAR, number VARCHAR) | SELECT fleet FROM table_name_61 WHERE number = "l4" |
Who is the director of the original title perl oder pica? | CREATE TABLE table_22073745_1 (director VARCHAR, original_title VARCHAR) | SELECT director FROM table_22073745_1 WHERE original_title = "Perl oder Pica" |
Which College has an Overall of 308? | CREATE TABLE table_name_46 (college VARCHAR, overall VARCHAR) | SELECT college FROM table_name_46 WHERE overall = 308 |
What is the nationality with a 13.21 time? | CREATE TABLE table_name_55 (nationality VARCHAR, time VARCHAR) | SELECT nationality FROM table_name_55 WHERE time = 13.21 |
On what date were less than 10 built with a locomotive number of 31-35? | CREATE TABLE table_name_48 (date VARCHAR, no_built VARCHAR, loco_nos VARCHAR) | SELECT date FROM table_name_48 WHERE no_built < 10 AND loco_nos = "31-35" |
What date was the opponent in the final Virginie Pichet? | CREATE TABLE table_name_46 (date VARCHAR, opponent_in_final VARCHAR) | SELECT date FROM table_name_46 WHERE opponent_in_final = "virginie pichet" |
What is the Blank Ends when there are less than 39 ends won and, more than 35 ends lost, and 4 stolen ends. | CREATE TABLE table_name_88 (blank_ends VARCHAR, stolen_ends VARCHAR, ends_won VARCHAR, ends_lost VARCHAR) | SELECT blank_ends FROM table_name_88 WHERE ends_won < 39 AND ends_lost > 35 AND stolen_ends = 4 |
Who was the winner from team Asics-c.g.a. and has a mountains classification of Mariano Piccoli? | CREATE TABLE table_name_52 (winner VARCHAR, trofeo_fast_team VARCHAR, mountains_classification VARCHAR) | SELECT winner FROM table_name_52 WHERE trofeo_fast_team = "asics-c.g.a." AND mountains_classification = "mariano piccoli" |
How many season numbers are there for the episode seen by 13.54 million people in the US? | CREATE TABLE table_23528223_2 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(no_in_season) FROM table_23528223_2 WHERE us_viewers__millions_ = "13.54" |
Which last names are both used by customers and by staff? | CREATE TABLE Customers (last_name VARCHAR); CREATE TABLE Staff (last_name VARCHAR) | SELECT last_name FROM Customers INTERSECT SELECT last_name FROM Staff |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.