answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT title FROM course WHERE NOT course_id IN (SELECT course_id FROM prereq)
Find the name of the courses that do not have any prerequisite?
CREATE TABLE prereq (title VARCHAR, course_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR)
SELECT T1.zip_postcode FROM Addresses AS T1 JOIN Teachers AS T2 ON T1.address_id = T2.address_id WHERE T2.first_name = "Lyla"
What is the zip code of the address where the teacher with first name "Lyla" lives?
CREATE TABLE Teachers (address_id VARCHAR, first_name VARCHAR); CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR)
SELECT date_of_appointment FROM table_name_79 WHERE manner_of_departure = "contract expired" AND team = "lecce"
What was the date of appointment for the manager of lecce when the previous manager's contract expired?
CREATE TABLE table_name_79 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR)
SELECT year FROM table_1507806_1 WHERE winning_score = "3 & 2"
WHAT YEAR WAS IT WHEN THE SCORE WAS 3 & 2?
CREATE TABLE table_1507806_1 (year VARCHAR, winning_score VARCHAR)
SELECT high_assists FROM table_27713583_11 WHERE location_attendance = "Madison Square Garden 19,763" AND record = "39–38"
Name the high assists for madison square garden 19,763 and record is 39–38
CREATE TABLE table_27713583_11 (high_assists VARCHAR, location_attendance VARCHAR, record VARCHAR)
SELECT COUNT(driver) FROM table_2175858_1 WHERE laps = "300" AND average_speed__mph_ = "103.594"
How many drivers drove 300 laps at average speed of 103.594?
CREATE TABLE table_2175858_1 (driver VARCHAR, laps VARCHAR, average_speed__mph_ VARCHAR)
SELECT format FROM table_name_36 WHERE label = "xl" AND catalog = "xlcd369" AND region = "europe"
What is the format in the region of Europe with an XLCD369 and a label of XL?
CREATE TABLE table_name_36 (format VARCHAR, region VARCHAR, label VARCHAR, catalog VARCHAR)
SELECT MIN(draw) FROM table_name_7 WHERE played < 14 AND lost < 8
What is the least ties when they played less than 14 games, and a lost less than 8 of them?
CREATE TABLE table_name_7 (draw INTEGER, played VARCHAR, lost VARCHAR)
SELECT opponent FROM table_name_80 WHERE record = "2–0"
Which Opponent has a Record of 2–0?
CREATE TABLE table_name_80 (opponent VARCHAR, record VARCHAR)
SELECT model FROM table_name_33 WHERE displacement = "1,868 cc"
What model has an engine of 1,868 cc?
CREATE TABLE table_name_33 (model VARCHAR, displacement VARCHAR)
SELECT MAX(poles) FROM table_1875157_1 WHERE year = 2000
How many poles in the year 2000
CREATE TABLE table_1875157_1 (poles INTEGER, year VARCHAR)
SELECT tie_no FROM table_name_47 WHERE home_team = "enfield"
what is enfield's tie number?
CREATE TABLE table_name_47 (tie_no VARCHAR, home_team VARCHAR)
SELECT COUNT(*) FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.dorm_name = 'Smith Hall' AND T1.sex = 'F'
Find the number of female students (with F sex) living in Smith Hall
CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE student (stuid VARCHAR, sex VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)
SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = "pacific marine" AND percentage_of_total_area__foreez_ > 3.1
What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1?
CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR)
SELECT COUNT(position) FROM table_25740774_1 WHERE season = 2010
How many positions are shown for the 2010 season?
CREATE TABLE table_25740774_1 (position VARCHAR, season VARCHAR)
SELECT engine_s_ FROM table_name_41 WHERE points = "2"
What engine has 2 points?
CREATE TABLE table_name_41 (engine_s_ VARCHAR, points VARCHAR)
SELECT third_place FROM table_name_16 WHERE score = "2–6, 7–6(3), [10–5]"
Who holds third place in the tournament with a score of 2–6, 7–6(3), [10–5]?
CREATE TABLE table_name_16 (third_place VARCHAR, score VARCHAR)
SELECT date FROM table_name_96 WHERE record = "10–13–2"
What was the date of the game when the Lightning had a record of 10–13–2?
CREATE TABLE table_name_96 (date VARCHAR, record VARCHAR)
SELECT directed_by FROM table_2226817_3 WHERE written_by = "Michael G. Moye & Ron Leavitt & J. Stanford Parker"
Who directed what was written by Michael G. Moye & Ron Leavitt & J. Stanford Parker?
CREATE TABLE table_2226817_3 (directed_by VARCHAR, written_by VARCHAR)
SELECT MIN(term_limited) FROM table_26131768_4 WHERE first_elected = "2003 (Appt.)"
If first elected on 2003 (appt.), when was the term limited?
CREATE TABLE table_26131768_4 (term_limited INTEGER, first_elected VARCHAR)
SELECT season AS finale FROM table_19188562_2 WHERE us_viewers__in_millions_ = "2.02"
What season finale date has 2.02 million u.s. Viewers?
CREATE TABLE table_19188562_2 (season VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT surface FROM table_name_22 WHERE tournament = "manta, ecuador"
What is the surface for the tournament of manta, ecuador?
CREATE TABLE table_name_22 (surface VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_65 WHERE year > 1989 AND tournament_name = "grand prix passing shot" AND runners_up = "jeff tarango"
After 1989, what was the score of the Grand Prix Passing Shot where the Runners-up were Jeff Tarango?
CREATE TABLE table_name_65 (score VARCHAR, runners_up VARCHAR, year VARCHAR, tournament_name VARCHAR)
SELECT COUNT(site) FROM table_22098274_1 WHERE date = "May 1, 2004"
How many number of site have May 1, 2004 as the date?
CREATE TABLE table_22098274_1 (site VARCHAR, date VARCHAR)
SELECT regular_season FROM table_1427998_1 WHERE playoffs = "divisional Finals"
Where did the team finish in the season when the playoff result was divisional finals.
CREATE TABLE table_1427998_1 (regular_season VARCHAR, playoffs VARCHAR)
SELECT AVG(bronze) FROM table_name_15 WHERE total < 1
Which Bronze has a Total smaller than 1?
CREATE TABLE table_name_15 (bronze INTEGER, total INTEGER)
SELECT school FROM table_name_59 WHERE size > 408 AND mascot = "pacers"
Which School has a Size larger than 408, and a Mascot of pacers?
CREATE TABLE table_name_59 (school VARCHAR, size VARCHAR, mascot VARCHAR)
SELECT T1.id, COUNT(*) FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id GROUP BY T1.id
How many games has each stadium held?
CREATE TABLE stadium (id VARCHAR); CREATE TABLE game (stadium_id VARCHAR)
SELECT MAX(perigee__km_) FROM table_12141496_1 WHERE decay_date = "1969-01-09"
What was the maximum perigee on 1969-01-09?
CREATE TABLE table_12141496_1 (perigee__km_ INTEGER, decay_date VARCHAR)
SELECT score FROM table_name_82 WHERE date = "august 8"
What was the score on August 8?
CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)
SELECT T3.Name, T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID ORDER BY T1.Year_working
Show names of companies and that of employees in descending order of number of years working for that employee.
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR, Year_working VARCHAR)
SELECT MIN(ansi_code) FROM table_18600760_1 WHERE township = "Ashtabula"
Name the ansi code fore ashtabula
CREATE TABLE table_18600760_1 (ansi_code INTEGER, township VARCHAR)
SELECT driver FROM table_name_45 WHERE grid = "18"
Which driver has grid value of 18?
CREATE TABLE table_name_45 (driver VARCHAR, grid VARCHAR)
SELECT winter_olympics FROM table_name_45 WHERE fis_nordic_world_ski_championships = "1976"
what is the winter olympics year when the fis nordic world ski championships is 1976?
CREATE TABLE table_name_45 (winter_olympics VARCHAR, fis_nordic_world_ski_championships VARCHAR)
SELECT name FROM table_21536557_2 WHERE time__cet_ = "09:58"
Who is every name for time(cet) of 09:58?
CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR)
SELECT high_points FROM table_13619105_3 WHERE record = "1-4"
Who was the high scorer in the game when the team was 1-4?
CREATE TABLE table_13619105_3 (high_points VARCHAR, record VARCHAR)
SELECT pilot FROM flight GROUP BY pilot ORDER BY COUNT(*) DESC LIMIT 1
which pilot is in charge of the most number of flights?
CREATE TABLE flight (pilot VARCHAR)
SELECT MIN(no) FROM table_21977627_1 WHERE chassis = "Maserati 4CL"
The Maserati 4cl's minimum no was?
CREATE TABLE table_21977627_1 (no INTEGER, chassis VARCHAR)
SELECT sanskrit_word FROM table_180802_3 WHERE color = "red"
What is the sanskrit word for the color red?
CREATE TABLE table_180802_3 (sanskrit_word VARCHAR, color VARCHAR)
SELECT MIN(points) FROM table_name_36 WHERE engine = "mugen v8" AND chassis = "reynard 91d"
What are the lowest points that have a Mugen V8 engine and a Reynard 91D chassis?
CREATE TABLE table_name_36 (points INTEGER, engine VARCHAR, chassis VARCHAR)
SELECT points FROM table_24998088_1 WHERE position = "34th"
How many points did he have when he has in the 34th position?
CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR)
SELECT COUNT(draws) FROM table_name_21 WHERE losses < 4 AND wins < 16
For the teams that had fewer than 4 Losses, and less than 16 Wins, what was the total number of Draws?
CREATE TABLE table_name_21 (draws VARCHAR, losses VARCHAR, wins VARCHAR)
SELECT home_team AS score FROM table_name_71 WHERE home_team = "essendon"
What was the score for the home team of Essendon?
CREATE TABLE table_name_71 (home_team VARCHAR)
SELECT COUNT(position) FROM table_name_20 WHERE points > 2 AND lost > 4 AND played < 10
What is the total number of positions having points over 2, more than 4 losses, and under 10 matches played?
CREATE TABLE table_name_20 (position VARCHAR, played VARCHAR, points VARCHAR, lost VARCHAR)
SELECT T1.Title, T2.AlbumID FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId WHERE T2.UnitPrice > 1 GROUP BY T2.AlbumID
Show the album names and ids for albums that contain tracks with unit price bigger than 1.
CREATE TABLE ALBUM (Title VARCHAR, AlbumId VARCHAR); CREATE TABLE TRACK (AlbumID VARCHAR, AlbumId VARCHAR, UnitPrice INTEGER)
SELECT away_team AS score FROM table_name_40 WHERE home_team = "hawthorn"
What was Hawthorn's away teams opponents score?
CREATE TABLE table_name_40 (away_team VARCHAR, home_team VARCHAR)
SELECT powertrain__engine_transmission_ FROM table_24193494_3 WHERE division = "KMD" AND model = "C40LF"
Name the powertrain for kmd and c40lf
CREATE TABLE table_24193494_3 (powertrain__engine_transmission_ VARCHAR, division VARCHAR, model VARCHAR)
SELECT attendance FROM table_name_76 WHERE date = "september 12"
What was the total attendance on September 12?
CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_46 WHERE game_site = "the meadowlands" AND week = 14
Who did the Jets play in the Meadowlands on week 14?
CREATE TABLE table_name_46 (opponent VARCHAR, game_site VARCHAR, week VARCHAR)
SELECT MIN(races) FROM table_name_53 WHERE podiums > 1
What is the lowest Races, when Podiums is greater than 1?
CREATE TABLE table_name_53 (races INTEGER, podiums INTEGER)
SELECT AVG(capacity), MIN(capacity), MAX(capacity) FROM cinema WHERE openning_year >= 2011
Show the average, minimum, and maximum capacity for all the cinemas opened in year 2011 or later.
CREATE TABLE cinema (capacity INTEGER, openning_year VARCHAR)
SELECT laps FROM table_name_17 WHERE constructor = "honda" AND grid = "13"
What is the number of laps for the honda vehicle, with a grid of 13?
CREATE TABLE table_name_17 (laps VARCHAR, constructor VARCHAR, grid VARCHAR)
SELECT AVG(to_par) FROM table_name_33 WHERE place = "t3" AND player = "ben hogan"
What is the average To Par, when Place is "T3", and when Player is "Ben Hogan"?
CREATE TABLE table_name_33 (to_par INTEGER, place VARCHAR, player VARCHAR)
SELECT COUNT(laps) FROM table_name_71 WHERE time_retired = "+33.912"
What's the lap number for time/retired of +33.912?
CREATE TABLE table_name_71 (laps VARCHAR, time_retired VARCHAR)
SELECT player FROM table_name_56 WHERE points > 36 AND goals > 0 AND tries = 12
Tell me the player with points larger than 36 and goals more than 0 with tries of 12
CREATE TABLE table_name_56 (player VARCHAR, tries VARCHAR, points VARCHAR, goals VARCHAR)
SELECT driver FROM table_17271495_1 WHERE points = "13"
Name the drive for points being 13
CREATE TABLE table_17271495_1 (driver VARCHAR, points VARCHAR)
SELECT interview FROM table_11884814_3 WHERE country = "Hawaii"
What was the interview score for Hawaii?
CREATE TABLE table_11884814_3 (interview VARCHAR, country VARCHAR)
SELECT COUNT(new_adherents_per_year) FROM table_28137918_5 WHERE religion = "Confucianism"
Name the number of new adherents per year for confucianism
CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR)
SELECT outcome FROM table_27877656_8 WHERE edition = "2010 Europe/Africa Group IIB"
What was the outcome in the 2010 Europe/Africa Group IIB edition?
CREATE TABLE table_27877656_8 (outcome VARCHAR, edition VARCHAR)
SELECT opponents FROM table_name_57 WHERE surface = "clay" AND partner = "christophe rochus"
What is the Opponents on a clay surface with christophe rochus as partner?
CREATE TABLE table_name_57 (opponents VARCHAR, surface VARCHAR, partner VARCHAR)
SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = "Olympikus"
When olympikus is the main sponsor who is the secondary sponsor?
CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR)
SELECT jushin_liger FROM table_name_44 WHERE super_shocker = "liger (13:59)"
Which Jushin Liger has a Super Shocker of liger (13:59)?
CREATE TABLE table_name_44 (jushin_liger VARCHAR, super_shocker VARCHAR)
SELECT score FROM table_name_3 WHERE away_team = "crewe alexandra"
What was the score of the game against away team crewe alexandra?
CREATE TABLE table_name_3 (score VARCHAR, away_team VARCHAR)
SELECT iata FROM table_name_17 WHERE icao = "rjss"
Which IATA's ICAO is rjss?
CREATE TABLE table_name_17 (iata VARCHAR, icao VARCHAR)
SELECT AVG(attendance) FROM table_name_69 WHERE group_position = "1st" AND result_f_a = "2–0"
Group position of 1st, and a Result F–A of 2–0 has what average attendance?
CREATE TABLE table_name_69 (attendance INTEGER, group_position VARCHAR, result_f_a VARCHAR)
SELECT to_par FROM table_1507431_1 WHERE winning_score = 67 - 67 - 69 - 69 = 272
What are all values for 'to par' for the winning score of 67-67-69-69=272?
CREATE TABLE table_1507431_1 (to_par VARCHAR, winning_score VARCHAR)
SELECT COUNT(2006) FROM table_name_47 WHERE country = "argentina" AND 2007 < 0 OFFSET 15
What is the 2006 figure for Argentina when 2007 is less than 0,15?
CREATE TABLE table_name_47 (country VARCHAR)
SELECT COUNT(enrollment_08_09) FROM table_name_93 WHERE school = "franklin county"
What was the total enrollment 08-09 of Franklin County?
CREATE TABLE table_name_93 (enrollment_08_09 VARCHAR, school VARCHAR)
SELECT COUNT(high_rebounds) FROM table_22822559_4 WHERE date = "November 27"
What was the total number of rebounds on november 27?
CREATE TABLE table_22822559_4 (high_rebounds VARCHAR, date VARCHAR)
SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE word_number = "218"
Name the incelandic of the glossary for 218
CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, word_number VARCHAR)
SELECT COUNT(season) FROM table_23647668_2 WHERE champion = "Melgar"
How many season had Melgar as a champion?
CREATE TABLE table_23647668_2 (season VARCHAR, champion VARCHAR)
SELECT MIN(year) FROM table_name_2 WHERE event = "discus throw"
What is the earliest year that the discus throw event occur?
CREATE TABLE table_name_2 (year INTEGER, event VARCHAR)
SELECT trailers FROM table_name_92 WHERE motors = "145"
I want the trailers for motors of 145
CREATE TABLE table_name_92 (trailers VARCHAR, motors VARCHAR)
SELECT T1.task_details, T1.task_id, T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'omnis' UNION SELECT T1.task_details, T1.task_id, T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.project_id HAVING COUNT(*) > 2
What are the task details, task id and project id for the projects which are detailed as 'omnis' or have more than 2 outcomes?
CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR); CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Tasks (task_details VARCHAR, task_id VARCHAR, project_id VARCHAR)
SELECT SUM(number_of_seats) FROM table_name_2 WHERE leader = "raymond mccartney"
How many seats does leader Raymond McCartney have?
CREATE TABLE table_name_2 (number_of_seats INTEGER, leader VARCHAR)
SELECT construction FROM table_name_69 WHERE name__wade_giles_ = "heng-hai"
which Construction is named heng-hai?
CREATE TABLE table_name_69 (construction VARCHAR, name__wade_giles_ VARCHAR)
SELECT television_commentator FROM table_1998037_9 WHERE radio_commentator = "Galyna Babiy"
Who is the television commentator when the radio commentator is Galyna Babiy?
CREATE TABLE table_1998037_9 (television_commentator VARCHAR, radio_commentator VARCHAR)
SELECT acceleration_0_100km_h__0_62mph_ FROM table_name_69 WHERE transmission = "5-speed manual"
What is the acceleration 0–100km/h (0–62mph) when the transmission is 5-speed manual?
CREATE TABLE table_name_69 (acceleration_0_100km_h__0_62mph_ VARCHAR, transmission VARCHAR)
SELECT byte_string FROM table_name_23 WHERE memory_map = "standard" AND decimal = "standard" AND floating_point = "standard" AND max_memory__kwords_ < 512
What is the value for the byte string when the memory map, decimal, and floating points are all standard and the max memory is smaller than 512?
CREATE TABLE table_name_23 (byte_string VARCHAR, max_memory__kwords_ VARCHAR, floating_point VARCHAR, memory_map VARCHAR, decimal VARCHAR)
SELECT result FROM table_name_73 WHERE home_away = "home" AND opponent = "pride"
What is the result when you play at home against Pride
CREATE TABLE table_name_73 (result VARCHAR, home_away VARCHAR, opponent VARCHAR)
SELECT opponent_in_the_final FROM table_name_20 WHERE surface = "clay" AND tournament = "lyneham"
Who is the opponent in the final with a clay surface at the Tournament of Lyneham?
CREATE TABLE table_name_20 (opponent_in_the_final VARCHAR, surface VARCHAR, tournament VARCHAR)
SELECT catalog FROM table_name_66 WHERE date = "1984"
Which catalog had a date year of 1984?
CREATE TABLE table_name_66 (catalog VARCHAR, date VARCHAR)
SELECT MIN(total_goals) FROM table_10240125_1
What is the smallest number of Total Goals?
CREATE TABLE table_10240125_1 (total_goals INTEGER)
SELECT tie_no FROM table_name_39 WHERE away_team = "oxford city"
What was the tie no when Oxford city was the away team?
CREATE TABLE table_name_39 (tie_no VARCHAR, away_team VARCHAR)
SELECT affiliation FROM table_20887670_1 WHERE colors = "Maroon and White"
what is the affiliation of the colors maroon and white?
CREATE TABLE table_20887670_1 (affiliation VARCHAR, colors VARCHAR)
SELECT event_name FROM table_name_38 WHERE race_winner = "ken schrader" AND track = "toledo speedway"
At which event was Ken Schrader the Race Winner at the Toledo Speedway?
CREATE TABLE table_name_38 (event_name VARCHAR, race_winner VARCHAR, track VARCHAR)
SELECT english_title FROM table_11173827_1 WHERE premiere < 30.0 AND finale > 36.0
What is the english title where the premiere is less than 30.0 and the finale is bigger than 36.0?
CREATE TABLE table_11173827_1 (english_title VARCHAR, premiere VARCHAR, finale VARCHAR)
SELECT grid FROM table_name_12 WHERE driver = "denny hulme"
What grid for denny hulme?
CREATE TABLE table_name_12 (grid VARCHAR, driver VARCHAR)
SELECT date FROM table_name_80 WHERE loss = "lilly (2–2)"
What date shows a Loss of lilly (2–2)?
CREATE TABLE table_name_80 (date VARCHAR, loss VARCHAR)
SELECT time_retired FROM table_name_51 WHERE grid < 14 AND driver = "carroll shelby"
What time did Carroll Shelby have in Grid 14?
CREATE TABLE table_name_51 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)
SELECT COUNT(high_rebounds) FROM table_17058151_8 WHERE date = "February 10"
Name the total number of high rebounds for february 10
CREATE TABLE table_17058151_8 (high_rebounds VARCHAR, date VARCHAR)
SELECT series_ep FROM table_name_59 WHERE segment_c = "electric pole s transformer"
Which series episode has a segment c that is Electric pole s transformer?
CREATE TABLE table_name_59 (series_ep VARCHAR, segment_c VARCHAR)
SELECT COUNT(fourth_place) FROM table_21632864_1 WHERE regional = "Shikoku"
how many persons got the fourth position when the regional was shikoku?
CREATE TABLE table_21632864_1 (fourth_place VARCHAR, regional VARCHAR)
SELECT SUM(top_10) FROM table_name_95 WHERE cuts_made < 10 AND top_5 < 0
What is the sum of Top-10(s), when Cuts made is less than 10, and when Top-5 is less than 0?
CREATE TABLE table_name_95 (top_10 INTEGER, cuts_made VARCHAR, top_5 VARCHAR)
SELECT wind FROM table_name_83 WHERE time = "19.32"
What's the wind when the time was 19.32?
CREATE TABLE table_name_83 (wind VARCHAR, time VARCHAR)
SELECT lomavren FROM table_name_68 WHERE hindi = "sāt"
What is the Lomavren associated with a Hindi of sāt?
CREATE TABLE table_name_68 (lomavren VARCHAR, hindi VARCHAR)
SELECT position FROM table_name_81 WHERE round > 3
What position is the player selected that has a round value over 3?
CREATE TABLE table_name_81 (position VARCHAR, round INTEGER)
SELECT COUNT(losses) FROM table_name_85 WHERE last_appearance = "2003" AND wins > 2
What is the total number of Losses, when Last Appearance is 2003, and when Wins is greater than 2?
CREATE TABLE table_name_85 (losses VARCHAR, last_appearance VARCHAR, wins VARCHAR)
SELECT COUNT(hosted) FROM table_2472711_32 WHERE highest = 42659
How many values of hosted have a highest value of 42659?
CREATE TABLE table_2472711_32 (hosted VARCHAR, highest VARCHAR)
SELECT gname FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.gameid = T2.gameid GROUP BY T1.gameid HAVING SUM(hours_played) >= 1000
Show all game names played by at least 1000 hours.
CREATE TABLE Plays_games (gameid VARCHAR); CREATE TABLE Video_games (gameid VARCHAR)