context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_11900773_4 (denomination VARCHAR, theme VARCHAR)
What denominations are the stamps with themes opera, léopold simoneau and pierrette alarie?
SELECT denomination FROM table_11900773_4 WHERE theme = "Opera, Léopold Simoneau and Pierrette Alarie"
CREATE TABLE table_name_39 (nation VARCHAR, years VARCHAR, sport VARCHAR, total VARCHAR)
What nation scored 7 in shooting in 1920?
SELECT nation FROM table_name_39 WHERE sport = "shooting" AND total = 7 AND years = "1920"
CREATE TABLE table_11900773_6 (design VARCHAR, theme VARCHAR)
How many stamps were designed for the theme of XII Summit de la Francophonie?
SELECT COUNT(design) FROM table_11900773_6 WHERE theme = "XII Summit de la Francophonie"
CREATE TABLE table_11900773_6 (first_day_cover_cancellation VARCHAR, date_of_issue VARCHAR, theme VARCHAR)
Where is the first day cover cancellation for the 3 April 2008 IIHF World Championships, Quebec City stamp?
SELECT first_day_cover_cancellation FROM table_11900773_6 WHERE date_of_issue = "3 April 2008" AND theme = "IIHF World Championships, Quebec City"
CREATE TABLE table_25346763_1 (Major VARCHAR, facility VARCHAR)
Is the Washington Corrections Center for Women (WCCW) a major facility?
SELECT Major AS facility FROM table_25346763_1 WHERE facility = "Washington Corrections Center for Women (WCCW)"
CREATE TABLE table_11926114_1 (rank VARCHAR, finale VARCHAR)
What is the rank of finale 37?
SELECT rank FROM table_11926114_1 WHERE finale = 37
CREATE TABLE table_1193568_1 (electorate VARCHAR, election_date VARCHAR)
what's the electorate where election date is 16 cannot handle non-empty timestamp argument!
SELECT electorate FROM table_1193568_1 WHERE election_date = "16 Cannot handle non-empty timestamp argument!"
CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)
Who was the away team when Brighton & Hove Albion was home?
SELECT away_team FROM table_name_95 WHERE home_team = "brighton & hove albion"
CREATE TABLE table_25352324_5 (points VARCHAR, player VARCHAR)
How many values for points have Sophia Witherspoon as the player?
SELECT COUNT(points) FROM table_25352324_5 WHERE player = "Sophia Witherspoon"
CREATE TABLE table_25361570_2 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR)
Name the number of teams for 11th position september 10
SELECT COUNT(team) FROM table_25361570_2 WHERE position_in_table = "11th" AND date_of_appointment = "September 10"
CREATE TABLE table_25360865_1 (height VARCHAR, name VARCHAR)
Name the height for demetrius jemison
SELECT height FROM table_25360865_1 WHERE name = "Demetrius Jemison"
CREATE TABLE table_25369796_1 (f_laps VARCHAR, team VARCHAR)
What was the recorded flaps of HBR Motorsport team?
SELECT f_laps FROM table_25369796_1 WHERE team = "HBR Motorsport"
CREATE TABLE table_name_93 (runner_s__up VARCHAR, date VARCHAR)
Who were the runners-up in the tournament on May 26, 1996?
SELECT runner_s__up FROM table_name_93 WHERE date = "may 26, 1996"
CREATE TABLE table_12078626_1 (success VARCHAR, date_of_completion VARCHAR)
what's the success where date of completion is september 28, 2007
SELECT success FROM table_12078626_1 WHERE date_of_completion = "September 28, 2007"
CREATE TABLE table_12078626_1 (date_of_completion VARCHAR, deadline_for_completion VARCHAR)
what's the date of completion where deadline for completion is september 30, 2007
SELECT date_of_completion FROM table_12078626_1 WHERE deadline_for_completion = "September 30, 2007"
CREATE TABLE table_name_97 (torque VARCHAR, engine_code VARCHAR, power VARCHAR)
What is the torque when engine code is N46B20 and power is ps (kw; hp)@6400?
SELECT torque FROM table_name_97 WHERE engine_code = "n46b20" AND power = "ps (kw; hp)@6400"
CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR)
how many types of organization were founded in san diego state university?
SELECT COUNT(type) FROM table_2538117_2 WHERE founding_university = "San Diego State University"
CREATE TABLE table_name_43 (romaji_title VARCHAR, tv_station VARCHAR, episodes VARCHAR)
What is the Romanji Title of a show on TBS with less than 11 episodes?
SELECT romaji_title FROM table_name_43 WHERE tv_station = "tbs" AND episodes < 11
CREATE TABLE table_name_19 (first_elected INTEGER, party VARCHAR, district VARCHAR)
What is the lowest First Elected, when Party is "Republican", and when District is "Minnesota 1"?
SELECT MIN(first_elected) FROM table_name_19 WHERE party = "republican" AND district = "minnesota 1"
CREATE TABLE table_12186309_1 (womens_singles VARCHAR, mens_doubles VARCHAR)
What was the women's singles were men's doubles were steen fladberg jens peter nierhoff?
SELECT womens_singles FROM table_12186309_1 WHERE mens_doubles = "Steen Fladberg Jens Peter Nierhoff"
CREATE TABLE table_2538117_7 (nickname VARCHAR, founding_university VARCHAR)
If the founding university is in Charlotte, NC, what is the nickname?
SELECT nickname FROM table_2538117_7 WHERE founding_university = "Charlotte, NC"
CREATE TABLE table_12194021_1 (womens_doubles VARCHAR, mens_singles VARCHAR, mixed_doubles VARCHAR)
In womens doubles and mens singles, what years did Arvind Bhat or Valiyaveetil Diju Jwala Gutta win?
SELECT womens_doubles FROM table_12194021_1 WHERE mens_singles = "Arvind Bhat" AND mixed_doubles = "Valiyaveetil Diju Jwala Gutta"
CREATE TABLE table_name_14 (laps INTEGER, bike VARCHAR, time VARCHAR)
Which Laps have a Bike of kawasaki zx-6r, and a Time of +26.891?
SELECT MIN(laps) FROM table_name_14 WHERE bike = "kawasaki zx-6r" AND time = "+26.891"
CREATE TABLE table_name_40 (date_premiered__2009_ VARCHAR, contestant_name VARCHAR)
What date premiered (2009) has kareena kapoor as the contestant name?
SELECT date_premiered__2009_ FROM table_name_40 WHERE contestant_name = "kareena kapoor"
CREATE TABLE table_25438110_5 (fy08_$millions VARCHAR, fy07_$millions VARCHAR)
What is the FY2008 $mil value associated with a FY2007 $mil value of exactly $120?
SELECT fy08_$millions FROM table_25438110_5 WHERE fy07_$millions = "$120"
CREATE TABLE table_name_71 (river_mile INTEGER, pool_length__miles_ VARCHAR, lock_lift_drop__in_feet_ VARCHAR)
What is the highest River Mile that has a pool length of 42.2 miles or a lock/lift drop of 21 feet?
SELECT MAX(river_mile) FROM table_name_71 WHERE pool_length__miles_ = "42.2" AND lock_lift_drop__in_feet_ = "21"
CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)
How many rounds did João Victor Horto achieved the fastest lap?
SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "João Victor Horto"
CREATE TABLE table_name_8 (location_ VARCHAR, l_ VARCHAR, river_mile VARCHAR, locks_ VARCHAR, _dam VARCHAR)
What is the location of the river mile that is larger than 938.9, and Olmsted Locks and Dam?
SELECT location_[l_] FROM table_name_8 WHERE river_mile > 938.9 AND locks_ & _dam = "olmsted locks and dam"
CREATE TABLE table_name_8 (notes VARCHAR, country VARCHAR)
What are the notes for South Africa?
SELECT notes FROM table_name_8 WHERE country = "south africa"
CREATE TABLE table_name_24 (rank VARCHAR, notes VARCHAR, country VARCHAR)
What is the total rank and fc notes from South Africa?
SELECT COUNT(rank) FROM table_name_24 WHERE notes = "fc" AND country = "south africa"
CREATE TABLE table_12434380_1 (founded VARCHAR, institution VARCHAR)
When was the institution of Kansas city Kansas community college founded?
SELECT COUNT(founded) FROM table_12434380_1 WHERE institution = "Kansas City Kansas Community College"
CREATE TABLE table_12434380_1 (mascot VARCHAR, founded VARCHAR, school_colors VARCHAR)
What is the mascot for the school founded in 1923 with the school colors of blue, red & white?
SELECT mascot FROM table_12434380_1 WHERE founded = 1923 AND school_colors = "Blue, Red & White"
CREATE TABLE table_25474825_1 (license VARCHAR, description VARCHAR)
What is the license that is described as a tool for designing and executing workflows?
SELECT license FROM table_25474825_1 WHERE description = "Tool for designing and executing workflows"
CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, unit__kwh__time_range VARCHAR)
What is the fixed charge for the user with a unit/time range of i-2: peak (18:30-22:30)?
SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE unit__kwh__time_range = "I-2: Peak (18:30-22:30)"
CREATE TABLE table_name_1 (points VARCHAR, artist VARCHAR)
How many points does mia martini have?
SELECT COUNT(points) FROM table_name_1 WHERE artist = "mia martini"
CREATE TABLE table_name_92 (artist VARCHAR, english_translation VARCHAR)
Which Artist has an English translation of all this is music?
SELECT artist FROM table_name_92 WHERE english_translation = "all this is music"
CREATE TABLE table_25505246_8 (outcome VARCHAR, partner VARCHAR)
How did the match end when she played with caroline wozniacki?
SELECT outcome FROM table_25505246_8 WHERE partner = "Caroline Wozniacki"
CREATE TABLE table_12547903_3 (location VARCHAR, callsign VARCHAR)
How many places featured the DXCL Callsign?
SELECT COUNT(location) FROM table_12547903_3 WHERE callsign = "DXCL"
CREATE TABLE table_12576536_1 (population__maryborough_ VARCHAR, population__woocoo_ VARCHAR)
Name the population of maryborough when population of woocoo is 2700
SELECT population__maryborough_ FROM table_12576536_1 WHERE population__woocoo_ = 2700
CREATE TABLE table_name_90 (gold INTEGER, silver VARCHAR, nation VARCHAR, total VARCHAR, bronze VARCHAR)
What is the average number of gold medals Switzerland received when they ranked larger than 1st and received fewer than 10 bronze medals and more than 1 silver medal?
SELECT AVG(gold) FROM table_name_90 WHERE total > 1 AND bronze < 10 AND nation = "switzerland" AND silver > 1
CREATE TABLE table_12720275_1 (combined_statistical_area__or_metropolitan_statistical_area_if_noted_ VARCHAR)
What is the 2007 estimate for tulsa-bartlesville, ok csa?
SELECT 2007 AS _estimate FROM table_12720275_1 WHERE combined_statistical_area__or_metropolitan_statistical_area_if_noted_ = "Tulsa-Bartlesville, OK CSA"
CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR)
How many times was the rank (csa) was (msa 348)?
SELECT COUNT(*) FROM table_12720275_1 WHERE rank__csa_ = "(MSA 348)"
CREATE TABLE table_25531112_2 (challenge VARCHAR, event VARCHAR)
Who made the challenge in the Australian Grand Prix?
SELECT challenge FROM table_25531112_2 WHERE event = "Australian Grand Prix"
CREATE TABLE table_25527255_2 (shirt_sponsor VARCHAR, average_squad_age VARCHAR)
Who is the shirt sponsor of the team with an average squad age of 25.46?
SELECT shirt_sponsor FROM table_25527255_2 WHERE average_squad_age = "25.46"
CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, participle VARCHAR)
What is the verbal noun connected to the participle e-duki?
SELECT verbal_noun FROM table_12784134_1 WHERE participle = "e-duki"
CREATE TABLE table_name_33 (total_fat VARCHAR, smoke_point VARCHAR, polyunsaturated_fat VARCHAR)
What is the total fat with a smoke point of °c () and 37g of polyunsaturated fat?
SELECT total_fat FROM table_name_33 WHERE smoke_point = "°c ()" AND polyunsaturated_fat = "37g"
CREATE TABLE table_name_85 (monounsaturated_fat VARCHAR, saturated_fat VARCHAR, polyunsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR)
What is the monounsaturated fat with a smoke point of °c (), a total fat of 100g, 11g of polyunsaturated fat, and 14g of saturated fat?
SELECT monounsaturated_fat FROM table_name_85 WHERE smoke_point = "°c ()" AND total_fat = "100g" AND polyunsaturated_fat = "11g" AND saturated_fat = "14g"
CREATE TABLE table_25548505_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
What was the original air date of the episode that had 5.30 million U.S. viewers?
SELECT original_air_date FROM table_25548505_1 WHERE us_viewers__millions_ = "5.30"
CREATE TABLE table_255602_1 (area__km²_ VARCHAR, population__2010_ VARCHAR)
What is the area where population in 2010 is 38062?
SELECT area__km²_ FROM table_255602_1 WHERE population__2010_ = 38062
CREATE TABLE table_255602_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR)
What is the population density where area is 48.67?
SELECT COUNT(pop_density__per_km²_) FROM table_255602_1 WHERE area__km²_ = "48.67"
CREATE TABLE table_25561560_3 (sail_number VARCHAR, yacht VARCHAR)
What was the sail number of Two True?
SELECT sail_number FROM table_25561560_3 WHERE yacht = "Two True"
CREATE TABLE table_25561560_3 (yacht VARCHAR, skipper VARCHAR)
What yacht did Andrew Saies sail on?
SELECT yacht FROM table_25561560_3 WHERE skipper = "Andrew Saies"
CREATE TABLE table_name_80 (bronze INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR)
What average bronze has 0 as the silver, 17 as the rank, and a gold less than 1?
SELECT AVG(bronze) FROM table_name_80 WHERE silver = 0 AND rank = "17" AND gold < 1
CREATE TABLE table_12962773_2 (player VARCHAR, height VARCHAR)
What player is 2.01 m tall?
SELECT player FROM table_12962773_2 WHERE height = "2.01"
CREATE TABLE table_name_67 (director VARCHAR, writer VARCHAR)
Who was the director of the episode written by Russell T Davies and James Moran?
SELECT director FROM table_name_67 WHERE writer = "russell t davies and james moran"
CREATE TABLE table_25594888_1 (yacht VARCHAR, skipper VARCHAR)
What yacht type is involved where Bob Oatley is the skipper?
SELECT yacht AS type FROM table_25594888_1 WHERE skipper = "Bob Oatley"
CREATE TABLE table_12962773_4 (no INTEGER, player VARCHAR)
What No is the player Zoran Erceg
SELECT MIN(no) FROM table_12962773_4 WHERE player = "Zoran Erceg"
CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, the_basque_of_the_glossary VARCHAR)
What is the iclandic of the glossary for presenta for mi locaria
SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE the_basque_of_the_glossary = "presenta for mi locaria"
CREATE TABLE table_1300080_1 (model_number VARCHAR, printer_ports VARCHAR)
What is the number of the model with three parallel printer ports?
SELECT model_number FROM table_1300080_1 WHERE printer_ports = "Three Parallel"
CREATE TABLE table_name_75 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)
who is the player when the pick is 15 and the year [A] is 2000?
SELECT player_name FROM table_name_75 WHERE pick = "15" AND year_[a_] = 2000
CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, player VARCHAR)
What is the to par of United States' Cristie Kerr?
SELECT to_par FROM table_name_66 WHERE country = "united states" AND player = "cristie kerr"
CREATE TABLE table_25604014_6 (no_in_series VARCHAR, directed_by VARCHAR, no_in_season VARCHAR)
What are the number in series of the pieces directed by Win Phelps and which number in season is 11?
SELECT no_in_series FROM table_25604014_6 WHERE directed_by = "Win Phelps" AND no_in_season = 11
CREATE TABLE table_1310499_1 (input_splines VARCHAR, tag_id VARCHAR)
What is the 3rd ratio for tag number 1386-000-017 and input splines of 26?
SELECT 3 AS rd FROM table_1310499_1 WHERE input_splines = 26 AND tag_id = "1386-000-017"
CREATE TABLE table_name_32 (team_2 VARCHAR, team_1 VARCHAR, ground VARCHAR)
What team was 2 when Tatung was team 1 at National Pei Men Senior High School?
SELECT team_2 FROM table_name_32 WHERE team_1 = "tatung" AND ground = "national pei men senior high school"
CREATE TABLE table_2562572_2 (population__1991_ VARCHAR, city___municipality VARCHAR)
What is the number of 1991 populations named Bečej?
SELECT COUNT(population__1991_) FROM table_2562572_2 WHERE city___municipality = "Bečej"
CREATE TABLE table_2562572_2 (city___municipality VARCHAR, urban_settlement VARCHAR)
What is the number of cities/municipalities having an urban settlement of Srbobran?
SELECT COUNT(city___municipality) FROM table_2562572_2 WHERE urban_settlement = "Srbobran"
CREATE TABLE table_name_83 (draw INTEGER, english_translation VARCHAR, points VARCHAR, place VARCHAR)
What is the highest draw number when there are more than 31 points, a rank greater than 6, and the English translation is listen to me?
SELECT MAX(draw) FROM table_name_83 WHERE points > 31 AND place > 6 AND english_translation = "listen to me"
CREATE TABLE table_2562572_25 (settlement VARCHAR, cyrillic_name_other_names VARCHAR, dominant_religion__2002_ VARCHAR, type VARCHAR)
When ратково is cyrillic name other names and village is the type and orthodox Christianity is the dominant religion of 2002 what is the settlement?
SELECT settlement FROM table_2562572_25 WHERE dominant_religion__2002_ = "Orthodox Christianity" AND type = "village" AND cyrillic_name_other_names = "Ратково"
CREATE TABLE table_2562572_25 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
When дероње is the cyrillic name other names what is the largest ethnic group of 2002?
SELECT largest_ethnic_group__2002_ FROM table_2562572_25 WHERE cyrillic_name_other_names = "Дероње"
CREATE TABLE table_name_24 (backed_with VARCHAR, record_label VARCHAR, date VARCHAR)
What's the Backed after 2008 with a label of Wild World?
SELECT backed_with FROM table_name_24 WHERE record_label = "wild world" AND date > 2008
CREATE TABLE table_name_74 (date INTEGER, other_details VARCHAR)
What's the date for Details of 1000 copies?
SELECT MIN(date) FROM table_name_74 WHERE other_details = "1000 copies"
CREATE TABLE table_13241993_3 (part_6 VARCHAR, episode__number VARCHAR)
How many part 6 parts are there in the episode number 5?
SELECT COUNT(part_6) FROM table_13241993_3 WHERE episode__number = 5
CREATE TABLE table_name_33 (record_medal_event VARCHAR, medal_count VARCHAR, sport VARCHAR, athlete VARCHAR)
What record medal event has athletics as the sport, with robert garrett as the athlete, and a medal count less than 3?
SELECT record_medal_event FROM table_name_33 WHERE sport = "athletics" AND athlete = "robert garrett" AND medal_count < 3
CREATE TABLE table_2562572_33 (cyrillic_name_other_names VARCHAR, settlement VARCHAR)
What is the other name for martonoš?
SELECT cyrillic_name_other_names FROM table_2562572_33 WHERE settlement = "Martonoš"
CREATE TABLE table_2562572_33 (type VARCHAR, cyrillic_name_other_names VARCHAR)
What type of settlement is ором (hungarian: orom)?
SELECT type FROM table_2562572_33 WHERE cyrillic_name_other_names = "Ором (Hungarian: Orom)"
CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, money___£__ VARCHAR, country VARCHAR)
Which Score has a Money ( £ ) of 90,400, and a Country of south africa, and a Player of thomas aiken? Question 1
SELECT score FROM table_name_38 WHERE money___£__ = "90,400" AND country = "south africa" AND player = "thomas aiken"
CREATE TABLE table_2562572_37 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)
Name the dominant religion of srpska crnja
SELECT dominant_religion__2002_ FROM table_2562572_37 WHERE settlement = "Srpska Crnja"
CREATE TABLE table_13388681_1 (purse___$__ VARCHAR, margin_of_victory VARCHAR)
How much is the purse ( $ ) when the margin of victory is 1 stroke?
SELECT purse___$__ FROM table_13388681_1 WHERE margin_of_victory = "1 stroke"
CREATE TABLE table_name_94 (_ppp__ VARCHAR, d__billions_of_us$_ VARCHAR, expenditures_on_r INTEGER, country_region VARCHAR, year VARCHAR)
What is the lowest expenditures on R&D for Poland after 2011?
SELECT MIN(expenditures_on_r) & d__billions_of_us$_, _ppp__ FROM table_name_94 WHERE country_region = "poland" AND year > 2011
CREATE TABLE table_name_83 (location VARCHAR, school VARCHAR, year_joined VARCHAR, previous_conference VARCHAR)
Which Location has a Year Joined of 1966, and a Previous Conference of noble county, and a School of wawaka?
SELECT location FROM table_name_83 WHERE year_joined = 1966 AND previous_conference = "noble county" AND school = "wawaka"
CREATE TABLE table_name_7 (elevated VARCHAR, elevator VARCHAR, cardinalatial_order_and_title VARCHAR)
What is the date of elevation for the Cardinal elevated by Nicholas III to the title of Cardinal-Deacon of S. Eustachio?
SELECT elevated FROM table_name_7 WHERE elevator = "nicholas iii" AND cardinalatial_order_and_title = "cardinal-deacon of s. eustachio"
CREATE TABLE table_name_91 (elevated VARCHAR, cardinalatial_order_and_title VARCHAR)
What was the date of elevation for the cardinal given the order and title of Cardinal-Priest of S. Pudenziana?
SELECT elevated FROM table_name_91 WHERE cardinalatial_order_and_title = "cardinal-priest of s. pudenziana"
CREATE TABLE table_2562572_44 (population__2011_ VARCHAR, settlement VARCHAR)
What was the population in 2011 of banatski karlovac?
SELECT population__2011_ FROM table_2562572_44 WHERE settlement = "Banatski Karlovac"
CREATE TABLE table_2562572_46 (dominant_religion__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
What was the dominant religion in 2002 of the settlement with the cyrillic and other name of војводинци (romanian: voivodinţ)?
SELECT dominant_religion__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = "Војводинци (Romanian: Voivodinţ)"
CREATE TABLE table_2562572_46 (population__2011_ INTEGER, cyrillic_name_other_names VARCHAR)
What was the population in 2011 of the settlement with the cyrillic name of ватин?
SELECT MAX(population__2011_) FROM table_2562572_46 WHERE cyrillic_name_other_names = "Ватин"
CREATE TABLE table_name_7 (highest_elevation VARCHAR, highest_point VARCHAR)
What is the highest elevation for the highest point of Schnebelhorn?
SELECT highest_elevation FROM table_name_7 WHERE highest_point = "schnebelhorn"
CREATE TABLE table_name_18 (type VARCHAR, in_service VARCHAR, vessel VARCHAR)
What type of ship is a Kobben class vessel that has been in service longer than 2?
SELECT type FROM table_name_18 WHERE in_service > 2 AND vessel = "kobben class"
CREATE TABLE table_1341453_37 (candidates VARCHAR, incumbent VARCHAR)
Tony P. Hall was the incumbent in the race between what two candidates?
SELECT candidates FROM table_1341453_37 WHERE incumbent = "Tony P. Hall"
CREATE TABLE table_1341522_38 (party VARCHAR, opponent VARCHAR)
what's the party with opponent being mike oxley (r) unopposed
SELECT party FROM table_1341522_38 WHERE opponent = "Mike Oxley (R) unopposed"
CREATE TABLE table_2562572_53 (type VARCHAR, settlement VARCHAR)
How many different types of settlements does Nova Pazova fall into?
SELECT COUNT(type) FROM table_2562572_53 WHERE settlement = "Nova Pazova"
CREATE TABLE table_2562572_53 (population__2011_ VARCHAR, cyrillic_name VARCHAR)
What was the population of сурдук in 2011?
SELECT COUNT(population__2011_) FROM table_2562572_53 WHERE cyrillic_name = "Сурдук"
CREATE TABLE table_name_12 (release_price___usd__ VARCHAR, i_o_bus VARCHAR, part_number_s_ VARCHAR)
What's the release price of the processor with the part number bx80601975at80601002274aa, and has 1 × 6.4 gt/s qpi I/O?
SELECT release_price___usd__ FROM table_name_12 WHERE i_o_bus = "1 × 6.4 gt/s qpi" AND part_number_s_ = "bx80601975at80601002274aa"
CREATE TABLE table_name_41 (aids_orphans_as__percentage_of_orphans INTEGER, double__aids_related_ VARCHAR, paternal__total_ VARCHAR)
What is the number of AIDS Orphans as % of Orphans when the Double (AIDS Related) number is 41,000, and the Paternal (Total) is larger than 442,000?
SELECT SUM(aids_orphans_as__percentage_of_orphans) FROM table_name_41 WHERE double__aids_related_ = "41,000" AND paternal__total_ > 442 OFFSET 000
CREATE TABLE table_name_66 (total_orphans__total_ INTEGER, total_orphans__aids_related_ VARCHAR, maternal__total_ VARCHAR)
What is the Total Orphans number when the number of Total Orphans (AIDS Related) is < 100, and the Maternal (Total) is smaller than 31,000?
SELECT MIN(total_orphans__total_) FROM table_name_66 WHERE total_orphans__aids_related_ = "< 100" AND maternal__total_ < 31 OFFSET 000
CREATE TABLE table_name_94 (term_start VARCHAR, party VARCHAR)
What's the term start date for Meretz?
SELECT term_start FROM table_name_94 WHERE party = "meretz"
CREATE TABLE table_1341568_14 (incumbent VARCHAR, elected VARCHAR, party VARCHAR)
What Republican incumbent was elected in 1974?
SELECT incumbent FROM table_1341568_14 WHERE elected = 1974 AND party = "Republican"
CREATE TABLE table_name_87 (new_entries_this_round VARCHAR, leagues_entering_at_this_round VARCHAR)
How many new entries when the leagues entering in the round are tff third league & turkish regional amateur league?
SELECT new_entries_this_round FROM table_name_87 WHERE leagues_entering_at_this_round = "tff third league & turkish regional amateur league"
CREATE TABLE table_name_59 (clubs_involved INTEGER, winners_from_previous_round VARCHAR, clubs_remaining VARCHAR)
How many clubs are involved when there are 4 winners from the previous rounds and more than 4 clubs remaining?
SELECT MIN(clubs_involved) FROM table_name_59 WHERE winners_from_previous_round = "4" AND clubs_remaining > 4
CREATE TABLE table_1341663_10 (result VARCHAR, candidates VARCHAR)
what was the result where the candidates are sam m. gibbons (d) unopposed?
SELECT result FROM table_1341663_10 WHERE candidates = "Sam M. Gibbons (D) Unopposed"
CREATE TABLE table_name_67 (conference_joined VARCHAR, location VARCHAR, mascot VARCHAR)
Can you tell me the Conference Joined that has the Location of terre haute, and the Mascot of golden bears?
SELECT conference_joined FROM table_name_67 WHERE location = "terre haute" AND mascot = "golden bears"