context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_22 (venue VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)
What is the Venue with a Result of 3–0, and a Competition with 2006 fifa world cup qualifier, and with a Score of 3–0?
SELECT venue FROM table_name_22 WHERE result = "3–0" AND competition = "2006 fifa world cup qualifier" AND score = "3–0"
CREATE TABLE table_name_93 (date VARCHAR, winning_score VARCHAR)
Which Date has a Winning score of –14 (66-64-68-68=266)?
SELECT date FROM table_name_93 WHERE winning_score = –14(66 - 64 - 68 - 68 = 266)
CREATE TABLE table_name_99 (state VARCHAR, council_votes INTEGER)
Which country has less than 4 votes?
SELECT state FROM table_name_99 WHERE council_votes < 4
CREATE TABLE table_name_68 (engine VARCHAR, year VARCHAR, points VARCHAR)
what was the engine used before 1996 with 5 points?
SELECT engine FROM table_name_68 WHERE year < 1996 AND points = 5
CREATE TABLE table_name_90 (year VARCHAR, entrant VARCHAR, points VARCHAR)
What number of years did the red bull sauber petronas have greater than 6 points?
SELECT COUNT(year) FROM table_name_90 WHERE entrant = "red bull sauber petronas" AND points > 6
CREATE TABLE table_name_81 (area__km_2__ INTEGER, location VARCHAR, area__sq_mi_ VARCHAR)
What is the area located in Rhode Island with more than 38 sq mi area?
SELECT AVG(area__km_2__) FROM table_name_81 WHERE location = "rhode island" AND area__sq_mi_ > 38
CREATE TABLE table_name_23 (trofeo_fast_team VARCHAR, points_classification VARCHAR, stage VARCHAR)
Which team had a final stage when Claudio Chiappucci had the points?
SELECT trofeo_fast_team FROM table_name_23 WHERE points_classification = "claudio chiappucci" AND stage = "final"
CREATE TABLE table_name_78 (stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR, winner VARCHAR)
What stage did team Carrera Jeans-Tassoni have when Mario Cipollini won and Claudio Chiappucci had the points?
SELECT stage FROM table_name_78 WHERE trofeo_fast_team = "carrera jeans-tassoni" AND winner = "mario cipollini" AND points_classification = "claudio chiappucci"
CREATE TABLE table_name_39 (drawn INTEGER, lost VARCHAR, against VARCHAR, points VARCHAR)
Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9?
SELECT MAX(drawn) FROM table_name_39 WHERE against > 15 AND points < 15 AND lost < 9
CREATE TABLE table_name_86 (population_estimate_2005 VARCHAR, capital VARCHAR)
how many population estimate 2005 are for majene?
SELECT COUNT(population_estimate_2005) FROM table_name_86 WHERE capital = "majene"
CREATE TABLE table_name_89 (population_estimate_2005 INTEGER, area__km_2__ VARCHAR)
what is the population estimate 2005 for the with the area (km2) 3,034.08?
SELECT AVG(population_estimate_2005) FROM table_name_89 WHERE area__km_2__ = 3 OFFSET 034.08
CREATE TABLE table_name_26 (population_estimate_2005 VARCHAR, area__km_2__ INTEGER)
how many times was the population estimate 2005 have an area (km2) more than 8,023.74?
SELECT COUNT(population_estimate_2005) FROM table_name_26 WHERE area__km_2__ > 8 OFFSET 023.74
CREATE TABLE table_name_16 (score VARCHAR, visitor VARCHAR, date VARCHAR)
Name the score for pacers visitor on 14 april 2008
SELECT score FROM table_name_16 WHERE visitor = "pacers" AND date = "14 april 2008"
CREATE TABLE table_name_27 (street_address VARCHAR, name VARCHAR)
What's the address of the union bank of California tower?
SELECT street_address FROM table_name_27 WHERE name = "union bank of california tower"
CREATE TABLE table_name_95 (genre VARCHAR, number_of_episodes VARCHAR, english_title__chinese_title_ VARCHAR)
What genre has over 20 episodes, with an English title (Chinese title) of wong fei hung - master of kung fu 我師傅係黃飛鴻?
SELECT genre FROM table_name_95 WHERE number_of_episodes > 20 AND english_title__chinese_title_ = "wong fei hung - master of kung fu 我師傅係黃飛鴻"
CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR)
Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap?
SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = "k230ap"
CREATE TABLE table_name_98 (_kah__atau_tidak_ VARCHAR, language_dialect VARCHAR)
what is -kah (atau tidak when basikal is basikal and language dialect is malay language (informal)?
SELECT _kah__atau_tidak_ FROM table_name_98 WHERE "basikal" = "basikal" AND language_dialect = "malay language (informal)"
CREATE TABLE table_name_98 (pocona_municipality VARCHAR, totora_municipality VARCHAR, pojo_municipality VARCHAR)
What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities?
SELECT COUNT(pocona_municipality) FROM table_name_98 WHERE totora_municipality = 72 AND pojo_municipality > 74
CREATE TABLE table_name_35 (runner_up VARCHAR, winner VARCHAR)
Name the runner-up for janice yan (閻奕格)
SELECT runner_up FROM table_name_35 WHERE winner = "janice yan (閻奕格)"
CREATE TABLE table_name_57 (games_played INTEGER, team VARCHAR, wins VARCHAR)
Which average games played number has the Ottawa Hockey Club as a team and a number of wins bigger than 5?
SELECT AVG(games_played) FROM table_name_57 WHERE team = "ottawa hockey club" AND wins > 5
CREATE TABLE table_name_28 (team VARCHAR, conmebol_1995 VARCHAR)
Which Team has a round 1 CONMEBOL 1995?
SELECT team FROM table_name_28 WHERE conmebol_1995 = "round 1"
CREATE TABLE table_name_4 (wins VARCHAR, losses VARCHAR, goals_for VARCHAR, team VARCHAR)
What is the sum of wins when the goals for number was bigger than 35, the team was the Montreal Hockey Club, and the number of losses was less than 2?
SELECT COUNT(wins) FROM table_name_4 WHERE goals_for > 35 AND team = "montreal hockey club" AND losses < 2
CREATE TABLE table_name_1 (game_site VARCHAR, date VARCHAR)
Which Game Site has a Date of october 17, 1999?
SELECT game_site FROM table_name_1 WHERE date = "october 17, 1999"
CREATE TABLE table_name_7 (seats_2001 INTEGER, seats_2006 VARCHAR, _percentage_2001 VARCHAR)
There are communities listed that a percentage larger than 7.6 in 2001, but none of them has 2 seats listed in 2006.
SELECT SUM(seats_2001) FROM table_name_7 WHERE seats_2006 = 2 AND _percentage_2001 > 7.6
CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, points VARCHAR, goals VARCHAR, tries VARCHAR)
Which player has 0 goals, 1 tries, 4 points, and plays in the Prop position?
SELECT player FROM table_name_19 WHERE goals = 0 AND tries = 1 AND points = 4 AND position = "prop"
CREATE TABLE table_name_79 (frequency_mhz VARCHAR, city_of_license VARCHAR)
What is surfside beach, SC frequency?
SELECT frequency_mhz FROM table_name_79 WHERE city_of_license = "surfside beach, sc"
CREATE TABLE table_name_65 (type VARCHAR, project VARCHAR, weight__kg_ VARCHAR)
Name the typ for project of igmdp and weight of 16,000
SELECT type FROM table_name_65 WHERE project = "igmdp" AND weight__kg_ = "16,000"
CREATE TABLE table_name_2 (group_position VARCHAR, opponents VARCHAR, attendance VARCHAR)
What group of juventus had an attendance larger than 47,786?
SELECT group_position FROM table_name_2 WHERE opponents = "juventus" AND attendance > 47 OFFSET 786
CREATE TABLE table_name_11 (wins INTEGER, class VARCHAR, year VARCHAR)
What are the most wins in 1971 in 250cc class?
SELECT MAX(wins) FROM table_name_11 WHERE class = "250cc" AND year = 1971
CREATE TABLE table_name_49 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR)
What is the earliest year with less than 45 points for Yamaha team in 21st rank?
SELECT MIN(year) FROM table_name_49 WHERE points < 45 AND team = "yamaha" AND rank = "21st"
CREATE TABLE table_name_88 (constructor VARCHAR, time_retired VARCHAR)
Who built the car that has a Time/Retired of 1:34:12.912?
SELECT constructor FROM table_name_88 WHERE time_retired = "1:34:12.912"
CREATE TABLE table_name_64 (current_status VARCHAR, make VARCHAR, number_of_seats VARCHAR)
What is the current status for GM Advanced Design with more than 41 seats?
SELECT current_status FROM table_name_64 WHERE make = "gm advanced design" AND number_of_seats > 41
CREATE TABLE table_name_54 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)
Tell me the constellation which has a right ascension of 18h17m41.1s
SELECT constellation FROM table_name_54 WHERE right_ascension___j2000__ = "18h17m41.1s"
CREATE TABLE table_name_57 (since VARCHAR, goals VARCHAR, name VARCHAR)
What is the total number of Since with a Goals larger than 6, and a Name with deco?
SELECT COUNT(since) FROM table_name_57 WHERE goals > 6 AND name = "deco"
CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR)
What is the overall of the running back player?
SELECT overall FROM table_name_91 WHERE position = "running back"
CREATE TABLE table_name_2 (constructor VARCHAR, rank VARCHAR, grid VARCHAR, laps VARCHAR)
Which constructor had a grid number bigger than 14, laps of more than 93, and rank higher than 25?
SELECT constructor FROM table_name_2 WHERE grid > 14 AND laps > 93 AND rank > 25
CREATE TABLE table_name_27 (award VARCHAR, year VARCHAR, result VARCHAR, category VARCHAR)
For the category of most popular star with a result of won for 2007, what was the award?
SELECT award FROM table_name_27 WHERE result = "won" AND category = "most popular star" AND year = 2007
CREATE TABLE table_name_36 (main_colour_s_ VARCHAR, main_sponsor_s_ VARCHAR)
What is the main color(s) for marlboro?
SELECT main_colour_s_ FROM table_name_36 WHERE main_sponsor_s_ = "marlboro"
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
What was the average attendance on October 30, 1938?
SELECT AVG(attendance) FROM table_name_33 WHERE date = "october 30, 1938"
CREATE TABLE table_name_7 (engine_s_ VARCHAR, year VARCHAR)
What engines have the year 1992?
SELECT engine_s_ FROM table_name_7 WHERE year = 1992
CREATE TABLE table_name_90 (opponent VARCHAR, results¹ VARCHAR)
Who did Yugoslavia play against that led to a result of 2:3?
SELECT opponent FROM table_name_90 WHERE results¹ = "2:3"
CREATE TABLE table_name_75 (score_in_final VARCHAR, outcome VARCHAR, date VARCHAR)
What is the final score of the runner-up on 9 February 1992?
SELECT score_in_final FROM table_name_75 WHERE outcome = "runner-up" AND date = "9 february 1992"
CREATE TABLE table_name_39 (attendance INTEGER, time VARCHAR, location VARCHAR, game VARCHAR)
what is the attendance when the location is veterans stadium, the game is more than 3 and the time is 2:21?
SELECT AVG(attendance) FROM table_name_39 WHERE location = "veterans stadium" AND game > 3 AND time = "2:21"
CREATE TABLE table_name_95 (game VARCHAR, location VARCHAR, time VARCHAR)
how many games have a location of memorial stadium and a time of 2:27?
SELECT COUNT(game) FROM table_name_95 WHERE location = "memorial stadium" AND time = "2:27"
CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR)
What is the time when the opponent is stephanie palmer?
SELECT time FROM table_name_27 WHERE opponent = "stephanie palmer"
CREATE TABLE table_name_36 (date VARCHAR, tournament VARCHAR)
What date is the zürich, switzerland tournament?
SELECT date FROM table_name_36 WHERE tournament = "zürich, switzerland"
CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR, score VARCHAR)
Which Venue has a Result of 5-1, and a Score of 1-0?
SELECT venue FROM table_name_72 WHERE result = "5-1" AND score = "1-0"
CREATE TABLE table_name_51 (works_number VARCHAR, date VARCHAR, type VARCHAR, name VARCHAR)
What is the total work number of Gowrie with a 0-6-4t type after 1908?
SELECT COUNT(works_number) FROM table_name_51 WHERE type = "0-6-4t" AND name = "gowrie" AND date > 1908
CREATE TABLE table_name_29 (network VARCHAR, model VARCHAR)
Which network has model nForce Professional 3400 MCP?
SELECT network FROM table_name_29 WHERE model = "nforce professional 3400 mcp"
CREATE TABLE table_name_7 (score VARCHAR, couple VARCHAR, style VARCHAR)
Which Score has a Couple of cristián & cheryl, and a Style of cha-cha-cha?
SELECT score FROM table_name_7 WHERE couple = "cristián & cheryl" AND style = "cha-cha-cha"
CREATE TABLE table_name_23 (name VARCHAR, casualties VARCHAR, sunk_by… VARCHAR, date VARCHAR, nationality VARCHAR)
What is the name of the ship sunk on 5 May 1943 from the United Kingdom sunk by an u-266 with 0 casualties?
SELECT name FROM table_name_23 WHERE date = "5 may 1943" AND nationality = "united kingdom" AND sunk_by… = "u-266" AND casualties = "0"
CREATE TABLE table_name_14 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR)
What is the Right Ascension with a Diffuse Nebula Object Type has a °42′30″ Declination and a NGC less than 6995?
SELECT right_ascension___j2000__ FROM table_name_14 WHERE ngc_number < 6995 AND object_type = "diffuse nebula" AND declination___j2000__ = "°42′30″"
CREATE TABLE table_name_81 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)
What Object Type has a 21h01m37.7s Right Ascension (J2000) and 6995 or greater NGC?
SELECT object_type FROM table_name_81 WHERE ngc_number > 6995 AND right_ascension___j2000__ = "21h01m37.7s"
CREATE TABLE table_name_26 (new_zealand_kennel_club_toy_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)
What is the New Zealand Kennel Club Toy Group with papillon as the Australian National Kennel Council Toy Dogs Group breed?
SELECT new_zealand_kennel_club_toy_group FROM table_name_26 WHERE australian_national_kennel_council_toy_dogs_group = "papillon"
CREATE TABLE table_name_43 (date VARCHAR, venue VARCHAR, score VARCHAR)
What is the date of the game at the Pro Player Stadium that had a score of 4-1?
SELECT date FROM table_name_43 WHERE venue = "pro player stadium" AND score = "4-1"
CREATE TABLE table_name_12 (surname VARCHAR, first VARCHAR)
What is donovan's surname?
SELECT surname FROM table_name_12 WHERE first = "donovan"
CREATE TABLE table_name_94 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)
In what League is Left Wing Yanick Dupre?
SELECT college_junior_club_team__league_ FROM table_name_94 WHERE position = "left wing" AND player = "yanick dupre"
CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)
In what League in Round 6 is the Position Right Wing?
SELECT college_junior_club_team__league_ FROM table_name_31 WHERE position = "right wing" AND round = "6"
CREATE TABLE table_name_2 (away_team VARCHAR)
When Richmond is the Away team, what did they score?
SELECT away_team AS score FROM table_name_2 WHERE away_team = "richmond"
CREATE TABLE table_name_96 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR)
What was the time of the car having a constructor of Renault, which went 40 laps?
SELECT time_retired FROM table_name_96 WHERE constructor = "renault" AND laps = "40"
CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR)
Which title has tracks smaller than 7 with translation of an island?
SELECT title FROM table_name_67 WHERE track < 7 AND translation = "an island"
CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR)
What's the position listed for the east carolina team?
SELECT position FROM table_name_81 WHERE school_club_team = "east carolina"
CREATE TABLE table_name_57 (name VARCHAR, marriage VARCHAR)
Who had a disputed marriage?
SELECT name FROM table_name_57 WHERE marriage = "disputed"
CREATE TABLE table_name_98 (high_assists VARCHAR, high_points VARCHAR)
What was the high assists from a high points of dorell wright (20)?
SELECT high_assists FROM table_name_98 WHERE high_points = "dorell wright (20)"
CREATE TABLE table_name_53 (brooklyn VARCHAR, richmond_ VARCHAR, staten_is VARCHAR)
When Richmond had a total count of 2,293, what was the total count of Brooklyn?
SELECT brooklyn FROM table_name_53 WHERE richmond_[staten_is] = "2,293"
CREATE TABLE table_name_41 (fuel_propulsion VARCHAR, year VARCHAR, numbers__quantity_ordered_ VARCHAR)
For the year 1975, what is Propulsion, with a Number (quantity ordered) of 4756-4788 (33 buses)?
SELECT fuel_propulsion FROM table_name_41 WHERE year = 1975 AND numbers__quantity_ordered_ = "4756-4788 (33 buses)"
CREATE TABLE table_name_2 (year VARCHAR, numbers__quantity_ordered_ VARCHAR, fuel_propulsion VARCHAR, length VARCHAR)
What year was the diesel fuel propulsion, with a length of 40', and numbers (quanity ordered) of 3701-3729 (29 buses), retired?
SELECT year AS Retired FROM table_name_2 WHERE fuel_propulsion = "diesel" AND length = "40'" AND numbers__quantity_ordered_ = "3701-3729 (29 buses)"
CREATE TABLE table_name_42 (events VARCHAR, player VARCHAR, earnings___$__ VARCHAR)
What is the total number of events that Al Geiberger has played with earnings larger than 527,033?
SELECT COUNT(events) FROM table_name_42 WHERE player = "al geiberger" AND earnings___$__ > 527 OFFSET 033
CREATE TABLE table_name_52 (location_attendance VARCHAR, date VARCHAR)
What is the location attendance of the game on February 25?
SELECT location_attendance FROM table_name_52 WHERE date = "february 25"
CREATE TABLE table_name_96 (fall_08 INTEGER, fall_05 VARCHAR, fall_09 VARCHAR, fall_06 VARCHAR)
What's the largest Fall 08 number when fall 09 is less than 82, fall 06 is 5, and fall 05 is less than 3?
SELECT MAX(fall_08) FROM table_name_96 WHERE fall_09 < 82 AND fall_06 = 5 AND fall_05 < 3
CREATE TABLE table_name_71 (school VARCHAR, round VARCHAR, player VARCHAR)
Which school has more than 3 rounds with jason odom?
SELECT school FROM table_name_71 WHERE round > 3 AND player = "jason odom"
CREATE TABLE table_name_48 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_the_premier_league VARCHAR)
I want the sum of number of seasons in top division for position in 2012-13 of 009 9th and number of seasons in premier league less than 3
SELECT SUM(number_of_seasons_in_top_division) FROM table_name_48 WHERE position_in_2012_13 = "009 9th" AND number_of_seasons_in_the_premier_league < 3
CREATE TABLE table_name_69 (new_classification VARCHAR, location VARCHAR)
What is the new classification for La Mirada, California?
SELECT new_classification FROM table_name_69 WHERE location = "la mirada, california"
CREATE TABLE table_name_8 (player VARCHAR, school_club_team VARCHAR)
Who is the player who went to Stanford?
SELECT player FROM table_name_8 WHERE school_club_team = "stanford"
CREATE TABLE table_name_24 (host_city VARCHAR, venue VARCHAR, theme VARCHAR)
What is the host city of the Singapore Indoor Stadium venue and a Valentine's Day theme?
SELECT host_city FROM table_name_24 WHERE venue = "singapore indoor stadium" AND theme = "valentine's day"
CREATE TABLE table_name_21 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
What date has a margin of victory of 1 stroke over Greg Kraft?
SELECT date FROM table_name_21 WHERE margin_of_victory = "1 stroke" AND runner_s__up = "greg kraft"
CREATE TABLE table_name_53 (object_type VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)
Which object type had an NGC number greater than 6357 and a declination (J2000) of °45′34″?
SELECT object_type FROM table_name_53 WHERE ngc_number > 6357 AND declination___j2000__ = "°45′34″"
CREATE TABLE table_name_53 (declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR)
For the constellation scorpius and object of planetary nebula, what was the declination (J2000)?
SELECT declination___j2000__ FROM table_name_53 WHERE constellation = "scorpius" AND object_type = "planetary nebula"
CREATE TABLE table_name_92 (code INTEGER, area__km_2__ VARCHAR, most_spoken_language VARCHAR, place VARCHAR)
What's the lowest Code that's got a Most Spoke Language of Xhosa, a Place of Addo Elephant National Park, and an Area (KM 2) that's smaller than 1.08?
SELECT MIN(code) FROM table_name_92 WHERE most_spoken_language = "xhosa" AND place = "addo elephant national park" AND area__km_2__ < 1.08
CREATE TABLE table_name_35 (command_set VARCHAR, _number_fdd VARCHAR, fdd_capacity__each_ VARCHAR, sides VARCHAR)
Tell me the command set with FDD capacity of 270kb and sides of ds with #FDD more than 1
SELECT command_set FROM table_name_35 WHERE fdd_capacity__each_ = "270kb" AND sides = "ds" AND _number_fdd > 1
CREATE TABLE table_name_41 (score VARCHAR, visitor VARCHAR, date VARCHAR)
What's the score on December 1 when Philadelphia visited?
SELECT score FROM table_name_41 WHERE visitor = "philadelphia" AND date = "december 1"
CREATE TABLE table_name_7 (year_10_6th_quad VARCHAR, open_2nd_viii VARCHAR, year_11_2nd_viii VARCHAR)
What is the Year 10 6th Quads for the Open 2nd VIII of ACGS and a Year 11 2nd VIII NC?
SELECT year_10_6th_quad FROM table_name_7 WHERE open_2nd_viii = "acgs" AND year_11_2nd_viii = "nc"
CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)
On July 25 what is the lowest attendance with the Brewers as the opponent?
SELECT MIN(attendance) FROM table_name_26 WHERE opponent = "brewers" AND date = "july 25"
CREATE TABLE table_name_98 (car__number INTEGER, make VARCHAR, pos VARCHAR)
Which Car # has a Make of toyota, and a Pos of 7?
SELECT MAX(car__number) FROM table_name_98 WHERE make = "toyota" AND pos = 7
CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)
Which Record has a Date on december 18?
SELECT record FROM table_name_55 WHERE date = "december 18"
CREATE TABLE table_name_1 (surface VARCHAR, opponents_in_the_final VARCHAR)
On what surface was the tournament with opponents kathleen horvath marcella mesker in the finals?
SELECT surface FROM table_name_1 WHERE opponents_in_the_final = "kathleen horvath marcella mesker"
CREATE TABLE table_name_34 (host_interface VARCHAR, digital VARCHAR, model VARCHAR)
Tell me the Host interface for digital of dvb-t (cx22702) and model of nova-t pci (90002)
SELECT host_interface FROM table_name_34 WHERE digital = "dvb-t (cx22702)" AND model = "nova-t pci (90002)"
CREATE TABLE table_name_93 (director VARCHAR, year__ceremony_ VARCHAR)
What was the Director with a Ceremony of 2001?
SELECT director FROM table_name_93 WHERE year__ceremony_ = 2001
CREATE TABLE table_name_32 (tuner VARCHAR, model VARCHAR, type VARCHAR, digital VARCHAR)
I want the tuner for hybrid video recorder and Digital of dvb-t (zl10353), and a Model of hvr-900
SELECT tuner FROM table_name_32 WHERE type = "hybrid video recorder" AND digital = "dvb-t (zl10353)" AND model = "hvr-900"
CREATE TABLE table_name_89 (type VARCHAR, host_interface VARCHAR)
I want the type for host interface of pci saa7146 tmx320av7111
SELECT type FROM table_name_89 WHERE host_interface = "pci saa7146 tmx320av7111"
CREATE TABLE table_name_8 (score VARCHAR, opponent VARCHAR, save VARCHAR)
Which Score has a Opponent of Boston red sox and a Save of sager?
SELECT score FROM table_name_8 WHERE opponent = "boston red sox" AND save = "sager"
CREATE TABLE table_name_25 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)
What is the number for swimsuit when the evening gown number is larger than 9.257 and the interview number is 9.357?
SELECT SUM(swimsuit) FROM table_name_25 WHERE evening_gown > 9.257 AND interview = 9.357
CREATE TABLE table_name_25 (length VARCHAR, junctions VARCHAR, route_name VARCHAR)
What is the length of the highway with junctions i-35 us 83 and named us 83 bus.?
SELECT length FROM table_name_25 WHERE junctions = "i-35 us 83" AND route_name = "us 83 bus."
CREATE TABLE table_name_78 (date_of_inauguration VARCHAR, length_of_retirement VARCHAR)
What is the date of the inauguration with a Length of retirement of 00,624 days?
SELECT date_of_inauguration FROM table_name_78 WHERE length_of_retirement = "00,624 days"
CREATE TABLE table_name_92 (extra_points INTEGER, points VARCHAR, touchdowns VARCHAR, player VARCHAR)
How many Extra points have Touchdowns of 1, and a Player of ross kidston, and Points smaller than 5?
SELECT SUM(extra_points) FROM table_name_92 WHERE touchdowns = 1 AND player = "ross kidston" AND points < 5
CREATE TABLE table_name_13 (wk_9 INTEGER, wk_11 VARCHAR, wk_7 VARCHAR, wk_6 VARCHAR, wk_10 VARCHAR)
What is the highest week 9 that had a week 6 of 7, a week 10 of greater than 2, a week 7 of 5, and a week 11 less than 2?
SELECT MAX(wk_9) FROM table_name_13 WHERE wk_6 = "7" AND wk_10 > 2 AND wk_7 = "5" AND wk_11 < 2
CREATE TABLE table_name_44 (week_14_nov_24 VARCHAR, week_11_nov_3 VARCHAR)
What is Week 14 Nov 24, that has Week 11 Nov 3 of USC (6-2)?
SELECT week_14_nov_24 FROM table_name_44 WHERE week_11_nov_3 = "usc (6-2)"
CREATE TABLE table_name_43 (name VARCHAR, games VARCHAR, order VARCHAR, goals VARCHAR)
Which name has an Order smaller than 997,more than 5 goals, and 215 games?
SELECT name FROM table_name_43 WHERE order < 997 AND goals > 5 AND games = 215
CREATE TABLE table_name_66 (year INTEGER, venue VARCHAR)
What is the latest year in Annecy, France?
SELECT MAX(year) FROM table_name_66 WHERE venue = "annecy, france"
CREATE TABLE table_name_96 (attendance VARCHAR, score VARCHAR, date VARCHAR)
How many people attended the game on january 10 with a Score of 3 – 2?
SELECT COUNT(attendance) FROM table_name_96 WHERE score = "3 – 2" AND date = "january 10"