context
stringlengths
0
489
instruction
stringlengths
16
244
response
stringlengths
38
557
CREATE TABLE table_name_91 (gymnast VARCHAR, vault VARCHAR, floor_exercise VARCHAR, balance_beam VARCHAR, total VARCHAR)
Which gymnast had a balance beam larger than 8.687, had a total less than 38.049, had a floor exercise less than 9.462, and a vault less than 9.275?
SELECT gymnast FROM table_name_91 WHERE balance_beam > 8.687 AND total < 38.049 AND floor_exercise < 9.462 AND vault < 9.275
CREATE TABLE table_name_20 (laps INTEGER, driver VARCHAR, time_retired VARCHAR, grid VARCHAR)
What's the least amount of laps that George Eaton completed that has a time/retired engine and a grid larger than 8?
SELECT MIN(laps) FROM table_name_20 WHERE time_retired = "engine" AND grid > 8 AND driver = "george eaton"
CREATE TABLE table_name_34 (grantee VARCHAR, concession VARCHAR)
Tell me the Grantee for san ysidro
SELECT grantee FROM table_name_34 WHERE concession = "san ysidro"
CREATE TABLE table_name_85 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)
how many laps have a time/retired of +1 lap and mark blundell is the driver?
SELECT AVG(laps) FROM table_name_85 WHERE time_retired = "+1 lap" AND driver = "mark blundell"
CREATE TABLE table_name_95 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
what is the highest grid when the time/retired is fuel pump and the laps is more than 26?
SELECT MAX(grid) FROM table_name_95 WHERE time_retired = "fuel pump" AND laps > 26
CREATE TABLE table_name_68 (total_games INTEGER, pct VARCHAR, team VARCHAR, conference VARCHAR, lost VARCHAR)
What were the total games in the Big Ten conference when Nebraska lost fewer than 488 games and had a Pct less than 0.7014?
SELECT SUM(total_games) FROM table_name_68 WHERE conference = "big ten" AND lost < 488 AND team = "nebraska" AND pct < 0.7014
CREATE TABLE table_name_14 (grid INTEGER, driver VARCHAR, laps VARCHAR)
Tell me the highest Grid for Maurice Trintignant and laps less than 87
SELECT MAX(grid) FROM table_name_14 WHERE driver = "maurice trintignant" AND laps < 87
CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR, surface VARCHAR, year VARCHAR)
What was the score on a clay surface in a year later than 2006 with David Ferrer as an opponent?
SELECT score FROM table_name_43 WHERE surface = "clay" AND year > 2006 AND opponent = "david ferrer"
CREATE TABLE table_name_36 (championship VARCHAR, year VARCHAR, opponent VARCHAR, surface VARCHAR)
Which championship has Roger Federer as an opponent on a clay surface in a year earlier than 2007?
SELECT championship FROM table_name_36 WHERE opponent = "roger federer" AND surface = "clay" AND year < 2007
CREATE TABLE table_name_15 (first_class_team VARCHAR, bowling_style VARCHAR)
What is the name of the First Class Team in which the player has a bowling style of left arm orthodox spin?
SELECT first_class_team FROM table_name_15 WHERE bowling_style = "left arm orthodox spin"
CREATE TABLE table_name_92 (goals INTEGER, matches VARCHAR, scorer VARCHAR)
Which Goals is the lowest one that has Matches of 16, and a Scorer of park sang-in?
SELECT MIN(goals) FROM table_name_92 WHERE matches = "16" AND scorer = "park sang-in"
CREATE TABLE table_name_75 (lost INTEGER, seasons VARCHAR, goals_against VARCHAR)
Which Lost has Seasons of 2, and Goals against larger than 43?
SELECT MAX(lost) FROM table_name_75 WHERE seasons = 2 AND goals_against > 43
CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR)
Which College/Junior/Club Team (League) has a Position of right wing, and a Round smaller than 3?
SELECT college_junior_club_team__league_ FROM table_name_48 WHERE position = "right wing" AND round < 3
CREATE TABLE table_name_33 (failures INTEGER, orbital_regime VARCHAR, launches VARCHAR)
What is the total failures of heliocentric orbit orbital regimes and launches less than 1?
SELECT SUM(failures) FROM table_name_33 WHERE orbital_regime = "heliocentric orbit" AND launches < 1
CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR, score VARCHAR)
On what Surface was the game with Partner David Martin played Scoring 4–6, 6–7 (4-7)?
SELECT surface FROM table_name_24 WHERE partner = "david martin" AND score = "4–6, 6–7 (4-7)"
CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR)
What record has Glenn Robinson (16) as the leading scorer?
SELECT record FROM table_name_83 WHERE leading_scorer = "glenn robinson (16)"
CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR)
Whose attendance was the highest when the team played Arsenal?
SELECT MAX(attendance) FROM table_name_95 WHERE opponent = "arsenal"
CREATE TABLE table_name_84 (genes INTEGER, reference VARCHAR, strain VARCHAR)
what is the average genes when the reference is 2009 and the strain is rku-1?
SELECT AVG(genes) FROM table_name_84 WHERE reference = "2009" AND strain = "rku-1"
CREATE TABLE table_name_47 (date VARCHAR, results¹ VARCHAR)
On what Date were the Results¹ 4:0?
SELECT date FROM table_name_47 WHERE results¹ = "4:0"
CREATE TABLE table_name_37 (away_team VARCHAR, venue VARCHAR)
What was the away teams score at Princes Park?
SELECT away_team AS score FROM table_name_37 WHERE venue = "princes park"
CREATE TABLE table_name_42 (home VARCHAR, visitor VARCHAR, series VARCHAR)
Which Home has a Visitor of ny rangers, and a Series of flyers win 4–3?
SELECT home FROM table_name_42 WHERE visitor = "ny rangers" AND series = "flyers win 4–3"
CREATE TABLE table_name_79 (college VARCHAR, hometown VARCHAR)
What college did the player from Fort Lauderdale, FL attend?
SELECT college FROM table_name_79 WHERE hometown = "fort lauderdale, fl"
CREATE TABLE table_name_44 (frequency_mhz VARCHAR, erp_w VARCHAR)
Name the frequency mhz for ERP W of 850 watts
SELECT frequency_mhz FROM table_name_44 WHERE erp_w = "850 watts"
CREATE TABLE table_name_24 (att INTEGER, long VARCHAR, yards VARCHAR)
Tell me the most Att with a long of 27 with yards longer than 27
SELECT MAX(att) FROM table_name_24 WHERE long = 27 AND yards > 27
CREATE TABLE table_name_64 (points VARCHAR, time_retired VARCHAR)
How many points were scored in 1:44:59.557 of time?
SELECT points FROM table_name_64 WHERE time_retired = "1:44:59.557"
CREATE TABLE table_name_31 (date VARCHAR, result VARCHAR)
What Date has a Result of l 21–34?
SELECT date FROM table_name_31 WHERE result = "l 21–34"
CREATE TABLE table_name_39 (year INTEGER, mintage VARCHAR, issue_price VARCHAR)
What is the latest year that has an n/a mintage and an Issue Price of $89.95?
SELECT MAX(year) FROM table_name_39 WHERE mintage = "n/a" AND issue_price = "$89.95"
CREATE TABLE table_name_18 (total_cargo__metric_tonnes_ INTEGER, code__iata_icao_ VARCHAR, rank VARCHAR)
What is the highest total cargo of an airport ranked larger than 19 with a code of BKK/VTBS?
SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_18 WHERE code__iata_icao_ = "bkk/vtbs" AND rank > 19
CREATE TABLE table_name_27 (new_team VARCHAR, round VARCHAR, player VARCHAR)
Which new team has a compensation-a round, and Frank Catalanotto as a player?
SELECT new_team FROM table_name_27 WHERE round = "compensation-a" AND player = "frank catalanotto"
CREATE TABLE table_name_53 (artist VARCHAR, mintage__proof_ VARCHAR, year VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)
Who is the Artist with an Issue Price (BU) [Clarification Needed] of n/a along with a Year larger than 2004, and Mintage (Proof) of 25,000?
SELECT artist FROM table_name_53 WHERE issue_price__bu_[_clarification_needed_] = "n/a" AND year > 2004 AND mintage__proof_ = "25,000"
CREATE TABLE table_name_19 (year INTEGER, issue_price__proof_ VARCHAR, artist VARCHAR)
What's the average Year with an Issue Price (Proof) of $49.95, and Artist of W.H.J. Blakemore?
SELECT AVG(year) FROM table_name_19 WHERE issue_price__proof_ = "$49.95" AND artist = "w.h.j. blakemore"
CREATE TABLE table_name_60 (quantity INTEGER, name VARCHAR, nicotine VARCHAR)
For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity?
SELECT MIN(quantity) FROM table_name_60 WHERE name = "raison blue" AND nicotine > 0.30000000000000004
CREATE TABLE table_name_77 (height_m__ft_ VARCHAR, rank VARCHAR, name VARCHAR)
What is the height for rank greater than 10 in Tameer Tower?
SELECT height_m__ft_ FROM table_name_77 WHERE rank > 10 AND name = "tameer tower"
CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR)
How many Laps have a Driver of satrio hermanto?
SELECT SUM(laps) FROM table_name_76 WHERE driver = "satrio hermanto"
CREATE TABLE table_name_70 (swing_to_gain INTEGER, winning_party_2007 VARCHAR, rank VARCHAR)
What's the sum of swing to gain with a winning party 2007 of Conservative with a rank smaller than 5?
SELECT SUM(swing_to_gain) FROM table_name_70 WHERE winning_party_2007 = "conservative" AND rank < 5
CREATE TABLE table_name_16 (title VARCHAR, leading_lady VARCHAR, director VARCHAR, year VARCHAR)
What title has rouben mamoulian directing after 1940 with linda darnell as the leading lady?
SELECT title FROM table_name_16 WHERE director = "rouben mamoulian" AND year > 1940 AND leading_lady = "linda darnell"
Nation of bulgaria, and a Place larger than 1 had what highest 3 Balls, 2 Ribbons?
SELECT MAX(_3_balls_2_ribbons) FROM table_name_16 WHERE nation = "bulgaria" AND place > 1
CREATE TABLE table_name_96 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)
I want the time/retired with grid less than 22 and Laps less than 33 for john surtees
SELECT time_retired FROM table_name_96 WHERE grid < 22 AND laps < 33 AND driver = "john surtees"
CREATE TABLE table_name_59 (voice_actor__japanese_ VARCHAR, character_name VARCHAR)
what voice acter played tien
SELECT voice_actor__japanese_ FROM table_name_59 WHERE character_name = "tien"
CREATE TABLE table_name_79 (score VARCHAR, competition VARCHAR, date VARCHAR)
What is the score of the 1996 Emarate cup on March 25, 1996?
SELECT score FROM table_name_79 WHERE competition = "1996 emarate cup" AND date = "march 25, 1996"
CREATE TABLE table_name_42 (competition VARCHAR, date VARCHAR)
Which competition was on August 11, 1996?
SELECT competition FROM table_name_42 WHERE date = "august 11, 1996"
CREATE TABLE table_name_51 (race VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
During what race did Mike Hawthorn have the Fastest Lap and Peter Collins win?
SELECT race FROM table_name_51 WHERE fastest_lap = "mike hawthorn" AND winning_driver = "peter collins"
CREATE TABLE table_name_9 (name VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR, pick__number VARCHAR)
Which name has an overall number of more than 164, when the pick number is more than 2, the position is running back, and the round is 16?
SELECT name FROM table_name_9 WHERE overall > 164 AND pick__number > 2 AND position = "running back" AND round = 16
CREATE TABLE table_name_45 (class VARCHAR, position VARCHAR, name VARCHAR)
What is the class of the qb, Josh Riddell?
SELECT class FROM table_name_45 WHERE position = "qb" AND name = "josh riddell"
CREATE TABLE table_name_91 (venue VARCHAR, score VARCHAR, competition VARCHAR)
Which venue has a Score of 1–0, and a Competition of 2002 world cup qualifier?
SELECT venue FROM table_name_91 WHERE score = "1–0" AND competition = "2002 world cup qualifier"
CREATE TABLE table_name_41 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
What is the date for the grass surface final against Nathan Healey?
SELECT date FROM table_name_41 WHERE surface = "grass" AND opponent_in_the_final = "nathan healey"
CREATE TABLE table_name_27 (tyres VARCHAR, engine_s_ VARCHAR, chassis VARCHAR)
What is the Tyres with a ford dfz v8 engine(s) with a chassis of coloni fc187?
SELECT tyres FROM table_name_27 WHERE engine_s_ = "ford dfz v8" AND chassis = "coloni fc187"
CREATE TABLE table_name_4 (competition VARCHAR, date VARCHAR)
What competition was played on 2 June 1992?
SELECT competition FROM table_name_4 WHERE date = "2 june 1992"
CREATE TABLE table_name_87 (round INTEGER, event VARCHAR, location VARCHAR, method VARCHAR)
What is the lowest Round with the Location, Las Vegas, Nevada, the Method, Decision (unanimous), and the Event, K-1 World Grand Prix 2003 in Las Vegas II?
SELECT MIN(round) FROM table_name_87 WHERE location = "las vegas, nevada" AND method = "decision (unanimous)" AND event = "k-1 world grand prix 2003 in las vegas ii"
CREATE TABLE table_name_15 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
What is the average number of silver medals for rank 2 and more than 1 bronze medal?
SELECT AVG(silver) FROM table_name_15 WHERE rank = 2 AND bronze > 1
CREATE TABLE table_name_47 (years VARCHAR, authority VARCHAR, name VARCHAR)
What years does Our Lady Sacred Heart School, which is state integrated, have?
SELECT years FROM table_name_47 WHERE authority = "state integrated" AND name = "our lady sacred heart school"
CREATE TABLE table_name_40 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR)
Which constructor has 10-12 rounds and a M7A chassis?
SELECT constructor FROM table_name_40 WHERE rounds = "10-12" AND chassis = "m7a"
CREATE TABLE table_name_55 (entries VARCHAR, season VARCHAR, front_row_starts VARCHAR)
What were the total number of entries in 2001 that had a front row smaller than 13?
SELECT COUNT(entries) FROM table_name_55 WHERE season = "2001" AND front_row_starts < 13
CREATE TABLE table_name_18 (driver VARCHAR, chassis VARCHAR, tyre VARCHAR, rounds VARCHAR)
Which driver has a G tyre, rounds of 2-12 and a M7A chassis?
SELECT driver FROM table_name_18 WHERE tyre = "g" AND rounds = "2-12" AND chassis = "m7a"
CREATE TABLE table_name_51 (runs VARCHAR, average VARCHAR, innings VARCHAR)
What is the total number of runs when the average was less than 31.25 and there were fewer than 24 innings?
SELECT COUNT(runs) FROM table_name_51 WHERE average > 31.25 AND innings < 24
CREATE TABLE table_name_80 (byes INTEGER, wins VARCHAR, against VARCHAR, ntfa_div_2 VARCHAR)
Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14?
SELECT MAX(byes) FROM table_name_80 WHERE against < 1647 AND ntfa_div_2 = "fingal valley" AND wins < 14
CREATE TABLE table_name_63 (nationality___opponent VARCHAR, competition VARCHAR, result VARCHAR)
Name the Nationality / Opponent of the Competition of welsh rugby union challenge trophy and a Result of 38-29?
SELECT nationality___opponent FROM table_name_63 WHERE competition = "welsh rugby union challenge trophy" AND result = "38-29"
CREATE TABLE table_name_80 (position VARCHAR, pick__number VARCHAR, name VARCHAR)
What is Tommy Nobis' position that has fewer than 16 picks?
SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = "tommy nobis"
CREATE TABLE table_name_97 (chipset VARCHAR, graphics VARCHAR, model VARCHAR)
What type of chipset is in the Precision t3400 model with the PCI Express graphics?
SELECT chipset FROM table_name_97 WHERE graphics = "pci express" AND model = "precision t3400"
CREATE TABLE table_name_64 (competition VARCHAR, nationality___opponent VARCHAR)
Name the Nationality / Opponent of rosario?
SELECT competition FROM table_name_64 WHERE nationality___opponent = "rosario"
CREATE TABLE table_name_41 (pos INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR)
Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2?
SELECT SUM(pos) FROM table_name_41 WHERE make = "chevrolet" AND driver = "jack sprague" AND car__number < 2
CREATE TABLE table_name_15 (pick VARCHAR, school VARCHAR)
Which pick was from Lamar High School?
SELECT pick FROM table_name_15 WHERE school = "lamar high school"
CREATE TABLE table_name_64 (pos INTEGER, team VARCHAR, car__number VARCHAR)
Which Pos has a Team of circle bar racing, and a Car # smaller than 14?
SELECT MAX(pos) FROM table_name_64 WHERE team = "circle bar racing" AND car__number < 14
CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR, tournament VARCHAR)
What is the result of the hypo-meeting before 2010?
SELECT result FROM table_name_49 WHERE year < 2010 AND tournament = "hypo-meeting"
CREATE TABLE table_name_64 (circuit VARCHAR, round VARCHAR, state_territory VARCHAR)
What circuit was after round 2 in Victoria?
SELECT circuit FROM table_name_64 WHERE round > 2 AND state_territory = "victoria"
CREATE TABLE table_name_2 (national_titles VARCHAR, mascot VARCHAR)
What is the total number of national titles for the team with doane tigers as the mascot?
SELECT COUNT(national_titles) FROM table_name_2 WHERE mascot = "doane tigers"
CREATE TABLE table_name_63 (year VARCHAR, crew VARCHAR, record VARCHAR)
Which year's crew is varsity 8+ when the record is 7-3?
SELECT year FROM table_name_63 WHERE crew = "varsity 8+" AND record = "7-3"
CREATE TABLE table_name_74 (away_team VARCHAR, home_team VARCHAR)
During footscray's home game, how much did the away team score?
SELECT away_team AS score FROM table_name_74 WHERE home_team = "footscray"
CREATE TABLE table_name_17 (name VARCHAR, floors VARCHAR, street_address_in_detroit VARCHAR)
Which place has 23 floors and a street address in Detroit of 144 west congress street?
SELECT name FROM table_name_17 WHERE floors = 23 AND street_address_in_detroit = "144 west congress street"
CREATE TABLE table_name_97 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR)
Which Round is the lowest one that has a Pick # larger than 10, and a Position of tight end, and an Overall smaller than 132?
SELECT MIN(round) FROM table_name_97 WHERE pick__number > 10 AND position = "tight end" AND overall < 132
CREATE TABLE table_name_8 (report VARCHAR, circuit VARCHAR, race_name VARCHAR)
Name the report for circuit of kyalami for south african republic trophy
SELECT report FROM table_name_8 WHERE circuit = "kyalami" AND race_name = "south african republic trophy"
CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR)
What is the highest position the album Where we belong, which had an issue date higher than 9, had?
SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong"
CREATE TABLE table_name_77 (country VARCHAR, series_premiere VARCHAR)
Which country had a series that premiered on September 4, 2006?
SELECT country FROM table_name_77 WHERE series_premiere = "september 4, 2006"
CREATE TABLE table_name_35 (car_model VARCHAR, manufacturer VARCHAR, driver VARCHAR)
What Car Model has the Manufacturer of Saab, and Driver Dean Randle?
SELECT car_model FROM table_name_35 WHERE manufacturer = "saab" AND driver = "dean randle"
CREATE TABLE table_name_1 (driver VARCHAR, team VARCHAR)
Who is the Driver with the Team of P & L Mechanical Services?
SELECT driver FROM table_name_1 WHERE team = "p & l mechanical services"
CREATE TABLE table_name_9 (region INTEGER, name VARCHAR, population VARCHAR)
Which region in Saint-Simon-Les-Mines has a population smaller than 458?
SELECT MAX(region) FROM table_name_9 WHERE name = "saint-simon-les-mines" AND population < 458
CREATE TABLE table_name_99 (region INTEGER, name VARCHAR, code VARCHAR)
What is total population of Saint-Agapit (code 33045)?
SELECT SUM(region) FROM table_name_99 WHERE name = "saint-agapit" AND code < 33045
CREATE TABLE table_name_91 (area__km_2__ INTEGER, code VARCHAR, region VARCHAR)
What is the average area larger than Code 19025 but a smaller region than 12?
SELECT AVG(area__km_2__) FROM table_name_91 WHERE code > 19025 AND region < 12
CREATE TABLE table_name_16 (msdn_integration VARCHAR, load_testing VARCHAR, test_impact_analysis VARCHAR)
which MSDN integration has a Load testing of no, and a Test impact analysis of no?
SELECT msdn_integration FROM table_name_16 WHERE load_testing = "no" AND test_impact_analysis = "no"
CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR)
Which Intelli Trace has a No Extension and Windows Phone development of no?
SELECT intellitrace FROM table_name_10 WHERE extensions = "no" AND windows_phone_development = "no"
CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR)
Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no?
SELECT projects_templates FROM table_name_39 WHERE intellitrace = "no" AND windows_phone_development = "yes" AND test_impact_analysis = "no"
CREATE TABLE table_name_19 (population INTEGER, region VARCHAR, regional_county_municipality VARCHAR, type VARCHAR)
what is the average population when the regional county municipality is le domaine-du-roy, the type is m and the region is less than 2?
SELECT AVG(population) FROM table_name_19 WHERE regional_county_municipality = "le domaine-du-roy" AND type = "m" AND region < 2
CREATE TABLE table_name_3 (year_clubhouse_constructed VARCHAR, sign_in_bicker VARCHAR, name VARCHAR)
When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club?
SELECT year_clubhouse_constructed FROM table_name_3 WHERE sign_in_bicker = "bicker" AND name = "cannon club"
CREATE TABLE table_name_45 (year VARCHAR, surface VARCHAR, score VARCHAR)
How many years have a Surface of clay, and a Score of 4 : 0?
SELECT COUNT(year) FROM table_name_45 WHERE surface = "clay" AND score = "4 : 0"
CREATE TABLE table_name_8 (club VARCHAR, replacement VARCHAR)
Tell me the club with a replacement of alberto malesani
SELECT club FROM table_name_8 WHERE replacement = "alberto malesani"
CREATE TABLE table_name_92 (home VARCHAR, visitor VARCHAR, date VARCHAR)
What team did the Chicago Black Hawks visit on April 20?
SELECT home FROM table_name_92 WHERE visitor = "chicago black hawks" AND date = "april 20"
CREATE TABLE table_name_78 (date VARCHAR, high_assists VARCHAR)
On which date was the high assists Delonte West Earl Watson (6)?
SELECT date FROM table_name_78 WHERE high_assists = "delonte west earl watson (6)"
CREATE TABLE table_name_70 (date VARCHAR, visiting_team VARCHAR, final_score VARCHAR)
What is the date the new york giants were the visiting team and the Final Score was 37-34?
SELECT date FROM table_name_70 WHERE visiting_team = "new york giants" AND final_score = "37-34"
CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR)
What year is the event in athens, greece?
SELECT MAX(year) FROM table_name_19 WHERE venue = "athens, greece"
CREATE TABLE table_name_22 (undecided VARCHAR, roy_barnes VARCHAR)
What was the undecided with Roy Barnes at 47%?
SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%"
CREATE TABLE table_name_2 (week VARCHAR, date VARCHAR)
What week was October 29, 2000?
SELECT COUNT(week) FROM table_name_2 WHERE date = "october 29, 2000"
CREATE TABLE table_name_49 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, engine_type VARCHAR)
What is the engine configuration & notes 0-100km/h with an engine type with b5252 fs?
SELECT engine_configuration_ & _notes_0_100km_h FROM table_name_49 WHERE engine_type = "b5252 fs"
CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active VARCHAR)
Which Max 1-min wind mph (km/h) that has Dates active on september22– september28?
SELECT max_1_min_wind_mph__km_h_ FROM table_name_26 WHERE dates_active = "september22– september28"
CREATE TABLE table_name_68 (min_press___mbar__ VARCHAR, deaths VARCHAR, storm_name VARCHAR)
Which Min press has none Death and seven Storm names?
SELECT min_press___mbar__ FROM table_name_68 WHERE deaths = "none" AND storm_name = "seven"
CREATE TABLE table_name_36 (damage__millions_usd__ VARCHAR, min_press___mbar__ VARCHAR, deaths VARCHAR)
What is the cost of 972 Min Press caused 52 death?
SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = "972" AND deaths = "52"
CREATE TABLE table_name_79 (interview INTEGER, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)
Which mean interview number had an average of more than 9.233, a swimsuit stat of more than 9.473, and an evening gown score of more than 9.671?
SELECT AVG(interview) FROM table_name_79 WHERE average > 9.233 AND swimsuit = 9.473 AND evening_gown > 9.671
CREATE TABLE table_name_63 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, swimsuit VARCHAR)
Which is the smallest evening gown score when the interview score was more than 9.164, the swimsuit stat was less than 9.35, and the average is less than 9.233?
SELECT MIN(evening_gown) FROM table_name_63 WHERE interview > 9.164 AND swimsuit < 9.35 AND average < 9.233
CREATE TABLE table_name_59 (interview INTEGER, evening_gown VARCHAR, average VARCHAR)
What is the total number of interview scores that have an evening gown score of 9.543 and an average that is bigger than 9.521?
SELECT SUM(interview) FROM table_name_59 WHERE evening_gown = 9.543 AND average > 9.521
CREATE TABLE table_name_52 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR, state VARCHAR)
What is the mean average score when the evening gown score is more than 9.35, the state is South Carolina, and the swimsuit score is more than 9.4?
SELECT AVG(average) FROM table_name_52 WHERE evening_gown > 9.35 AND state = "south carolina" AND swimsuit > 9.4
CREATE TABLE table_name_52 (third VARCHAR, events VARCHAR, skip VARCHAR, second VARCHAR)
IN EVENTS 1995 STOH, WHO WAS THE THIRD WITH SKIP SANDRA PETERSON AND SECOND JOAN MCCUSKER?
SELECT third FROM table_name_52 WHERE skip = "sandra peterson" AND second = "joan mccusker" AND events = "1995 stoh"