answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT singer_s_ FROM table_29135051_2 WHERE comedian = "Joe Wilkinson" | Name the singer for joe wilkinson | CREATE TABLE table_29135051_2 (singer_s_ VARCHAR, comedian VARCHAR) |
SELECT finish FROM table_name_59 WHERE player = "billy casper" | What was the finish for Billy Casper? | CREATE TABLE table_name_59 (finish VARCHAR, player VARCHAR) |
SELECT date FROM table_name_59 WHERE venue = "western oval" | What day does the team play at western oval? | CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR) |
SELECT MIN(term) FROM table_name_94 WHERE elected = 2007 AND position = "chairperson" | What is the lowest term from the 2007 election with the position of chairperson? | CREATE TABLE table_name_94 (term INTEGER, elected VARCHAR, position VARCHAR) |
SELECT length__miles_ FROM table_1817879_2 WHERE endpoints = "Pico to 7th St/Metro Center" | What is the length (miles) when pico to 7th st/metro center are the endpoints? | CREATE TABLE table_1817879_2 (length__miles_ VARCHAR, endpoints VARCHAR) |
SELECT location_attendance FROM table_11961582_7 WHERE date = "March 17" | What was the attendance on March 17? | CREATE TABLE table_11961582_7 (location_attendance VARCHAR, date VARCHAR) |
SELECT date_aired FROM table_name_54 WHERE title = "beat the star" | What was the date of the show titled Beat the Star? | CREATE TABLE table_name_54 (date_aired VARCHAR, title VARCHAR) |
SELECT AVG(2007) FROM table_name_19 WHERE 2009 > 2.8 AND 2010 = 4.9 AND 2006 < 2.5 | What is the average 2007 value with a 2009 value greater than 2.8, a 4.9 in 2010, and a 2006 less than 2.5? | CREATE TABLE table_name_19 (Id VARCHAR) |
SELECT previous_champion_s_ FROM table_1272033_1 WHERE champion_s_ = "Xix Xavant" | Who was the champion prior to Xix Xavant? | CREATE TABLE table_1272033_1 (previous_champion_s_ VARCHAR, champion_s_ VARCHAR) |
SELECT COUNT(preliminaries) FROM table_name_97 WHERE evening_gown > 8.631 AND average < 8.791 AND state = "massachusetts" AND interview > 8.608 | What is the preliminaries of the contestant from Massachusetts with an evening gown higher than 8.631, an average less than 8.791, and an interview higher than 8.608? | CREATE TABLE table_name_97 (preliminaries VARCHAR, interview VARCHAR, state VARCHAR, evening_gown VARCHAR, average VARCHAR) |
SELECT release_date FROM table_23649244_2 WHERE artist_1 = "Wolfgang Gartner" | If artist 1 is Wolfgang Gartner, what is the release date? | CREATE TABLE table_23649244_2 (release_date VARCHAR, artist_1 VARCHAR) |
SELECT game FROM table_name_92 WHERE developer_s_ = "nintendo" AND platform_s_ = "gamecube" | What game was developed by Nintendo for the Gamecube platform? | CREATE TABLE table_name_92 (game VARCHAR, developer_s_ VARCHAR, platform_s_ VARCHAR) |
SELECT district FROM table_1342315_12 WHERE party = "Republican" | Which district has a Republican elected? | CREATE TABLE table_1342315_12 (district VARCHAR, party VARCHAR) |
SELECT SUM(stage) FROM table_name_73 WHERE category = "1" AND year > 2003 | What is the sum of the stages for category 1 races after the year 2003? | CREATE TABLE table_name_73 (stage INTEGER, category VARCHAR, year VARCHAR) |
SELECT pts_game FROM table_name_78 WHERE games = 5 AND name = "charlotte barras" | what is the pts/game for Charlotte barras and the games is 5? | CREATE TABLE table_name_78 (pts_game VARCHAR, games VARCHAR, name VARCHAR) |
SELECT fleet_series FROM table_name_96 WHERE quantity = 5 | Name the fleet series with a quantity of 5 | CREATE TABLE table_name_96 (fleet_series VARCHAR, quantity VARCHAR) |
SELECT commenced_operations FROM table_name_10 WHERE airline = "valuair" | Which Commenced operations have an Airline of valuair? | CREATE TABLE table_name_10 (commenced_operations VARCHAR, airline VARCHAR) |
SELECT MIN(pick) FROM table_2781227_4 WHERE player = "Jamal Mayers" | For player is jamal mayers mention the minimum pick | CREATE TABLE table_2781227_4 (pick INTEGER, player VARCHAR) |
SELECT hometown FROM table_name_90 WHERE height = "6-10" | Which Hometown has a Height of 6-10? | CREATE TABLE table_name_90 (hometown VARCHAR, height VARCHAR) |
SELECT DISTINCT T1.creation FROM department AS T1 JOIN management AS T2 ON T1.department_id = T2.department_id JOIN head AS T3 ON T2.head_id = T3.head_id WHERE T3.born_state = 'Alabama' | What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? | CREATE TABLE department (creation VARCHAR, department_id VARCHAR); CREATE TABLE management (department_id VARCHAR, head_id VARCHAR); CREATE TABLE head (head_id VARCHAR, born_state VARCHAR) |
SELECT mccain_number FROM table_20693870_1 WHERE obama_number = 895 | What were the number of voters McCain had when Obama had 895? | CREATE TABLE table_20693870_1 (mccain_number VARCHAR, obama_number VARCHAR) |
SELECT in_ames FROM table_10429820_13 WHERE "since_beginning_of_big_12" = "since_beginning_of_big_12" | When the value of "since beginning of big 12" is synonymous with its' category, what are the in Ames values? | CREATE TABLE table_10429820_13 (in_ames VARCHAR) |
SELECT COUNT(population_estimate_2005) FROM table_name_26 WHERE area__km_2__ > 8 OFFSET 023.74 | how many times was the population estimate 2005 have an area (km2) more than 8,023.74? | CREATE TABLE table_name_26 (population_estimate_2005 VARCHAR, area__km_2__ INTEGER) |
SELECT away_team AS score FROM table_name_99 WHERE home_team = "geelong" | What was the opponents score when Geelong played as home team? | CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR) |
SELECT date FROM table_name_60 WHERE label = "sony music direct" | When did sony music direct a label? | CREATE TABLE table_name_60 (date VARCHAR, label VARCHAR) |
SELECT surface FROM table_name_97 WHERE date = "23 october 2011" | What was the surface on 23 October 2011? | CREATE TABLE table_name_97 (surface VARCHAR, date VARCHAR) |
SELECT pick FROM table_name_11 WHERE position = "1b" AND team = "oakland athletics" | What number pick was the player for the Oakland Athletics who plays the 1B position? | CREATE TABLE table_name_11 (pick VARCHAR, position VARCHAR, team VARCHAR) |
SELECT COUNT(total) FROM table_name_43 WHERE silver > 0 AND gold < 5 AND bronze < 0 | If there are more than 0 Silver medals, less than 5 gold medals, and no bronze medals, what was the total number of medals? | CREATE TABLE table_name_43 (total VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR) |
SELECT outcome FROM table_name_94 WHERE partner = "nicole arendt" | What is the outcome of the match when the partner is Nicole Arendt? | CREATE TABLE table_name_94 (outcome VARCHAR, partner VARCHAR) |
SELECT place FROM table_name_49 WHERE player = "ben hogan" | What place is Ben Hogan? | CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR) |
SELECT borough FROM table_name_54 WHERE location = "seward" AND listed = "1977-11-23" | What is the Borough for the Seward listing on 1977-11-23? | CREATE TABLE table_name_54 (borough VARCHAR, location VARCHAR, listed VARCHAR) |
SELECT date FROM table_name_5 WHERE opponent_in_the_final = "ignasi villacampa" | Name the date for opponent in the final being ignasi villacampa | CREATE TABLE table_name_5 (date VARCHAR, opponent_in_the_final VARCHAR) |
SELECT director FROM table_name_54 WHERE role = "john travers" | Who directed the movie when John Wayne played the role of John Travers? | CREATE TABLE table_name_54 (director VARCHAR, role VARCHAR) |
SELECT MIN(draw) FROM table_name_40 WHERE champs < 0 | Which Draw is the lowest one that has Champs smaller than 0? | CREATE TABLE table_name_40 (draw INTEGER, champs INTEGER) |
SELECT prefecture FROM table_name_94 WHERE province = "hubei" AND county = "enshi" | Which prefecture is in Hubei province and Enshi county? | CREATE TABLE table_name_94 (prefecture VARCHAR, province VARCHAR, county VARCHAR) |
SELECT home_captain FROM table_name_25 WHERE result = "aus by 4 wkts" | Who was the Home Captain and the Result for AUS by 4 wkts? | CREATE TABLE table_name_25 (home_captain VARCHAR, result VARCHAR) |
SELECT venue FROM table_name_42 WHERE player = "josh hamilton" | What was the venue where Josh Hamilton played? | CREATE TABLE table_name_42 (venue VARCHAR, player VARCHAR) |
SELECT position FROM table_12165999_1 WHERE college = "Syracuse" | What position does Syracuse's player have? | CREATE TABLE table_12165999_1 (position VARCHAR, college VARCHAR) |
SELECT name FROM table_name_8 WHERE location = "china" | What name is located in China? | CREATE TABLE table_name_8 (name VARCHAR, location VARCHAR) |
SELECT race_name FROM table_name_16 WHERE winning_team = "mi-jack conquest racing" AND pole_position = "andreas wirth" | What race did the team Mi-Jack Conquest racing win with a pole position of andreas wirth? | CREATE TABLE table_name_16 (race_name VARCHAR, winning_team VARCHAR, pole_position VARCHAR) |
SELECT MAX(length__miles_) FROM table_name_19 WHERE name = "l-56g" | what is the length (miles) when the name is l-56g? | CREATE TABLE table_name_19 (length__miles_ INTEGER, name VARCHAR) |
SELECT COUNT(episode) FROM table_2102898_1 WHERE run_time = "24:33" | How many episodes ran 24:33? | CREATE TABLE table_2102898_1 (episode VARCHAR, run_time VARCHAR) |
SELECT COUNT(location_attendance) FROM table_17102076_10 WHERE score = "L 141–143 (OT)" | Name the number of location attendance for l 141–143 (ot) | CREATE TABLE table_17102076_10 (location_attendance VARCHAR, score VARCHAR) |
SELECT detroit__dtw_ FROM table_name_36 WHERE year < 2010 AND kalamazoo__azo_ = "$517.32" | Before the year 2010, and when Kalamazoo had a passenger fare of $517.32, what was the passenger fare for Detroit? | CREATE TABLE table_name_36 (detroit__dtw_ VARCHAR, year VARCHAR, kalamazoo__azo_ VARCHAR) |
SELECT date FROM table_name_91 WHERE home = "jazz" AND visitor = "bulls" | What date did the Jazz play the Bulls at home? | CREATE TABLE table_name_91 (date VARCHAR, home VARCHAR, visitor VARCHAR) |
SELECT identifier FROM table_name_98 WHERE power = "100000 watts" | What identifier has 100000 watts as the power? | CREATE TABLE table_name_98 (identifier VARCHAR, power VARCHAR) |
SELECT MAX(silver) FROM table_name_75 WHERE rank = "19" AND gold < 2 | What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals? | CREATE TABLE table_name_75 (silver INTEGER, rank VARCHAR, gold VARCHAR) |
SELECT opponent FROM table_name_97 WHERE tournament = "taranto" | What was the opponent for the tournament of taranto? | CREATE TABLE table_name_97 (opponent VARCHAR, tournament VARCHAR) |
SELECT gross_revenue__2011_ FROM table_name_28 WHERE gross_revenue__1982_ = "$1,988,047" | What is the gross revenue in 2011 with a gross revenue in 1982 of $1,988,047? | CREATE TABLE table_name_28 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR) |
SELECT written_by FROM table_25604014_5 WHERE no_in_series = 81 | Who wrote episode number 81 in the series? | CREATE TABLE table_25604014_5 (written_by VARCHAR, no_in_series VARCHAR) |
SELECT outcome FROM table_name_33 WHERE surface = "indoor/carpet" AND date = "13 october 1996" | What is the Surface of indoor/carpet Outcome on 13 October 1996 | CREATE TABLE table_name_33 (outcome VARCHAR, surface VARCHAR, date VARCHAR) |
SELECT venue FROM table_name_91 WHERE year = 2003 | What venue hosted the 2003 event? | CREATE TABLE table_name_91 (venue VARCHAR, year VARCHAR) |
SELECT MIN(wins) FROM table_name_1 WHERE driver = "ayrton senna" | What is the fewest number of wins in the chart for Ayrton Senna? | CREATE TABLE table_name_1 (wins INTEGER, driver VARCHAR) |
SELECT player FROM table_26996293_2 WHERE college = "British Columbia" | where college is british columbia what are all the player | CREATE TABLE table_26996293_2 (player VARCHAR, college VARCHAR) |
SELECT competition FROM table_name_84 WHERE score = "2-1" AND date = "october 22, 2008" | What is Competition, when Score is "2-1", and when Date is "October 22, 2008"? | CREATE TABLE table_name_84 (competition VARCHAR, score VARCHAR, date VARCHAR) |
SELECT losing_bonus FROM table_name_51 WHERE drawn = "1" AND try_bonus = "10" | What was the losing bonus that had 1 draw and a 10 try bonus? | CREATE TABLE table_name_51 (losing_bonus VARCHAR, drawn VARCHAR, try_bonus VARCHAR) |
SELECT T1.product_name FROM products AS T1 JOIN ref_colors AS T2 ON T1.color_code = T2.color_code WHERE T2.color_description = 'yellow' | What is the name of the product with the color description 'yellow'? | CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_name VARCHAR, color_code VARCHAR) |
SELECT COUNT(total_attendance) FROM table_10815352_1 WHERE season = "2010" | What's the total attendance of the leagues in season of 2010? | CREATE TABLE table_10815352_1 (total_attendance VARCHAR, season VARCHAR) |
SELECT MIN(year) FROM table_22597626_17 WHERE opponents_in_the_final = "Bahrami Leconte" AND score_in_the_final = "7–6 2 , 6–1" | What was the year date when one of the opponents in the final was bahrami leconte and score in the final is 7–6 2 , 6–1? | CREATE TABLE table_22597626_17 (year INTEGER, opponents_in_the_final VARCHAR, score_in_the_final VARCHAR) |
SELECT socialist_ticket FROM table_name_92 WHERE democratic_ticket = "thomas j. kreuzer" | What name is under the Socialist ticket when Thomas J. Kreuzer was on the Democratic ticket? | CREATE TABLE table_name_92 (socialist_ticket VARCHAR, democratic_ticket VARCHAR) |
SELECT bike FROM table_name_34 WHERE grid > 14 AND laps < 22 AND rider = "jiri drazdak" | Which bike did Jiri Drazdak ride when he had a grid number larger than 14 and less than 22 laps? | CREATE TABLE table_name_34 (bike VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR) |
SELECT AVG(lost) FROM table_name_28 WHERE points = 25 AND played > 18 | What is the average for games Lost where the Points are 25 and games Played are more than 18? | CREATE TABLE table_name_28 (lost INTEGER, points VARCHAR, played VARCHAR) |
SELECT order__number FROM table_21501518_1 WHERE result = "Bottom 2" | Which order #1 has a result of bottom 2 | CREATE TABLE table_21501518_1 (order__number VARCHAR, result VARCHAR) |
SELECT manufacturer FROM table_22298383_1 WHERE average_speed__mph_ = "126.259" | Who manufactured the car that won with an average speed of 126.259 mph? | CREATE TABLE table_22298383_1 (manufacturer VARCHAR, average_speed__mph_ VARCHAR) |
SELECT uk_singles_chart FROM table_name_9 WHERE release_date = "26 february 1990" | What is the UK singles chart rank of the single released on 26 February 1990? | CREATE TABLE table_name_9 (uk_singles_chart VARCHAR, release_date VARCHAR) |
SELECT replaced_by FROM table_17115950_2 WHERE team = "CFR Cluj" | Who replaced the manager on Team Cfr Cluj? | CREATE TABLE table_17115950_2 (replaced_by VARCHAR, team VARCHAR) |
SELECT COUNT(year) FROM table_name_18 WHERE record = "39-31" | Name the total number of years for a 39-31 record | CREATE TABLE table_name_18 (year VARCHAR, record VARCHAR) |
SELECT opponents FROM table_name_92 WHERE positional_or_automatic = "positional" AND material_or_non_material = "no" AND suits = "3" | What is the value for positional opponents with no material or non-material, and 3 suits? | CREATE TABLE table_name_92 (opponents VARCHAR, suits VARCHAR, positional_or_automatic VARCHAR, material_or_non_material VARCHAR) |
SELECT AVG(round) FROM table_name_52 WHERE record = "1-1" | What is the average number of rounds that Lance Gibson fought when his record was 1-1? | CREATE TABLE table_name_52 (round INTEGER, record VARCHAR) |
SELECT date FROM table_name_51 WHERE opponent = "cambridge united" | What day did they play cambridge united? | CREATE TABLE table_name_51 (date VARCHAR, opponent VARCHAR) |
SELECT away FROM table_name_70 WHERE score = "46-82" | What is the Away with a Score that is 46-82? | CREATE TABLE table_name_70 (away VARCHAR, score VARCHAR) |
SELECT T3.name, T3.time FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T2.location = 'London' ORDER BY T3.time DESC | Show all train names and times in stations in London in descending order by train time. | CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR); CREATE TABLE station (station_id VARCHAR, location VARCHAR); CREATE TABLE train (name VARCHAR, time VARCHAR, train_id VARCHAR) |
SELECT MAX(sex_ratio) FROM table_231623_3 WHERE population = 4773138 | Name the sex ratio lowest for population 4773138 | CREATE TABLE table_231623_3 (sex_ratio INTEGER, population VARCHAR) |
SELECT competition FROM table_name_73 WHERE goal = 8 | What was the competition for goal 8? | CREATE TABLE table_name_73 (competition VARCHAR, goal VARCHAR) |
SELECT yacht_name FROM table_name_50 WHERE combined_elapsed_time = "179d 11h 58m 14s" | Which yacht name has a Combined elapsed time of 179d 11h 58m 14s? | CREATE TABLE table_name_50 (yacht_name VARCHAR, combined_elapsed_time VARCHAR) |
SELECT loss FROM table_name_43 WHERE date = "june 8" | What loss happened june 8? | CREATE TABLE table_name_43 (loss VARCHAR, date VARCHAR) |
SELECT captain FROM table_name_57 WHERE runner_up = "tanunda" AND year > 1939 | When the year is later than 1939 and the Runner-up is Tanunda, who is the Captain? | CREATE TABLE table_name_57 (captain VARCHAR, runner_up VARCHAR, year VARCHAR) |
SELECT place FROM table_name_6 WHERE money___$__ = "73" AND player = "archie compston" | What is the ranking when Archie Compston is the player and the money is $73? | CREATE TABLE table_name_6 (place VARCHAR, money___$__ VARCHAR, player VARCHAR) |
SELECT MIN(year_of_release) FROM table_name_93 WHERE label_s_ = "艺能动音" | What is the earliest year of release for the album labelled 艺能动音? | CREATE TABLE table_name_93 (year_of_release INTEGER, label_s_ VARCHAR) |
SELECT chassis FROM table_name_57 WHERE entrant = "clarke-mordaunt-guthrie-durlacher" | Which Chassis did the Entrant clarke-mordaunt-guthrie-durlacher carry? | CREATE TABLE table_name_57 (chassis VARCHAR, entrant VARCHAR) |
SELECT T2.name, SUM(T1.show_times_per_day) FROM schedule AS T1 JOIN cinema AS T2 ON T1.cinema_id = T2.cinema_id GROUP BY T1.cinema_id | What is total number of show times per dat for each cinema? | CREATE TABLE schedule (show_times_per_day INTEGER, cinema_id VARCHAR); CREATE TABLE cinema (name VARCHAR, cinema_id VARCHAR) |
SELECT MIN(number_of_dairy_cows) FROM table_29012710_1 | what is the least amount of cattle head | CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER) |
SELECT MAX(pick) FROM table_name_16 WHERE position = "wr" AND college = "michigan" AND overall > 255 | What is the maximum pick when WR was the position and Michigan the college, and the overall greater than 255? | CREATE TABLE table_name_16 (pick INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR) |
SELECT winners_share__$_ FROM table_15315816_1 WHERE year = "2004" | How much are all winners share ($) in the year 2004? | CREATE TABLE table_15315816_1 (winners_share__$_ VARCHAR, year VARCHAR) |
SELECT MAX(pick__number) FROM table_21321804_1 WHERE player = "Wes Lysack" | What is the pick # for player wes lysack? | CREATE TABLE table_21321804_1 (pick__number INTEGER, player VARCHAR) |
SELECT MAX(inflation__percentage_annual__2012_) FROM table_name_74 WHERE public_debt__percentage_of_gdp__2013_q1_ > 88.2 AND gdp__percentage_of_eu__2012_ = "2.9%" | What is the largest inflation % annual in 2012 of the country with a public debt % of GDP in 2013 Q1 greater than 88.2 and a GDP % of EU in 2012 of 2.9%? | CREATE TABLE table_name_74 (inflation__percentage_annual__2012_ INTEGER, public_debt__percentage_of_gdp__2013_q1_ VARCHAR, gdp__percentage_of_eu__2012_ VARCHAR) |
SELECT SUM(round) FROM table_name_36 WHERE pick__number < 26 AND position = "cornerback" AND overall > 41 | Which cornerback round has a pick number lower than 26 and an overall higher than 41? | CREATE TABLE table_name_36 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR) |
SELECT COUNT(number_of_examinees) FROM table_name_47 WHERE year > 2005 AND pass_percentage = "78.35%" AND number_of_passed_students < 297 | What number of examines after 2005 has a pass percentage of 78.35% with less than 297 students? | CREATE TABLE table_name_47 (number_of_examinees VARCHAR, number_of_passed_students VARCHAR, year VARCHAR, pass_percentage VARCHAR) |
SELECT tyres FROM table_name_27 WHERE engine_s_ = "ford dfz v8" AND chassis = "coloni fc187" | What is the Tyres with a ford dfz v8 engine(s) with a chassis of coloni fc187? | CREATE TABLE table_name_27 (tyres VARCHAR, engine_s_ VARCHAR, chassis VARCHAR) |
SELECT asian_rider_classification FROM table_name_43 WHERE general_classification = "ruslan ivanov" AND stage = "9" | WHo is the Asian rider classification that has ruslan ivanov on the Stage of 9? | CREATE TABLE table_name_43 (asian_rider_classification VARCHAR, general_classification VARCHAR, stage VARCHAR) |
SELECT goals_for FROM table_name_44 WHERE lost = "involuntary suspension of season (hurricane rita)" | What are the goals for a lost of Involuntary suspension of Season (hurricane Rita)? | CREATE TABLE table_name_44 (goals_for VARCHAR, lost VARCHAR) |
SELECT product_id FROM products_booked GROUP BY product_id HAVING COUNT(*) = 3 | What is the id of the product that is booked for 3 times? | CREATE TABLE products_booked (product_id VARCHAR) |
SELECT color_commentator_s_ FROM table_name_69 WHERE play_by_play = "al michaels" AND year > 2003 | Who was Al Michaels' color commentator in 2003? | CREATE TABLE table_name_69 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR) |
SELECT opponent FROM table_name_81 WHERE round = "1" AND record = "18-7" | Who is the opponent in the fight of 1 round when the record is 18-7? | CREATE TABLE table_name_81 (opponent VARCHAR, round VARCHAR, record VARCHAR) |
SELECT speed FROM table_name_52 WHERE time = "1:14.15.64" | What was the speed for the rider with a time of 1:14.15.64? | CREATE TABLE table_name_52 (speed VARCHAR, time VARCHAR) |
SELECT name FROM table_name_19 WHERE hanzi = "深圳卫视" | With a Hanzi of 深圳卫视, what is the name? | CREATE TABLE table_name_19 (name VARCHAR, hanzi VARCHAR) |
SELECT DISTINCT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age < (SELECT AVG(age) FROM person) | Who has friends that are younger than the average age? | CREATE TABLE person (age INTEGER); CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR) |
SELECT league FROM table_name_93 WHERE season = "1955-56" | What is the league for season 1955-56? | CREATE TABLE table_name_93 (league VARCHAR, season VARCHAR) |
SELECT finalist FROM table_19651669_1 WHERE final_venue = "Varese" | Who was the finalist when the final venue was Varese? | CREATE TABLE table_19651669_1 (finalist VARCHAR, final_venue VARCHAR) |
SELECT persian FROM table_name_92 WHERE romani = "duj" | What Persian word(s) has the same meaning as the Romani word duj? | CREATE TABLE table_name_92 (persian VARCHAR, romani VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.