answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT year FROM table_name_88 WHERE developer = "music comp" | Which year was the game developed by Music Comp in? | CREATE TABLE table_name_88 (year VARCHAR, developer VARCHAR) |
SELECT MIN(attendance) FROM table_name_12 WHERE week > 4 AND date = "october 28, 1962" | With the date of October 28, 1962, and the week greater than 4, what was the lowest attendance? | CREATE TABLE table_name_12 (attendance INTEGER, week VARCHAR, date VARCHAR) |
SELECT MIN(kerry_number) FROM table_2401326_1 WHERE others_number = 8 | How many people voted for Kerry in the county where 8 voted for others? | CREATE TABLE table_2401326_1 (kerry_number INTEGER, others_number VARCHAR) |
SELECT COUNT(year) FROM table_2181798_1 WHERE avg_finish = "18.5" | Name the number of years for 18.5 | CREATE TABLE table_2181798_1 (year VARCHAR, avg_finish VARCHAR) |
SELECT commercial_operation FROM table_name_48 WHERE gross_capacity = "417 mw" AND electricity_grid = "27.12.1971" | Which Commercial Operation has both a Gross Capacity of 417 mw and an Electricity Grid 27.12.1971? | CREATE TABLE table_name_48 (commercial_operation VARCHAR, gross_capacity VARCHAR, electricity_grid VARCHAR) |
SELECT MIN(final_year) FROM table_name_69 WHERE north_or_east_terminus = "covington" | What is the most minimal Final year that has a North or east end of covington? | CREATE TABLE table_name_69 (final_year INTEGER, north_or_east_terminus VARCHAR) |
SELECT COUNT(duration) FROM table_19061741_3 WHERE name = "Joj Agpangan*" | When joj agpangan* is the name how many duration's are there? | CREATE TABLE table_19061741_3 (duration VARCHAR, name VARCHAR) |
SELECT COUNT(founding_date) FROM table_28436909_4 WHERE canadian_chapters = "1 Active, 1 Inactive" | When 1 active, 1 inactive is the canadian chapters how many founding dates are there? | CREATE TABLE table_28436909_4 (founding_date VARCHAR, canadian_chapters VARCHAR) |
SELECT race_winner FROM table_name_97 WHERE fastest_lap = "daijiro hiura" AND date = "march 29" | Who won with the fastest lap of daijiro hiura on March 29? | CREATE TABLE table_name_97 (race_winner VARCHAR, fastest_lap VARCHAR, date VARCHAR) |
SELECT Suited + non_suited_match FROM table_name_80 WHERE house_edge = "2.99%" | Name the Suited & Non-Suited Match with a 2.99% for House Edge. | CREATE TABLE table_name_80 (Suited VARCHAR, non_suited_match VARCHAR, house_edge VARCHAR) |
SELECT MAX(tropical_lows) FROM table_name_13 WHERE season = "1990–91" AND tropical_cyclones > 10 | What is the largest number for tropical Lows for the 1990–91 season with more than 10 tropical cyclones? | CREATE TABLE table_name_13 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR) |
SELECT engine FROM table_name_21 WHERE team = "dick simon racing" | What engine did Dick Simon Racing use? | CREATE TABLE table_name_21 (engine VARCHAR, team VARCHAR) |
SELECT score FROM table_name_65 WHERE march > 15 AND points > 96 AND game < 76 AND opponent = "@ washington capitals" | Which Score has a March larger than 15, and Points larger than 96, and a Game smaller than 76, and an Opponent of @ washington capitals? | CREATE TABLE table_name_65 (score VARCHAR, opponent VARCHAR, game VARCHAR, march VARCHAR, points VARCHAR) |
SELECT points FROM table_name_65 WHERE car_no = "20" | How many points did car 20 score? | CREATE TABLE table_name_65 (points VARCHAR, car_no VARCHAR) |
SELECT player FROM table_name_61 WHERE place = "t10" AND country = "united states" AND score = 69 - 70 - 76 = 215 | Who is the player with a t10 place, from the United States, and has a score of 69-70-76=215? | CREATE TABLE table_name_61 (player VARCHAR, place VARCHAR, country VARCHAR, score VARCHAR) |
SELECT COUNT(played) FROM table_name_42 WHERE position < 4 AND team = "witton albion" | What is the number of played when the position is less than 4, and the team is Witton Albion? | CREATE TABLE table_name_42 (played VARCHAR, position VARCHAR, team VARCHAR) |
SELECT score FROM table_name_93 WHERE date = "january 30" | What was the Score on January 30? | CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) |
SELECT b_score FROM table_name_6 WHERE a_score = 6.9 | what is the b score when the a score is 6.9? | CREATE TABLE table_name_6 (b_score VARCHAR, a_score VARCHAR) |
SELECT MIN(no) FROM table_18442691_2 WHERE album = "Bat Out of Hell" | When bat out of hell is the album what is the lowest number? | CREATE TABLE table_18442691_2 (no INTEGER, album VARCHAR) |
SELECT T1.customer_name, T1.customer_address FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = "New" INTERSECT SELECT T1.customer_name, T1.customer_address FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status_code = "Pending" | Find the name and address of the customers who have both New and Pending orders. | CREATE TABLE customers (customer_name VARCHAR, customer_address VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_status_code VARCHAR) |
SELECT AVG(heat_points) FROM table_name_83 WHERE result = "loss" AND game > 72 AND date = "april 21" | What is the average Heat Points, when Result is "Loss", when Game is greater than 72, and when Date is "April 21"? | CREATE TABLE table_name_83 (heat_points INTEGER, date VARCHAR, result VARCHAR, game VARCHAR) |
SELECT position FROM table_name_58 WHERE tries > 4 AND points = 20 AND player = "lee gilmour" | What position did Lee Gilmour play while having more than 4 Tries and 20 points? | CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, tries VARCHAR, points VARCHAR) |
SELECT DISTINCT city FROM addresses | Show all distinct cities in the address record. | CREATE TABLE addresses (city VARCHAR) |
SELECT date FROM table_name_10 WHERE home_team = "hawthorn" | On what date is Hawthorn the home team? | CREATE TABLE table_name_10 (date VARCHAR, home_team VARCHAR) |
SELECT venue FROM table_name_15 WHERE result = "lost 5-4" | Which venue had a lost 5-4 result? | CREATE TABLE table_name_15 (venue VARCHAR, result VARCHAR) |
SELECT decision FROM table_name_10 WHERE date = "november 28" | WHAT IS THE DECISION FOR NOVEMBER 28? | CREATE TABLE table_name_10 (decision VARCHAR, date VARCHAR) |
SELECT product_name FROM Products EXCEPT SELECT T1.product_name FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id | Show all product names without an order. | CREATE TABLE Products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE Order_items (product_id VARCHAR); CREATE TABLE Products (product_name VARCHAR) |
SELECT bronze FROM table_name_55 WHERE silver = "tatiana ryabkina" AND gold = "anne margrethe hausken" | What bronze has tatiana ryabkina as the silver, anne margrethe hausken as the gold? | CREATE TABLE table_name_55 (bronze VARCHAR, silver VARCHAR, gold VARCHAR) |
SELECT horse FROM table_19624708_1 WHERE owner = "R. A. Scott" | What horses does r. a. Scott own? | CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR) |
SELECT MAX(lost) FROM table_name_58 WHERE points = 23 AND played > 22 | What is the highest number of losses with 23 points and 22 plays? | CREATE TABLE table_name_58 (lost INTEGER, points VARCHAR, played VARCHAR) |
SELECT monarchs_served FROM table_name_18 WHERE name = "stanley baldwin (1st ministry)" | What monarch(s) did Stanley Baldwin (1st ministry) serve? | CREATE TABLE table_name_18 (monarchs_served VARCHAR, name VARCHAR) |
SELECT COUNT(total_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE renewable_electricity_w_o_hydro__gw·h_ = 3601 | How many data was given the total electricity in GW-h if the renewable electricity w/o hydro (GW-h) is 3601? | CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, renewable_electricity_w_o_hydro__gw·h_ VARCHAR) |
SELECT MAX(number_of_s_eva) FROM table_1558077_8 | Name the most number of s eva | CREATE TABLE table_1558077_8 (number_of_s_eva INTEGER) |
SELECT records FROM table_15313204_1 WHERE pct = ".464" | What are the record(s) for the team with a winning percentage of .464? | CREATE TABLE table_15313204_1 (records VARCHAR, pct VARCHAR) |
SELECT score FROM table_name_41 WHERE away_team = "grimsby town" | What is the score for the away team of Grimsby Town? | CREATE TABLE table_name_41 (score VARCHAR, away_team VARCHAR) |
SELECT second FROM table_name_51 WHERE position > 33 AND points > 12 AND equipment = "zabel-vmc" | What is Second, when Position is greater than 33, when Points is greater than 12, and when Equipment is Zabel-VMC? | CREATE TABLE table_name_51 (second VARCHAR, equipment VARCHAR, position VARCHAR, points VARCHAR) |
SELECT attendance FROM table_name_67 WHERE result = "l 31-0" | What was the attendance of the game that ended with L 31-0 | CREATE TABLE table_name_67 (attendance VARCHAR, result VARCHAR) |
SELECT economics FROM table_145439_1 WHERE education = "92.0" | what's the economics score with education being 92.0 | CREATE TABLE table_145439_1 (economics VARCHAR, education VARCHAR) |
SELECT MIN(laps) FROM table_name_36 WHERE driver = "mike spence" AND grid < 8 | What is the lowest Laps for mike spence, with a Grid smaller than 8? | CREATE TABLE table_name_36 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
SELECT MAX(year) FROM table_name_49 WHERE runner_s__up = "kathy whitworth" | When was the most recent year that kathy whitworth was the runner-up? | CREATE TABLE table_name_49 (year INTEGER, runner_s__up VARCHAR) |
SELECT date FROM table_name_53 WHERE away_team = "st kilda" | What day did St Kilda play as the away team? | CREATE TABLE table_name_53 (date VARCHAR, away_team VARCHAR) |
SELECT T1.first_name, T2.department_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id | Display the first name and department name for each employee. | CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, department_id VARCHAR) |
SELECT enrollment FROM table_name_35 WHERE university = "university of akron" | What was the university of akron's enrollment? | CREATE TABLE table_name_35 (enrollment VARCHAR, university VARCHAR) |
SELECT nationality FROM table_name_13 WHERE ranking = "3" | What was the nationality of the player ranking 3? | CREATE TABLE table_name_13 (nationality VARCHAR, ranking VARCHAR) |
SELECT SUM(silver) FROM table_name_14 WHERE total > 14 AND gold > 16 | What is the sum of silver medals for teams with more than 14 total medals and more than 16 golds? | CREATE TABLE table_name_14 (silver INTEGER, total VARCHAR, gold VARCHAR) |
SELECT T1.FirstName, T1.SupportRepId FROM CUSTOMER AS T1 JOIN EMPLOYEE AS T2 ON T1.SupportRepId = T2.EmployeeId GROUP BY T1.SupportRepId HAVING COUNT(*) >= 10 | Please show the employee first names and ids of employees who serve at least 10 customers. | CREATE TABLE CUSTOMER (FirstName VARCHAR, SupportRepId VARCHAR); CREATE TABLE EMPLOYEE (EmployeeId VARCHAR) |
SELECT SUM(goals) FROM table_name_16 WHERE date = "2007-06-16" | What is the sum of the goals on 2007-06-16? | CREATE TABLE table_name_16 (goals INTEGER, date VARCHAR) |
SELECT branding FROM table_23915973_1 WHERE power_kw = "5kW" | What is the radio station branding when the power km is 5kw? | CREATE TABLE table_23915973_1 (branding VARCHAR, power_kw VARCHAR) |
SELECT MAX(year) FROM table_12791809_1 WHERE road_closed = "April 13" | What is thea year the road closed April 13? | CREATE TABLE table_12791809_1 (year INTEGER, road_closed VARCHAR) |
SELECT away_team FROM table_name_48 WHERE home_team = "melbourne" | Who was Melbourne's away team opponent? | CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR) |
SELECT COUNT(roll) FROM table_name_21 WHERE name = "east gore school" | What is the roll number for East Gore School? | CREATE TABLE table_name_21 (roll VARCHAR, name VARCHAR) |
SELECT party FROM table_name_99 WHERE mayor = "ettore romoli" | Which party is Ettore Romoli from? | CREATE TABLE table_name_99 (party VARCHAR, mayor VARCHAR) |
SELECT round FROM table_25505246_8 WHERE against = "South Africa" | in what round types did the opponent come from south africa? | CREATE TABLE table_25505246_8 (round VARCHAR, against VARCHAR) |
SELECT best_finish FROM table_29499399_2 WHERE money_list_rank = "206" | What was the best finish for 206 on the money list? | CREATE TABLE table_29499399_2 (best_finish VARCHAR, money_list_rank VARCHAR) |
SELECT wicket FROM table_name_56 WHERE batting_partners = "mahela jayawardene and thilan samaraweera" | During what wicket were Mahela Jayawardene and Thilan Samaraweera batting partners? | CREATE TABLE table_name_56 (wicket VARCHAR, batting_partners VARCHAR) |
SELECT manufacturer FROM table_name_5 WHERE year > 1966 AND start < 5 AND team = "wood" AND finish = 35 | WHAT MANUFACTURER AFTER 1966 HAD A START SMALLER THAN 5, A WOOD TEAM AND FINISHED 35? | CREATE TABLE table_name_5 (manufacturer VARCHAR, finish VARCHAR, team VARCHAR, year VARCHAR, start VARCHAR) |
SELECT AVG(top_5) FROM table_name_61 WHERE top_25 = 1 AND wins < 0 | What is the mean number in the top 5 when the top 25 is 1 and there's fewer than 0 wins? | CREATE TABLE table_name_61 (top_5 INTEGER, top_25 VARCHAR, wins VARCHAR) |
SELECT character FROM table_name_91 WHERE episodes > 22 | What character is in over 22 episodes? | CREATE TABLE table_name_91 (character VARCHAR, episodes INTEGER) |
SELECT aid FROM Aircraft WHERE distance > 1000 | Show ids for all aircrafts with more than 1000 distance. | CREATE TABLE Aircraft (aid VARCHAR, distance INTEGER) |
SELECT 2006 FROM table_name_1 WHERE 2003 = "a" AND 2012 = "a" | Name the 2006 with 2003 of a and 2012 of a | CREATE TABLE table_name_1 (Id VARCHAR) |
SELECT incumbent FROM table_13833770_3 WHERE opponent = "Anthony Weiner (D) unopposed" | who is the the incumbent with opponent being anthony weiner (d) unopposed | CREATE TABLE table_13833770_3 (incumbent VARCHAR, opponent VARCHAR) |
SELECT party FROM table_22756549_1 WHERE runner_up_a = "A. Krishnaswamy" | What party was the winner when A. Krishnaswamy was the runner-up? | CREATE TABLE table_22756549_1 (party VARCHAR, runner_up_a VARCHAR) |
SELECT iata FROM table_name_30 WHERE city = "akureyri" | What is the IATA OF Akureyri? | CREATE TABLE table_name_30 (iata VARCHAR, city VARCHAR) |
SELECT circuit FROM table_name_77 WHERE session = "qualifying" | What circuit has qualifying as the session? | CREATE TABLE table_name_77 (circuit VARCHAR, session VARCHAR) |
SELECT reason FROM table_name_7 WHERE became_heir = "1103" | Which Reason is given when 1103 is the date for Became heir? | CREATE TABLE table_name_7 (reason VARCHAR, became_heir VARCHAR) |
SELECT runner_s__up FROM table_name_65 WHERE tournament = "general foods pga seniors' championship" | Which Runner(s)-up has a Tournament of general foods pga seniors' championship? | CREATE TABLE table_name_65 (runner_s__up VARCHAR, tournament VARCHAR) |
SELECT population_density___km_2__ FROM table_24574438_1 WHERE ds_division = "Manthai West" | Name the popultion density being manthai west | CREATE TABLE table_24574438_1 (population_density___km_2__ VARCHAR, ds_division VARCHAR) |
SELECT area_president__quorum_ FROM table_name_44 WHERE area_name = "south america south" | Name the area president when the area name is south america south | CREATE TABLE table_name_44 (area_president__quorum_ VARCHAR, area_name VARCHAR) |
SELECT high_assists FROM table_17355628_7 WHERE high_points = "Kevin Durant (28)" | Who did the High Assists when Kevin Durant (28) took the High Points? | CREATE TABLE table_17355628_7 (high_assists VARCHAR, high_points VARCHAR) |
SELECT tournament FROM table_25938117_1 WHERE location = "Dominican Republic" | Name the tournament for dominican republic | CREATE TABLE table_25938117_1 (tournament VARCHAR, location VARCHAR) |
SELECT SUM(grid) FROM table_name_2 WHERE time_retired = "clutch" | What Grid has a Time/Retired of clutch? | CREATE TABLE table_name_2 (grid INTEGER, time_retired VARCHAR) |
SELECT COUNT(*) FROM has_allergy AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.sex = "F" AND T1.allergy = "Milk" OR T1.allergy = "Eggs" | How many female students have milk or egg allergies? | CREATE TABLE Student (StuID VARCHAR, sex VARCHAR); CREATE TABLE has_allergy (StuID VARCHAR, allergy VARCHAR) |
SELECT SUM(grid) FROM table_name_91 WHERE laps > 14 AND driver = "alain prost" | What is the grid total for alain prost with over 14 laps? | CREATE TABLE table_name_91 (grid INTEGER, laps VARCHAR, driver VARCHAR) |
SELECT SUM(year) FROM table_name_56 WHERE partnering = "maikel scheffers" AND championship = "us open" | What year was the US Open that had a partnering of Maikel Scheffers? | CREATE TABLE table_name_56 (year INTEGER, partnering VARCHAR, championship VARCHAR) |
SELECT opponent FROM table_name_27 WHERE location = "winnipeg, manitoba , canada" | What is Opponent, when Location is "Winnipeg, Manitoba , Canada"? | CREATE TABLE table_name_27 (opponent VARCHAR, location VARCHAR) |
SELECT result FROM table_name_67 WHERE category = "outstanding director of a musical" | What was the result for the Outstanding director of a musical category? | CREATE TABLE table_name_67 (result VARCHAR, category VARCHAR) |
SELECT MAX(games_played) FROM table_name_9 WHERE receptions = 6 AND games_started = 10 AND fumbles < 3 | What are the highest number of games played that had game starts of 10, receptions of 6 and fumbles smaller than 3? | CREATE TABLE table_name_9 (games_played INTEGER, fumbles VARCHAR, receptions VARCHAR, games_started VARCHAR) |
SELECT episode_title FROM table_name_74 WHERE presenter = "ben okri" | What is the episode title of the episode with Ben Okri as the presenter? | CREATE TABLE table_name_74 (episode_title VARCHAR, presenter VARCHAR) |
SELECT place FROM table_name_14 WHERE score = 72 - 72 = 144 AND country = "united states" AND player = "scott mccarron" | What is Place, when Score is 72-72=144, when Country is United States, and when Player is Scott McCarron? | CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, country VARCHAR, score VARCHAR) |
SELECT SUM(budget) FROM department WHERE dept_name = 'Marketing' OR dept_name = 'Finance' | Find the total budgets of the Marketing or Finance department. | CREATE TABLE department (budget INTEGER, dept_name VARCHAR) |
SELECT country_or_region FROM table_24285393_1 WHERE highest_point = "Mont Sokbaro" | In what country is mont sokbaro a highest point | CREATE TABLE table_24285393_1 (country_or_region VARCHAR, highest_point VARCHAR) |
SELECT venue FROM table_name_33 WHERE date = "20 november 2002" | What is the venue of the game on 20 November 2002? | CREATE TABLE table_name_33 (venue VARCHAR, date VARCHAR) |
SELECT census_ranking FROM table_name_95 WHERE area_km_2 = 57.06 | Which census ranking is 57.06 km big? | CREATE TABLE table_name_95 (census_ranking VARCHAR, area_km_2 VARCHAR) |
SELECT COUNT(seats_in_congress) FROM table_2676980_4 WHERE candidates_per_party = 6 | What is the number of seats in congress when the candidates per party is 6? | CREATE TABLE table_2676980_4 (seats_in_congress VARCHAR, candidates_per_party VARCHAR) |
SELECT institution FROM table_261931_2 WHERE nickname = "Bobcats" | Which institution's nickname is the Bobcats? | CREATE TABLE table_261931_2 (institution VARCHAR, nickname VARCHAR) |
SELECT T3.Name 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 WHERE T2.value_points > 70 | Show names of technicians who are assigned to repair machines with value point more than 70. | CREATE TABLE machine (machine_id VARCHAR, value_points INTEGER); CREATE TABLE repair_assignment (machine_id VARCHAR, technician_ID VARCHAR); CREATE TABLE technician (Name VARCHAR, technician_ID VARCHAR) |
SELECT average_attendance FROM table_name_46 WHERE season = "2011" AND games < 519 AND _number_of_teams > 14 AND sport = "association football" | What was the average attendance of the 2011 season that had games smaller than 519 with several teams bigger than 14 that were also part of the sport of association football? | CREATE TABLE table_name_46 (average_attendance VARCHAR, sport VARCHAR, _number_of_teams VARCHAR, season VARCHAR, games VARCHAR) |
SELECT MIN(round) FROM table_name_9 WHERE pick > 7 AND name = "bob caldwell" AND overall > 162 | What is the lowest round of bob caldwell, who has a pick greater than 7 and an overall larger than 162? | CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR, pick VARCHAR, name VARCHAR) |
SELECT MAX(play_off) FROM table_14460937_1 WHERE group_stage = 4 | When the group stage has been 4 what is the largest playoff? | CREATE TABLE table_14460937_1 (play_off INTEGER, group_stage VARCHAR) |
SELECT player FROM table_22824297_1 WHERE hometown = "Carbondale, Illinois" | Who are all players from hometown of Carbondale, Illinois? | CREATE TABLE table_22824297_1 (player VARCHAR, hometown VARCHAR) |
SELECT MAX(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = "3.84" | Which episode number drew in 3.84 million viewers in the U.S.? | CREATE TABLE table_14929574_3 (series__number INTEGER, us_viewers__million_ VARCHAR) |
SELECT MIN(enrollment) FROM table_name_60 WHERE founded > 1809 AND institution = "university of michigan" | what is the least enrollment when founded after 1809 and the institution is university of michigan? | CREATE TABLE table_name_60 (enrollment INTEGER, founded VARCHAR, institution VARCHAR) |
SELECT series FROM table_name_70 WHERE opponent = "@ new york rangers" AND date = "april 22" | Which Series has an Opponent of @ new york rangers, and a Date of april 22? | CREATE TABLE table_name_70 (series VARCHAR, opponent VARCHAR, date VARCHAR) |
SELECT MIN(round) FROM table_name_68 WHERE player = "claude periard" | What is the lowest round for the player Claude Periard? | CREATE TABLE table_name_68 (round INTEGER, player VARCHAR) |
SELECT year__ceremony_ FROM table_name_62 WHERE result = "not nominated" AND film_title_used_in_nomination = "the color of fame" | What year has a not nominated result and a nomination title of "the color of fame"? | CREATE TABLE table_name_62 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR) |
SELECT MIN(gold) FROM table_name_37 WHERE rank = 4 AND silver < 1 | What is the Gold for the Nation in Rank 4 with less than 1 Silver? | CREATE TABLE table_name_37 (gold INTEGER, rank VARCHAR, silver VARCHAR) |
SELECT year FROM table_name_82 WHERE match = 63 | Which Year has a Match of 63? | CREATE TABLE table_name_82 (year VARCHAR, match VARCHAR) |
SELECT result FROM table_name_50 WHERE year < 2009 AND award = "mercury prize" | In what year, prior to 2009, was the Mercury Prize awarded? | CREATE TABLE table_name_50 (result VARCHAR, year VARCHAR, award VARCHAR) |
SELECT name FROM table_name_88 WHERE lane < 8 AND country = "russia" AND mark = "8.07" | Which name has a lane less than 8, russia as the country, with a mark of 8.07? | CREATE TABLE table_name_88 (name VARCHAR, mark VARCHAR, lane VARCHAR, country VARCHAR) |
SELECT tries FROM table_name_13 WHERE points = 20 | How many tries did the player have which ended with 20 Points? | CREATE TABLE table_name_13 (tries VARCHAR, points VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.