output stringlengths 27 479 | instruction stringlengths 407 1.39k |
|---|---|
SELECT SUM("decile") FROM "thames_coromandel_district" WHERE "area"='whitianga' AND "roll"<835; |
## Task
Generate a SQL query to answer the following question:
`What is the total decile with an Area of whitianga, and a Roll smaller than 835?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "thames_coromandel_district" (
"name" text,
"years" text... |
SELECT "name" FROM "thames_coromandel_district" WHERE "area"='kennedy bay'; |
## Task
Generate a SQL query to answer the following question:
`Which name has an Area of kennedy bay?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "thames_coromandel_district" (
"name" text,
"years" text,
"gender" text,
"area" text,
"autho... |
SELECT "years" FROM "thames_coromandel_district" WHERE "decile">4 AND "area"='thames'; |
## Task
Generate a SQL query to answer the following question:
`Which years have a Decile larger than 4, and an Area of thames?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "thames_coromandel_district" (
"name" text,
"years" text,
"gender" text... |
SELECT "authority" FROM "thames_coromandel_district" WHERE "decile"<6 AND "area"='opoutere'; |
## Task
Generate a SQL query to answer the following question:
`Which Authority has a Decile smaller than 6, and an Area of opoutere?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "thames_coromandel_district" (
"name" text,
"years" text,
"gender... |
SELECT "gender" FROM "thames_coromandel_district" WHERE "years"='1–8' AND "authority"='state' AND "roll"<184 AND "name"='matatoki school'; |
## Task
Generate a SQL query to answer the following question:
`Which gender has Years of 1–8, an Authority of state, a Roll less than 184, and a Name of matatoki school?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "thames_coromandel_district" (
"... |
SELECT "tournament" FROM "nationwide_tour_wins_5" WHERE "winning_score"='–4 (71-72-72-69=284)'; |
## Task
Generate a SQL query to answer the following question:
`What was the tournament that resulted in a winning score of –4 (71-72-72-69=284)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "nationwide_tour_wins_5" (
"date" text,
"tournament" te... |
SELECT "winning_score" FROM "nationwide_tour_wins_5" WHERE "runner_s_up"='brian kamm'; |
## Task
Generate a SQL query to answer the following question:
`What was the winning score of the event where Brian Kamm was the runner-up?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "nationwide_tour_wins_5" (
"date" text,
"tournament" text,
... |
SELECT "runner_s_up" FROM "nationwide_tour_wins_5" WHERE "winning_score"='–15 (66-67-70-70=273)'; |
## Task
Generate a SQL query to answer the following question:
`Who was the runner-up for the event that ended with a winning score of –15 (66-67-70-70=273)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "nationwide_tour_wins_5" (
"date" text,
"to... |
SELECT "date" FROM "nationwide_tour_wins_5" WHERE "tournament"='nike colorado classic'; |
## Task
Generate a SQL query to answer the following question:
`On what date was the Nike Colorado Classic held?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "nationwide_tour_wins_5" (
"date" text,
"tournament" text,
"winning_score" text,
"ma... |
SELECT "winning_score" FROM "nationwide_tour_wins_5" WHERE "tournament"='buy.com siouxland open'; |
## Task
Generate a SQL query to answer the following question:
`What was the winning score of the Buy.com Siouxland Open?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "nationwide_tour_wins_5" (
"date" text,
"tournament" text,
"winning_score" te... |
SELECT MIN("total") FROM "qualification" WHERE "rank">8 AND "routine_score">27.6 AND "difficulty_score"='13.8'; |
## Task
Generate a SQL query to answer the following question:
`What is the total with lower than rank 8, and higher than 27.6 score and 13.8 difficulty?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "qualification" (
"rank" real,
"gymnast" text,
... |
SELECT AVG("total") FROM "participation_and_medals" WHERE "games"<15 AND "silver"<0; |
## Task
Generate a SQL query to answer the following question:
`What is the average medal total of the country who had 0 silver medals and participated in less than 15 games?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "participation_and_medals" (
... |
SELECT MIN("points") FROM "complete_formula_one_results" WHERE "chassis"='forti fg01b forti fg03' AND "year"<1996; |
## Task
Generate a SQL query to answer the following question:
`What is the least Points with Chassis of forti fg01b forti fg03, and a year less than 1996?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "complete_formula_one_results" (
"year" real,
... |
SELECT MIN("year") FROM "complete_formula_one_results" WHERE "engine"='ford zetec-r v8' AND "points">0; |
## Task
Generate a SQL query to answer the following question:
`What is the lowest year for an engine of ford zetec-r v8, and points greater than 0?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "complete_formula_one_results" (
"year" real,
"chass... |
SELECT AVG("points") FROM "complete_formula_one_results" WHERE "engine"='ford zetec-r v8'; |
## Task
Generate a SQL query to answer the following question:
`What are the average points for an engine of ford zetec-r v8?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "complete_formula_one_results" (
"year" real,
"chassis" text,
"engine" te... |
SELECT "years" FROM "central_hawke_s_bay_district" WHERE "name"='elsthorpe school'; |
## Task
Generate a SQL query to answer the following question:
`Name the years for elsthorpe school`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "central_hawke_s_bay_district" (
"name" text,
"years" text,
"gender" text,
"area" text,
"author... |
SELECT COUNT("roll") FROM "central_hawke_s_bay_district" WHERE "name"='st joseph''s school' AND "decile"<5; |
## Task
Generate a SQL query to answer the following question:
`Name the total number of roll for st joseph's school when decile is less than 5`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "central_hawke_s_bay_district" (
"name" text,
"years" tex... |
SELECT "years" FROM "central_hawke_s_bay_district" WHERE "area"='porangahau' AND "name"='porangahau school'; |
## Task
Generate a SQL query to answer the following question:
`Name the years for porangahau school`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "central_hawke_s_bay_district" (
"name" text,
"years" text,
"gender" text,
"area" text,
"autho... |
SELECT "gender" FROM "central_hawke_s_bay_district" WHERE "name"='elsthorpe school'; |
## Task
Generate a SQL query to answer the following question:
`Name the gender for elsthorpe school`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "central_hawke_s_bay_district" (
"name" text,
"years" text,
"gender" text,
"area" text,
"autho... |
SELECT "drivers" FROM "summary" WHERE "chassis"='season cancelled'; |
## Task
Generate a SQL query to answer the following question:
`Name the drivers for chassis of season cancelled`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "summary" (
"season" text,
"chassis" text,
"engine" text,
"tyres" text,
"rounds" t... |
SELECT "teams" FROM "summary" WHERE "third_points"='season cancelled'; |
## Task
Generate a SQL query to answer the following question:
`Name the teams for third points of season cancelled`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "summary" (
"season" text,
"chassis" text,
"engine" text,
"tyres" text,
"rounds... |
SELECT "engine" FROM "summary" WHERE "rounds"='11' AND "teams"='25'; |
## Task
Generate a SQL query to answer the following question:
`Name the engine with rounds of 11 and teams of 25`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "summary" (
"season" text,
"chassis" text,
"engine" text,
"tyres" text,
"rounds" ... |
SELECT "score" FROM "game_log" WHERE "loss"='mcdowell (12-7)'; |
## Task
Generate a SQL query to answer the following question:
`What was the score for the loss of McDowell (12-7)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendan... |
SELECT "score" FROM "game_log" WHERE "attendance">'33,658' AND "record"='73-66'; |
## Task
Generate a SQL query to answer the following question:
`What was the score for the game with an attendance greater than 33,658 and a record of 73-66?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
... |
SELECT SUM("laps") FROM "24_hours_of_le_mans_results" WHERE "year"=2011; |
## Task
Generate a SQL query to answer the following question:
`What is the total laps for the year 2011?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,
... |
SELECT "class_pos" FROM "24_hours_of_le_mans_results" WHERE "pos"='9th'; |
## Task
Generate a SQL query to answer the following question:
`Which team is in 9th place?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,
"laps" real,... |
SELECT SUM("division") FROM "career_statistics" WHERE "country"='serbia and montenegro' AND "apps"<12 AND "goals">0; |
## Task
Generate a SQL query to answer the following question:
`What is the total of the Divison that is from the country Serbia and Montenegro with apps smaller than 12 with more goals than 0?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "career_sta... |
SELECT SUM("goals") FROM "career_statistics" WHERE "team"='partizan' AND "country"='serbia' AND "division">1; |
## Task
Generate a SQL query to answer the following question:
`What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "career_statistics" (
"seas... |
SELECT "year" FROM "works_team_entries" WHERE "engine"='honda ra168e 1.5 v6 t'; |
## Task
Generate a SQL query to answer the following question:
`What year was the Honda ra168e 1.5 v6 t engine used?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "works_team_entries" (
"year" real,
"chassis" text,
"engine" text,
"tyres" text,... |
SELECT "tyres" FROM "works_team_entries" WHERE "chassis"='mp4/14'; |
## Task
Generate a SQL query to answer the following question:
`What tyres were used with the mp4/14 chassis?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "works_team_entries" (
"year" real,
"chassis" text,
"engine" text,
"tyres" text,
"pts... |
SELECT "tickets_sold_available" FROM "box_office_score_data" WHERE "city"='barcelona'; |
## Task
Generate a SQL query to answer the following question:
`How many tickets were there sold/available in Barcelona?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "box_office_score_data" (
"venue" text,
"city" text,
"tickets_sold_available" ... |
SELECT "tickets_sold_available" FROM "box_office_score_data" WHERE "gross_revenue_2011"='$366,916'; |
## Task
Generate a SQL query to answer the following question:
`How many tickets were sold/available when the gross revenue (2011) was $366,916?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "box_office_score_data" (
"venue" text,
"city" text,
"... |
SELECT "tickets_sold_available" FROM "box_office_score_data" WHERE "gross_revenue_2011"='$5,948,390'; |
## Task
Generate a SQL query to answer the following question:
`How many tickets were sold/available when the gross revenue (2011) was $5,948,390?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "box_office_score_data" (
"venue" text,
"city" text,
... |
SELECT "gross_revenue_1986" FROM "box_office_score_data" WHERE "tickets_sold_available"='24,000 / 24,000 (100%)'; |
## Task
Generate a SQL query to answer the following question:
`What was the gross revenue (1986) when there were tickets sold/available of 24,000 / 24,000 (100%)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "box_office_score_data" (
"venue" text,... |
SELECT "1st_leg" FROM "second_round" WHERE "team_2"='stade d''abidjan'; |
## Task
Generate a SQL query to answer the following question:
`What was the score in the 1st leg when Stade d'Abidjan was Team 2?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "second_round" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_le... |
SELECT "agg" FROM "second_round" WHERE "team_1"='union douala'; |
## Task
Generate a SQL query to answer the following question:
`What was the aggregate score that had Union Douala as Team 1?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "second_round" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" te... |
SELECT "2nd_leg" FROM "second_round" WHERE "agg"='4-9'; |
## Task
Generate a SQL query to answer the following question:
`What was the 2nd leg score of the aggregate score of 4-9?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "second_round" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
... |
SELECT "team_2" FROM "second_round" WHERE "team_1"='stationery stores'; |
## Task
Generate a SQL query to answer the following question:
`Who was Team 2 when Stationery Stores was Team 1?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "second_round" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
"2nd_l... |
SELECT "team_1" FROM "second_round" WHERE "agg"='1-1 1'; |
## Task
Generate a SQL query to answer the following question:
`Which Team 1 has an aggregate score of 1-1 1?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "second_round" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
"2nd_leg" ... |
SELECT "chassis" FROM "complete_european_formula_two_championsh" WHERE "year"=1977; |
## Task
Generate a SQL query to answer the following question:
`Can you tell me the Chassis that has the Year of 1977?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "complete_european_formula_two_championsh" (
"year" real,
"entrant" text,
"chass... |
SELECT "entrant" FROM "complete_european_formula_two_championsh" WHERE "chassis"='march 742' AND "year">1974; |
## Task
Generate a SQL query to answer the following question:
`Can you tell me the Entrant that has the Chassis of march 742, and the Year larger than 1974?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "complete_european_formula_two_championsh" (
... |
SELECT "chassis" FROM "complete_european_formula_two_championsh" WHERE "entrant"='trivellato racing team'; |
## Task
Generate a SQL query to answer the following question:
`Can you tell me the Chassis that has the Entrant of trivellato racing team?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "complete_european_formula_two_championsh" (
"year" real,
"en... |
SELECT "chassis" FROM "complete_european_formula_two_championsh" WHERE "points"=13 AND "year"=1975 AND "entrant"='scuderia citta del mille'; |
## Task
Generate a SQL query to answer the following question:
`Can you tell me the Chassis that has the Points of 13, and the Year of 1975, and the Entrant of scuderia citta del mille?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "complete_european_... |
SELECT MIN("value_m") FROM "2007_rankings" WHERE "revenue_m"<374 AND "debt_as_pctof_value"='84'; |
## Task
Generate a SQL query to answer the following question:
`What is the lowest value of a team with revenue less than 374 and a debt of 84%?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "2007_rankings" (
"team" text,
"country" text,
"value_... |
SELECT MAX("operating_income_m") FROM "2007_rankings" WHERE "pct_change_on_year"='2' AND "value_m"<'1,036'; |
## Task
Generate a SQL query to answer the following question:
`What is the highest operating income that change by 2% and is less than $1,036m?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "2007_rankings" (
"team" text,
"country" text,
"value_... |
SELECT "opponent" FROM "game_log" WHERE "date"='september 19'; |
## Task
Generate a SQL query to answer the following question:
`Which team did they play on September 19?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
... |
SELECT "fcc_info" FROM "broadcast_translators_of_wmhr" WHERE "frequency_m_hz"<91.9 AND "city_of_license"='dansville, ny'; |
## Task
Generate a SQL query to answer the following question:
`What's the FCC info with a Frequency MHz thats smaller than 91.9 and has a CIty of license of Dansville, NY?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "broadcast_translators_of_wmhr" ... |
SELECT "fcc_info" FROM "broadcast_translators_of_wmhr" WHERE "frequency_m_hz"<100.3 AND "city_of_license"='lowville, ny'; |
## Task
Generate a SQL query to answer the following question:
`What's the FCC info with a Frequency MHz thats smaller than 100.3 and a City of License as Lowville, NY?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "broadcast_translators_of_wmhr" (
... |
SELECT "call_sign" FROM "broadcast_translators_of_wmhr" WHERE "frequency_m_hz"<95.9 AND "erp_w"=10; |
## Task
Generate a SQL query to answer the following question:
`What's the Call sign with a Frequency MHz thats smaller than 95.9 and an ERP W of 10?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "broadcast_translators_of_wmhr" (
"call_sign" text,
... |
SELECT MAX("erp_w") FROM "broadcast_translators_of_wmhr" WHERE "call_sign"='w262ac'; |
## Task
Generate a SQL query to answer the following question:
`What is listed as the highest ERP W with a Call sign of W262AC?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "broadcast_translators_of_wmhr" (
"call_sign" text,
"frequency_m_hz" real... |
SELECT COUNT("erp_w") FROM "broadcast_translators_of_wmhr" WHERE "frequency_m_hz">97.7; |
## Task
Generate a SQL query to answer the following question:
`What's the sum of ERP W with a Frequency MHz that larger than 97.7?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "broadcast_translators_of_wmhr" (
"call_sign" text,
"frequency_m_hz" ... |
SELECT "score" FROM "game_log" WHERE "date"='september 9'; |
## Task
Generate a SQL query to answer the following question:
`What was the score of the game played on September 9?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attend... |
SELECT "overall_record" FROM "2006_regular_season_football_standings" WHERE "school"='indian river'; |
## Task
Generate a SQL query to answer the following question:
`Name the overall record for indian river`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "2006_regular_season_football_standings" (
"school" text,
"team" text,
"division_record" text,... |
SELECT MIN("to_par") FROM "final_round" WHERE "player"='e.j. \"dutch\" harrison'; |
## Task
Generate a SQL query to answer the following question:
`What was E.J. "Dutch" Harrison's lowest To Par?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "final_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par"... |
SELECT "money" FROM "final_round" WHERE "score"='74-76-71-71=292'; |
## Task
Generate a SQL query to answer the following question:
`How much money was won for the game with a score of 74-76-71-71=292?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "final_round" (
"place" text,
"player" text,
"country" text,
"sc... |
SELECT "country" FROM "final_round" WHERE "score"='70-79-74-68=291'; |
## Task
Generate a SQL query to answer the following question:
`What country was the player from with a score of 70-79-74-68=291?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "final_round" (
"place" text,
"player" text,
"country" text,
"score... |
SELECT "score" FROM "final_round" WHERE "to_par"<2; |
## Task
Generate a SQL query to answer the following question:
`When To par was less than 2, what was the score?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "final_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par... |
SELECT "date" FROM "england_in_south_africa" WHERE "result"='sa by 10 wkts'; |
## Task
Generate a SQL query to answer the following question:
`When was the match with a result of sa by 10 wkts?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "england_in_south_africa" (
"date" text,
"home_captain" text,
"away_captain" text,
... |
SELECT "date" FROM "england_in_south_africa" WHERE "result"='sa by 10 wkts'; |
## Task
Generate a SQL query to answer the following question:
`When was the match with a result of sa by 10 wkts?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "england_in_south_africa" (
"date" text,
"home_captain" text,
"away_captain" text,
... |
SELECT "date" FROM "england_in_south_africa" WHERE "venue"='centurion park'; |
## Task
Generate a SQL query to answer the following question:
`When was there a match in Centurion Park?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "england_in_south_africa" (
"date" text,
"home_captain" text,
"away_captain" text,
"venue" ... |
SELECT "finish" FROM "indy_500_results" WHERE "qual"='144.817'; |
## Task
Generate a SQL query to answer the following question:
`Name the finish which has qual of 144.817`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
... |
SELECT "qual" FROM "indy_500_results" WHERE "rank"='9'; |
## Task
Generate a SQL query to answer the following question:
`Name the qual for rank of 9`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
... |
SELECT "qual" FROM "indy_500_results" WHERE "year"='1957'; |
## Task
Generate a SQL query to answer the following question:
`Name the qual for 1957`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "indy_500_results" (
"year" text,
"start" text,
"qual" text,
"rank" text,
"finish" text,
"laps" real
);
##... |
SELECT "status" FROM "out" WHERE "name"='de la red'; |
## Task
Generate a SQL query to answer the following question:
`What shows as the status for the name of de la red?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "out" (
"name" text,
"country" text,
"status" text,
"transfer_window" text,
"tr... |
SELECT "country" FROM "out" WHERE "transfer_fee"='—' AND "transfer_window"='summer' AND "status"='loaned out' AND "name"='gonzález'; |
## Task
Generate a SQL query to answer the following question:
`What country has a Transfer fee of —, and a Transfer window of summer, and the Status of loaned out, and a Name of gonzález?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "out" (
"name"... |
SELECT "status" FROM "out" WHERE "name"='diogo'; |
## Task
Generate a SQL query to answer the following question:
`What shows as the status for Diogo?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "out" (
"name" text,
"country" text,
"status" text,
"transfer_window" text,
"transfer_fee" text... |
SELECT "name" FROM "out" WHERE "country"='esp' AND "transfer_fee"='€ 7m'; |
## Task
Generate a SQL query to answer the following question:
`What is the name when the country is ESP and the transfer fee is € 7m?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "out" (
"name" text,
"country" text,
"status" text,
"transfer_... |
SELECT "transfer_window" FROM "out" WHERE "country"='esp' AND "name"='de la red'; |
## Task
Generate a SQL query to answer the following question:
`What is the transfer window for the country of ESP and the name of de la red?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "out" (
"name" text,
"country" text,
"status" text,
"tr... |
SELECT "transfer_fee" FROM "out" WHERE "name"='diogo'; |
## Task
Generate a SQL query to answer the following question:
`What is the transfer fee of Diogo?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "out" (
"name" text,
"country" text,
"status" text,
"transfer_window" text,
"transfer_fee" text
... |
SELECT "record" FROM "game_log" WHERE "att">'27,623' AND "score"='0–7'; |
## Task
Generate a SQL query to answer the following question:
`What was the record at the game that had an attendance over 27,623 and a score of 0–7?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"scor... |
SELECT MIN("att") FROM "game_log" WHERE "loss"='lohse (12–11)'; |
## Task
Generate a SQL query to answer the following question:
`What was the lowest attendance at a game that had a loss of lohse (12–11)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"... |
SELECT "time" FROM "game_log" WHERE "opponent"='royals' AND "record"='81–73'; |
## Task
Generate a SQL query to answer the following question:
`What was time of the game against the Royals with a record of 81–73?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" ... |
SELECT AVG("year") FROM "previous_winners" WHERE "women_s_singles"='maja pohar'; |
## Task
Generate a SQL query to answer the following question:
`What is the average year of Maja Pohar's Women's singles matches?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "previous_winners" (
"year" real,
"men_s_singles" text,
"women_s_sing... |
SELECT "round" FROM "1992_93_ue_lleida_season" WHERE "kick_off"='1992-10-01 21:15'; |
## Task
Generate a SQL query to answer the following question:
`Which round has a Kick Off of 1992-10-01 21:15?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "1992_93_ue_lleida_season" (
"round" text,
"kick_off" text,
"opponents" text,
"h_a" t... |
SELECT "round" FROM "1992_93_ue_lleida_season" WHERE "kick_off"='1993-02-17 20:30'; |
## Task
Generate a SQL query to answer the following question:
`Which round has a Kick Off of 1993-02-17 20:30?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "1992_93_ue_lleida_season" (
"round" text,
"kick_off" text,
"opponents" text,
"h_a" t... |
SELECT SUM("mpix") FROM "history" WHERE "maximum_fps_hd_rx"<12 AND "width">5120; |
## Task
Generate a SQL query to answer the following question:
`What is the sum of Mpix with a maximum fps HDRX of less than 12 with a width larger than 5120?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "history" (
"frame_size" text,
"width" rea... |
SELECT MIN("maximum_fps") FROM "history" WHERE "width"=3072 AND "height"<1620; |
## Task
Generate a SQL query to answer the following question:
`What is the lowest maximum of fps with a width of 3072 and a height less than 1620?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "history" (
"frame_size" text,
"width" real,
"heigh... |
SELECT "maximum_fps_hd_rx" FROM "history" WHERE "height">1080 AND "least_compression_at_24_fps"='6:1' AND "least_compression_at_maximum_fps"='7:1'; |
## Task
Generate a SQL query to answer the following question:
`What is the maximum fps HDRx with a height larger than 1080 with a compression at 24 fps of 6:1 with a compression at maximum fps of at least 7:1?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE ... |
SELECT "loss" FROM "game_log" WHERE "record"='52-36'; |
## Task
Generate a SQL query to answer the following question:
`Who got the loss on the game that ended in a 52-36 record?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"r... |
SELECT "loss" FROM "game_log" WHERE "record"='55-41'; |
## Task
Generate a SQL query to answer the following question:
`Who got the loss for the game ending in a record of 55-41?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"r... |
SELECT "opponent" FROM "game_log" WHERE "loss"='dotson (8-6)'; |
## Task
Generate a SQL query to answer the following question:
`Which team opponent had a loss with their pitcher Dotson (8-6)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,... |
SELECT AVG("2006") FROM "romanian_agricultural_research" WHERE "production_year"='wheat' AND "2005">7340; |
## Task
Generate a SQL query to answer the following question:
`What is the average 2006 value for wheat with a 2005 value greater than 7340?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "romanian_agricultural_research" (
"production_year" text,
... |
SELECT AVG("2002") FROM "romanian_agricultural_research" WHERE "2010"<5587 AND "production_year"='sunflower' AND "2007">546; |
## Task
Generate a SQL query to answer the following question:
`What is the average 2002 value for Sunflower, which had a 2010 value less than 5587 and a 2007 value greater than 546?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "romanian_agricultural... |
SELECT AVG("2001") FROM "romanian_agricultural_research" WHERE "2010">414 AND "2011"=7192 AND "2005">7340; |
## Task
Generate a SQL query to answer the following question:
`What is the average 2001 value with a 2010 value greater than 414, a 2011 value of 7192, and a 2005 value larger than 7340?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "romanian_agricul... |
SELECT SUM("2006") FROM "romanian_agricultural_research" WHERE "2011">4113 AND "2008"<7181; |
## Task
Generate a SQL query to answer the following question:
`What is the 2006 value with a 2011 value greater than 4113 and a 2008 value less than 7181?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "romanian_agricultural_research" (
"production_... |
SELECT "game_center" FROM "schedule" WHERE "attendance"='65,212'; |
## Task
Generate a SQL query to answer the following question:
`Name the gamecenter that has attendance of 65,212`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"game_site... |
SELECT "game_center" FROM "schedule" WHERE "attendance"='78,551'; |
## Task
Generate a SQL query to answer the following question:
`Name the gamecenter with attendance of 78,551`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"game_site" te... |
SELECT "tv_time" FROM "schedule" WHERE "attendance"='69,551'; |
## Task
Generate a SQL query to answer the following question:
`Name the tv time for attendance of 69,551`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"game_site" text,
... |
SELECT MIN("laps") FROM "250cc_classification" WHERE "rider"='imre toth'; |
## Task
Generate a SQL query to answer the following question:
`what is the smallest number of laps imre toth has?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "250cc_classification" (
"rider" text,
"manufacturer" text,
"laps" real,
"time_ret... |
SELECT MIN("laps") FROM "250cc_classification" WHERE "manufacturer"='gilera' AND "rider"='marco simoncelli' AND "grid"<8; |
## Task
Generate a SQL query to answer the following question:
`what is the smallest number of laps marco simoncelli has with grid less than 8 and gilera as the manufacturer?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "250cc_classification" (
"ri... |
SELECT "away_captain" FROM "india_in_australia" WHERE "venue"='brisbane cricket ground'; |
## Task
Generate a SQL query to answer the following question:
`Who was the away captain at Brisbane Cricket Ground?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "india_in_australia" (
"date" text,
"home_captain" text,
"away_captain" text,
"v... |
SELECT "home_captain" FROM "india_in_australia" WHERE "venue"='sydney cricket ground'; |
## Task
Generate a SQL query to answer the following question:
`Who was the home captain at Sydney Cricket Ground?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "india_in_australia" (
"date" text,
"home_captain" text,
"away_captain" text,
"ven... |
SELECT "date" FROM "india_in_australia" WHERE "venue"='brisbane cricket ground'; |
## Task
Generate a SQL query to answer the following question:
`On what date was the venue at Brisbane Cricket Ground?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "india_in_australia" (
"date" text,
"home_captain" text,
"away_captain" text,
... |
SELECT "away_captain" FROM "india_in_australia" WHERE "venue"='waca ground'; |
## Task
Generate a SQL query to answer the following question:
`Who was the away captain at Waca Ground?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "india_in_australia" (
"date" text,
"home_captain" text,
"away_captain" text,
"venue" text,
... |
SELECT "date" FROM "india_in_australia" WHERE "venue"='brisbane cricket ground'; |
## Task
Generate a SQL query to answer the following question:
`On what date was the venue at Brisbane Cricket Ground?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "india_in_australia" (
"date" text,
"home_captain" text,
"away_captain" text,
... |
SELECT "score" FROM "game_log" WHERE "date"='june 30'; |
## Task
Generate a SQL query to answer the following question:
`What was the score for the game on June 30?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real... |
SELECT "title" FROM "cd_releases" WHERE "catalog_num"='pcr 502'; |
## Task
Generate a SQL query to answer the following question:
`What CD has a catalog # of PCR 502?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "cd_releases" (
"catalog_num" text,
"title" text,
"year" text,
"composer" text,
"released" real... |
SELECT "title" FROM "cd_releases" WHERE "released"=2009; |
## Task
Generate a SQL query to answer the following question:
`What CD was released in 2009?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "cd_releases" (
"catalog_num" text,
"title" text,
"year" text,
"composer" text,
"released" real
);
##... |
SELECT MAX("division") FROM "year_by_year" WHERE "playoffs"='quarter finals' AND "regular_season"='5th'; |
## Task
Generate a SQL query to answer the following question:
`What is the highest Division when the playoffs were the quarter finals, with a Regular Season of 5th?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "year_by_year" (
"year" real,
"divi... |
SELECT COUNT("year") FROM "year_by_year" WHERE "playoffs"='did not qualify' AND "regular_season"='10th'; |
## Task
Generate a SQL query to answer the following question:
`What is the year when they did not qualify for the playoff and the Regular Season shows as 10th?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "year_by_year" (
"year" real,
"division"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.