instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: How many FA trophies did Ceri Williams get with a smaller total than 19? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (fa_trophy VARCHAR, player VARCHAR, total VARCHAR) | SELECT COUNT(fa_trophy) FROM table_name_27 WHERE player = "ceri williams" AND total < 19 |
Write a SQL query that answers the following question: Which City has an Average of 6.85? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (city VARCHAR, average VARCHAR) | SELECT city FROM table_name_27 WHERE average = 6.85 |
Write a SQL query that answers the following question: What is the Average of bergen, norway? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_81 (average INTEGER, city VARCHAR) | SELECT MIN(average) FROM table_name_81 WHERE city = "bergen, norway" |
Write a SQL query that answers the following question: Which Comprehension of Danish has an Average smaller than 6.85, and a Comprehension of Norwegian of 4.13? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (comprehension_of_danish VARCHAR, average VARCHAR, comprehension_of_norwegian VARCHAR) | SELECT comprehension_of_danish FROM table_name_48 WHERE average < 6.85 AND comprehension_of_norwegian = "4.13" |
Write a SQL query that answers the following question: What are the Attendance numbers for november 18, 1990? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_38 WHERE date = "november 18, 1990" |
Write a SQL query that answers the following question: What is the Date for a week higher than 7 with a record of 9–1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (date VARCHAR, week VARCHAR, record VARCHAR) | SELECT date FROM table_name_68 WHERE week > 7 AND record = "9–1" |
Write a SQL query that answers the following question: What is the average week of a game on November 12, 1989? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_26 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_26 WHERE date = "november 12, 1989" |
Write a SQL query that answers the following question: What is the Set 5 with a Set 3 that is 25-23 and a Set 4 that is 23-25? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (set_5 VARCHAR, set_3 VARCHAR, set_4 VARCHAR) | SELECT set_5 FROM table_name_15 WHERE set_3 = "25-23" AND set_4 = "23-25" |
Write a SQL query that answers the following question: What is the sum of the Game with a Set 4 of 25-21 and a Set 3 of 25-23? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (game INTEGER, set_4 VARCHAR, set_3 VARCHAR) | SELECT SUM(game) FROM table_name_24 WHERE set_4 = "25-21" AND set_3 = "25-23" |
Write a SQL query that answers the following question: What is the Set 5 with a Game that is 59? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (set_5 VARCHAR, game VARCHAR) | SELECT set_5 FROM table_name_9 WHERE game = 59 |
Write a SQL query that answers the following question: What shows for nation when the Competition is preseason, Year less than 2011, and a Club of chivas de guadalajara? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (nation VARCHAR, club VARCHAR, competition VARCHAR, year VARCHAR) | SELECT nation FROM table_name_37 WHERE competition = "preseason" AND year < 2011 AND club = "chivas de guadalajara" |
Write a SQL query that answers the following question: What was the Result for the club universidad de guadalajara? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (result VARCHAR, club VARCHAR) | SELECT result FROM table_name_11 WHERE club = "club universidad de guadalajara" |
Write a SQL query that answers the following question: What is the Nation with 2012 as the year, and a Competition of preseason, and a Result of w 0–3? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_48 (nation VARCHAR, result VARCHAR, year VARCHAR, competition VARCHAR) | SELECT nation FROM table_name_48 WHERE year = 2012 AND competition = "preseason" AND result = "w 0–3" |
Write a SQL query that answers the following question: What is the average Year when the Competition was friendly, and a Club of everton? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (year INTEGER, competition VARCHAR, club VARCHAR) | SELECT AVG(year) FROM table_name_28 WHERE competition = "friendly" AND club = "everton" |
Write a SQL query that answers the following question: What is the Competition when the Club was costa rica u-20? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (competition VARCHAR, club VARCHAR) | SELECT competition FROM table_name_94 WHERE club = "costa rica u-20" |
Write a SQL query that answers the following question: What is the Club of mexico, Year of 2010, and a Competition of preseason, and a Result of w 0–1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (club VARCHAR, result VARCHAR, competition VARCHAR, nation VARCHAR, year VARCHAR) | SELECT club FROM table_name_8 WHERE nation = "mexico" AND year = 2010 AND competition = "preseason" AND result = "w 0–1" |
Write a SQL query that answers the following question: What is the lowest total when the nation is Sweden? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (total INTEGER, nation VARCHAR) | SELECT MIN(total) FROM table_name_23 WHERE nation = "sweden" |
Write a SQL query that answers the following question: What is the average Total when silver is less than 1, and the rank is 15? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (total INTEGER, silver VARCHAR, rank VARCHAR) | SELECT AVG(total) FROM table_name_12 WHERE silver < 1 AND rank = "15" |
Write a SQL query that answers the following question: What is the total number of Bronze when rank is 11, and the total is less than 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (bronze VARCHAR, rank VARCHAR, total VARCHAR) | SELECT COUNT(bronze) FROM table_name_8 WHERE rank = "11" AND total < 1 |
Write a SQL query that answers the following question: What year is the latest year that has no under director? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (year INTEGER, director VARCHAR) | SELECT MAX(year) FROM table_name_18 WHERE director = "no" |
Write a SQL query that answers the following question: With yes under writer and in 2014, what is the director? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (director VARCHAR, year VARCHAR, writer VARCHAR) | SELECT director FROM table_name_77 WHERE year = 2014 AND writer = "yes" |
Write a SQL query that answers the following question: Who is the writer of the film Run? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (writer VARCHAR, film VARCHAR) | SELECT writer FROM table_name_14 WHERE film = "run" |
Write a SQL query that answers the following question: What is the most goals made for a person with less than 208 matches and ranked lower than 12? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR) | SELECT MAX(goals) FROM table_name_94 WHERE matches < 208 AND rank > 12 |
Write a SQL query that answers the following question: In what years was there a rank lower than 9, under 84 goals, and more than 158 matches? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (years VARCHAR, goals VARCHAR, matches VARCHAR, rank VARCHAR) | SELECT years FROM table_name_63 WHERE matches > 158 AND rank > 9 AND goals < 84 |
Write a SQL query that answers the following question: What is the HDTV status of the r-light television service? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (hdtv VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_name_12 WHERE television_service = "r-light" |
Write a SQL query that answers the following question: Which television service has programmi per adulti 24h/24 content and no HDTV? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (television_service VARCHAR, content VARCHAR, hdtv VARCHAR) | SELECT television_service FROM table_name_41 WHERE content = "programmi per adulti 24h/24" AND hdtv = "no" |
Write a SQL query that answers the following question: Which television service has a qualsiasi package/option? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_27 (television_service VARCHAR, package_option VARCHAR) | SELECT television_service FROM table_name_27 WHERE package_option = "qualsiasi" |
Write a SQL query that answers the following question: What is the total number of wins for Darley of Ballarat FL against larger than 1055? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (wins VARCHAR, ballarat_fl VARCHAR, against VARCHAR) | SELECT COUNT(wins) FROM table_name_96 WHERE ballarat_fl = "darley" AND against > 1055 |
Write a SQL query that answers the following question: What is the lowest draw that has less than 4 wins, 14 losses, and against more than 1836? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR) | SELECT MIN(draws) FROM table_name_4 WHERE wins < 4 AND losses = 14 AND against > 1836 |
Write a SQL query that answers the following question: What is the average Byes that has Ballarat FL of Sunbury against more than 1167? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (byes INTEGER, ballarat_fl VARCHAR, against VARCHAR) | SELECT AVG(byes) FROM table_name_70 WHERE ballarat_fl = "sunbury" AND against > 1167 |
Write a SQL query that answers the following question: What is the average draws with more than 1 win, 14 losses, and against less than 1836? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_17 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR) | SELECT AVG(draws) FROM table_name_17 WHERE wins > 1 AND losses = 14 AND against < 1836 |
Write a SQL query that answers the following question: What was the lowest draw from Ballarat FL of sunbury, and byes larger than 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_94 (draws INTEGER, ballarat_fl VARCHAR, byes VARCHAR) | SELECT MIN(draws) FROM table_name_94 WHERE ballarat_fl = "sunbury" AND byes > 2 |
Write a SQL query that answers the following question: Which away has apoel as the club? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (away VARCHAR, club VARCHAR) | SELECT away FROM table_name_41 WHERE club = "apoel" |
Write a SQL query that answers the following question: Which away has uefa cup as the competition, group f as the round, with espanyol as the club? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (away VARCHAR, club VARCHAR, competition VARCHAR, round VARCHAR) | SELECT away FROM table_name_6 WHERE competition = "uefa cup" AND round = "group f" AND club = "espanyol" |
Write a SQL query that answers the following question: In what location were the fatalities unknown for the Ju-52 aircraft? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_12 (location VARCHAR, fatalities VARCHAR, aircraft VARCHAR) | SELECT location FROM table_name_12 WHERE fatalities = "unknown" AND aircraft = "ju-52" |
Write a SQL query that answers the following question: In what location was the tail number ZS-SPF? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (location VARCHAR, tail_number VARCHAR) | SELECT location FROM table_name_83 WHERE tail_number = "zs-spf" |
Write a SQL query that answers the following question: What was the location of the Ju-52 aircraft? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (location VARCHAR, aircraft VARCHAR) | SELECT location FROM table_name_61 WHERE aircraft = "ju-52" |
Write a SQL query that answers the following question: How many fatalities occurred for an unknown tail number? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (fatalities VARCHAR, tail_number VARCHAR) | SELECT fatalities FROM table_name_60 WHERE tail_number = "unknown" |
Write a SQL query that answers the following question: What was the tail number with 3/3 fatalities? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_32 (tail_number VARCHAR, fatalities VARCHAR) | SELECT tail_number FROM table_name_32 WHERE fatalities = "3/3" |
Write a SQL query that answers the following question: How many fatalities occurred for the Ju-52 aircraft? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_18 (fatalities VARCHAR, aircraft VARCHAR) | SELECT fatalities FROM table_name_18 WHERE aircraft = "ju-52" |
Write a SQL query that answers the following question: What was the score for a goal of 6? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (score VARCHAR, goal VARCHAR) | SELECT score FROM table_name_57 WHERE goal = 6 |
Write a SQL query that answers the following question: Where was the match held on July 17, 1999? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_43 WHERE date = "july 17, 1999" |
Write a SQL query that answers the following question: Who was on the Democratic ticket for the Office of Attorney General? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (democratic_ticket VARCHAR, office VARCHAR) | SELECT democratic_ticket FROM table_name_70 WHERE office = "attorney general" |
Write a SQL query that answers the following question: What name has gen et sp nov as the novelty? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (name VARCHAR, novelty VARCHAR) | SELECT name FROM table_name_56 WHERE novelty = "gen et sp nov" |
Write a SQL query that answers the following question: What authors have clarno formation as the unit, actinidia oregonensis as the name? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_55 (authors VARCHAR, unit VARCHAR, name VARCHAR) | SELECT authors FROM table_name_55 WHERE unit = "clarno formation" AND name = "actinidia oregonensis" |
Write a SQL query that answers the following question: What novelty has USA as the location, and coryloides as the name? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (novelty VARCHAR, location VARCHAR, name VARCHAR) | SELECT novelty FROM table_name_70 WHERE location = "usa" AND name = "coryloides" |
Write a SQL query that answers the following question: What status has paleopanax as the name? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (status VARCHAR, name VARCHAR) | SELECT status FROM table_name_78 WHERE name = "paleopanax" |
Write a SQL query that answers the following question: What unit has gen et sp nov as the novelty? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_51 (unit VARCHAR, novelty VARCHAR) | SELECT unit FROM table_name_51 WHERE novelty = "gen et sp nov" |
Write a SQL query that answers the following question: Which date was the Memorial Tournament held on, when Payne Stewart was runner-up? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_40 (date VARCHAR, tournament VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_40 WHERE tournament = "memorial tournament" AND runner_s__up = "payne stewart" |
Write a SQL query that answers the following question: What is the 2007-08 result when the event was Colonial Square? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (event VARCHAR) | SELECT 2007 AS _08 FROM table_name_74 WHERE event = "colonial square" |
Write a SQL query that answers the following question: What is the 2008-09 result has Masters as the event? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (event VARCHAR) | SELECT 2008 AS _09 FROM table_name_58 WHERE event = "masters" |
Write a SQL query that answers the following question: What year gave a nominated result for the room 222 series? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (year VARCHAR, result VARCHAR, series VARCHAR) | SELECT COUNT(year) FROM table_name_66 WHERE result = "nominated" AND series = "room 222" |
Write a SQL query that answers the following question: What was actor Teresa Graves's series before the year 1993? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_82 (series VARCHAR, year VARCHAR, actor VARCHAR) | SELECT series FROM table_name_82 WHERE year < 1993 AND actor = "teresa graves" |
Write a SQL query that answers the following question: Which motor's quantity was more than 8, and a class of bs 1915? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (motor VARCHAR, quantity VARCHAR, class VARCHAR) | SELECT motor FROM table_name_57 WHERE quantity > 8 AND class = "bs 1915" |
Write a SQL query that answers the following question: Which motor's class was bs 1910? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_84 (motor VARCHAR, class VARCHAR) | SELECT motor FROM table_name_84 WHERE class = "bs 1910" |
Write a SQL query that answers the following question: What is the quantity when the seats number was 16 and the class was kss 1913? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_67 (quantity VARCHAR, seats VARCHAR, class VARCHAR) | SELECT quantity FROM table_name_67 WHERE seats = 16 AND class = "kss 1913" |
Write a SQL query that answers the following question: What is the Root of All Evil with an Original air date that is september 3, 2008? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (root_of_all_evil VARCHAR, original_air_date VARCHAR) | SELECT root_of_all_evil FROM table_name_33 WHERE original_air_date = "september 3, 2008" |
Write a SQL query that answers the following question: Goals Conceded (GC) that has a Draw (PE) larger than 2, and a Goals Scored (GF) larger than 19? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR) | SELECT MAX(goals_conceded__gc_) FROM table_name_33 WHERE draw__pe_ > 2 AND goals_scored__gf_ > 19 |
Write a SQL query that answers the following question: What is the number for the University of Dublin with their Cultural and Educational Panel of 5, and an Industrial and Commercial Panel with less than 9? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (university_of_dublin VARCHAR, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) | SELECT COUNT(university_of_dublin) FROM table_name_46 WHERE cultural_and_educational_panel = 5 AND industrial_and_commercial_panel < 9 |
Write a SQL query that answers the following question: Which Rank has a Losing Semi- finalist larger than 1, and a Winner smaller than 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (rank VARCHAR, losing_semi__finalist VARCHAR, winner VARCHAR) | SELECT rank FROM table_name_79 WHERE losing_semi__finalist > 1 AND winner < 5 |
Write a SQL query that answers the following question: Which Rank has a Country of costa rica, and a Losing Semi- finalist larger than 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (rank INTEGER, country VARCHAR, losing_semi__finalist VARCHAR) | SELECT AVG(rank) FROM table_name_78 WHERE country = "costa rica" AND losing_semi__finalist > 1 |
Write a SQL query that answers the following question: Which Rank has a Runner -up smaller than 0? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (rank INTEGER, runner__up INTEGER) | SELECT MAX(rank) FROM table_name_31 WHERE runner__up < 0 |
Write a SQL query that answers the following question: What Year was the United States the country for aug 3–5? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (year VARCHAR, country VARCHAR, dates VARCHAR) | SELECT year FROM table_name_64 WHERE country = "united states" AND dates = "aug 3–5" |
Write a SQL query that answers the following question: What is the highest Purse for aug 3–5? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (purse__ INTEGER, dates VARCHAR) | SELECT MAX(purse__) AS $_ FROM table_name_80 WHERE dates = "aug 3–5" |
Write a SQL query that answers the following question: Which country has a qualsiasi tranne sky hd package/option? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (country VARCHAR, package_option VARCHAR) | SELECT country FROM table_name_21 WHERE package_option = "qualsiasi tranne sky hd" |
Write a SQL query that answers the following question: Which package/option has sky wwe 24/7 television service? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_name_99 WHERE television_service = "sky wwe 24/7" |
Write a SQL query that answers the following question: What is the package/option for the calcio content? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_53 (package_option VARCHAR, content VARCHAR) | SELECT package_option FROM table_name_53 WHERE content = "calcio" |
Write a SQL query that answers the following question: What is the language of the television service cartello promozionale sky hd? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_50 (language VARCHAR, television_service VARCHAR) | SELECT language FROM table_name_50 WHERE television_service = "cartello promozionale sky hd" |
Write a SQL query that answers the following question: What kind of bike had a grid less than 23, an accident under time, and Graeme Gowland as a rider? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (bike VARCHAR, rider VARCHAR, grid VARCHAR, time VARCHAR) | SELECT bike FROM table_name_7 WHERE grid < 23 AND time = "accident" AND rider = "graeme gowland" |
Write a SQL query that answers the following question: Who was the rider with more than 5 laps on a grid bigger than 29 on a Honda CBR600RR and time at +1:27.385? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (rider VARCHAR, time VARCHAR, bike VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT rider FROM table_name_88 WHERE laps > 5 AND grid > 29 AND bike = "honda cbr600rr" AND time = "+1:27.385" |
Write a SQL query that answers the following question: Who was the rider with a grid of 36? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_39 (rider VARCHAR, grid VARCHAR) | SELECT rider FROM table_name_39 WHERE grid = 36 |
Write a SQL query that answers the following question: Which bike had a grid less than 35 and time at 37:58.607? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_13 (bike VARCHAR, grid VARCHAR, time VARCHAR) | SELECT bike FROM table_name_13 WHERE grid < 35 AND time = "37:58.607" |
Write a SQL query that answers the following question: What is Result, when Director is Veljko Bulajić category:articles with hcards, and when Original title is Sarajevski Atentat? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (result VARCHAR, director VARCHAR, original_title VARCHAR) | SELECT result FROM table_name_46 WHERE director = "veljko bulajić category:articles with hcards" AND original_title = "sarajevski atentat" |
Write a SQL query that answers the following question: What is Result, when Director is Mirza Idrizović category:articles with hcards? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_78 (result VARCHAR, director VARCHAR) | SELECT result FROM table_name_78 WHERE director = "mirza idrizović category:articles with hcards" |
Write a SQL query that answers the following question: What is Original title, when Film title used in nomination is Train Without A Timetable? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT original_title FROM table_name_35 WHERE film_title_used_in_nomination = "train without a timetable" |
Write a SQL query that answers the following question: What is Original title, when Director is Veljko Bulajić category:articles with hcards, and when Film title used in nomination is Train Without A Timetable? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_35 (original_title VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT original_title FROM table_name_35 WHERE director = "veljko bulajić category:articles with hcards" AND film_title_used_in_nomination = "train without a timetable" |
Write a SQL query that answers the following question: What is Film title used in nomination, when Year (Ceremony) is 1968 (41st)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (film_title_used_in_nomination VARCHAR, year__ceremony_ VARCHAR) | SELECT film_title_used_in_nomination FROM table_name_47 WHERE year__ceremony_ = "1968 (41st)" |
Write a SQL query that answers the following question: What is Director, when Result is nominee, and when Year (Ceremony) is 1969 (42nd)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (director VARCHAR, result VARCHAR, year__ceremony_ VARCHAR) | SELECT director FROM table_name_65 WHERE result = "nominee" AND year__ceremony_ = "1969 (42nd)" |
Write a SQL query that answers the following question: Which name's height in centimeters is 178 when its weight in kilograms is less than 91? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (name VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR) | SELECT name FROM table_name_24 WHERE height__cm_ = 178 AND weight__kg_ < 91 |
Write a SQL query that answers the following question: What is the name of the player with the High points when there was a Record of 31–48? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (high_points VARCHAR, record VARCHAR) | SELECT high_points FROM table_name_66 WHERE record = "31–48" |
Write a SQL query that answers the following question: What is the name of the player with the High rebounds when there was a Score of l 108–114 (ot)? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (high_rebounds VARCHAR, score VARCHAR) | SELECT high_rebounds FROM table_name_25 WHERE score = "l 108–114 (ot)" |
Write a SQL query that answers the following question: What is the Lead for the 1999–00 season? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (lead VARCHAR, season VARCHAR) | SELECT lead FROM table_name_87 WHERE season = "1999–00" |
Write a SQL query that answers the following question: What is the Second when the third is don walchuk? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR) | SELECT second FROM table_name_91 WHERE third = "don walchuk" |
Write a SQL query that answers the following question: What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (season VARCHAR, second VARCHAR, lead VARCHAR, third VARCHAR) | SELECT season FROM table_name_63 WHERE lead = "don bartlett" AND third = "don walchuk" AND second = "carter rycroft" |
Write a SQL query that answers the following question: What is the Skip when the Third was john morris? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_61 (skip VARCHAR, third VARCHAR) | SELECT skip FROM table_name_61 WHERE third = "john morris" |
Write a SQL query that answers the following question: What is the Third when the Lead was don bartlett, the Second was carter rycroft, and a Season of 2003–04? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (third VARCHAR, season VARCHAR, lead VARCHAR, second VARCHAR) | SELECT third FROM table_name_23 WHERE lead = "don bartlett" AND second = "carter rycroft" AND season = "2003–04" |
Write a SQL query that answers the following question: What is the Lead when the Second was marc kennedy, in the 2012–13 season? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_66 (lead VARCHAR, second VARCHAR, season VARCHAR) | SELECT lead FROM table_name_66 WHERE second = "marc kennedy" AND season = "2012–13" |
Write a SQL query that answers the following question: What is the name of the city with a capacity of 41,311? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (city VARCHAR, capacity VARCHAR) | SELECT city FROM table_name_97 WHERE capacity = "41,311" |
Write a SQL query that answers the following question: What is the State with Suwon as the city | The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (state VARCHAR, city VARCHAR) | SELECT state FROM table_name_37 WHERE city = "suwon" |
Write a SQL query that answers the following question: What is the State with a home venue of suwon sports complex? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (state VARCHAR, home_venue VARCHAR) | SELECT state FROM table_name_43 WHERE home_venue = "suwon sports complex" |
Write a SQL query that answers the following question: What is the team name for Chungju? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (team VARCHAR, city VARCHAR) | SELECT team FROM table_name_11 WHERE city = "chungju" |
Write a SQL query that answers the following question: What is the Team with a venue of Anyang Stadium? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (team VARCHAR, home_venue VARCHAR) | SELECT team FROM table_name_96 WHERE home_venue = "anyang stadium" |
Write a SQL query that answers the following question: What is the State with Gwangju Fc as the team? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_10 (state VARCHAR, team VARCHAR) | SELECT state FROM table_name_10 WHERE team = "gwangju fc" |
Write a SQL query that answers the following question: What is the To par, when the Player is Loren Roberts? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_72 WHERE player = "loren roberts" |
Write a SQL query that answers the following question: What is the To par, when the Score is 68-71-69=208? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_1 (to_par VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_1 WHERE score = 68 - 71 - 69 = 208 |
Write a SQL query that answers the following question: What is the Place, when the Score is 68-70-71=209? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_19 WHERE score = 68 - 70 - 71 = 209 |
Write a SQL query that answers the following question: What is the Place, when the Player is Chris Dimarco? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_8 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_8 WHERE player = "chris dimarco" |
Write a SQL query that answers the following question: What is the Score, when the Country is United States, when the Place is T3, and when the Player is Chris Riley? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR) | SELECT score FROM table_name_38 WHERE country = "united states" AND place = "t3" AND player = "chris riley" |
Write a SQL query that answers the following question: What is the score where the opponent was Mardy Fish? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_68 WHERE opponent = "mardy fish" |
Write a SQL query that answers the following question: What surface was played on with a score of 6–4, 6–3 and on 4 May 1992? | The relevant table was constructed using the following SQL : CREATE TABLE table_name_36 (surface VARCHAR, score VARCHAR, date VARCHAR) | SELECT surface FROM table_name_36 WHERE score = "6–4, 6–3" AND date = "4 may 1992" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.