question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What college is pick number 268 from?
CREATE TABLE table_name_44 (college VARCHAR, pick__number VARCHAR)
SELECT college FROM table_name_44 WHERE pick__number = "268"
Where was the London Marathon held?
CREATE TABLE table_name_19 (venue VARCHAR, event VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_19 WHERE event = "marathon" AND competition = "london marathon"
What was the issue date for the song by Paul Mccartney and Michael Jackson?
CREATE TABLE table_name_97 (issue_date_s_ VARCHAR, artist VARCHAR)
SELECT issue_date_s_ FROM table_name_97 WHERE artist = "paul mccartney and michael jackson"
For the tournament played Nov 13, 1988, ending with a margin of victory of 5 strokes, who was the runner-up?
CREATE TABLE table_name_67 (runner_s__up VARCHAR, margin_of_victory VARCHAR, date VARCHAR)
SELECT runner_s__up FROM table_name_67 WHERE margin_of_victory = "5 strokes" AND date = "nov 13, 1988"
Who was the opposing team when the status is second test?
CREATE TABLE table_name_76 (opposing_teams VARCHAR, status VARCHAR)
SELECT opposing_teams FROM table_name_76 WHERE status = "second test"
Name the number of butters for 3 protein
CREATE TABLE table_2493389_1 (butter VARCHAR, protein__g_ VARCHAR)
SELECT COUNT(butter) FROM table_2493389_1 WHERE protein__g_ = "3"
What was the loss of the game attended by 41,212?
CREATE TABLE table_name_50 (loss VARCHAR, attendance VARCHAR)
SELECT loss FROM table_name_50 WHERE attendance = "41,212"
On what date did a friendly competition, hosted in Dubai, result in a draw?
CREATE TABLE table_name_79 (date VARCHAR, venue VARCHAR, result VARCHAR, competition VARCHAR)
SELECT date FROM table_name_79 WHERE result = "draw" AND competition = "friendly" AND venue = "dubai"
What is the venue for the Footscray home team?
CREATE TABLE table_name_66 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_66 WHERE home_team = "footscray"
What are the names of the drama workshop groups with address in Feliciaberg city?
CREATE TABLE Addresses (Address_ID VARCHAR, City_Town VARCHAR); CREATE TABLE Drama_Workshop_Groups (Store_Name VARCHAR, Address_ID VARCHAR)
SELECT T2.Store_Name FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID WHERE T1.City_Town = "Feliciaberg"
Find the average and oldest age for students with different sex.
CREATE TABLE student (sex VARCHAR, age INTEGER)
SELECT AVG(age), MAX(age), sex FROM student GROUP BY sex
What is the smallest Wins with a Position of 20th, and Poles smaller than 0?
CREATE TABLE table_name_19 (wins INTEGER, position VARCHAR, poles VARCHAR)
SELECT MIN(wins) FROM table_name_19 WHERE position = "20th" AND poles < 0
What is the Set 3 with a Date of 04 oct, and a Set 2 with 15–5?
CREATE TABLE table_name_33 (set_3 VARCHAR, date VARCHAR, set_2 VARCHAR)
SELECT set_3 FROM table_name_33 WHERE date = "04 oct" AND set_2 = "15–5"
What song has the band tour vnue of 6. tool (usa) encore?
CREATE TABLE table_name_66 (song VARCHAR, band_tour_venue VARCHAR)
SELECT song FROM table_name_66 WHERE band_tour_venue = "6. tool (usa) encore"
In which round was there a pick of 4?
CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR)
SELECT MAX(round) FROM table_name_66 WHERE pick = 4
How many laps are associated with a time of + 1:39.591?
CREATE TABLE table_name_37 (laps VARCHAR, time_retired VARCHAR)
SELECT laps FROM table_name_37 WHERE time_retired = "+ 1:39.591"
Which Date has a Decision of myre?
CREATE TABLE table_name_48 (date VARCHAR, decision VARCHAR)
SELECT date FROM table_name_48 WHERE decision = "myre"
Who is the visitor in Philadelphia on March 6?
CREATE TABLE table_name_41 (visitor VARCHAR, home VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_41 WHERE home = "philadelphia" AND date = "march 6"
Name the most number for automóvil club argentino for benedicto campos
CREATE TABLE table_21977704_1 (no INTEGER, entrant VARCHAR, driver VARCHAR)
SELECT MAX(no) FROM table_21977704_1 WHERE entrant = "Automóvil Club Argentino" AND driver = "Benedicto Campos"
Show the names of customers having an order with shipping method FedEx and order status Paid.
CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)
SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE shipping_method_code = 'FedEx' AND order_status_code = 'Paid'
What is the Original U.S. air-date for the Original Canadian air-date of december 9, 2007?
CREATE TABLE table_name_80 (original_us_air_date VARCHAR, original_canadian_air_date VARCHAR)
SELECT original_us_air_date FROM table_name_80 WHERE original_canadian_air_date = "december 9, 2007"
Namethe school team for season 2008
CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR)
SELECT school_club_team FROM table_15463188_7 WHERE season = "2008"
What is the losses for the year 2012?
CREATE TABLE table_name_73 (losses VARCHAR, year VARCHAR)
SELECT losses FROM table_name_73 WHERE year = "2012"
What was the player's team's opponent for Week 12?
CREATE TABLE table_20938922_2 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_20938922_2 WHERE week = 12
What score has january 15, 2005 as the date?
CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_8 WHERE date = "january 15, 2005"
What is the tournament with a 2006 value of A and a 2011 value of 3r?
CREATE TABLE table_name_59 (tournament VARCHAR)
SELECT tournament FROM table_name_59 WHERE 2006 = "a" AND 2011 = "3r"
Which address has 44 floors?
CREATE TABLE table_name_70 (street_address VARCHAR, floors VARCHAR)
SELECT street_address FROM table_name_70 WHERE floors = 44
Who remixed an album of dance remixes?
CREATE TABLE table_name_50 (remixed_by VARCHAR, album VARCHAR)
SELECT remixed_by FROM table_name_50 WHERE album = "dance remixes"
Who recorded the decision when philadelphia was away?
CREATE TABLE table_name_41 (decision VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_41 WHERE visitor = "philadelphia"
What was the air date of the episod that had 456.58 thousand viewers?
CREATE TABLE table_23114705_7 (original_air_date VARCHAR, nz_viewers__thousand_ VARCHAR)
SELECT original_air_date FROM table_23114705_7 WHERE nz_viewers__thousand_ = "456.58"
For the tournament played on 16 Jan 2011, what was the winning score?
CREATE TABLE table_name_21 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_21 WHERE date = "16 jan 2011"
Show the theme for exhibitions with both records of an attendance below 100 and above 500.
CREATE TABLE exhibition (theme VARCHAR, exhibition_id VARCHAR); CREATE TABLE exhibition_record (exhibition_id VARCHAR, attendance INTEGER)
SELECT T2.theme FROM exhibition_record AS T1 JOIN exhibition AS T2 ON T1.exhibition_id = T2.exhibition_id WHERE T1.attendance < 100 INTERSECT SELECT T2.theme FROM exhibition_record AS T1 JOIN exhibition AS T2 ON T1.exhibition_id = T2.exhibition_id WHERE T1.attendance > 500
what is the mccain % where obama got 19.3%
CREATE TABLE table_20424014_1 (mccain__percentage VARCHAR, obama__percentage VARCHAR)
SELECT mccain__percentage FROM table_20424014_1 WHERE obama__percentage = "19.3%"
Find the name and checking balance of the account with the lowest savings balance.
CREATE TABLE checking (balance VARCHAR, custid VARCHAR); CREATE TABLE savings (custid VARCHAR, balance VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)
SELECT T1.name, T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T3.balance LIMIT 1
What is Method, when Time is "3:20"?
CREATE TABLE table_name_40 (method VARCHAR, time VARCHAR)
SELECT method FROM table_name_40 WHERE time = "3:20"
What country has a Fox television service?
CREATE TABLE table_name_7 (country VARCHAR, television_service VARCHAR)
SELECT country FROM table_name_7 WHERE television_service = "fox"
What is the name of the home team on April 13, 2008 when Itabuna was the away team?
CREATE TABLE table_name_48 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_48 WHERE date = "april 13, 2008" AND away_team = "itabuna"
How many times was the # of total votes 2582322?
CREATE TABLE table_123462_2 (_number_of_seats_won VARCHAR, _number_of_total_votes VARCHAR)
SELECT COUNT(_number_of_seats_won) FROM table_123462_2 WHERE _number_of_total_votes = 2582322
Find the number of dorms that have some amenity.
CREATE TABLE has_amenity (dormid VARCHAR)
SELECT COUNT(DISTINCT dormid) FROM has_amenity
How many final scores were there on the game at Amsterdam arena?
CREATE TABLE table_24786958_2 (final_score VARCHAR, game_site VARCHAR)
SELECT COUNT(final_score) FROM table_24786958_2 WHERE game_site = "Amsterdam ArenA"
What was the 2nd leg that had the Estudiantes La Plata home for the 2nd leg?
CREATE TABLE table_name_41 (home__2nd_leg_ VARCHAR)
SELECT 2 AS nd_leg FROM table_name_41 WHERE home__2nd_leg_ = "estudiantes la plata"
What's the NHL team that drafted the player from Sudbury Wolves (OHA)?
CREATE TABLE table_1965650_4 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
SELECT nhl_team FROM table_1965650_4 WHERE college_junior_club_team = "Sudbury Wolves (OHA)"
What is VII Season, when Episode is 11?
CREATE TABLE table_name_29 (vii_season VARCHAR, episode VARCHAR)
SELECT vii_season FROM table_name_29 WHERE episode = "11"
What is the To par of the Player with a Score of 71-69-68=208?
CREATE TABLE table_name_25 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_25 WHERE score = 71 - 69 - 68 = 208
Which player from the United States plays defence and was chosen before round 5?
CREATE TABLE table_name_68 (player VARCHAR, nationality VARCHAR, position VARCHAR, round VARCHAR)
SELECT player FROM table_name_68 WHERE position = "defence" AND round < 5 AND nationality = "united states"
Find the name of the ship that is steered by the youngest captain.
CREATE TABLE ship (name VARCHAR, ship_id VARCHAR); CREATE TABLE captain (ship_id VARCHAR, age VARCHAR)
SELECT t1.name FROM ship AS t1 JOIN captain AS t2 ON t1.ship_id = t2.ship_id ORDER BY t2.age LIMIT 1
What is the broadcast date where Jason's team is Rhod Gilbert and Shappi Khorsandi?
CREATE TABLE table_23292220_8 (first_broadcast VARCHAR, jasons_team VARCHAR)
SELECT first_broadcast FROM table_23292220_8 WHERE jasons_team = "Rhod Gilbert and Shappi Khorsandi"
who are the awardees when the name of award is best agricultural film?
CREATE TABLE table_25926120_7 (awardee_s_ VARCHAR, name_of_award VARCHAR)
SELECT awardee_s_ FROM table_25926120_7 WHERE name_of_award = "Best Agricultural Film"
Name the bronze for lahti
CREATE TABLE table_name_46 (bronze VARCHAR, place VARCHAR)
SELECT bronze FROM table_name_46 WHERE place = "lahti"
Which Against has more than 11 wins, and a Geelong FL of st josephs?
CREATE TABLE table_name_35 (against INTEGER, wins VARCHAR, geelong_fl VARCHAR)
SELECT MIN(against) FROM table_name_35 WHERE wins > 11 AND geelong_fl = "st josephs"
Name the number of families for uk30
CREATE TABLE table_19897294_8 (family_families VARCHAR, no_overall VARCHAR)
SELECT COUNT(family_families) FROM table_19897294_8 WHERE no_overall = "UK30"
Which region had the CD maxi format?
CREATE TABLE table_name_91 (region VARCHAR, format VARCHAR)
SELECT region FROM table_name_91 WHERE format = "cd maxi"
What are the forenames and surnames of drivers who participated in the races named Australian Grand Prix but not the races named Chinese Grand Prix?
CREATE TABLE races (raceid VARCHAR, name VARCHAR); CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE results (raceid VARCHAR, driverid VARCHAR)
SELECT T3.forename, T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Australian Grand Prix" EXCEPT SELECT T3.forename, T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Chinese Grand Prix"
Which 2009 year has a total of 1, and 2004 year of 7th?
CREATE TABLE table_name_45 (total VARCHAR)
SELECT 2009 FROM table_name_45 WHERE total = 1 AND 2004 = "7th"
When дероње is the cyrillic name other names what is the largest ethnic group of 2002?
CREATE TABLE table_2562572_25 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT largest_ethnic_group__2002_ FROM table_2562572_25 WHERE cyrillic_name_other_names = "Дероње"
find the name of the program that was launched most recently.
CREATE TABLE program (name VARCHAR, launch VARCHAR)
SELECT name FROM program ORDER BY launch DESC LIMIT 1
What was the 2011 gross revenue for the venue that had a gross revenue of $156,315 in 1982?
CREATE TABLE table_name_6 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR)
SELECT gross_revenue__2011_ FROM table_name_6 WHERE gross_revenue__1982_ = "$156,315"
From which country was Sodje loaned?
CREATE TABLE table_name_88 (country VARCHAR, name VARCHAR)
SELECT country FROM table_name_88 WHERE name = "sodje"
What is the average lane that is called rebecca brown?
CREATE TABLE table_name_88 (lane INTEGER, name VARCHAR)
SELECT AVG(lane) FROM table_name_88 WHERE name = "rebecca brown"
What is the largest Rd# for a PI GP greater than 0 and a Reg GP less than 62?
CREATE TABLE table_name_20 (rd__number INTEGER, pl_gp VARCHAR, reg_gp VARCHAR)
SELECT MAX(rd__number) FROM table_name_20 WHERE pl_gp > 0 AND reg_gp < 62
What week did they play the amsterdam admirals?
CREATE TABLE table_24278858_2 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_24278858_2 WHERE opponent = "Amsterdam Admirals"
Who is the opponent of the 3:00 time?
CREATE TABLE table_name_73 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_73 WHERE time = "3:00"
Result of w 24–21, and a Week smaller than 6 had what sum of attendance?
CREATE TABLE table_name_9 (attendance INTEGER, result VARCHAR, week VARCHAR)
SELECT SUM(attendance) FROM table_name_9 WHERE result = "w 24–21" AND week < 6
How many Australians were in the UN commission on Korea?
CREATE TABLE table_10121127_1 (number_of_australians_involved VARCHAR, un_operation_title VARCHAR)
SELECT COUNT(number_of_australians_involved) FROM table_10121127_1 WHERE un_operation_title = "UN Commission on Korea"
How many rounds exist for picks under 5?
CREATE TABLE table_name_21 (rd__number VARCHAR, pick__number INTEGER)
SELECT COUNT(rd__number) FROM table_name_21 WHERE pick__number < 5
Does the S90i model have bluetooth?
CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR)
SELECT bluetooth FROM table_name_31 WHERE model = "s90i"
If the average start is 11.8, what was the team name?
CREATE TABLE table_2190919_3 (team_s_ VARCHAR, avg_start VARCHAR)
SELECT team_s_ FROM table_2190919_3 WHERE avg_start = "11.8"
What is the Stage, when the Rally leader is C. Atkinson?
CREATE TABLE table_name_19 (stage VARCHAR, rally_leader VARCHAR)
SELECT stage FROM table_name_19 WHERE rally_leader = "c. atkinson"
What is Lost, when Losing Bonus is "3", and when Club is "Bettws RFC"?
CREATE TABLE table_name_64 (lost VARCHAR, losing_bonus VARCHAR, club VARCHAR)
SELECT lost FROM table_name_64 WHERE losing_bonus = "3" AND club = "bettws rfc"
Find the names of users who did not leave any review.
CREATE TABLE review (name VARCHAR, u_id VARCHAR); CREATE TABLE useracct (name VARCHAR, u_id VARCHAR)
SELECT name FROM useracct WHERE NOT u_id IN (SELECT u_id FROM review)
Which Country has a Place of t10, and a Player of tony jacklin?
CREATE TABLE table_name_2 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_2 WHERE place = "t10" AND player = "tony jacklin"
What was the score when Walsall was the away team?
CREATE TABLE table_name_91 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_91 WHERE away_team = "walsall"
During which round was a Hawkeyes player selected for the defensive back position?
CREATE TABLE table_name_87 (round VARCHAR, position VARCHAR)
SELECT round FROM table_name_87 WHERE position = "defensive back"
Name the number of field goals for 19 extra points
CREATE TABLE table_14342592_8 (field_goals VARCHAR, extra_points VARCHAR)
SELECT COUNT(field_goals) FROM table_14342592_8 WHERE extra_points = 19
Name the feb 2010 for january 2010 for 6.2%
CREATE TABLE table_25256368_1 (february_2010 VARCHAR, january_2010 VARCHAR)
SELECT february_2010 FROM table_25256368_1 WHERE january_2010 = "6.2%"
What was the open cup results in 2004?
CREATE TABLE table_1243601_1 (open_cup VARCHAR, year VARCHAR)
SELECT open_cup FROM table_1243601_1 WHERE year = "2004"
What competition took place on 28/04/1906?
CREATE TABLE table_name_11 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_11 WHERE date = "28/04/1906"
Who are the rowers with a time of 6:41.45 and notes of FA?
CREATE TABLE table_name_33 (rowers VARCHAR, notes VARCHAR, time VARCHAR)
SELECT rowers FROM table_name_33 WHERE notes = "fa" AND time = "6:41.45"
What is the lowest total score among skaters from West Germany with a rank of 20 and a figure skating score less than 74.85?
CREATE TABLE table_name_81 (total INTEGER, figures VARCHAR, nation VARCHAR, rank VARCHAR)
SELECT MIN(total) FROM table_name_81 WHERE nation = "west germany" AND rank = 20 AND figures < 74.85
Name the resolution with dish of 8126
CREATE TABLE table_name_91 (resolution VARCHAR, dish VARCHAR)
SELECT resolution FROM table_name_91 WHERE dish = "8126"
Which country has a FIS Nordic World Ski Championship before 1989, was in the winter Olympics before 1980, and has a Holmenkollen of 1956?
CREATE TABLE table_name_26 (country VARCHAR, holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)
SELECT country FROM table_name_26 WHERE fis_nordic_world_ski_championships < 1989 AND winter_olympics < 1980 AND holmenkollen = "1956"
What type of engine does the BF Racing Marron Excavations have that also has Monaco as chassis and Lee Filliponi as the driver?
CREATE TABLE table_name_94 (engine VARCHAR, driver VARCHAR, team VARCHAR, chassis VARCHAR)
SELECT engine FROM table_name_94 WHERE team = "bf racing marron excavations" AND chassis = "monaco" AND driver = "lee filliponi"
Result of 1st, and a Venue of melbourne , australia, and a Extra of 100 m happened in which year?
CREATE TABLE table_name_10 (year VARCHAR, extra VARCHAR, result VARCHAR, venue VARCHAR)
SELECT year FROM table_name_10 WHERE result = "1st" AND venue = "melbourne , australia" AND extra = "100 m"
What state has colony as a status and shippensburg university as the school?
CREATE TABLE table_name_71 (state VARCHAR, status VARCHAR, school VARCHAR)
SELECT state FROM table_name_71 WHERE status = "colony" AND school = "shippensburg university"
What is the status of Prenocephale?
CREATE TABLE table_name_96 (status VARCHAR, name VARCHAR)
SELECT status FROM table_name_96 WHERE name = "prenocephale"
what's the earliest year that there was a cosworth v8 engine and 12 points?
CREATE TABLE table_name_39 (year INTEGER, engine VARCHAR, points VARCHAR)
SELECT MIN(year) FROM table_name_39 WHERE engine = "cosworth v8" AND points = 12
What location did Sherry Middaugh win in?
CREATE TABLE table_name_13 (location VARCHAR, winning_skip VARCHAR)
SELECT location FROM table_name_13 WHERE winning_skip = "sherry middaugh"
What is the career for the 2006 3r, and the 1999 2r?
CREATE TABLE table_name_70 (career VARCHAR)
SELECT career FROM table_name_70 WHERE 2006 = "3r" AND 1999 = "2r"
Where was the mediterranean games held?
CREATE TABLE table_name_83 (venue VARCHAR, tournament VARCHAR)
SELECT venue FROM table_name_83 WHERE tournament = "mediterranean games"
When was the kickoff during a game with a record of 1-7?
CREATE TABLE table_name_66 (kickoff_ VARCHAR, a_ VARCHAR, record VARCHAR)
SELECT kickoff_[a_] FROM table_name_66 WHERE record = "1-7"
What was the record when matt grice fought dennis bermudez with a time of 5:00?
CREATE TABLE table_name_36 (record VARCHAR, time VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_36 WHERE time = "5:00" AND opponent = "dennis bermudez"
Which of the highest drawn has a played less than 10?
CREATE TABLE table_name_96 (drawn INTEGER, played INTEGER)
SELECT MAX(drawn) FROM table_name_96 WHERE played < 10
What dated was the game played at the location delta center 19,911?
CREATE TABLE table_27902171_7 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_27902171_7 WHERE location_attendance = "Delta Center 19,911"
What is the least amount of Byes when there are more than 2 wins and 1946 against?
CREATE TABLE table_name_3 (byes INTEGER, against VARCHAR, wins VARCHAR)
SELECT MIN(byes) FROM table_name_3 WHERE against = 1946 AND wins > 2
What was the founding university of αεφ?
CREATE TABLE table_2538117_5 (founding_university VARCHAR, letters VARCHAR)
SELECT founding_university FROM table_2538117_5 WHERE letters = "ΑΕΦ"
What party did candidate george mcduffie (j) represent?
CREATE TABLE table_2668254_22 (party VARCHAR, candidates VARCHAR)
SELECT party FROM table_2668254_22 WHERE candidates = "George McDuffie (J)"
Name the average DDR3 speed for model e-350
CREATE TABLE table_name_15 (ddr3_speed INTEGER, model VARCHAR)
SELECT AVG(ddr3_speed) FROM table_name_15 WHERE model = "e-350"
Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Part Number of tsop48?
CREATE TABLE table_name_63 (body_width_mm INTEGER, lead_pitch_mm VARCHAR, part_number VARCHAR)
SELECT MIN(body_width_mm) FROM table_name_63 WHERE lead_pitch_mm < 0.55 AND part_number = "tsop48"
WHAT IS THE TOTAL WITH A NANQUAN OF 9.72, RANK BIGGER THAN 3, NANGUN SMALLER THAN 9.5?
CREATE TABLE table_name_50 (total INTEGER, nangun VARCHAR, nanquan VARCHAR, rank VARCHAR)
SELECT MIN(total) FROM table_name_50 WHERE nanquan = 9.72 AND rank > 3 AND nangun < 9.5
What score has an opponent gan teik chai lin woon fui?
CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_6 WHERE opponent = "gan teik chai lin woon fui"