question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the average 2012 civil liberties value associated with a 2011 status of not free, political rights 2012 over 6, and political rights 2011 over 7? | CREATE TABLE table_name_42 (civil_liberties_2012 INTEGER, political_rights_2011 VARCHAR, status_2011 VARCHAR, political_rights_2012 VARCHAR) | {
"SQL_Query": "SELECT AVG(civil_liberties_2012) FROM table_name_42 WHERE status_2011 = \"not free\" AND political_rights_2012 > 6 AND political_rights_2011 > 7"
} |
What is the total number of civil liberties 2011 values having 2010 political rights values under 3 and 2011 political rights values under 1? | CREATE TABLE table_name_70 (civil_liberties_2011 VARCHAR, political_rights_2010 VARCHAR, political_rights_2011 VARCHAR) | {
"SQL_Query": "SELECT COUNT(civil_liberties_2011) FROM table_name_70 WHERE political_rights_2010 < 3 AND political_rights_2011 < 1"
} |
What percentage of people were opposed to the candidate based on the WNBC/Marist poll that showed 8% of people were unsure? | CREATE TABLE table_name_47 (oppose VARCHAR, unsure VARCHAR, poll_source VARCHAR) | {
"SQL_Query": "SELECT oppose FROM table_name_47 WHERE unsure = \"8%\" AND poll_source = \"wnbc/marist poll\""
} |
What percentage of people were opposed to the candidate based on the Time Poll poll that showed 6% of people were unsure? | CREATE TABLE table_name_22 (oppose VARCHAR, poll_source VARCHAR, unsure VARCHAR) | {
"SQL_Query": "SELECT oppose FROM table_name_22 WHERE poll_source = \"time poll\" AND unsure = \"6%\""
} |
What percentage of people said they would consider Rudy Giuliani as a candidate according to the Newsweek poll that showed 32% opposed him? | CREATE TABLE table_name_21 (consider VARCHAR, candidate VARCHAR, poll_source VARCHAR, oppose VARCHAR) | {
"SQL_Query": "SELECT consider FROM table_name_21 WHERE poll_source = \"newsweek poll\" AND oppose = \"32%\" AND candidate = \"rudy giuliani\""
} |
What was the result of the game in Stuttgart, West Germany and a goal number of less than 9? | CREATE TABLE table_name_12 (result VARCHAR, venue VARCHAR, goal VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_12 WHERE venue = \"stuttgart, west germany\" AND goal < 9"
} |
Which Record has an Opponent of twins, and a Date of july 25? | CREATE TABLE table_name_10 (record VARCHAR, opponent VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_10 WHERE opponent = \"twins\" AND date = \"july 25\""
} |
How much is per capita income when median household income is $42,845? | CREATE TABLE table_name_43 (per_capita_income VARCHAR, median_household_income VARCHAR) | {
"SQL_Query": "SELECT per_capita_income FROM table_name_43 WHERE median_household_income = \"$42,845\""
} |
Which Points have a Score of 4–1, and a Game smaller than 39? | CREATE TABLE table_name_91 (points INTEGER, score VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT SUM(points) FROM table_name_91 WHERE score = \"4–1\" AND game < 39"
} |
Which January has a Score of 7–4, and a Game smaller than 42? | CREATE TABLE table_name_69 (january INTEGER, score VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT SUM(january) FROM table_name_69 WHERE score = \"7–4\" AND game < 42"
} |
How many games have a Score of 1–0, and Points smaller than 66? | CREATE TABLE table_name_9 (game VARCHAR, score VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT COUNT(game) FROM table_name_9 WHERE score = \"1–0\" AND points < 66"
} |
Which Points is the lowest one that has a Score of 1–4, and a January smaller than 18? | CREATE TABLE table_name_26 (points INTEGER, score VARCHAR, january VARCHAR) | {
"SQL_Query": "SELECT MIN(points) FROM table_name_26 WHERE score = \"1–4\" AND january < 18"
} |
Which borough or census area has a $59,596 median household income? | CREATE TABLE table_name_68 (borough_or_census_area VARCHAR, median_household_income VARCHAR) | {
"SQL_Query": "SELECT borough_or_census_area FROM table_name_68 WHERE median_household_income = \"$59,596\""
} |
What is the population of the area with a median family income of $71,278? | CREATE TABLE table_name_59 (population VARCHAR, median_family_income VARCHAR) | {
"SQL_Query": "SELECT COUNT(population) FROM table_name_59 WHERE median_family_income = \"$71,278\""
} |
What was the Outcome of the Danish Open in 1985? | CREATE TABLE table_name_21 (outcome VARCHAR, venue VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT outcome FROM table_name_21 WHERE venue = \"danish open\" AND year = \"1985\""
} |
What was the Venue in 1986 with an Outcome of 1? | CREATE TABLE table_name_71 (venue VARCHAR, year VARCHAR, outcome VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_71 WHERE year = \"1986\" AND outcome = \"1\""
} |
What was the Outcome in 1983 of the WD Event? | CREATE TABLE table_name_11 (outcome VARCHAR, event VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT outcome FROM table_name_11 WHERE event = \"wd\" AND year = \"1983\""
} |
In what Year did the German Open have Yoo Sang-Hee as Partner? | CREATE TABLE table_name_8 (year VARCHAR, partner VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_8 WHERE partner = \"yoo sang-hee\" AND venue = \"german open\""
} |
What is the Outcome in the Malaysia Open with Partner Yoo Sang-Hee? | CREATE TABLE table_name_81 (outcome VARCHAR, partner VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT outcome FROM table_name_81 WHERE partner = \"yoo sang-hee\" AND venue = \"malaysia open\""
} |
What is the Partner during the Asian Games Year? | CREATE TABLE table_name_23 (partner VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT partner FROM table_name_23 WHERE year = \"asian games\""
} |
What was the loss for August 19? | CREATE TABLE table_name_91 (loss VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT loss FROM table_name_91 WHERE date = \"august 19\""
} |
What Municipality has a Rank of 44? | CREATE TABLE table_name_94 (municipality VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT municipality FROM table_name_94 WHERE rank = 44"
} |
What is the total Rank that has a Municipality of Winnipeg, an Area (KM 2) that's larger than 464.01? | CREATE TABLE table_name_85 (rank INTEGER, municipality VARCHAR, area__km_2__ VARCHAR) | {
"SQL_Query": "SELECT SUM(rank) FROM table_name_85 WHERE municipality = \"winnipeg\" AND area__km_2__ > 464.01"
} |
What is the highest Area (KM 2) for the Province of Ontario, that has the Status of Town, a Municipality of Minto, and a Rank that's smaller than 84? | CREATE TABLE table_name_96 (area__km_2__ INTEGER, rank VARCHAR, municipality VARCHAR, province VARCHAR, status VARCHAR) | {
"SQL_Query": "SELECT MAX(area__km_2__) FROM table_name_96 WHERE province = \"ontario\" AND status = \"town\" AND municipality = \"minto\" AND rank < 84"
} |
What's the total of Rank that has an Area (KM 2) of 1050.14? | CREATE TABLE table_name_6 (rank INTEGER, area__km_2__ VARCHAR) | {
"SQL_Query": "SELECT SUM(rank) FROM table_name_6 WHERE area__km_2__ = 1050.14"
} |
What is the listed Status that has the Province of Ontario and Rank of 86? | CREATE TABLE table_name_19 (status VARCHAR, province VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT status FROM table_name_19 WHERE province = \"ontario\" AND rank = 86"
} |
What type of event had the wrestler with a reign of 2 and held the title for 35 days? | CREATE TABLE table_name_31 (event VARCHAR, reign VARCHAR, days_held VARCHAR) | {
"SQL_Query": "SELECT event FROM table_name_31 WHERE reign = \"2\" AND days_held = \"35\""
} |
Where did the wrestler, super parka, with the title with a reign of 2? | CREATE TABLE table_name_41 (location VARCHAR, wrestler VARCHAR, reign VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_41 WHERE wrestler = \"super parka\" AND reign = \"2\""
} |
What is the reign for super kendo who held it for 35 days? | CREATE TABLE table_name_16 (reign VARCHAR, days_held VARCHAR, wrestler VARCHAR) | {
"SQL_Query": "SELECT reign FROM table_name_16 WHERE days_held = \"35\" AND wrestler = \"super kendo\""
} |
Which FCC info has an ERP W of 100 watts? | CREATE TABLE table_name_67 (fcc_info VARCHAR, erp_w VARCHAR) | {
"SQL_Query": "SELECT fcc_info FROM table_name_67 WHERE erp_w = \"100 watts\""
} |
Which Frequency MHz has a Call Sign of K218BE? | CREATE TABLE table_name_7 (frequency_mhz VARCHAR, call_sign VARCHAR) | {
"SQL_Query": "SELECT frequency_mhz FROM table_name_7 WHERE call_sign = \"k218be\""
} |
Which ERP W has a Frequency MHz of 88.5 FM? | CREATE TABLE table_name_15 (erp_w VARCHAR, frequency_mhz VARCHAR) | {
"SQL_Query": "SELECT erp_w FROM table_name_15 WHERE frequency_mhz = \"88.5 fm\""
} |
What is the name of the player from Spain with a rank lower than 3? | CREATE TABLE table_name_62 (name VARCHAR, nationality VARCHAR, ranking VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_62 WHERE nationality = \"spain\" AND ranking > 3"
} |
Which region had a catalog number of 570 734-2? | CREATE TABLE table_name_19 (region VARCHAR, catalog VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_19 WHERE catalog = \"570 734-2\""
} |
Which region had a release format of CD Maxi? | CREATE TABLE table_name_8 (region VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_8 WHERE format = \"cd maxi\""
} |
Which region had a release format of CD Maxi? | CREATE TABLE table_name_20 (region VARCHAR, format VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_20 WHERE format = \"cd maxi\""
} |
Where did the Jet's play with an attendance of 11,309? | CREATE TABLE table_name_98 (game_site VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT game_site FROM table_name_98 WHERE attendance = \"11,309\""
} |
What's the result of the game against Bye? | CREATE TABLE table_name_34 (result VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_34 WHERE opponent = \"bye\""
} |
What's the Result for week 15? | CREATE TABLE table_name_53 (result VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_53 WHERE week = 15"
} |
What day was the appointment when Credentials Presented was jul 2, 1969? | CREATE TABLE table_name_79 (appointment VARCHAR, credentials_presented VARCHAR) | {
"SQL_Query": "SELECT appointment FROM table_name_79 WHERE credentials_presented = \"jul 2, 1969\""
} |
When were the credentials presented for new jersey with a status of foreign service officer? | CREATE TABLE table_name_59 (credentials_presented VARCHAR, state VARCHAR, status VARCHAR) | {
"SQL_Query": "SELECT credentials_presented FROM table_name_59 WHERE state = \"new jersey\" AND status = \"foreign service officer\""
} |
What is the title for david campbell mulford? | CREATE TABLE table_name_90 (title VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT title FROM table_name_90 WHERE name = \"david campbell mulford\""
} |
What state has an appointment for jul 12, 2001? | CREATE TABLE table_name_47 (state VARCHAR, appointment VARCHAR) | {
"SQL_Query": "SELECT state FROM table_name_47 WHERE appointment = \"jul 12, 2001\""
} |
What day were credentials presented for vermont? | CREATE TABLE table_name_35 (credentials_presented VARCHAR, state VARCHAR) | {
"SQL_Query": "SELECT credentials_presented FROM table_name_35 WHERE state = \"vermont\""
} |
Which Class has a Weight of 203? | CREATE TABLE table_name_57 (class VARCHAR, weight VARCHAR) | {
"SQL_Query": "SELECT class FROM table_name_57 WHERE weight = 203"
} |
What is the team 1 with team 2 Mount Cameroon FC? | CREATE TABLE table_name_43 (team_1 VARCHAR, team_2 VARCHAR) | {
"SQL_Query": "SELECT team_1 FROM table_name_43 WHERE team_2 = \"mount cameroon fc\""
} |
What is the 2nd leg of team 1 Dolphins? | CREATE TABLE table_name_99 (team_1 VARCHAR) | {
"SQL_Query": "SELECT 2 AS nd_leg FROM table_name_99 WHERE team_1 = \"dolphins\""
} |
When the winner was No Race in a year after 1909, what was the distance? | CREATE TABLE table_name_68 (distance__miles_ VARCHAR, winner VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT distance__miles_ FROM table_name_68 WHERE winner = \"no race\" AND year > 1909"
} |
What horse won with a trainer of "no race"? | CREATE TABLE table_name_21 (winner VARCHAR, trainer VARCHAR) | {
"SQL_Query": "SELECT winner FROM table_name_21 WHERE trainer = \"no race\""
} |
Who was the jockey for the winning horse Helioptic? | CREATE TABLE table_name_41 (jockey VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT jockey FROM table_name_41 WHERE winner = \"helioptic\""
} |
What was the time for the winning horse Salford ii? | CREATE TABLE table_name_94 (time VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_94 WHERE winner = \"salford ii\""
} |
What was the winning time for the winning horse, Kentucky ii? | CREATE TABLE table_name_49 (time VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_49 WHERE winner = \"kentucky ii\""
} |
What was the position with the total number less than 1? | CREATE TABLE table_name_1 (position VARCHAR, lost INTEGER) | {
"SQL_Query": "SELECT COUNT(position) FROM table_name_1 WHERE lost < 1"
} |
What is the sum of golds for ranks of 6 and totals over 3? | CREATE TABLE table_name_36 (gold INTEGER, rank VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT SUM(gold) FROM table_name_36 WHERE rank = \"6\" AND total > 3"
} |
What is the average silver for golds over 2, ranks of 1, and bronzes over 0? | CREATE TABLE table_name_35 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT AVG(silver) FROM table_name_35 WHERE gold > 2 AND rank = \"1\" AND bronze > 0"
} |
What is the number of totals that have silvers under 2, bronzes over 0, and golds over 1? | CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT COUNT(total) FROM table_name_57 WHERE silver < 2 AND bronze > 0 AND gold > 1"
} |
What is the total number of golds having a total of 1, bronzes of 0, and from West Germany? | CREATE TABLE table_name_61 (gold VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT COUNT(gold) FROM table_name_61 WHERE total = 1 AND bronze < 1 AND nation = \"west germany\""
} |
What is the sum of bronzes having silvers over 5 and golds under 20? | CREATE TABLE table_name_43 (bronze INTEGER, silver VARCHAR, gold VARCHAR) | {
"SQL_Query": "SELECT SUM(bronze) FROM table_name_43 WHERE silver > 5 AND gold < 20"
} |
What is the result of the game with an attendance greater than 67,702? | CREATE TABLE table_name_71 (result VARCHAR, attendance INTEGER) | {
"SQL_Query": "SELECT result FROM table_name_71 WHERE attendance > 67 OFFSET 702"
} |
How many Losses have a Ballarat FL of melton south, and an Against larger than 1468? | CREATE TABLE table_name_10 (losses VARCHAR, ballarat_fl VARCHAR, against VARCHAR) | {
"SQL_Query": "SELECT COUNT(losses) FROM table_name_10 WHERE ballarat_fl = \"melton south\" AND against > 1468"
} |
How many Against has Byes smaller than 2? | CREATE TABLE table_name_15 (against INTEGER, byes INTEGER) | {
"SQL_Query": "SELECT AVG(against) FROM table_name_15 WHERE byes < 2"
} |
How many Against has a Ballarat FL of darley and Wins larger than 8? | CREATE TABLE table_name_4 (against VARCHAR, ballarat_fl VARCHAR, wins VARCHAR) | {
"SQL_Query": "SELECT COUNT(against) FROM table_name_4 WHERE ballarat_fl = \"darley\" AND wins > 8"
} |
How many Byes have Against of 1076 and Wins smaller than 13? | CREATE TABLE table_name_16 (byes INTEGER, against VARCHAR, wins VARCHAR) | {
"SQL_Query": "SELECT AVG(byes) FROM table_name_16 WHERE against = 1076 AND wins < 13"
} |
What is the total number of Total Passengers when the annual change is 28.8% and the rank is less than 8? | CREATE TABLE table_name_28 (total_passengers VARCHAR, annual_change VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT COUNT(total_passengers) FROM table_name_28 WHERE annual_change = \"28.8%\" AND rank < 8"
} |
What is the sum of Total Passengers when the annual change is 9.7% and the rank is less than 6? | CREATE TABLE table_name_9 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT SUM(total_passengers) FROM table_name_9 WHERE annual_change = \"9.7%\" AND rank < 6"
} |
What is the highest Total Passengers when the annual change is 18.3%, and the rank is less than 11? | CREATE TABLE table_name_49 (total_passengers INTEGER, annual_change VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT MAX(total_passengers) FROM table_name_49 WHERE annual_change = \"18.3%\" AND rank < 11"
} |
What location has an annual change of 7.6% | CREATE TABLE table_name_32 (location VARCHAR, annual_change VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_32 WHERE annual_change = \"7.6%\""
} |
Which Result has a Score of 1–0, and a Goal of 16? | CREATE TABLE table_name_7 (result VARCHAR, score VARCHAR, goal VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_7 WHERE score = \"1–0\" AND goal = 16"
} |
Which Score has a Result of 2–1, and a Competition of friendly, and a Goal smaller than 17? | CREATE TABLE table_name_21 (score VARCHAR, goal VARCHAR, result VARCHAR, competition VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_21 WHERE result = \"2–1\" AND competition = \"friendly\" AND goal < 17"
} |
Which Score has a Date of october 8, 2005, and a Venue of estadio alfonso lastras, san luis potosí, mexico? | CREATE TABLE table_name_96 (score VARCHAR, date VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_96 WHERE date = \"october 8, 2005\" AND venue = \"estadio alfonso lastras, san luis potosí, mexico\""
} |
Which Competition has a Venue of estadio alfonso lastras, san luis potosí, mexico, and a Goal larger than 15? | CREATE TABLE table_name_45 (competition VARCHAR, venue VARCHAR, goal VARCHAR) | {
"SQL_Query": "SELECT competition FROM table_name_45 WHERE venue = \"estadio alfonso lastras, san luis potosí, mexico\" AND goal > 15"
} |
What is the area for Worth Parish? | CREATE TABLE table_name_22 (area__hectare_ VARCHAR, parish VARCHAR) | {
"SQL_Query": "SELECT area__hectare_ FROM table_name_22 WHERE parish = \"worth\""
} |
What is the week number with Phil Collins as the original artist? | CREATE TABLE table_name_88 (week__number VARCHAR, original_artist VARCHAR) | {
"SQL_Query": "SELECT week__number FROM table_name_88 WHERE original_artist = \"phil collins\""
} |
What is the order number that has top 20 (10 women) as the week number? | CREATE TABLE table_name_16 (order__number VARCHAR, week__number VARCHAR) | {
"SQL_Query": "SELECT order__number FROM table_name_16 WHERE week__number = \"top 20 (10 women)\""
} |
What is the original artist of top 9 as the week number? | CREATE TABLE table_name_88 (original_artist VARCHAR, week__number VARCHAR) | {
"SQL_Query": "SELECT original_artist FROM table_name_88 WHERE week__number = \"top 9\""
} |
What is the week number that has Dolly Parton as the theme? | CREATE TABLE table_name_12 (week__number VARCHAR, theme VARCHAR) | {
"SQL_Query": "SELECT week__number FROM table_name_12 WHERE theme = \"dolly parton\""
} |
What is the original artist that has 11 as the order number? | CREATE TABLE table_name_69 (original_artist VARCHAR, order__number VARCHAR) | {
"SQL_Query": "SELECT original_artist FROM table_name_69 WHERE order__number = \"11\""
} |
What is the order number that has Aretha Franklin as the original artist? | CREATE TABLE table_name_97 (order__number VARCHAR, original_artist VARCHAR) | {
"SQL_Query": "SELECT order__number FROM table_name_97 WHERE original_artist = \"aretha franklin\""
} |
Which Format has a Date of 1993, and a Catalog of cleo 2481-2? | CREATE TABLE table_name_81 (format VARCHAR, date VARCHAR, catalog VARCHAR) | {
"SQL_Query": "SELECT format FROM table_name_81 WHERE date = 1993 AND catalog = \"cleo 2481-2\""
} |
Which Label has a Date smaller than 2008, and a Catalog of fall cd 006? | CREATE TABLE table_name_82 (label VARCHAR, date VARCHAR, catalog VARCHAR) | {
"SQL_Query": "SELECT label FROM table_name_82 WHERE date < 2008 AND catalog = \"fall cd 006\""
} |
What is the sum of Round with a Position that is center? | CREATE TABLE table_name_88 (round INTEGER, position VARCHAR) | {
"SQL_Query": "SELECT SUM(round) FROM table_name_88 WHERE position = \"center\""
} |
What is the sum of Round with a Pick that is 55? | CREATE TABLE table_name_89 (round INTEGER, pick VARCHAR) | {
"SQL_Query": "SELECT SUM(round) FROM table_name_89 WHERE pick = 55"
} |
What is the most wins when the number of losses was less than 4 and there was more than 0 ties? | CREATE TABLE table_name_77 (wins INTEGER, losses VARCHAR, ties VARCHAR) | {
"SQL_Query": "SELECT MAX(wins) FROM table_name_77 WHERE losses < 4 AND ties > 0"
} |
Which team had fewer than 2 losses and a position number more than 1? | CREATE TABLE table_name_37 (team VARCHAR, losses VARCHAR, pos VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_37 WHERE losses < 2 AND pos > 1"
} |
What season had Marcio Lassiter? | CREATE TABLE table_name_97 (season VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_97 WHERE name = \"marcio lassiter\""
} |
What season had an acquisition of free agency, and was higher than 9? | CREATE TABLE table_name_89 (season VARCHAR, acquisition_via VARCHAR, number VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_89 WHERE acquisition_via = \"free agency\" AND number > 9"
} |
What number has an acquisition via the Rookie Draft, and is part of a School/club team at Cal State Fullerton? | CREATE TABLE table_name_54 (number VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR) | {
"SQL_Query": "SELECT number FROM table_name_54 WHERE acquisition_via = \"rookie draft\" AND school_club_team = \"cal state fullerton\""
} |
What is the highest rank of the medal total less than 15, more than 2 bronzes, 0 gold and 1 silver? | CREATE TABLE table_name_29 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT MAX(rank) FROM table_name_29 WHERE total < 15 AND bronze > 2 AND gold = 0 AND silver = 1"
} |
What is the location of the team nicknamed Broncos, which was founded after 1889? | CREATE TABLE table_name_59 (location VARCHAR, founded VARCHAR, team_nickname VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_59 WHERE founded > 1889 AND team_nickname = \"broncos\""
} |
What is the location of the University of Montana, which was founded after 1890? | CREATE TABLE table_name_23 (location VARCHAR, founded VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT location FROM table_name_23 WHERE founded > 1890 AND institution = \"university of montana\""
} |
Which landfall was in category 1 for Saffir-Simpson in 1999? | CREATE TABLE table_name_85 (landfall VARCHAR, saffir_simpson_category VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT landfall FROM table_name_85 WHERE saffir_simpson_category = 1 AND year = 1999"
} |
What was the lowest V(mph) for a Saffir-Simpson of 4 in 2005? | CREATE TABLE table_name_36 (v_mph_ INTEGER, saffir_simpson_category VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT MIN(v_mph_) FROM table_name_36 WHERE saffir_simpson_category = 4 AND year = 2005"
} |
What was the highest SaffirSimpson with an NHC advisory of 18? | CREATE TABLE table_name_8 (saffir_simpson_category INTEGER, nhc_advisory_number VARCHAR) | {
"SQL_Query": "SELECT MAX(saffir_simpson_category) FROM table_name_8 WHERE nhc_advisory_number = \"18\""
} |
Which athlete's rank is more than 15 when the result is less than 7.68, the group is b, and the nationality listed is Great Britain? | CREATE TABLE table_name_82 (athlete VARCHAR, nationality VARCHAR, group VARCHAR, rank VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT athlete FROM table_name_82 WHERE rank > 15 AND result < 7.68 AND group = \"b\" AND nationality = \"great britain\""
} |
When did NASA launch the wide field infrared explorer (wire)? | CREATE TABLE table_name_11 (launch_date VARCHAR, space_agency VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT launch_date FROM table_name_11 WHERE space_agency = \"nasa\" AND name = \"wide field infrared explorer (wire)\""
} |
Which space agency launched the herschel space observatory? | CREATE TABLE table_name_17 (space_agency VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT space_agency FROM table_name_17 WHERE name = \"herschel space observatory\""
} |
What lead has the third David Nedohin? | CREATE TABLE table_name_98 (lead VARCHAR, third VARCHAR) | {
"SQL_Query": "SELECT lead FROM table_name_98 WHERE third = \"david nedohin\""
} |
Which builder completed after 1889? | CREATE TABLE table_name_93 (builder VARCHAR, completed INTEGER) | {
"SQL_Query": "SELECT builder FROM table_name_93 WHERE completed > 1889"
} |
Which builder completed before 1890 and launched on 9 june 1888? | CREATE TABLE table_name_84 (builder VARCHAR, completed VARCHAR, launched VARCHAR) | {
"SQL_Query": "SELECT builder FROM table_name_84 WHERE completed < 1890 AND launched = \"9 june 1888\""
} |
What is the name of the boat that was built by Chatham and Laid down of 25 april 1887? | CREATE TABLE table_name_75 (name VARCHAR, builder VARCHAR, laid_down VARCHAR) | {
"SQL_Query": "SELECT name FROM table_name_75 WHERE builder = \"chatham\" AND laid_down = \"25 april 1887\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.