answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT team FROM table_27700375_6 WHERE high_points = "Anthony Morrow (24)"
If the high points were by Anthony Morrow (24), what was the team?
CREATE TABLE table_27700375_6 (team VARCHAR, high_points VARCHAR)
SELECT MIN(wins) FROM table_1012730_1 WHERE year = 1983
How many wins happened in 1983?
CREATE TABLE table_1012730_1 (wins INTEGER, year VARCHAR)
SELECT decision FROM table_name_83 WHERE record = "7-7-2"
Who had the decision goal when the record was 7-7-2?
CREATE TABLE table_name_83 (decision VARCHAR, record VARCHAR)
SELECT COUNT(rank) FROM table_name_63 WHERE wins > 16 AND country = "australia"
What is the player from Australia's rank with more than 16 wins?
CREATE TABLE table_name_63 (rank VARCHAR, wins VARCHAR, country VARCHAR)
SELECT date FROM table_name_62 WHERE round = "1r" AND result = "2–6, 5–7, 2–6"
On what date did the match take place in a round of 1r and have a result 2–6, 5–7, 2–6?
CREATE TABLE table_name_62 (date VARCHAR, round VARCHAR, result VARCHAR)
SELECT COUNT(train_name) FROM table_29301050_1 WHERE train_number = 99808
how many trains have the number 99808
CREATE TABLE table_29301050_1 (train_name VARCHAR, train_number VARCHAR)
SELECT player FROM table_name_53 WHERE college = "ohio state"
Who went to ohio state?
CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR)
SELECT margin_of_victory FROM table_name_6 WHERE tournament = "ebel european masters swiss open"
What was Olazabal's margin of victory int he Ebel European Masters Swiss Open?
CREATE TABLE table_name_6 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT flag FROM table_name_52 WHERE name = "terkoeli"
What is the flag for Terkoeli?
CREATE TABLE table_name_52 (flag VARCHAR, name VARCHAR)
SELECT opponent FROM table_name_4 WHERE attendance = "78,883"
Which Opponent had an Attendance of 78,883?
CREATE TABLE table_name_4 (opponent VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_64 WHERE date = "september 29, 2003"
What was the Score on September 29, 2003?
CREATE TABLE table_name_64 (score VARCHAR, date VARCHAR)
SELECT money___$__ FROM table_name_2 WHERE to_par = "e"
What is the Money ($) amount of the Player with a To par of e?
CREATE TABLE table_name_2 (money___$__ VARCHAR, to_par VARCHAR)
SELECT score FROM table_name_48 WHERE loss = "williams (1-1)"
What was the score of the game that had a loss of Williams (1-1)?
CREATE TABLE table_name_48 (score VARCHAR, loss VARCHAR)
SELECT producer_s_ FROM table_name_50 WHERE director_s_ = "daniel cormack"
Which producer did Daniel Cormack direct?
CREATE TABLE table_name_50 (producer_s_ VARCHAR, director_s_ VARCHAR)
SELECT language_rebroadcast FROM table_name_30 WHERE branding = "cbc radio one"
what is the language/rebroadcast for cbc radio one?
CREATE TABLE table_name_30 (language_rebroadcast VARCHAR, branding VARCHAR)
SELECT AVG(attendance) FROM table_name_63 WHERE opponents = 38 AND falcons_points < 14
What is the average attendance of the game with 38 opponent and less than 14 Falcons points?
CREATE TABLE table_name_63 (attendance INTEGER, opponents VARCHAR, falcons_points VARCHAR)
SELECT COUNT(year) FROM table_name_8 WHERE events_won_by_kclMS < 7
How many years were the events won by KCLMS less than 7?
CREATE TABLE table_name_8 (year VARCHAR, events_won_by_kclMS INTEGER)
SELECT regular_season_winner FROM table_22779004_1 WHERE conference = "Missouri Valley conference"
Who won the regular season when Missouri Valley Conference took place?
CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR, conference VARCHAR)
SELECT construction AS date FROM table_22180353_1 WHERE registration = "HB-HOS"
What is every construction date for the registration of HB-HOS?
CREATE TABLE table_22180353_1 (construction VARCHAR, registration VARCHAR)
SELECT country FROM table_name_50 WHERE swimsuit < 9.033 AND interview = 8.611 AND preliminary < 8.87
What is the name of the country with less than 9.033 for swimsuit, 8.611 for interview and preliminary is less than 8.87?
CREATE TABLE table_name_50 (country VARCHAR, preliminary VARCHAR, swimsuit VARCHAR, interview VARCHAR)
SELECT first_season_in_top_division FROM table_18143210_2 WHERE club = "UNAM"
When did the club UNAM played the first season in top division?
CREATE TABLE table_18143210_2 (first_season_in_top_division VARCHAR, club VARCHAR)
SELECT MAX(events) FROM table_name_22 WHERE earnings = "$113,259" AND average > 229.5
Which Events has Earnings of $113,259, and an Average larger than 229.5?
CREATE TABLE table_name_22 (events INTEGER, earnings VARCHAR, average VARCHAR)
SELECT imperative FROM table_name_94 WHERE måcha = "3.sg"
What imperative has måcha as 3.sg?
CREATE TABLE table_name_94 (imperative VARCHAR, måcha VARCHAR)
SELECT winning_team FROM table_name_79 WHERE date = "22 july"
What Winning team has 22 July as a Date?
CREATE TABLE table_name_79 (winning_team VARCHAR, date VARCHAR)
SELECT id FROM station WHERE lat > 37.4 EXCEPT SELECT station_id FROM status GROUP BY station_id HAVING MIN(bikes_available) < 7
What are the ids of stations that have latitude above 37.4 and never had bike availability below 7?
CREATE TABLE status (id VARCHAR, station_id VARCHAR, lat INTEGER, bikes_available INTEGER); CREATE TABLE station (id VARCHAR, station_id VARCHAR, lat INTEGER, bikes_available INTEGER)
SELECT original_air_date FROM table_26914076_3 WHERE directed_by = "Rob Bailey"
What is the date the episode directed by rob bailey aired?
CREATE TABLE table_26914076_3 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT Name FROM ship WHERE Nationality <> "United States"
List the name of ships whose nationality is not "United States".
CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR)
SELECT player FROM table_name_40 WHERE econ = "4.23"
Tell me the player with econ of 4.23
CREATE TABLE table_name_40 (player VARCHAR, econ VARCHAR)
SELECT result FROM table_name_62 WHERE interim_head_coach = "gary darnell"
What was the result under interim head coach, Gary Darnell?
CREATE TABLE table_name_62 (result VARCHAR, interim_head_coach VARCHAR)
SELECT tv_time FROM table_name_91 WHERE date = "december 22, 1996"
What is TV Time, when Date is December 22, 1996?
CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR)
SELECT MIN(edition) FROM table_name_13 WHERE winner = "arsenal" AND third = "celtic"
Tell me the lowest edition for winner of arsenal and third of celtic
CREATE TABLE table_name_13 (edition INTEGER, winner VARCHAR, third VARCHAR)
SELECT name FROM table_name_17 WHERE website = "liderinformativo.com"
What is the name of the newspaper with the website liderinformativo.com ?
CREATE TABLE table_name_17 (name VARCHAR, website VARCHAR)
SELECT SUM(margin) FROM table_name_40 WHERE country = "canada"
What is canada's margin?
CREATE TABLE table_name_40 (margin INTEGER, country VARCHAR)
SELECT screen_size, pixels FROM table_name_28 WHERE dimensions_w×h×d__mm_ = "98×64.5×41" AND model = "p5000"
What is the screen size and pixel amount of model p5000 when the dimensions are 98×64.5×41?
CREATE TABLE table_name_28 (screen_size VARCHAR, pixels VARCHAR, dimensions_w×h×d__mm_ VARCHAR, model VARCHAR)
SELECT COUNT(date) FROM table_name_37 WHERE category = "ladies" AND team = "rothaus-cube"
How many dates does the ladies category correspond to Rothaus-Cube?
CREATE TABLE table_name_37 (date VARCHAR, category VARCHAR, team VARCHAR)
SELECT talent__male_ FROM table_name_39 WHERE year = 1991
Who is the male talent in 1991?
CREATE TABLE table_name_39 (talent__male_ VARCHAR, year VARCHAR)
SELECT road_team FROM table_name_89 WHERE result = "118-112"
Who was the Road Team for the game ending with a score of 118-112?
CREATE TABLE table_name_89 (road_team VARCHAR, result VARCHAR)
SELECT team FROM table_1405704_1 WHERE winning_driver = "Al Unser"
What team does Al Unser drive for?
CREATE TABLE table_1405704_1 (team VARCHAR, winning_driver VARCHAR)
SELECT player FROM table_name_90 WHERE school = "western washington university" AND position = "midfield" AND year > 2009
Which player was from Western Washington University, played midfield, and was from years after 2009?
CREATE TABLE table_name_90 (player VARCHAR, year VARCHAR, school VARCHAR, position VARCHAR)
SELECT T2.student_id FROM courses AS T1 JOIN student_course_registrations AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = "statistics" ORDER BY T2.registration_date
List the id of students who registered course statistics in the order of registration date.
CREATE TABLE student_course_registrations (student_id VARCHAR, course_id VARCHAR, registration_date VARCHAR); CREATE TABLE courses (course_id VARCHAR, course_name VARCHAR)
SELECT score FROM table_name_2 WHERE surface = "hard" AND opponent_in_the_final = "elena likhovtseva"
What is the score of the match played on a hard surface with an opponent in the final of Elena Likhovtseva?
CREATE TABLE table_name_2 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT class FROM table_name_6 WHERE chassis = "dallara f308" AND rounds = "all" AND driver = "sam abay"
what is the class when the chassis is dallara f308, rounds is all and the driver is sam abay?
CREATE TABLE table_name_6 (class VARCHAR, driver VARCHAR, chassis VARCHAR, rounds VARCHAR)
SELECT position FROM table_name_24 WHERE pick < 15 AND college = "rice"
What position did the player from Rice College play who was picked under 15?
CREATE TABLE table_name_24 (position VARCHAR, pick VARCHAR, college VARCHAR)
SELECT format FROM table_1949994_8 WHERE local_title = "Fort Boyard: Ultimate Challenge"
What was the production format for the series with the local title Fort Boyard: Ultimate Challenge?
CREATE TABLE table_1949994_8 (format VARCHAR, local_title VARCHAR)
SELECT primary_sponsor_s_ FROM table_19908313_2 WHERE crew_chief = "Rick Ren"
Who is the primary sponsor for crew cheif Rick Ren's team?
CREATE TABLE table_19908313_2 (primary_sponsor_s_ VARCHAR, crew_chief VARCHAR)
SELECT SUM(level) FROM table_name_7 WHERE season = 2007
what is the total levels in 2007?
CREATE TABLE table_name_7 (level INTEGER, season VARCHAR)
SELECT speed FROM table_name_10 WHERE race = "superbike"
What was the speed of the Superbike race?
CREATE TABLE table_name_10 (speed VARCHAR, race VARCHAR)
SELECT MAX(goal_difference) FROM table_name_77 WHERE points = 28 AND club = "cd cartagena" AND losses > 15
Which Goal Difference has 28 Points, and a Club of cd cartagena, more than 15 losses?
CREATE TABLE table_name_77 (goal_difference INTEGER, losses VARCHAR, points VARCHAR, club VARCHAR)
SELECT COUNT(high_rebounds) FROM table_23286223_5 WHERE game = 26
How many different high rebound results are there for the game number 26?
CREATE TABLE table_23286223_5 (high_rebounds VARCHAR, game VARCHAR)
SELECT AVG(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore"
What is the average age of the members of the club "Bootup Baltimore"?
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)
SELECT score FROM table_name_73 WHERE surface = "hard" AND opponent_in_the_final = "alicia pillay"
What is the Score when the opponent in the final is alicia pillay on a hard surface?
CREATE TABLE table_name_73 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT s390x FROM table_name_21 WHERE ia64 = "yes" AND alpha = "no"
Which s390x contains a yes ia64 and a no for alpha?
CREATE TABLE table_name_21 (s390x VARCHAR, ia64 VARCHAR, alpha VARCHAR)
SELECT MIN(length__km_) FROM table_name_38 WHERE name = "north klondike highway" AND length__mi_ < 326
What's the shortest length from north klondike highway that has a length less than 326?
CREATE TABLE table_name_38 (length__km_ INTEGER, name VARCHAR, length__mi_ VARCHAR)
SELECT rank FROM table_name_85 WHERE mark = "nm" AND nationality = "india"
What rank has a mark of NM and is from India?
CREATE TABLE table_name_85 (rank VARCHAR, mark VARCHAR, nationality VARCHAR)
SELECT 1992 FROM table_name_29 WHERE 1990 = "grand slams"
What is 1992, when 1990 is "Grand Slams"?
CREATE TABLE table_name_29 (Id VARCHAR)
SELECT to_par FROM table_name_29 WHERE player = "fuzzy zoeller"
What is Fuzzy Zoeller's To par?
CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR)
SELECT manuals FROM table_name_31 WHERE opus = "135"
What manuals have the opus of 135?
CREATE TABLE table_name_31 (manuals VARCHAR, opus VARCHAR)
SELECT T1.product_category_description FROM ref_product_categories AS T1 JOIN products AS T2 ON T1.product_category_code = T2.product_category_code WHERE T2.product_description LIKE '%t%'
Find the category descriptions of the products whose descriptions include letter 't'.
CREATE TABLE ref_product_categories (product_category_description VARCHAR, product_category_code VARCHAR); CREATE TABLE products (product_category_code VARCHAR, product_description VARCHAR)
SELECT COUNT(roll) FROM table_name_7 WHERE name = "shelly park school"
What is the total number on roll for Shelly Park school?
CREATE TABLE table_name_7 (roll VARCHAR, name VARCHAR)
SELECT race_title FROM table_name_6 WHERE winner = "george fury" AND circuit = "oran park raceway"
What title did George Fury win when on the Oran Park Raceway?
CREATE TABLE table_name_6 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR)
SELECT original_title FROM table_name_67 WHERE film_title_used_in_nomination = "gypsy magic"
What is the original title of the Gypsy Magic film title used in nomination?
CREATE TABLE table_name_67 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT ihsaa_class FROM table_name_80 WHERE _number___county = "12 clinton" AND mascot = "hornets"
What IHSAA clas is the school with a county number of 12 clinton and the hornets as their mascot?
CREATE TABLE table_name_80 (ihsaa_class VARCHAR, _number___county VARCHAR, mascot VARCHAR)
SELECT club FROM table_name_67 WHERE date_of_appointment = "1 november 2007"
Name the club with date of appointment of 1 november 2007
CREATE TABLE table_name_67 (club VARCHAR, date_of_appointment VARCHAR)
SELECT job_id FROM job_history WHERE end_date - start_date > 300 GROUP BY job_id HAVING COUNT(*) >= 2
display job ID for those jobs that were done by two or more for more than 300 days.
CREATE TABLE job_history (job_id VARCHAR, end_date VARCHAR, start_date VARCHAR)
SELECT record FROM table_name_33 WHERE loss = "stottlemyre (10-12)"
What was the record of the game that had a loss of Stottlemyre (10-12)?
CREATE TABLE table_name_33 (record VARCHAR, loss VARCHAR)
SELECT COUNT(round) FROM table_name_65 WHERE res = "win" AND event = "sf 5: stadium"
What's the total number of rounds with a win result at the sf 5: stadium event?
CREATE TABLE table_name_65 (round VARCHAR, res VARCHAR, event VARCHAR)
SELECT Author FROM submission WHERE NOT Submission_ID IN (SELECT Submission_ID FROM acceptance)
List the authors who do not have submission to any workshop.
CREATE TABLE acceptance (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR)
SELECT Author FROM submission ORDER BY Scores DESC LIMIT 1
What is the author of the submission with the highest score?
CREATE TABLE submission (Author VARCHAR, Scores VARCHAR)
SELECT val_de_marne FROM table_name_52 WHERE seine_saint_denis = "4.0%"
WHAT IS Val-de-Marne WITH Seine-Saint-Denis of 4.0%?
CREATE TABLE table_name_52 (val_de_marne VARCHAR, seine_saint_denis VARCHAR)
SELECT time FROM table_name_11 WHERE round < 3 AND opponent = "bao quach"
Which Time has a Round smaller than 3, and an Opponent of bao quach?
CREATE TABLE table_name_11 (time VARCHAR, round VARCHAR, opponent VARCHAR)
SELECT born_state FROM head GROUP BY born_state HAVING COUNT(*) >= 3
What are the names of the states where at least 3 heads were born?
CREATE TABLE head (born_state VARCHAR)
SELECT date FROM table_name_44 WHERE record = "9-14"
On what date did the Cavaliers have a record of 9-14?
CREATE TABLE table_name_44 (date VARCHAR, record VARCHAR)
SELECT record FROM table_14951643_1 WHERE result = "W 21–7"
what's the record with result being w 21–7
CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR)
SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 38
What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?
CREATE TABLE table_name_19 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR)
SELECT matches FROM table_name_43 WHERE wins = "1" AND name = "mohammad al-shamlan"
How many matches has Mohammad Al-Shamlan played when there is 1 win?
CREATE TABLE table_name_43 (matches VARCHAR, wins VARCHAR, name VARCHAR)
SELECT COUNT(failures) FROM table_name_92 WHERE successes > 3 AND type = "ariane 5" AND partial_failures > 0
What's the total failures among rockets that had more than 3 successes, type ariane 5 and more than 0 partial failures?
CREATE TABLE table_name_92 (failures VARCHAR, partial_failures VARCHAR, successes VARCHAR, type VARCHAR)
SELECT late_middle_english FROM table_28177800_5 WHERE late_old_english__anglian_ = "æg, ǣg"
What is the Late Middle English equivalent of the Anglian æg, ǣg?
CREATE TABLE table_28177800_5 (late_middle_english VARCHAR, late_old_english__anglian_ VARCHAR)
SELECT opponents FROM table_21091145_1 WHERE game = 5
Name the opponents for game 5
CREATE TABLE table_21091145_1 (opponents VARCHAR, game VARCHAR)
SELECT AVG(place) FROM table_name_54 WHERE artist = "monika kirovska" AND draw < 1
What is the Place of Draw 1 by Artist Monika Kirovska?
CREATE TABLE table_name_54 (place INTEGER, artist VARCHAR, draw VARCHAR)
SELECT goals_for FROM table_name_97 WHERE wins < 14 AND goal_difference < -4
What is the number of goals with less than 14 wins and a goal difference less than -4?
CREATE TABLE table_name_97 (goals_for VARCHAR, wins VARCHAR, goal_difference VARCHAR)
SELECT COUNT(directed_by) FROM table_18012738_1 WHERE uk_viewers__million_ = "6.86"
Name the total number directed by for uk viewers being 6.86
CREATE TABLE table_18012738_1 (directed_by VARCHAR, uk_viewers__million_ VARCHAR)
SELECT visitor FROM table_name_33 WHERE home = "winnipeg"
Who was the visiting team when Winnipeg was the home team?
CREATE TABLE table_name_33 (visitor VARCHAR, home VARCHAR)
SELECT MIN(pick) FROM table_name_51 WHERE position = "ss, p" AND team = "minnesota twins"
What is the lowest pick of a player for the SS, P Position for the Minnesota Twins?
CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, team VARCHAR)
SELECT SUM(gold) FROM table_name_17 WHERE silver > 2 AND total = 12
What's the sum of gold where silver is more than 2 and the total is 12?
CREATE TABLE table_name_17 (gold INTEGER, silver VARCHAR, total VARCHAR)
SELECT COUNT(points) FROM table_name_24 WHERE drawn < 4 AND against = 34
What is the total number of points of the team with less than 4 drawn and an against of 34?
CREATE TABLE table_name_24 (points VARCHAR, drawn VARCHAR, against VARCHAR)
SELECT COUNT(draw) FROM table_name_9 WHERE televotes > 1761 AND song = "ils sont là" AND place < 2
What is the total number of Draw(s), when Televotes is greater than 1761, when Song is "Ils Sont Là", and when Place is less than 2?
CREATE TABLE table_name_9 (draw VARCHAR, place VARCHAR, televotes VARCHAR, song VARCHAR)
SELECT winning_team FROM table_25668203_2 WHERE winning_driver = "Mikhail Goikhberg"
What was the winning team when mikhail goikhberg was the winning driver?
CREATE TABLE table_25668203_2 (winning_team VARCHAR, winning_driver VARCHAR)
SELECT opening_film FROM table_18220102_1 WHERE date__opening_ = "August 23"
Which opening film has the opening date of august 23?
CREATE TABLE table_18220102_1 (opening_film VARCHAR, date__opening_ VARCHAR)
SELECT season FROM table_name_96 WHERE third = "shawn rojeski"
what is the season when the third is shawn rojeski?
CREATE TABLE table_name_96 (season VARCHAR, third VARCHAR)
SELECT MIN(extra_points) FROM table_25730209_2
What was the least amount of points scored?
CREATE TABLE table_25730209_2 (extra_points INTEGER)
SELECT constructor FROM table_name_75 WHERE grid = 2
Which Constructor has grid 2?
CREATE TABLE table_name_75 (constructor VARCHAR, grid VARCHAR)
SELECT gender FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = "26mm"
What is the gender of senior high school 26mm?
CREATE TABLE table_13555999_1 (gender VARCHAR, senior_high_school__15_18_yrs_ VARCHAR)
SELECT COUNT(wins) FROM table_name_81 WHERE top_25 < 4 AND top_10 < 1
What is the total number of Wins, when Top-25 is less than 4, and when Top-10 is less than 1?
CREATE TABLE table_name_81 (wins VARCHAR, top_25 VARCHAR, top_10 VARCHAR)
SELECT first_elected FROM table_1341843_19 WHERE incumbent = "Edwin E. Willis"
What's the year of the first election of the district whose incumbent is Edwin E. Willis?
CREATE TABLE table_1341843_19 (first_elected VARCHAR, incumbent VARCHAR)
SELECT bleeding_time FROM table_238124_1 WHERE partial_thromboplastin_time = "Prolonged" AND prothrombin_time = "Unaffected"
What was the bleeding time during the prolonged partial thromboplastin time in which the prothrombin time is unaffected?
CREATE TABLE table_238124_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR)
SELECT catalog FROM table_name_59 WHERE date = "january 23, 2002"
What is the catalog of the release from January 23, 2002?
CREATE TABLE table_name_59 (catalog VARCHAR, date VARCHAR)
SELECT venue FROM table_14877831_2 WHERE opponents = 51
What is the name of the venue where the opponent scored 51?
CREATE TABLE table_14877831_2 (venue VARCHAR, opponents VARCHAR)
SELECT COUNT(*) FROM Employees
How many employees do we have?
CREATE TABLE Employees (Id VARCHAR)
SELECT launched FROM table_name_91 WHERE completed = "13 september 1934"
Name the launched for 13 september 1934 completion
CREATE TABLE table_name_91 (launched VARCHAR, completed VARCHAR)
SELECT score FROM table_name_51 WHERE home_team = "citizen team a"
What was the score for the match with a home team of Citizen Team A?
CREATE TABLE table_name_51 (score VARCHAR, home_team VARCHAR)