answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT MIN(year) FROM table_name_63 WHERE town = "gray court, south carolina" | What was the earliest year that a structure was located in gray court, south carolina? | CREATE TABLE table_name_63 (year INTEGER, town VARCHAR) |
SELECT COUNT(DISTINCT customer_id) FROM customer_orders WHERE order_status = "Cancelled" | How many customers have at least one order with status "Cancelled"? | CREATE TABLE customer_orders (customer_id VARCHAR, order_status VARCHAR) |
SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING COUNT(*) >= 3 | Show the names of high schoolers who have at least 3 friends. | CREATE TABLE Highschooler (name VARCHAR, id VARCHAR); CREATE TABLE Friend (student_id VARCHAR) |
SELECT COUNT(high_points) FROM table_27715173_8 WHERE team = "Oklahoma City" | how many times is the team oklahoma city? | CREATE TABLE table_27715173_8 (high_points VARCHAR, team VARCHAR) |
SELECT COUNT(ends_lost) FROM table_name_62 WHERE skip = "kevin koe" AND stolen_ends > 6 | How many ends lost when skip is Kevin Koe and stolen ends are more than 6? | CREATE TABLE table_name_62 (ends_lost VARCHAR, skip VARCHAR, stolen_ends VARCHAR) |
SELECT attendance FROM table_name_50 WHERE record = "6-1" | How many people were at the game with a record of 6-1? | CREATE TABLE table_name_50 (attendance VARCHAR, record VARCHAR) |
SELECT memory FROM table_name_68 WHERE clock = "2.26ghz" AND number = 32 | What is the Memory for a Number 32 with a Clock of 2.26ghz? | CREATE TABLE table_name_68 (memory VARCHAR, clock VARCHAR, number VARCHAR) |
SELECT date FROM table_name_30 WHERE result = "w 27–20" | Which Date has a Result of w 27–20? | CREATE TABLE table_name_30 (date VARCHAR, result VARCHAR) |
SELECT week_13_nov_30 FROM table_name_36 WHERE week_11_nov_16 = "usc (7-3)" | What is the week 13 Nov 30 standing with USC (7-3) on week 11 Nov 16? | CREATE TABLE table_name_36 (week_13_nov_30 VARCHAR, week_11_nov_16 VARCHAR) |
SELECT games_behind__gb_ FROM table_name_49 WHERE division__div_ = "oklahoma city thunder" | What are the games behind for the Oklahoma City Thunder division? | CREATE TABLE table_name_49 (games_behind__gb_ VARCHAR, division__div_ VARCHAR) |
SELECT college FROM table_20898602_1 WHERE position = "Running back" | which college had a running back player | CREATE TABLE table_20898602_1 (college VARCHAR, position VARCHAR) |
SELECT bleeding_time FROM table_1555308_1 WHERE platelet_count = "Decreased" AND prothrombin_time = "Unaffected" | How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected? | CREATE TABLE table_1555308_1 (bleeding_time VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR) |
SELECT AVG(fa_cup) FROM table_name_15 WHERE total > 32 AND league > 24 | How many FA Cups on average have a larger total than 32 and a larger league than 24? | CREATE TABLE table_name_15 (fa_cup INTEGER, total VARCHAR, league VARCHAR) |
SELECT record FROM table_name_26 WHERE attendance = "11,141" | What is the record for the game with an attendance of 11,141? | CREATE TABLE table_name_26 (record VARCHAR, attendance VARCHAR) |
SELECT MAX(time__seconds_) FROM table_name_99 WHERE nation___athlete_s_ = "sylke otto - germany" | What is the longest Time (seconds), when the Nation - athlete(s) is Sylke Otto - Germany? | CREATE TABLE table_name_99 (time__seconds_ INTEGER, nation___athlete_s_ VARCHAR) |
SELECT home_team AS score FROM table_name_26 WHERE venue = "brunswick street oval" | What is the home team score at brunswick street oval? | CREATE TABLE table_name_26 (home_team VARCHAR, venue VARCHAR) |
SELECT COUNT(outcome) FROM table_22834834_3 WHERE score_in_the_final = "7–6 (9–7) , 6–3" | How many outcome have a score of 7–6 (9–7) , 6–3? | CREATE TABLE table_22834834_3 (outcome VARCHAR, score_in_the_final VARCHAR) |
SELECT stage AS winner FROM table_name_38 WHERE start_of_stage = "cauterets" | Who was the stage winner when the start of stage is Cauterets? | CREATE TABLE table_name_38 (stage VARCHAR, start_of_stage VARCHAR) |
SELECT courtside_reporter FROM table_name_43 WHERE channel = "fsn new england" AND year = "2006-07" | Which Courtside reporter has a Channel of fsn new england in 2006-07? | CREATE TABLE table_name_43 (courtside_reporter VARCHAR, channel VARCHAR, year VARCHAR) |
SELECT release_date FROM table_name_84 WHERE developer_s_ = "microsoft research" | Which Release date has a Developer(s) of microsoft research? | CREATE TABLE table_name_84 (release_date VARCHAR, developer_s_ VARCHAR) |
SELECT mID, AVG(stars) FROM Rating WHERE NOT mID IN (SELECT T1.mID FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T2.name = "Brittany Harris") GROUP BY mID | Find the average rating star for each movie that are not reviewed by Brittany Harris. | CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR) |
SELECT MIN(laps) FROM table_name_45 WHERE grid < 5 AND driver = "juan manuel fangio" | what is the lowest laps when the grid is smaller than 5 and the driver is juan manuel fangio? | CREATE TABLE table_name_45 (laps INTEGER, grid VARCHAR, driver VARCHAR) |
SELECT final_position FROM table_name_87 WHERE ties = "0" AND wins = "5" | What is the final position with ties of 0, and wins of 5? | CREATE TABLE table_name_87 (final_position VARCHAR, ties VARCHAR, wins VARCHAR) |
SELECT gender FROM table_name_64 WHERE full_name = "chukwubuikem maduabuchi" | Chukwubuikem Maduabuchi is what gender? | CREATE TABLE table_name_64 (gender VARCHAR, full_name VARCHAR) |
SELECT country FROM table_name_59 WHERE city = "douala" | Where is the City of Douala? | CREATE TABLE table_name_59 (country VARCHAR, city VARCHAR) |
SELECT score FROM table_name_91 WHERE loss = "cerutti (0-1)" | What was the score of the game that had a loss of Cerutti (0-1)? | CREATE TABLE table_name_91 (score VARCHAR, loss VARCHAR) |
SELECT score FROM table_name_53 WHERE visitor = "toronto maple leafs" AND date = "march 22" | What was the score when the visitor was toronto maple leafs on march 22? | CREATE TABLE table_name_53 (score VARCHAR, visitor VARCHAR, date VARCHAR) |
SELECT airport FROM table_name_16 WHERE icao = "birk" | What airport has an ICAO of Birk? | CREATE TABLE table_name_16 (airport VARCHAR, icao VARCHAR) |
SELECT overall_record FROM table_27862483_3 WHERE win = "D. Klein (2-0)" | What was the overall record in the game won by D. Klein (2-0)? | CREATE TABLE table_27862483_3 (overall_record VARCHAR, win VARCHAR) |
SELECT result FROM table_name_46 WHERE goal < 2 | What is the result when there's less than 2 goals? | CREATE TABLE table_name_46 (result VARCHAR, goal INTEGER) |
SELECT 2014 FROM table_name_49 WHERE 2013 = "danielle button" | Who held the same position in 2014 that Danielle Button held in 2013? | CREATE TABLE table_name_49 (Id VARCHAR) |
SELECT AVG(game) FROM table_name_52 WHERE date = "may 20" | What is the game number held on May 20? | CREATE TABLE table_name_52 (game INTEGER, date VARCHAR) |
SELECT MIN(no) FROM table_28348757_3 WHERE production_code = "XLE02007" | Name the least number for xle02007 | CREATE TABLE table_28348757_3 (no INTEGER, production_code VARCHAR) |
SELECT team FROM table_name_33 WHERE laps = 100 AND time_retired = "+8.6 secs" | Which Team has Laps of 100, and a Time/Retired of +8.6 secs? | CREATE TABLE table_name_33 (team VARCHAR, laps VARCHAR, time_retired VARCHAR) |
SELECT nation FROM table_name_81 WHERE syndicate = "america 3 foundation" AND yacht = "jayhawk" | Which nation has the America 3 Foundation syndicate and the jayhawk yacht? | CREATE TABLE table_name_81 (nation VARCHAR, syndicate VARCHAR, yacht VARCHAR) |
SELECT final_position FROM table_name_70 WHERE season = "2012" | What is the final position for the season 2012? | CREATE TABLE table_name_70 (final_position VARCHAR, season VARCHAR) |
SELECT T3.Name, T2.Machine_series FROM repair_assignment AS T1 JOIN machine AS T2 ON T1.machine_id = T2.machine_id JOIN technician AS T3 ON T1.technician_ID = T3.technician_ID | Show names of technicians and series of machines they are assigned to repair. | CREATE TABLE machine (Machine_series VARCHAR, machine_id VARCHAR); CREATE TABLE repair_assignment (machine_id VARCHAR, technician_ID VARCHAR); CREATE TABLE technician (Name VARCHAR, technician_ID VARCHAR) |
SELECT away_team AS score FROM table_name_27 WHERE home_team = "richmond" | What is the score of the away team that played richmond? | CREATE TABLE table_name_27 (away_team VARCHAR, home_team VARCHAR) |
SELECT quantity_world_rank FROM table_21109892_1 WHERE value_world_rank = "12" | where value world rank is 12, what is the quantity world rank? | CREATE TABLE table_21109892_1 (quantity_world_rank VARCHAR, value_world_rank VARCHAR) |
SELECT date FROM table_name_18 WHERE partner = "jodi kenoyer" | What was the date for the match where Tweedie-Yates' partner was jodi kenoyer? | CREATE TABLE table_name_18 (date VARCHAR, partner VARCHAR) |
SELECT COUNT(result) FROM table_2668329_18 WHERE district = "North Carolina 9" | Name the result for north carolina 9 | CREATE TABLE table_2668329_18 (result VARCHAR, district VARCHAR) |
SELECT points_difference FROM table_name_66 WHERE points > 3 AND lost > 0 | What is the points difference associated with more than 3 points and more than 0 losses? | CREATE TABLE table_name_66 (points_difference VARCHAR, points VARCHAR, lost VARCHAR) |
SELECT date FROM table_name_6 WHERE winning_driver = "aymo maggi" AND name = "rome grand prix" | On what date did Aymo Maggi win the Rome Grand Prix ? | CREATE TABLE table_name_6 (date VARCHAR, winning_driver VARCHAR, name VARCHAR) |
SELECT MIN(pick) FROM table_name_88 WHERE overall > 17 AND player_name = "dave adams category:articles with hcards" AND year > 1963 | What is the smallest Pick with Overall larger than 17, a Player name of dave adams category:articles with hcards, and a Year larger than 1963? | CREATE TABLE table_name_88 (pick INTEGER, year VARCHAR, overall VARCHAR, player_name VARCHAR) |
SELECT mascot FROM table_name_63 WHERE enrollment = 640 | Which Mascot has an Enrollment of 640? | CREATE TABLE table_name_63 (mascot VARCHAR, enrollment VARCHAR) |
SELECT MAX(wins) FROM table_name_72 WHERE against < 924 AND losses < 2 | WHAT IS THE HIGHEST WINS WITH AGAINST SMALLER THAN 924, LOSSES SMALLER THAN 2? | CREATE TABLE table_name_72 (wins INTEGER, against VARCHAR, losses VARCHAR) |
SELECT AVG(bronze) FROM table_name_9 WHERE sport = "football" AND silver > 1 | What is the football Bronze with more than 1 Silver? | CREATE TABLE table_name_9 (bronze INTEGER, sport VARCHAR, silver VARCHAR) |
SELECT SUM(pick__number) FROM table_name_69 WHERE cfl_team = "edmonton" | Can you tell me the sum of the Pick # that has the CFL Team of edmonton? | CREATE TABLE table_name_69 (pick__number INTEGER, cfl_team VARCHAR) |
SELECT SUM(inhabitants) FROM table_name_57 WHERE party = "five star movement" AND election < 2012 | In the election earlier than 2012 how many Inhabitants had a Party of five star movement? | CREATE TABLE table_name_57 (inhabitants INTEGER, party VARCHAR, election VARCHAR) |
SELECT COUNT(result) FROM table_26250253_1 WHERE theme = "Group Round" | How many results are there with the theme Group Round? | CREATE TABLE table_26250253_1 (result VARCHAR, theme VARCHAR) |
SELECT power_kw FROM table_24673888_1 WHERE ch__number = "TV-12" | What is the power in kilowatts of TV-12? | CREATE TABLE table_24673888_1 (power_kw VARCHAR, ch__number VARCHAR) |
SELECT originalairdate FROM table_16090262_1 WHERE tv_broadcast = "S07E04" | When was the show originally aired that had a TV broadcast of S07E04? | CREATE TABLE table_16090262_1 (originalairdate VARCHAR, tv_broadcast VARCHAR) |
SELECT name FROM table_name_54 WHERE builder = "kerr stuart" | What is Name, when Builder is "Kerr Stuart"? | CREATE TABLE table_name_54 (name VARCHAR, builder VARCHAR) |
SELECT record FROM table_17103645_10 WHERE date = "July 18" | Name the record for july 18 | CREATE TABLE table_17103645_10 (record VARCHAR, date VARCHAR) |
SELECT MIN(total) FROM table_name_96 WHERE ward > 60 | WHAT IS THE TOTAL WITH WARD LARGER THAN 60? | CREATE TABLE table_name_96 (total INTEGER, ward INTEGER) |
SELECT opponent_in_the_final FROM table_22839669_1 WHERE score_in_the_final = "3–6, 4–6, 7–5, 4–6" | Who is the opponent in the match with final score 3–6, 4–6, 7–5, 4–6? | CREATE TABLE table_22839669_1 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) |
SELECT tries_against FROM table_12792876_3 WHERE drawn = "2" | What was the tries against when the drawn was 2? | CREATE TABLE table_12792876_3 (tries_against VARCHAR, drawn VARCHAR) |
SELECT tyre FROM table_name_82 WHERE fastest_lap = "jim clark" AND circuit = "prince george" | What is the tyre for the circuit of Prince George, which had Jim Clark as the fastest lap? | CREATE TABLE table_name_82 (tyre VARCHAR, fastest_lap VARCHAR, circuit VARCHAR) |
SELECT record FROM table_name_79 WHERE date = "1987" | What was his record in 1987? | CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR) |
SELECT tournament FROM table_name_5 WHERE opponent = "sergio roitman" | In what tournament did Cipolla face Sergio Roitman? | CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR) |
SELECT MIN(points) FROM table_name_23 WHERE engine = "gc37-01 v10" | Which gc37-01 v10 engine has the fewest points? | CREATE TABLE table_name_23 (points INTEGER, engine VARCHAR) |
SELECT score FROM table_name_86 WHERE opponent_in_the_final = "jim courier" | What score has jim courier as the opponent in the final? | CREATE TABLE table_name_86 (score VARCHAR, opponent_in_the_final VARCHAR) |
SELECT date FROM table_name_33 WHERE partner = "daniella dominikovic" | Which Date has a Partner of daniella dominikovic? | CREATE TABLE table_name_33 (date VARCHAR, partner VARCHAR) |
SELECT AVG(capacity) FROM table_name_89 WHERE navigator = "macneall" | What is the average capacity for the vehicle having a navigator of Macneall? | CREATE TABLE table_name_89 (capacity INTEGER, navigator VARCHAR) |
SELECT COUNT(original_air_date) FROM table_25341765_1 WHERE directed_by = "Michael McCullers" | How many episodes were directed by Michael McCullers? | CREATE TABLE table_25341765_1 (original_air_date VARCHAR, directed_by VARCHAR) |
SELECT high_points FROM table_27734286_1 WHERE team = "@ L.A. Clippers" | Who is in the high points in the @ l.a. clippers team? | CREATE TABLE table_27734286_1 (high_points VARCHAR, team VARCHAR) |
SELECT SUM(seasons_in_league) FROM table_name_82 WHERE best_position = "5th (2007)" | Which sum of Seasons in league has a Best Position of 5th (2007)? | CREATE TABLE table_name_82 (seasons_in_league INTEGER, best_position VARCHAR) |
SELECT winning_driver FROM table_name_70 WHERE name = "avusrennen" | Tell me the winning driver for avusrennen | CREATE TABLE table_name_70 (winning_driver VARCHAR, name VARCHAR) |
SELECT car FROM table_28046929_2 WHERE driver = "Mark Higgins" | what is the type of vehicle driven by mark higgins | CREATE TABLE table_28046929_2 (car VARCHAR, driver VARCHAR) |
SELECT author FROM table_1620397_2 WHERE featuring = "Peri" AND released = "April 2010" | Name the author for peri and april 2010 | CREATE TABLE table_1620397_2 (author VARCHAR, featuring VARCHAR, released VARCHAR) |
SELECT richmond_[staten_is] FROM table_name_90 WHERE the_bronx = "181,639" | How many voters were in Manhattan when 181,639 people voted in the Bronx? | CREATE TABLE table_name_90 (richmond_ VARCHAR, staten_is VARCHAR, the_bronx VARCHAR) |
SELECT score FROM table_name_11 WHERE losing_team = "devil rays" AND date = "june 29" | what was the score on june 29 when the devil rays los? | CREATE TABLE table_name_11 (score VARCHAR, losing_team VARCHAR, date VARCHAR) |
SELECT record FROM table_name_71 WHERE opponent = "christian nielson" | Name the record with opponent of christian nielson | CREATE TABLE table_name_71 (record VARCHAR, opponent VARCHAR) |
SELECT elevation FROM table_name_20 WHERE county = "oslo" | Tell me the elevation for oslo | CREATE TABLE table_name_20 (elevation VARCHAR, county VARCHAR) |
SELECT marriage FROM table_name_59 WHERE death = "6 dec 1240" | When did the person who died on 6 Dec 1240 get married? | CREATE TABLE table_name_59 (marriage VARCHAR, death VARCHAR) |
SELECT COUNT(rank) FROM table_name_29 WHERE code__iata_icao_ = "ord/kord" | How many ranks have a Code (IATA/ICAO) of ord/kord? | CREATE TABLE table_name_29 (rank VARCHAR, code__iata_icao_ VARCHAR) |
SELECT AVG(year_won) FROM table_name_20 WHERE player = "rich beem" AND to_par < 17 | What is the average year Rich Beem had a to par less than 17? | CREATE TABLE table_name_20 (year_won INTEGER, player VARCHAR, to_par VARCHAR) |
SELECT stadium FROM table_name_60 WHERE final_score = "31-28" | At what stadium was the final score 31-28? | CREATE TABLE table_name_60 (stadium VARCHAR, final_score VARCHAR) |
SELECT modified_speed__6th_gear_ FROM table_19704392_1 WHERE standard_torque__lb_ft_ = "10.3" AND modified_torque__lb_ft_ = "8.75" | What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75? | CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ VARCHAR, standard_torque__lb_ft_ VARCHAR, modified_torque__lb_ft_ VARCHAR) |
SELECT COUNT(population) FROM table_157826_1 WHERE city_town = "Arendal" | What is the total population in the city/town of Arendal? | CREATE TABLE table_157826_1 (population VARCHAR, city_town VARCHAR) |
SELECT club FROM table_17941032_1 WHERE points = "98" | When 98 is the points what is the club? | CREATE TABLE table_17941032_1 (club VARCHAR, points VARCHAR) |
SELECT points_for FROM table_name_33 WHERE drawn = "0" AND points = "88" | Name the points for with drawn of 0 and points of 88 | CREATE TABLE table_name_33 (points_for VARCHAR, drawn VARCHAR, points VARCHAR) |
SELECT opposition FROM table_name_70 WHERE social_democrats__a_ = "31.1%" | What opposition do 31.1% of Social Democrats have? | CREATE TABLE table_name_70 (opposition VARCHAR, social_democrats__a_ VARCHAR) |
SELECT COUNT(rnd) FROM table_19722436_2 WHERE gt1_winning_team = "Julien Jousse Patrice Goueslard Yann Clairay" | When julien jousse patrice goueslard yann clairay is teh gt1 of the winning team how many measurements of rnd. are there? | CREATE TABLE table_19722436_2 (rnd VARCHAR, gt1_winning_team VARCHAR) |
SELECT 1997 FROM table_name_6 WHERE 1994 = "qf" AND 1999 = "1r" | What 1997, has qf as a 1994, and 1r as a 1999? | CREATE TABLE table_name_6 (Id VARCHAR) |
SELECT SUM(bronze) FROM table_name_72 WHERE nation = "canada" AND silver < 0 | What is the number of bronze for Canada and silver is less than 0? | CREATE TABLE table_name_72 (bronze INTEGER, nation VARCHAR, silver VARCHAR) |
SELECT AVG(bronze) FROM table_name_25 WHERE total = 1 AND silver > 0 | What's the average bronze with a total number of medals being 1, with more than 0 silvers? | CREATE TABLE table_name_25 (bronze INTEGER, total VARCHAR, silver VARCHAR) |
SELECT COUNT(scores) FROM table_29141354_3 WHERE episode = "03x06" | How many scores had an episode of 03x06? | CREATE TABLE table_29141354_3 (scores VARCHAR, episode VARCHAR) |
SELECT position FROM table_name_99 WHERE height = 2.06 AND current_club = "triumph lyubertsy" | What's the position of the player with a Height of 2.06 and club of Triumph Lyubertsy? | CREATE TABLE table_name_99 (position VARCHAR, height VARCHAR, current_club VARCHAR) |
SELECT employee_id FROM Employees EXCEPT SELECT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed | Show the ids of the employees who don't authorize destruction for any document. | CREATE TABLE Documents_to_be_destroyed (employee_id VARCHAR, Destruction_Authorised_by_Employee_ID VARCHAR); CREATE TABLE Employees (employee_id VARCHAR, Destruction_Authorised_by_Employee_ID VARCHAR) |
SELECT first_elected FROM table_2668352_5 WHERE district = "Kentucky 6" | Who is first elected when Kentucky 6 is the district? | CREATE TABLE table_2668352_5 (first_elected VARCHAR, district VARCHAR) |
SELECT COUNT(third_year) FROM table_12148147_2 WHERE first_year = "Pag-unawa" | How many classes are taken in the third year when pag-unawa was taken in the first year? | CREATE TABLE table_12148147_2 (third_year VARCHAR, first_year VARCHAR) |
SELECT 1997 FROM table_name_77 WHERE 1992 = "1r" AND 1994 = "a" | Which 1997's 1992 was 1r when 1994 was a? | CREATE TABLE table_name_77 (Id VARCHAR) |
SELECT place FROM table_name_62 WHERE player = "jay haas" | Where did Jay Haas place? | CREATE TABLE table_name_62 (place VARCHAR, player VARCHAR) |
SELECT report FROM table_14312471_7 WHERE home_team = "North Melbourne" | Who made the report when the home team is north Melbourne? | CREATE TABLE table_14312471_7 (report VARCHAR, home_team VARCHAR) |
SELECT total FROM table_name_70 WHERE finish = "t66" | What is the total for the player whose finish was t66? | CREATE TABLE table_name_70 (total VARCHAR, finish VARCHAR) |
SELECT MAX(losses) FROM table_name_75 WHERE club = "terang" AND draws < 0 | what is the most losses when the club is terang and draws is less than 0? | CREATE TABLE table_name_75 (losses INTEGER, club VARCHAR, draws VARCHAR) |
SELECT country FROM table_name_42 WHERE engine_make_capacity = "jawa 350cc" | What country had the car with the Jawa 350cc engine? | CREATE TABLE table_name_42 (country VARCHAR, engine_make_capacity VARCHAR) |
SELECT current_country_of_location FROM table_10335_1 WHERE operational = "Summer of 1941 to 28 June 1944" | what's the current country of location with operational period of summer of 1941 to 28 june 1944 | CREATE TABLE table_10335_1 (current_country_of_location VARCHAR, operational VARCHAR) |
SELECT position FROM table_name_17 WHERE name = "john taft" | Which Position has a Name of john taft? | CREATE TABLE table_name_17 (position VARCHAR, name VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.