question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What's the name of the episode seen by 9.63 millions of people in the US, whose director is Laura Innes? | CREATE TABLE table_23799653_1 (title VARCHAR, directed_by VARCHAR, us_viewers__millions_ VARCHAR) | {
"SQL_Query": "SELECT title FROM table_23799653_1 WHERE directed_by = \"Laura Innes\" AND us_viewers__millions_ = \"9.63\""
} |
How many points per game have the tournament 2005 eurobasket? | CREATE TABLE table_2387461_1 (points_per_game VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT points_per_game FROM table_2387461_1 WHERE tournament = \"2005 EuroBasket\""
} |
How may assists per game have 7.7 points per game? | CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, points_per_game VARCHAR) | {
"SQL_Query": "SELECT assists_per_game FROM table_2387461_1 WHERE points_per_game = \"7.7\""
} |
How many games played have 4.7 as points per game? | CREATE TABLE table_2387461_1 (games_played VARCHAR, points_per_game VARCHAR) | {
"SQL_Query": "SELECT games_played FROM table_2387461_1 WHERE points_per_game = \"4.7\""
} |
How many assists per game have 4.2 rebounds per game? | CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, rebounds_per_game VARCHAR) | {
"SQL_Query": "SELECT assists_per_game FROM table_2387461_1 WHERE rebounds_per_game = \"4.2\""
} |
How many assists per game in the tournament 2010 fiba world championship? | CREATE TABLE table_2387461_1 (assists_per_game VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT assists_per_game FROM table_2387461_1 WHERE tournament = \"2010 FIBA World Championship\""
} |
How many games played have 4.7 points per game? | CREATE TABLE table_2387461_1 (games_played VARCHAR, points_per_game VARCHAR) | {
"SQL_Query": "SELECT COUNT(games_played) FROM table_2387461_1 WHERE points_per_game = \"4.7\""
} |
What was the average finish the year Bodine finished 3rd? | CREATE TABLE table_2387790_2 (avg_finish VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT avg_finish FROM table_2387790_2 WHERE position = \"3rd\""
} |
What position did he finish in 1987? | CREATE TABLE table_2387790_2 (position VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT position FROM table_2387790_2 WHERE year = 1987"
} |
What team was Bodine in when he had an average finish of 8.3? | CREATE TABLE table_2387790_2 (team_s_ VARCHAR, avg_finish VARCHAR) | {
"SQL_Query": "SELECT team_s_ FROM table_2387790_2 WHERE avg_finish = \"8.3\""
} |
How many years did he have an average finish of 11.7? | CREATE TABLE table_2387790_2 (avg_start VARCHAR, avg_finish VARCHAR) | {
"SQL_Query": "SELECT COUNT(avg_start) FROM table_2387790_2 WHERE avg_finish = \"11.7\""
} |
What is the least value for week? | CREATE TABLE table_23916462_3 (week INTEGER) | {
"SQL_Query": "SELECT MIN(week) FROM table_23916462_3"
} |
How many values for attendance on the date of September 5? | CREATE TABLE table_23916462_3 (attendance VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(attendance) FROM table_23916462_3 WHERE date = \"September 5\""
} |
How many dates for the week of 4? | CREATE TABLE table_23916462_3 (date VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT COUNT(date) FROM table_23916462_3 WHERE week = 4"
} |
How many values for attendance on the date of August 26? | CREATE TABLE table_23916462_3 (attendance VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(attendance) FROM table_23916462_3 WHERE date = \"August 26\""
} |
what is the total 07-08 gp/jgp 2nd with the name mao asada | CREATE TABLE table_23938357_5 (name VARCHAR) | {
"SQL_Query": "SELECT 07 AS _08_gp_jgp_2nd FROM table_23938357_5 WHERE name = \"Mao Asada\""
} |
Name the owners 2009 for south side indianapolis | CREATE TABLE table_23958917_1 (owner_s___2009_ VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT owner_s___2009_ FROM table_23958917_1 WHERE location = \"South Side Indianapolis\""
} |
Name the stacks for 1 1969 2 1995 | CREATE TABLE table_23958917_1 (stacks VARCHAR, in_service_dates VARCHAR) | {
"SQL_Query": "SELECT stacks FROM table_23958917_1 WHERE in_service_dates = \"1 1969 2 1995\""
} |
Name the number of stacks for 1 & 2 235 mw 3 & 4 88.2 mw | CREATE TABLE table_23958917_1 (stacks VARCHAR, unit_capacity__2009_ VARCHAR) | {
"SQL_Query": "SELECT COUNT(stacks) FROM table_23958917_1 WHERE unit_capacity__2009_ = \"1 & 2 235 MW 3 & 4 88.2 MW\""
} |
Name the number for service dates for hoosier energy for petersburg | CREATE TABLE table_23958917_1 (in_service_dates VARCHAR, owner_s___2009_ VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT COUNT(in_service_dates) FROM table_23958917_1 WHERE owner_s___2009_ = \"Hoosier Energy\" AND location = \"Petersburg\""
} |
What frequency does model L34xx use? | CREATE TABLE table_24018112_1 (frequency VARCHAR, model__list_ VARCHAR) | {
"SQL_Query": "SELECT frequency FROM table_24018112_1 WHERE model__list_ = \"L34xx\""
} |
What brand is model G6xxx? | CREATE TABLE table_24018112_1 (brand_name VARCHAR, model__list_ VARCHAR) | {
"SQL_Query": "SELECT brand_name FROM table_24018112_1 WHERE model__list_ = \"G6xxx\""
} |
What is the maximum memory speed for frequencies between 2.93-3.2ghz? | CREATE TABLE table_24018112_1 (max_memory_speed VARCHAR, frequency VARCHAR) | {
"SQL_Query": "SELECT max_memory_speed FROM table_24018112_1 WHERE frequency = \"2.93-3.2GHz\""
} |
What brand is model I7-8xx? | CREATE TABLE table_24018112_1 (brand_name VARCHAR, model__list_ VARCHAR) | {
"SQL_Query": "SELECT brand_name FROM table_24018112_1 WHERE model__list_ = \"i7-8xx\""
} |
List the number of cores for ddr3-1333 with frequencies between 2.66-2.8ghz. | CREATE TABLE table_24018112_1 (cores_threads VARCHAR, max_memory_speed VARCHAR, frequency VARCHAR) | {
"SQL_Query": "SELECT cores_threads FROM table_24018112_1 WHERE max_memory_speed = \"DDR3-1333\" AND frequency = \"2.66-2.8GHz\""
} |
What frequency does the Pentium processor use? | CREATE TABLE table_24018112_1 (frequency VARCHAR, brand_name VARCHAR) | {
"SQL_Query": "SELECT frequency FROM table_24018112_1 WHERE brand_name = \"Pentium\""
} |
How many different counts of the votes for Bush are there in the county where he got 69.7% of the votes? | CREATE TABLE table_2401326_1 (bush_number VARCHAR, bush_percentage VARCHAR) | {
"SQL_Query": "SELECT COUNT(bush_number) FROM table_2401326_1 WHERE bush_percentage = \"69.7%\""
} |
What percentage of the votes in Oneida did Kerry win? | CREATE TABLE table_2401326_1 (kerry_percentage VARCHAR, county VARCHAR) | {
"SQL_Query": "SELECT kerry_percentage FROM table_2401326_1 WHERE county = \"Oneida\""
} |
What percentage of the people in Bonneville voted for Bush? | CREATE TABLE table_2401326_1 (bush_percentage VARCHAR, county VARCHAR) | {
"SQL_Query": "SELECT bush_percentage FROM table_2401326_1 WHERE county = \"Bonneville\""
} |
What percentage of the votes were for others in the county where 462 people voted that way? | CREATE TABLE table_2401326_1 (others_percentage VARCHAR, others_number VARCHAR) | {
"SQL_Query": "SELECT others_percentage FROM table_2401326_1 WHERE others_number = 462"
} |
What's percentage voted for Busg in the county where Kerry got 37.6%? | CREATE TABLE table_2401326_1 (bush_percentage VARCHAR, kerry_percentage VARCHAR) | {
"SQL_Query": "SELECT bush_percentage FROM table_2401326_1 WHERE kerry_percentage = \"37.6%\""
} |
How many people voted for Kerry in the county where 8 voted for others? | CREATE TABLE table_2401326_1 (kerry_number INTEGER, others_number VARCHAR) | {
"SQL_Query": "SELECT MIN(kerry_number) FROM table_2401326_1 WHERE others_number = 8"
} |
When north american record is the world record who is the denis nizhegorodov ( rus )? | CREATE TABLE table_24059973_3 (denis_nizhegorodov___rus__ VARCHAR, world_record VARCHAR) | {
"SQL_Query": "SELECT denis_nizhegorodov___rus__ FROM table_24059973_3 WHERE world_record = \"North American record\""
} |
How many incoming managers were there after Roy Hodgson left the position for the Fulham team? | CREATE TABLE table_24172157_3 (incoming_manager VARCHAR, outgoing_manager VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT COUNT(incoming_manager) FROM table_24172157_3 WHERE outgoing_manager = \"Roy Hodgson\" AND team = \"Fulham\""
} |
What is the table for the team Blackburn Rovers? | CREATE TABLE table_24172157_3 (table VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT table FROM table_24172157_3 WHERE team = \"Blackburn Rovers\""
} |
What was the date of appointment for incoming manager Roy Hodgson and the team is Liverpool? | CREATE TABLE table_24172157_3 (date_of_appointment VARCHAR, team VARCHAR, incoming_manager VARCHAR) | {
"SQL_Query": "SELECT date_of_appointment FROM table_24172157_3 WHERE team = \"Liverpool\" AND incoming_manager = \"Roy Hodgson\""
} |
What team has an incoming manager named Kenny Dalglish? | CREATE TABLE table_24172157_3 (team VARCHAR, incoming_manager VARCHAR) | {
"SQL_Query": "SELECT team FROM table_24172157_3 WHERE incoming_manager = \"Kenny Dalglish\""
} |
What is the date of vacancy for the Liverpool team with a table named pre-season? | CREATE TABLE table_24172157_3 (date_of_vacancy VARCHAR, table VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT date_of_vacancy FROM table_24172157_3 WHERE table = \"Pre-season\" AND team = \"Liverpool\""
} |
When steve mcclaren is the replacer what is the manner of departure? | CREATE TABLE table_24162080_3 (manner_of_departure VARCHAR, replaced_by VARCHAR) | {
"SQL_Query": "SELECT manner_of_departure FROM table_24162080_3 WHERE replaced_by = \"Steve McClaren\""
} |
When 1. fc köln is the team what is the date of appointment? | CREATE TABLE table_24162080_3 (date_of_appointment VARCHAR, team VARCHAR) | {
"SQL_Query": "SELECT date_of_appointment FROM table_24162080_3 WHERE team = \"1. FC Köln\""
} |
When 1999 is the year how many tournaments are there? | CREATE TABLE table_2417741_1 (tournament VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT COUNT(tournament) FROM table_2417741_1 WHERE year = 1999"
} |
When cary middlecoff is the winner how many pars are there? | CREATE TABLE table_2417741_1 (par VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT COUNT(par) FROM table_2417741_1 WHERE winner = \"Cary Middlecoff\""
} |
When hale irwin is the winner what is the margin of victory? | CREATE TABLE table_2417741_1 (margin_of_victory VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT margin_of_victory FROM table_2417741_1 WHERE winner = \"Hale Irwin\""
} |
How many entries are there for founded when the location was springfield, ohio? | CREATE TABLE table_24195232_1 (founded VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT COUNT(founded) FROM table_24195232_1 WHERE location = \"Springfield, Ohio\""
} |
What was the location for the team name of patriots? | CREATE TABLE table_24195232_1 (location VARCHAR, team_name VARCHAR) | {
"SQL_Query": "SELECT location FROM table_24195232_1 WHERE team_name = \"Patriots\""
} |
What is the location when founded was 1957? | CREATE TABLE table_24195232_1 (location VARCHAR, founded VARCHAR) | {
"SQL_Query": "SELECT location FROM table_24195232_1 WHERE founded = 1957"
} |
What is the affiliation when the institution was ohio christian university? | CREATE TABLE table_24195232_1 (affiliation VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT affiliation FROM table_24195232_1 WHERE institution = \"Ohio Christian University\""
} |
What is the institution that was located is circleville, ohio? | CREATE TABLE table_24195232_1 (institution VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT institution FROM table_24195232_1 WHERE location = \"Circleville, Ohio\""
} |
What is the location for the team name of eagles? | CREATE TABLE table_24195232_1 (location VARCHAR, team_name VARCHAR) | {
"SQL_Query": "SELECT location FROM table_24195232_1 WHERE team_name = \"Eagles\""
} |
When did the episode that had 5.09 million total viewers (both Live and SD types) first air? | CREATE TABLE table_24222929_3 (original_airdate VARCHAR, live VARCHAR, sd_total_viewers VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_24222929_3 WHERE live + sd_total_viewers = \"5.09 million\""
} |
How many total viewers (combined Live and SD) watched the episode with a share of 8? | CREATE TABLE table_24222929_3 (live VARCHAR, share VARCHAR) | {
"SQL_Query": "SELECT live + 7 AS _day_dvr_total_viewers FROM table_24222929_3 WHERE share = \"8\""
} |
When did the fourth episode of the season (4 1-04) first air? | CREATE TABLE table_24222929_3 (original_airdate VARCHAR, episode_number_production_number VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_24222929_3 WHERE episode_number_production_number = \"4 1-04\""
} |
When did the episode that had 3.69 million total viewers (Live and SD types combined) first air? | CREATE TABLE table_24222929_3 (original_airdate VARCHAR, live VARCHAR, sd_total_viewers VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_24222929_3 WHERE live + sd_total_viewers = \"3.69 million\""
} |
Who was the leading actor in the film with a supporting actor named Cecil Kellaway? | CREATE TABLE table_24225238_1 (leading_actor VARCHAR, supporting_actor VARCHAR) | {
"SQL_Query": "SELECT leading_actor FROM table_24225238_1 WHERE supporting_actor = \"Cecil Kellaway\""
} |
Who was the supporting actress in "For Whom the Bell Tolls"? | CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, film VARCHAR) | {
"SQL_Query": "SELECT supporting_actress FROM table_24225238_1 WHERE film = \"For Whom the Bell Tolls\""
} |
Who was the supporting actress in a film with Diane Keaton as the leading actress? | CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, leading_actress VARCHAR) | {
"SQL_Query": "SELECT supporting_actress FROM table_24225238_1 WHERE leading_actress = \"Diane Keaton\""
} |
Who was the leading actress in a film with Warren Beatty as the leading actor and also at the 40th Oscars? | CREATE TABLE table_24225238_1 (leading_actress VARCHAR, leading_actor VARCHAR, oscars VARCHAR) | {
"SQL_Query": "SELECT leading_actress FROM table_24225238_1 WHERE leading_actor = \"Warren Beatty\" AND oscars = \"40th\""
} |
Which film had Charles Bickford as supporting actor? | CREATE TABLE table_24225238_1 (film VARCHAR, supporting_actor VARCHAR) | {
"SQL_Query": "SELECT film FROM table_24225238_1 WHERE supporting_actor = \"Charles Bickford\""
} |
Who was the supporting actress in 1943? | CREATE TABLE table_24225238_1 (supporting_actress VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT supporting_actress FROM table_24225238_1 WHERE year = 1943"
} |
How many episodes aired in Sydney in Week 3? | CREATE TABLE table_24291077_4 (sydney VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT COUNT(sydney) FROM table_24291077_4 WHERE week = 3"
} |
How many viewers were there in Sydney for the episode when there were 334000 in Melbourne? | CREATE TABLE table_24291077_4 (sydney VARCHAR, melbourne VARCHAR) | {
"SQL_Query": "SELECT sydney FROM table_24291077_4 WHERE melbourne = 334000"
} |
How many Adelaide viewers were there in Week 5? | CREATE TABLE table_24291077_4 (adelaide VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT adelaide FROM table_24291077_4 WHERE week = 5"
} |
What is the highest number of Brisbane viewers? | CREATE TABLE table_24291077_4 (brisbane INTEGER) | {
"SQL_Query": "SELECT MAX(brisbane) FROM table_24291077_4"
} |
What was the rating in Brisbane the week it was 276000 in Melbourne? | CREATE TABLE table_24291077_8 (brisbane INTEGER, melbourne VARCHAR) | {
"SQL_Query": "SELECT MAX(brisbane) FROM table_24291077_8 WHERE melbourne = 276000"
} |
What was the total rating on week 3? | CREATE TABLE table_24291077_8 (total VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT total FROM table_24291077_8 WHERE week = 3"
} |
What was the rating for Brisbane the week that Adelaide had 94000? | CREATE TABLE table_24291077_8 (brisbane INTEGER, adelaide VARCHAR) | {
"SQL_Query": "SELECT MIN(brisbane) FROM table_24291077_8 WHERE adelaide = 94000"
} |
How many millions of people in the US watched when Kevin Bray was director? | CREATE TABLE table_24319661_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR) | {
"SQL_Query": "SELECT us_viewers__million_ FROM table_24319661_3 WHERE directed_by = \"Kevin Bray\""
} |
How many episodes in the season had 3.81 million US viewers? | CREATE TABLE table_24319661_3 (no_in_season VARCHAR, us_viewers__million_ VARCHAR) | {
"SQL_Query": "SELECT COUNT(no_in_season) FROM table_24319661_3 WHERE us_viewers__million_ = \"3.81\""
} |
What is the maximum folded value of the team whose stadium is Fraser Field? | CREATE TABLE table_24334261_1 (folded INTEGER, stadium VARCHAR) | {
"SQL_Query": "SELECT MAX(folded) FROM table_24334261_1 WHERE stadium = \"Fraser Field\""
} |
What is the maximum founded year of the Worcester Tornadoes? | CREATE TABLE table_24334261_1 (founded INTEGER, team VARCHAR) | {
"SQL_Query": "SELECT MAX(founded) FROM table_24334261_1 WHERE team = \"Worcester Tornadoes\""
} |
How many viewers were there for airdate is 22 october 2009? | CREATE TABLE table_24399615_3 (viewers INTEGER, airdate VARCHAR) | {
"SQL_Query": "SELECT MAX(viewers) FROM table_24399615_3 WHERE airdate = \"22 October 2009\""
} |
What is the cable rank for episode no. 4? | CREATE TABLE table_24399615_3 (cable_rank VARCHAR, episode_no VARCHAR) | {
"SQL_Query": "SELECT cable_rank FROM table_24399615_3 WHERE episode_no = 4"
} |
Where where the bbc three weekly ranking for episode no. 5? | CREATE TABLE table_24399615_3 (bbc_three_weekly_ranking VARCHAR, episode_no VARCHAR) | {
"SQL_Query": "SELECT bbc_three_weekly_ranking FROM table_24399615_3 WHERE episode_no = 5"
} |
What is the cable rank for bbc three weekly ranking of n/a? | CREATE TABLE table_24399615_3 (cable_rank VARCHAR, bbc_three_weekly_ranking VARCHAR) | {
"SQL_Query": "SELECT cable_rank FROM table_24399615_3 WHERE bbc_three_weekly_ranking = \"N/A\""
} |
What is the cable rank for the airdate of 10 december 2009? | CREATE TABLE table_24399615_3 (cable_rank VARCHAR, airdate VARCHAR) | {
"SQL_Query": "SELECT cable_rank FROM table_24399615_3 WHERE airdate = \"10 December 2009\""
} |
How many entries are shown for viewers when the airdate was 26 november 2009? | CREATE TABLE table_24399615_3 (viewers VARCHAR, airdate VARCHAR) | {
"SQL_Query": "SELECT COUNT(viewers) FROM table_24399615_3 WHERE airdate = \"26 November 2009\""
} |
What is the difficulty of the athens circuit? | CREATE TABLE table_24463470_1 (difficulty VARCHAR, circuit VARCHAR) | {
"SQL_Query": "SELECT difficulty FROM table_24463470_1 WHERE circuit = \"Athens\""
} |
How many instances is paris the unlock? | CREATE TABLE table_24463470_1 (unlock_order VARCHAR, unlocks VARCHAR) | {
"SQL_Query": "SELECT COUNT(unlock_order) FROM table_24463470_1 WHERE unlocks = \"Paris\""
} |
How many instances is the unlocked n/a? | CREATE TABLE table_24463470_1 (setting VARCHAR, unlocked_by VARCHAR) | {
"SQL_Query": "SELECT COUNT(setting) FROM table_24463470_1 WHERE unlocked_by = \"N/A\""
} |
What is the lowest unlock order for the athens circuit? | CREATE TABLE table_24463470_1 (unlock_order INTEGER, circuit VARCHAR) | {
"SQL_Query": "SELECT MIN(unlock_order) FROM table_24463470_1 WHERE circuit = \"Athens\""
} |
What is the setting for the hard difficulty? | CREATE TABLE table_24463470_1 (setting VARCHAR, difficulty VARCHAR) | {
"SQL_Query": "SELECT setting FROM table_24463470_1 WHERE difficulty = \"Hard\""
} |
What are the conditions for the athens circuit? | CREATE TABLE table_24463470_1 (conditions VARCHAR, circuit VARCHAR) | {
"SQL_Query": "SELECT conditions FROM table_24463470_1 WHERE circuit = \"Athens\""
} |
What team was he on when he finished in 11th position? | CREATE TABLE table_24491017_1 (team VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT team FROM table_24491017_1 WHERE position = \"11th\""
} |
How many f/laps when he finished 8th? | CREATE TABLE table_24491017_1 (f_laps INTEGER, position VARCHAR) | {
"SQL_Query": "SELECT MAX(f_laps) FROM table_24491017_1 WHERE position = \"8th\""
} |
What team was he on when he had 10 f/laps? | CREATE TABLE table_24491017_1 (team VARCHAR, f_laps VARCHAR) | {
"SQL_Query": "SELECT team FROM table_24491017_1 WHERE f_laps = 10"
} |
How many podiums when he was in the british f3 national class series? | CREATE TABLE table_24491017_1 (podiums VARCHAR, series VARCHAR) | {
"SQL_Query": "SELECT COUNT(podiums) FROM table_24491017_1 WHERE series = \"British F3 National Class\""
} |
Name the last title for cuenca | CREATE TABLE table_2454589_1 (last_title VARCHAR, home_city VARCHAR) | {
"SQL_Query": "SELECT last_title FROM table_2454589_1 WHERE home_city = \"Cuenca\""
} |
Name the first season in the series for 2006 | CREATE TABLE table_2454589_1 (first_season_in_the_serie_a VARCHAR, last_title VARCHAR) | {
"SQL_Query": "SELECT first_season_in_the_serie_a FROM table_2454589_1 WHERE last_title = \"2006\""
} |
Name the last title for 2012 | CREATE TABLE table_2454589_1 (last_title VARCHAR, first_season_in_current_spell VARCHAR) | {
"SQL_Query": "SELECT last_title FROM table_2454589_1 WHERE first_season_in_current_spell = 2012"
} |
Name the club for quevedo | CREATE TABLE table_2454589_1 (club VARCHAR, home_city VARCHAR) | {
"SQL_Query": "SELECT club FROM table_2454589_1 WHERE home_city = \"Quevedo\""
} |
Name the most for first season in the serie a for 7 de octubre | CREATE TABLE table_2454589_1 (first_season_in_the_serie_a INTEGER, stadium VARCHAR) | {
"SQL_Query": "SELECT MAX(first_season_in_the_serie_a) FROM table_2454589_1 WHERE stadium = \"7 de Octubre\""
} |
How many games had less than 7 goals scored? | CREATE TABLE table_24565004_15 (appearances¹ VARCHAR, goals¹ VARCHAR) | {
"SQL_Query": "SELECT COUNT(appearances¹) FROM table_24565004_15 WHERE goals¹ = 7"
} |
List the player that scored 4 times. | CREATE TABLE table_24565004_15 (name VARCHAR, goals¹ VARCHAR) | {
"SQL_Query": "SELECT name FROM table_24565004_15 WHERE goals¹ = 4"
} |
How many players are from the country of Brazil? | CREATE TABLE table_24565004_15 (position VARCHAR, nationality² VARCHAR) | {
"SQL_Query": "SELECT COUNT(position) FROM table_24565004_15 WHERE nationality² = \"Brazil\""
} |
List the number of active years for attaquant. | CREATE TABLE table_24565004_15 (period VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT period FROM table_24565004_15 WHERE position = \"Attaquant\""
} |
What was the mls cup playoffs when concacaf champions cup / concacaf champions league was quarter-finals (09-10)? | CREATE TABLE table_245695_2 (mls_cup_playoffs VARCHAR, concacaf_champions_cup___concacaf_champions_league VARCHAR) | {
"SQL_Query": "SELECT mls_cup_playoffs FROM table_245695_2 WHERE concacaf_champions_cup___concacaf_champions_league = \"Quarter-Finals (09-10)\""
} |
What is the series minimum if the season number is 2.08? | CREATE TABLE table_24639086_3 (series__number INTEGER, season__number VARCHAR) | {
"SQL_Query": "SELECT MIN(series__number) FROM table_24639086_3 WHERE season__number = \"2.08\""
} |
What is the amount of viewers if the series number is 14? | CREATE TABLE table_24639086_3 (viewers__in_millions_ VARCHAR, series__number VARCHAR) | {
"SQL_Query": "SELECT viewers__in_millions_ FROM table_24639086_3 WHERE series__number = 14"
} |
If the amount of viewers is 2.48 million, what is the original air date? | CREATE TABLE table_24639086_3 (original_air_date VARCHAR, viewers__in_millions_ VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_24639086_3 WHERE viewers__in_millions_ = \"2.48\""
} |
If the season number is 2.08, who was the episode written by? | CREATE TABLE table_24639086_3 (written_by VARCHAR, season__number VARCHAR) | {
"SQL_Query": "SELECT written_by FROM table_24639086_3 WHERE season__number = \"2.08\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.