answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT 15 AS th__20th_century FROM table_name_34 WHERE us__2013_ = "amethyst" | What was the U.S birthstone in the 15th-20th century when in 2013 it was amethyst? | CREATE TABLE table_name_34 (us__2013_ VARCHAR) |
SELECT T1.artist_name, COUNT(*) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name GROUP BY T2.artist_name ORDER BY COUNT(*) DESC LIMIT 3 | Find the names and number of works of the three artists who have produced the most songs. | CREATE TABLE song (artist_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR) |
SELECT korean_dialect FROM table_name_71 WHERE capital = "daegu" | What is the Korean dialect in the daegu capital? | CREATE TABLE table_name_71 (korean_dialect VARCHAR, capital VARCHAR) |
SELECT authority FROM table_name_67 WHERE gender = "coed" AND name = "chanel college" | Name the authority for coed gender and chanel college | CREATE TABLE table_name_67 (authority VARCHAR, gender VARCHAR, name VARCHAR) |
SELECT COUNT(weight) FROM table_22496374_1 WHERE home_town = "San Francisco, CA" | How many weight stats are there for players from San Francisco, CA? | CREATE TABLE table_22496374_1 (weight VARCHAR, home_town VARCHAR) |
SELECT SUM(T2.room_count) FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_short_name = "Columbus Square" | Show the total number of rooms of the apartments in the building with short name "Columbus Square". | CREATE TABLE Apartment_Buildings (building_id VARCHAR, building_short_name VARCHAR); CREATE TABLE Apartments (room_count INTEGER, building_id VARCHAR) |
SELECT game_site FROM table_name_50 WHERE result = "w 10-3" | What game site has w 10-3 as the result? | CREATE TABLE table_name_50 (game_site VARCHAR, result VARCHAR) |
SELECT champion FROM table_name_65 WHERE year = 2008 | What is the Champion with a Year that is 2008? | CREATE TABLE table_name_65 (champion VARCHAR, year VARCHAR) |
SELECT country FROM table_name_14 WHERE score = 73 - 72 - 67 = 212 | What country has a score of 73-72-67=212? | CREATE TABLE table_name_14 (country VARCHAR, score VARCHAR) |
SELECT side FROM table_name_25 WHERE inscription = "vischer" | Which side has Vischer as the inscription? | CREATE TABLE table_name_25 (side VARCHAR, inscription VARCHAR) |
SELECT state FROM table_name_13 WHERE owner = "wesson" | What state is Wesson in? | CREATE TABLE table_name_13 (state VARCHAR, owner VARCHAR) |
SELECT fate FROM table_name_20 WHERE date = "26 april 1942" | What is the fate of the ship on 26 April 1942? | CREATE TABLE table_name_20 (fate VARCHAR, date VARCHAR) |
SELECT SUM(pick) FROM table_name_60 WHERE former_wnba_team = "minnesota lynx" | What pick was a player that previously played for the Minnesota Lynx? | CREATE TABLE table_name_60 (pick INTEGER, former_wnba_team VARCHAR) |
SELECT AVG(losses) FROM table_name_73 WHERE geelong_dfl = "bell post hill" AND draws < 0 | What are the average losses for Geelong DFL of Bell Post Hill where the draws are less than 0? | CREATE TABLE table_name_73 (losses INTEGER, geelong_dfl VARCHAR, draws VARCHAR) |
SELECT constructor FROM table_name_91 WHERE time_retired = "+37.311" | Which constructor has a Time/Retired of +37.311? | CREATE TABLE table_name_91 (constructor VARCHAR, time_retired VARCHAR) |
SELECT AVG(votes) FROM table_name_58 WHERE place < 6 AND producer = "carlos coelho" AND draw > 5 | How many average votes did producer carlos coelho have in a higher place than 6 and with a draw larger than 5? | CREATE TABLE table_name_58 (votes INTEGER, draw VARCHAR, place VARCHAR, producer VARCHAR) |
SELECT myspace_band FROM table_name_77 WHERE original_airdate = "25 march 2008" | What is the name of the MySpace Band with an Original Airdate of 25 march 2008? | CREATE TABLE table_name_77 (myspace_band VARCHAR, original_airdate VARCHAR) |
SELECT entered FROM table_name_96 WHERE finished = "4th" | What day did the celebrity who finished 4th enter? | CREATE TABLE table_name_96 (entered VARCHAR, finished VARCHAR) |
SELECT player FROM table_12962773_2 WHERE height = "2.01" | What player is 2.01 m tall? | CREATE TABLE table_12962773_2 (player VARCHAR, height VARCHAR) |
SELECT COUNT(capacity) FROM table_24039173_1 WHERE team = "North East Stars" | What is the capacity for Sangre Grande Ground, home of the North East Stars? | CREATE TABLE table_24039173_1 (capacity VARCHAR, team VARCHAR) |
SELECT first_broadcast FROM table_29141354_2 WHERE episode = "02x02" | When was episode 02x02 first broadcast? | CREATE TABLE table_29141354_2 (first_broadcast VARCHAR, episode VARCHAR) |
SELECT new_returning_same_network FROM table_169766_13 WHERE previous_network = "NBC" | For the NBC network, what was the new/returning/same network status? | CREATE TABLE table_169766_13 (new_returning_same_network VARCHAR, previous_network VARCHAR) |
SELECT pick__number FROM table_name_97 WHERE position = "defensive tackle" AND player = "lorenzo freeman" | What was the pick# for Lorenzo Freeman as defensive tackle? | CREATE TABLE table_name_97 (pick__number VARCHAR, position VARCHAR, player VARCHAR) |
SELECT name FROM table_name_95 WHERE medal = "bronze" AND games = "2000 sydney" | Who received the bronze medal in the 2000 Sydney games? | CREATE TABLE table_name_95 (name VARCHAR, medal VARCHAR, games VARCHAR) |
SELECT COUNT(winner) FROM table_25551880_2 WHERE mountains_classification = "not awarded" | How many winners were there when the mountains classification was not awarded? | CREATE TABLE table_25551880_2 (winner VARCHAR, mountains_classification VARCHAR) |
SELECT MIN(number_of_episodes) FROM table_name_22 WHERE airing_date = "12 jan- 6 feb" | What is the lowest number of episodes in a series with an airing date of 12 jan- 6 feb? | CREATE TABLE table_name_22 (number_of_episodes INTEGER, airing_date VARCHAR) |
SELECT population FROM table_name_62 WHERE official_name = "saint-andré" | What is saint-andré's population? | CREATE TABLE table_name_62 (population VARCHAR, official_name VARCHAR) |
SELECT competition FROM table_name_66 WHERE res = "marian sandu" | WHAT COMPETITION HAS MARIAN SANDU? | CREATE TABLE table_name_66 (competition VARCHAR, res VARCHAR) |
SELECT _percentage_change_2008_2009 FROM table_13836704_6 WHERE airport = "Belfast International" | What is the percent change from 08/09 for belfast international? | CREATE TABLE table_13836704_6 (_percentage_change_2008_2009 VARCHAR, airport VARCHAR) |
SELECT MIN(episodes) FROM table_name_40 WHERE romaji_title = "regatta~kimi to ita eien~" | What is the fewest episodes with the Romaji title Regatta~Kimi to Ita Eien~? | CREATE TABLE table_name_40 (episodes INTEGER, romaji_title VARCHAR) |
SELECT customer_name, customer_phone FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM mailshot_customers) | Show the name and phone of the customer without any mailshot. | CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE mailshot_customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR) |
SELECT dates FROM table_229059_2 WHERE tournament_location = "Forest Lake country Club" | When was the tournament in Forest Lake Country Club held? | CREATE TABLE table_229059_2 (dates VARCHAR, tournament_location VARCHAR) |
SELECT score FROM table_name_15 WHERE opponent_in_the_final = "wynne prakusya" | What score has wynne prakusya as the opponent in the final? | CREATE TABLE table_name_15 (score VARCHAR, opponent_in_the_final VARCHAR) |
SELECT 2 AS nd_leg FROM table_name_48 WHERE team_2 = "werder bremen" | What is the 2nd leg score for the match with a team 2 of Werder Bremen? | CREATE TABLE table_name_48 (team_2 VARCHAR) |
SELECT date FROM table_name_32 WHERE high_assists = "ramon sessions (8)" AND high_points = "richard jefferson (29)" AND score = "w 107–78 (ot)" | what is the date when ramon sessions (8) had the high assists, richard jefferson (29) had the high points and the score was w 107–78 (ot)? | CREATE TABLE table_name_32 (date VARCHAR, score VARCHAR, high_assists VARCHAR, high_points VARCHAR) |
SELECT position FROM table_name_40 WHERE college = "trinity" | If the college is Trinity, what position is listed? | CREATE TABLE table_name_40 (position VARCHAR, college VARCHAR) |
SELECT test_result, COUNT(*) FROM Student_Tests_Taken GROUP BY test_result ORDER BY COUNT(*) DESC | List each test result and its count in descending order of count. | CREATE TABLE Student_Tests_Taken (test_result VARCHAR) |
SELECT MIN(chinese) FROM table_10118412_6 WHERE filipino = 1474707 | What is the the Chinese population for the state that has a Filipino population of 1474707? | CREATE TABLE table_10118412_6 (chinese INTEGER, filipino VARCHAR) |
SELECT score FROM table_name_65 WHERE date = "may 7, 2006" | What is Score, when Date is May 7, 2006? | CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR) |
SELECT date FROM table_name_64 WHERE away_team = "sydney spirit" | When was the game that had Sydney Spirit as the away team? | CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR) |
SELECT constellation FROM table_name_38 WHERE designation = "hip 4872" | Where is Hip 4872? | CREATE TABLE table_name_38 (constellation VARCHAR, designation VARCHAR) |
SELECT T3.Name, T2.District FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID ORDER BY T2.Ranking | Show the names of phones and the districts of markets they are on, in ascending order of the ranking of the market. | CREATE TABLE market (District VARCHAR, Market_ID VARCHAR, Ranking VARCHAR); CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR); CREATE TABLE phone_market (Market_ID VARCHAR, Phone_ID VARCHAR) |
SELECT first_name, last_name, hire_date, salary, department_id FROM employees WHERE NOT first_name LIKE '%M%' | display the full name (first and last), hire date, salary, and department number for those employees whose first name does not containing the letter M. | CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, salary VARCHAR, department_id VARCHAR) |
SELECT home_team AS score FROM table_name_92 WHERE venue = "windy hill" | What did the home team score at Windy Hill? | CREATE TABLE table_name_92 (home_team VARCHAR, venue VARCHAR) |
SELECT first_match FROM table_name_81 WHERE last_match = "december 16, 2007" | On what date was the first match for the competition that ended its last match on December 16, 2007? | CREATE TABLE table_name_81 (first_match VARCHAR, last_match VARCHAR) |
SELECT cospar_id FROM table_name_3 WHERE satellite = "ariel 3" | What is Ariel 3's COSPAR ID? | CREATE TABLE table_name_3 (cospar_id VARCHAR, satellite VARCHAR) |
SELECT MAX(played) FROM table_name_59 WHERE team = "cerro porteño" AND position > 1 | What is the highest Played that's for the Team of Cerro Porteño, with a Position that's larger than 1? | CREATE TABLE table_name_59 (played INTEGER, team VARCHAR, position VARCHAR) |
SELECT label - Nr FROM table_name_78 WHERE year < 1968 AND label = "world pacific" AND from_album = "chile con soul" | Which Label-Nr has a Year smaller than 1968, and a Label of world pacific, and an album of chile con soul? | CREATE TABLE table_name_78 (label VARCHAR, Nr VARCHAR, from_album VARCHAR, year VARCHAR) |
SELECT MAX(bronze) FROM table_name_99 WHERE total = 14 AND gold > 6 | What is the most bronze when the total is 14, and there are more than 6 gold? | CREATE TABLE table_name_99 (bronze INTEGER, total VARCHAR, gold VARCHAR) |
SELECT sport FROM table_name_92 WHERE year_of_award = 2011 | In 2011 which sport had the year award? | CREATE TABLE table_name_92 (sport VARCHAR, year_of_award VARCHAR) |
SELECT quantity_made FROM table_name_2 WHERE class = "p14" | How many CLASS P14 trains were made? | CREATE TABLE table_name_2 (quantity_made VARCHAR, class VARCHAR) |
SELECT MIN(points) FROM table_name_60 WHERE entrant = "marlboro brm" AND chassis = "brm p160b" | What was marlboro brm's lowest points by using brm p160b? | CREATE TABLE table_name_60 (points INTEGER, entrant VARCHAR, chassis VARCHAR) |
SELECT constructor FROM table_name_46 WHERE winning_driver = "jack brabham" AND race = "monaco grand prix" | What was the constructor when Jack Brabham was the driver at the Monaco Grand Prix? | CREATE TABLE table_name_46 (constructor VARCHAR, winning_driver VARCHAR, race VARCHAR) |
SELECT sat_29_aug FROM table_23465864_4 WHERE tues_25_aug = "22' 54.20 98.842mph" | What time was achieved on Saturday 29th August by the rider who recorded 22' 54.20 98.842mph on Tuesday 25th August? | CREATE TABLE table_23465864_4 (sat_29_aug VARCHAR, tues_25_aug VARCHAR) |
SELECT home FROM table_name_88 WHERE visitor = "colorado" AND record = "22–13–6" | What team was the home team when Colorado was the visitor and the record became 22–13–6? | CREATE TABLE table_name_88 (home VARCHAR, visitor VARCHAR, record VARCHAR) |
SELECT team FROM table_name_42 WHERE score = "101" | what team's score is 101? | CREATE TABLE table_name_42 (team VARCHAR, score VARCHAR) |
SELECT results¹ FROM table_name_65 WHERE type_of_game = "euro '64 qualifying" | What was the result of the Euro '64 qualifying game? | CREATE TABLE table_name_65 (results¹ VARCHAR, type_of_game VARCHAR) |
SELECT T1.Museum_Details, T2.Opening_Hours FROM MUSEUMS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Museum_ID = T2.Tourist_Attraction_ID | What are the details and opening hours of the museums? | CREATE TABLE TOURIST_ATTRACTIONS (Opening_Hours VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE MUSEUMS (Museum_Details VARCHAR, Museum_ID VARCHAR) |
SELECT year FROM table_name_60 WHERE nominee = "michele assaf" | what year was michele assaf nominated | CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR) |
SELECT COUNT(episodes) FROM table_name_13 WHERE japanese_title = "クロサギ" | What is the total number of episodes for クロサギ? | CREATE TABLE table_name_13 (episodes VARCHAR, japanese_title VARCHAR) |
SELECT COUNT(fl) FROM table_25548630_1 WHERE series = "Formula Three Euroseries" | How many F.L. are listed for Formula Three Euroseries? | CREATE TABLE table_25548630_1 (fl VARCHAR, series VARCHAR) |
SELECT AVG(attendance) FROM table_name_52 WHERE opponent = "devil rays" AND score = "2 - 1 (10)" | On games against the Devil Rays and a score of 2 - 1 (10), what was the attendance? | CREATE TABLE table_name_52 (attendance INTEGER, opponent VARCHAR, score VARCHAR) |
SELECT COUNT(third_place) FROM table_21632864_1 WHERE fourth_place = "Sanyo Electric Tokushima" | how many persons got the third position whan sanyo electric tokushima got the fourth position? | CREATE TABLE table_21632864_1 (third_place VARCHAR, fourth_place VARCHAR) |
SELECT department FROM table_17118006_2 WHERE irrigated_ha = 2170 | What department irrigated 2170 Ha? | CREATE TABLE table_17118006_2 (department VARCHAR, irrigated_ha VARCHAR) |
SELECT SUM(grid) FROM table_name_58 WHERE driver = "patrick carpentier" AND laps < 103 | What is the sum of a grid for driver Patrick Carpentier and less than 103 laps? | CREATE TABLE table_name_58 (grid INTEGER, driver VARCHAR, laps VARCHAR) |
SELECT bonus_points FROM table_name_63 WHERE drawn = "2" AND points_for = "475" | What is the number of bonus points for the team with 2 drawn games and 475 points? | CREATE TABLE table_name_63 (bonus_points VARCHAR, drawn VARCHAR, points_for VARCHAR) |
SELECT theme FROM table_26250199_1 WHERE episode = "Top 16 (8 Men)" | In episode Top 16 (8 Men), what are the themes? | CREATE TABLE table_26250199_1 (theme VARCHAR, episode VARCHAR) |
SELECT Birth_Place FROM people GROUP BY Birth_Place HAVING COUNT(*) >= 2 | What are the birth places that are shared by at least two people? | CREATE TABLE people (Birth_Place VARCHAR) |
SELECT COUNT(timeslot__est_) FROM table_24910733_2 WHERE rating = "5.7" | How many timeslots received a rating of 5.7? | CREATE TABLE table_24910733_2 (timeslot__est_ VARCHAR, rating VARCHAR) |
SELECT appointed_by FROM table_name_72 WHERE presentation_of_credentials = "march 25, 1976" | Who appointed the representative that had a Presentation of Credentials on March 25, 1976? | CREATE TABLE table_name_72 (appointed_by VARCHAR, presentation_of_credentials VARCHAR) |
SELECT SUM(land___sq_mi__) FROM table_name_80 WHERE ansi_code = 2390496 AND pop__2010_ < 7 OFFSET 284 | Name the sum of land for ANSI code of 2390496 and population less than 7,284 | CREATE TABLE table_name_80 (land___sq_mi__ INTEGER, ansi_code VARCHAR, pop__2010_ VARCHAR) |
SELECT SUM(attendance) FROM table_name_58 WHERE opponent = "oxford united" | How much Attendance has an Opponent of oxford united? | CREATE TABLE table_name_58 (attendance INTEGER, opponent VARCHAR) |
SELECT date FROM table_2446333_2 WHERE sprint_winner = "Mexico" | Name the date for sprint winner mexico | CREATE TABLE table_2446333_2 (date VARCHAR, sprint_winner VARCHAR) |
SELECT 1 AS st_leg FROM table_name_53 WHERE team_1 = "aalborg bk" | When Team 1 is Aalborg BK, what is the 1st Leg? | CREATE TABLE table_name_53 (team_1 VARCHAR) |
SELECT under_13 FROM table_26368963_1 WHERE under_17 = "Antonio Glez" | When the under-17 was Antonio Glez, who was the under-13? | CREATE TABLE table_26368963_1 (under_13 VARCHAR, under_17 VARCHAR) |
SELECT tries_against FROM table_name_56 WHERE tries_for = "21" | What is Tries Against, when Tries For is 21? | CREATE TABLE table_name_56 (tries_against VARCHAR, tries_for VARCHAR) |
SELECT completions FROM table_name_36 WHERE yards = "10,098" | Which Completions has Yards of 10,098? | CREATE TABLE table_name_36 (completions VARCHAR, yards VARCHAR) |
SELECT became_consort FROM table_name_16 WHERE spouse = "james ii" | On what date did James II take a consort? | CREATE TABLE table_name_16 (became_consort VARCHAR, spouse VARCHAR) |
SELECT round FROM table_21350934_2 WHERE attendance = "6,150" | How many rounds have 6,150 as attendance? | CREATE TABLE table_21350934_2 (round VARCHAR, attendance VARCHAR) |
SELECT original_air_date FROM table_26261072_1 WHERE series__number = 15 | Name the original air date for series number 15 | CREATE TABLE table_26261072_1 (original_air_date VARCHAR, series__number VARCHAR) |
SELECT AVG(fips_code) FROM table_name_70 WHERE area = "114.76 sq mi (297.23 sq km)" AND population__2010_ < 166 OFFSET 327 | What is the FIPS code for the municipality that has an area of 114.76 sq mi (297.23 sq km) and had a 2010 population of less than 166,327? | CREATE TABLE table_name_70 (fips_code INTEGER, area VARCHAR, population__2010_ VARCHAR) |
SELECT MAX(year) FROM table_name_35 WHERE chassis = "kurtis kraft 500c" AND entrant = "bardahl" AND points < 0 | What was the latest year that a Bardahl entrant had a Kurtis Kraft 500c chassis with no more than 0 points? | CREATE TABLE table_name_35 (year INTEGER, points VARCHAR, chassis VARCHAR, entrant VARCHAR) |
SELECT DISTINCT T1.player_name, T1.birthday FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id ORDER BY potential DESC LIMIT 5 | List the names and birthdays of the top five players in terms of potential. | CREATE TABLE Player_Attributes (player_api_id VARCHAR); CREATE TABLE Player (player_name VARCHAR, birthday VARCHAR, player_api_id VARCHAR) |
SELECT title FROM table_1231892_4 WHERE broadcast_order = "S04 E01" | What's the title of the episode with a broadcast order s04 e01? | CREATE TABLE table_1231892_4 (title VARCHAR, broadcast_order VARCHAR) |
SELECT image_attachment FROM table_name_44 WHERE threaded = "yes" AND calendar = "yes" | Which Image attachment has a Threaded of yes, and a Calendar of yes? | CREATE TABLE table_name_44 (image_attachment VARCHAR, threaded VARCHAR, calendar VARCHAR) |
SELECT church_name FROM table_178389_1 WHERE location_of_the_church = "Kyrkjebø" | What is the church name for the church located in Kyrkjebø? | CREATE TABLE table_178389_1 (church_name VARCHAR, location_of_the_church VARCHAR) |
SELECT MIN(goals_scored) FROM table_name_94 WHERE draw < 6 AND lost > 3 AND goals_conceded > 30 | What is the lowest number of goals scored for the entry with goals conceded larger than 30, lost larger than 3, and fewer than 6 draws? | CREATE TABLE table_name_94 (goals_scored INTEGER, goals_conceded VARCHAR, draw VARCHAR, lost VARCHAR) |
SELECT COUNT(*) FROM enzyme | How many kinds of enzymes are there? | CREATE TABLE enzyme (Id VARCHAR) |
SELECT location_attendance FROM table_17311759_6 WHERE team = "Orlando" | Where was the game held and what was the attendance when they played Orlando? | CREATE TABLE table_17311759_6 (location_attendance VARCHAR, team VARCHAR) |
SELECT MIN(elevation_ft) FROM table_27435931_1 WHERE year = "April 2006" | what was the lowest elevation in april 2006? | CREATE TABLE table_27435931_1 (elevation_ft INTEGER, year VARCHAR) |
SELECT Regular AS season FROM table_name_25 WHERE tournament < 2 AND total > 0 AND team = "kansas" | How many regular season titles did Kansas receive when they received fewer than 2 tournament titles and more than 0 total titles? | CREATE TABLE table_name_25 (Regular VARCHAR, team VARCHAR, tournament VARCHAR, total VARCHAR) |
SELECT opposition FROM table_name_25 WHERE tally = "0-11" | What is the opposition when the tally was 0-11? | CREATE TABLE table_name_25 (opposition VARCHAR, tally VARCHAR) |
SELECT copa_libertadores_1992 FROM table_15013825_8 WHERE copa_conmebol_1992 = "Round of 16" AND team = "Fluminense" | Name the copa libertadores 1992 for round of 16 and team of fluminense | CREATE TABLE table_15013825_8 (copa_libertadores_1992 VARCHAR, copa_conmebol_1992 VARCHAR, team VARCHAR) |
SELECT district FROM table_name_74 WHERE first_elected < 1906 AND incumbent = "julius kahn" | What was the district Incumbent Julius Kahn was in that was smaller than 1906? | CREATE TABLE table_name_74 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR) |
SELECT type FROM table_name_29 WHERE locomotive_number = "ctn 1364" | What type is locomotive CTN 1364? | CREATE TABLE table_name_29 (type VARCHAR, locomotive_number VARCHAR) |
SELECT winner FROM table_name_79 WHERE tier = "tier iii" | When the Tier is listed as tier iii, who is the Winner? | CREATE TABLE table_name_79 (winner VARCHAR, tier VARCHAR) |
SELECT segment_a FROM table_name_87 WHERE episode = 42 | What's the segment A in episode 42? | CREATE TABLE table_name_87 (segment_a VARCHAR, episode VARCHAR) |
SELECT record_low FROM table_26558_1 WHERE precip = "1.71 in." | What was the record lowest temperature with a precipitation of 1.71 in.? | CREATE TABLE table_26558_1 (record_low VARCHAR, precip VARCHAR) |
SELECT grid FROM table_name_9 WHERE points = "14" | What was the grid number of the team and driver with 14 points? | CREATE TABLE table_name_9 (grid VARCHAR, points VARCHAR) |
SELECT COUNT(dar) FROM table_15887683_9 WHERE television_service = "Disney Channel" AND n° = 613 | Name the total number of dar for disney channel and number is 613 | CREATE TABLE table_15887683_9 (dar VARCHAR, television_service VARCHAR, n° VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.