question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is the name and open year for the branch with most number of memberships registered in 2016? | CREATE TABLE membership_register_branch (branch_id VARCHAR, register_year VARCHAR); CREATE TABLE branch (name VARCHAR, open_year VARCHAR, branch_id VARCHAR) | SELECT T2.name, T2.open_year FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id WHERE T1.register_year = 2016 GROUP BY T2.branch_id ORDER BY COUNT(*) DESC LIMIT 1 |
What is Collingwood's home venue? | CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_45 WHERE home_team = "collingwood" |
Who won with the song kemenangan cinta? | CREATE TABLE table_name_1 (winner VARCHAR, winning_song VARCHAR) | SELECT winner FROM table_name_1 WHERE winning_song = "kemenangan cinta" |
Who was the Best Male MC if Best Album won the Best Male Lyricist? | CREATE TABLE table_22546460_4 (best_male_mc VARCHAR, best_male_lyricist VARCHAR) | SELECT best_male_mc FROM table_22546460_4 WHERE best_male_lyricist = "Best Album" |
What is Player, when Score is "68-67-75-70=280"? | CREATE TABLE table_name_71 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_71 WHERE score = 68 - 67 - 75 - 70 = 280 |
Who is listed under the general classifcation where Ben Swift won and Cameron Meyer was listed under the young rider? | CREATE TABLE table_29332810_14 (general_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR) | SELECT general_classification FROM table_29332810_14 WHERE winner = "Ben Swift" AND young_rider_classification = "Cameron Meyer" |
What is the height of the player that went to ohio state? | CREATE TABLE table_11677760_31 (height VARCHAR, college VARCHAR) | SELECT height FROM table_11677760_31 WHERE college = "Ohio State" |
Who was the opponent in the Women's Cup 0 0 where Brancão Couto 0 is the scorer? | CREATE TABLE table_27654988_1 (opponent VARCHAR, competition VARCHAR, scorers VARCHAR) | SELECT opponent FROM table_27654988_1 WHERE competition = "Women's Cup 0 0" AND scorers = "Brancão Couto 0" |
What is listed for the 2011 that has a 2005 of 4.2%? | CREATE TABLE table_name_8 (Id VARCHAR) | SELECT 2011 FROM table_name_8 WHERE 2005 = "4.2%" |
WHAT IS THE POSITION OF FRANCE? | CREATE TABLE table_name_73 (position VARCHAR, nationality VARCHAR) | SELECT position FROM table_name_73 WHERE nationality = "france" |
What's the location where the Years in GFL was 1988-? | CREATE TABLE table_name_39 (location VARCHAR, years_in_gfl VARCHAR) | SELECT location FROM table_name_39 WHERE years_in_gfl = "1988-" |
Which Position has a League of southern league premier division, and a Season of 2004–05? | CREATE TABLE table_name_90 (position VARCHAR, league VARCHAR, season VARCHAR) | SELECT position FROM table_name_90 WHERE league = "southern league premier division" AND season = "2004–05" |
What was the report for 2010? | CREATE TABLE table_2241101_1 (report VARCHAR, year VARCHAR) | SELECT report FROM table_2241101_1 WHERE year = 2010 |
What is the greatest goals for Curtis Davies if ends is greater than 2012? | CREATE TABLE table_name_9 (goals INTEGER, name VARCHAR, ends VARCHAR) | SELECT MAX(goals) FROM table_name_9 WHERE name = "curtis davies" AND ends > 2012 |
What was the club team for Kyle de Coste? | CREATE TABLE table_name_98 (club_team VARCHAR, player VARCHAR) | SELECT club_team FROM table_name_98 WHERE player = "kyle de coste" |
What is Score, when Player is "Bob Murphy"? | CREATE TABLE table_name_9 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_9 WHERE player = "bob murphy" |
What team does Bill Walker play for? | CREATE TABLE table_name_1 (team VARCHAR, player VARCHAR) | SELECT team FROM table_name_1 WHERE player = "bill walker" |
What's the type of printer ports in the model number EX Plus3? | CREATE TABLE table_1300080_1 (printer_ports VARCHAR, model_number VARCHAR) | SELECT printer_ports FROM table_1300080_1 WHERE model_number = "EX Plus3" |
What is the City, when the Winner is Ruben Visser? | CREATE TABLE table_name_25 (city VARCHAR, winner VARCHAR) | SELECT city FROM table_name_25 WHERE winner = "ruben visser" |
What is the number of points when there was a BMW 269 F2 chassis earlier than 1969? | CREATE TABLE table_name_63 (points VARCHAR, chassis VARCHAR, year VARCHAR) | SELECT COUNT(points) FROM table_name_63 WHERE chassis = "bmw 269 f2" AND year < 1969 |
What is the date with the catalogue number ptcd-1015-6? | CREATE TABLE table_name_59 (date VARCHAR, catalogue__number VARCHAR) | SELECT date FROM table_name_59 WHERE catalogue__number = "ptcd-1015-6" |
Which Years in Senate has a Years in Assembly of 2010–present, and toni atkins? | CREATE TABLE table_name_23 (years_in_senate VARCHAR, years_in_assembly VARCHAR, name VARCHAR) | SELECT years_in_senate FROM table_name_23 WHERE years_in_assembly = "2010–present" AND name = "toni atkins" |
Is it home or away when opponent is Pride with a W 11-10 result? | CREATE TABLE table_name_49 (home_away VARCHAR, opponent VARCHAR, result VARCHAR) | SELECT home_away FROM table_name_49 WHERE opponent = "pride" AND result = "w 11-10" |
what's the loss with try bonus being 5 and points for being 390 | CREATE TABLE table_12828723_3 (lost VARCHAR, try_bonus VARCHAR, points_for VARCHAR) | SELECT lost FROM table_12828723_3 WHERE try_bonus = "5" AND points_for = "390" |
what type is the institute that enrolled 2102 | CREATE TABLE table_1974632_1 (type VARCHAR, enrollment VARCHAR) | SELECT type FROM table_1974632_1 WHERE enrollment = 2102 |
What is the total number of Broadcasts (TV) 1, when Aired in Japan 3 is "5 January 2003 to 30 March 2003"? | CREATE TABLE table_name_50 (broadcasts__tv__1 VARCHAR, aired_in_japan_3 VARCHAR) | SELECT COUNT(broadcasts__tv__1) FROM table_name_50 WHERE aired_in_japan_3 = "5 january 2003 to 30 march 2003" |
What is the 2006 when the 2013 is 1r, and the 2012 is 1r? | CREATE TABLE table_name_89 (Id VARCHAR) | SELECT 2006 FROM table_name_89 WHERE 2013 = "1r" AND 2012 = "1r" |
What is the NOAA of the higher harmonics that have a Darwin of m sf? | CREATE TABLE table_name_27 (noaa VARCHAR, darwin VARCHAR) | SELECT noaa FROM table_name_27 WHERE darwin = "m sf" |
What were the goals on 3/10/97? | CREATE TABLE table_name_86 (goals VARCHAR, date VARCHAR) | SELECT goals FROM table_name_86 WHERE date = "3/10/97" |
What is the average quantity of stocks? | CREATE TABLE stock (Quantity INTEGER) | SELECT AVG(Quantity) FROM stock |
Which Medal had a Games of 2008 beijing, and a Sport of taekwondo? | CREATE TABLE table_name_48 (medal VARCHAR, games VARCHAR, sport VARCHAR) | SELECT medal FROM table_name_48 WHERE games = "2008 beijing" AND sport = "taekwondo" |
What was the lowest draw for Beathoven when the place was smaller than 16? | CREATE TABLE table_name_55 (draw INTEGER, artist VARCHAR, place VARCHAR) | SELECT MIN(draw) FROM table_name_55 WHERE artist = "beathoven" AND place < 16 |
Which Surface has an Opponent(s) of anna-lena grönefeld tatjana malek? | CREATE TABLE table_name_8 (surface VARCHAR, opponent_s_ VARCHAR) | SELECT surface FROM table_name_8 WHERE opponent_s_ = "anna-lena grönefeld tatjana malek" |
What is the current map designation for Beethoven? | CREATE TABLE table_name_72 (current_map VARCHAR, name VARCHAR) | SELECT current_map FROM table_name_72 WHERE name = "beethoven" |
What league has a position of 8/13? | CREATE TABLE table_name_88 (league VARCHAR, league_position VARCHAR) | SELECT league FROM table_name_88 WHERE league_position = "8/13" |
How many golds have a bronze greater than 1, a silver greater than 1, with total as the rank? | CREATE TABLE table_name_61 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT COUNT(gold) FROM table_name_61 WHERE bronze > 1 AND silver > 1 AND rank = "total" |
What is the sum of a rank whose nation is West Germany and has bronze larger than 0? | CREATE TABLE table_name_45 (rank INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT SUM(rank) FROM table_name_45 WHERE nation = "west germany" AND bronze > 0 |
What is the build date of the model with a PRR Class of brs24? | CREATE TABLE table_name_61 (build_date VARCHAR, prr_class VARCHAR) | SELECT build_date FROM table_name_61 WHERE prr_class = "brs24" |
Which Home team has a Year of 2002/03, and a Venue of tahnoun bin mohamed stadium? | CREATE TABLE table_name_35 (home_team VARCHAR, year VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_35 WHERE year = "2002/03" AND venue = "tahnoun bin mohamed stadium" |
What is the population of the nation that has a GDP per capita (US$) of 11,929? | CREATE TABLE table_name_99 (population VARCHAR, gdp_per_capita__us$_ VARCHAR) | SELECT population FROM table_name_99 WHERE gdp_per_capita__us$_ = "11,929" |
What is Result, when Losses is "Did Not Qualify"? | CREATE TABLE table_name_41 (result VARCHAR, losses VARCHAR) | SELECT result FROM table_name_41 WHERE losses = "did not qualify" |
What sensor has a resolution of 640x480 with small CPU usage, jpeg compressed output and a camera of sony playstation eyetoy? | CREATE TABLE table_name_21 (sensor VARCHAR, camera VARCHAR, output VARCHAR, sensor_resolution VARCHAR, cpu_usage VARCHAR) | SELECT sensor FROM table_name_21 WHERE sensor_resolution = "640x480" AND cpu_usage = "small" AND output = "jpeg compressed" AND camera = "sony playstation eyetoy" |
When did the game in whalley range take place? | CREATE TABLE table_name_87 (date VARCHAR, h___a VARCHAR) | SELECT date FROM table_name_87 WHERE h___a = "whalley range" |
How many 2010 estimations have been done in the city of Cremona? | CREATE TABLE table_10138926_1 (city VARCHAR) | SELECT COUNT(2010 AS _est) FROM table_10138926_1 WHERE city = "Cremona" |
What is the lowest enrollment amount for a year left of 2012 and a current conference of Mid-South? | CREATE TABLE table_name_17 (enrollment INTEGER, left VARCHAR, current_conference VARCHAR) | SELECT MIN(enrollment) FROM table_name_17 WHERE left = 2012 AND current_conference = "mid-south" |
What did the Melbourne Tigers score when they were the away team? | CREATE TABLE table_name_73 (score VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_73 WHERE away_team = "melbourne tigers" |
How many winners of binibining pilipinas-International when Maria Karla Bautista won binibining pilipinas-world? | CREATE TABLE table_1825751_4 (binibining_pilipinas_international VARCHAR, binibining_pilipinas_world VARCHAR) | SELECT COUNT(binibining_pilipinas_international) FROM table_1825751_4 WHERE binibining_pilipinas_world = "Maria Karla Bautista" |
What is the most assists for points 129-3.9? | CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR) | SELECT MAX(assists) FROM table_22875514_3 WHERE points = "129-3.9" |
Name the explanation by rank is 10 | CREATE TABLE table_2026548_1 (explanation VARCHAR, rank_by_time_in_office VARCHAR) | SELECT explanation FROM table_2026548_1 WHERE rank_by_time_in_office = 10 |
How many years have a time of 1:42.086? | CREATE TABLE table_16308030_1 (year VARCHAR, time VARCHAR) | SELECT COUNT(year) FROM table_16308030_1 WHERE time = "1:42.086" |
Who was eliminated from the competition when pau proceed to the quarter final? | CREATE TABLE table_28068063_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR) | SELECT eliminated_from_competition FROM table_28068063_3 WHERE proceed_to_quarter_final = "Pau" |
What is the work number for Victor? | CREATE TABLE table_name_80 (works_number VARCHAR, name VARCHAR) | SELECT works_number FROM table_name_80 WHERE name = "victor" |
What is the Jobbik percentage with a Fidesz of 61% and others of 2%? | CREATE TABLE table_name_41 (jobbik VARCHAR, fidesz VARCHAR, others VARCHAR) | SELECT jobbik FROM table_name_41 WHERE fidesz = "61%" AND others = "2%" |
What is the place of the player from New Zealand? | CREATE TABLE table_name_82 (place VARCHAR, country VARCHAR) | SELECT place FROM table_name_82 WHERE country = "new zealand" |
What is the Proto-Austronesian word for the Proto-Polynesian word *tui? | CREATE TABLE table_name_53 (proto_austronesian VARCHAR, proto_polynesian VARCHAR) | SELECT proto_austronesian FROM table_name_53 WHERE proto_polynesian = "*tui" |
What record has a december less than 6, points less than 38, and pittsburgh penguins as the opponent? | CREATE TABLE table_name_40 (record VARCHAR, opponent VARCHAR, december VARCHAR, points VARCHAR) | SELECT record FROM table_name_40 WHERE december < 6 AND points < 38 AND opponent = "pittsburgh penguins" |
What is the qual 1 for conquest racing? | CREATE TABLE table_name_41 (qual_1 VARCHAR, team VARCHAR) | SELECT qual_1 FROM table_name_41 WHERE team = "conquest racing" |
What is the earliest year having a length of 11:25? | CREATE TABLE table_name_21 (year INTEGER, length VARCHAR) | SELECT MIN(year) FROM table_name_21 WHERE length = "11:25" |
Who was the finalist in the Monte Carlo Tournament? | CREATE TABLE table_name_91 (finalist VARCHAR, tournament VARCHAR) | SELECT finalist FROM table_name_91 WHERE tournament = "monte carlo" |
When the Home Team was Sydney, what did the Away team score? | CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_41 WHERE home_team = "sydney" |
What is the Away team score for Away team North Melbourne? | CREATE TABLE table_name_13 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_13 WHERE away_team = "north melbourne" |
What's the year in 5th position that happened in Osaka, Japan? | CREATE TABLE table_name_92 (year INTEGER, position VARCHAR, venue VARCHAR) | SELECT MIN(year) FROM table_name_92 WHERE position = "5th" AND venue = "osaka, japan" |
Which years have a displacement of 1816cc? | CREATE TABLE table_name_44 (years VARCHAR, displacement VARCHAR) | SELECT years FROM table_name_44 WHERE displacement = "1816cc" |
Tell me the final position for fa community shield | CREATE TABLE table_name_22 (final_position___round VARCHAR, competition VARCHAR) | SELECT final_position___round FROM table_name_22 WHERE competition = "fa community shield" |
What are the years won with a total of 282? | CREATE TABLE table_name_37 (year_s__won VARCHAR, total VARCHAR) | SELECT year_s__won FROM table_name_37 WHERE total = 282 |
What was the final score the game where the Thrashers over-all record went to 22-16-6? | CREATE TABLE table_27537518_7 (score VARCHAR, record VARCHAR) | SELECT score FROM table_27537518_7 WHERE record = "22-16-6" |
Find the department name and room of the course INTRODUCTION TO COMPUTER SCIENCE. | CREATE TABLE COURSE (DNO VARCHAR, CName VARCHAR); CREATE TABLE DEPARTMENT (Dname VARCHAR, Room VARCHAR, DNO VARCHAR) | SELECT T2.Dname, T2.Room FROM COURSE AS T1 JOIN DEPARTMENT AS T2 ON T1.DNO = T2.DNO WHERE T1.CName = "INTRODUCTION TO COMPUTER SCIENCE" |
What county is CERCLIS ID nhd062004569 in? | CREATE TABLE table_name_61 (county VARCHAR, cerclis_id VARCHAR) | SELECT county FROM table_name_61 WHERE cerclis_id = "nhd062004569" |
Who were the authors of the episode first broadcast on August 10, 2012? | CREATE TABLE table_28081876_6 (written_by VARCHAR, original_air_date VARCHAR) | SELECT written_by FROM table_28081876_6 WHERE original_air_date = "August 10, 2012" |
What was the attendance when the Braves were the opponent and the record was 56-53? | CREATE TABLE table_name_62 (attendance INTEGER, opponent VARCHAR, record VARCHAR) | SELECT AVG(attendance) FROM table_name_62 WHERE opponent = "braves" AND record = "56-53" |
Name surface for 8 round | CREATE TABLE table_23385853_1 (surface VARCHAR, round VARCHAR) | SELECT surface FROM table_23385853_1 WHERE round = 8 |
WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7? | CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR) | SELECT carbon_dioxide_emissions_per_year__10_6_tons___2006_ FROM table_11251601_2 WHERE carbon_dioxide_emissions_per_year__tons_per_person___2007_ = "1.4" |
What was the home teams score against the away team footscray? | CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_39 WHERE away_team = "footscray" |
What are the building full names that contain the word "court"? | CREATE TABLE Apartment_Buildings (building_full_name VARCHAR) | SELECT building_full_name FROM Apartment_Buildings WHERE building_full_name LIKE "%court%" |
What is Score, when Player is "Deane Beman"? | CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_20 WHERE player = "deane beman" |
How many regions had rainfall infiltration (km 3/year) of 9.3? | CREATE TABLE table_25983027_1 (rainfall_by_depth__mm_year_ VARCHAR, infiltration__km_3__year_ VARCHAR) | SELECT COUNT(rainfall_by_depth__mm_year_) FROM table_25983027_1 WHERE infiltration__km_3__year_ = "9.3" |
What was the total number of Byes for the team that had 1136 Against and fewer than 0 Draws? | CREATE TABLE table_name_84 (byes VARCHAR, against VARCHAR, draws VARCHAR) | SELECT COUNT(byes) FROM table_name_84 WHERE against = 1136 AND draws < 0 |
What shows for 2011 at the French open? | CREATE TABLE table_name_82 (tournament VARCHAR) | SELECT 2011 FROM table_name_82 WHERE tournament = "french open" |
What is the location of the mountain ranked at 36? | CREATE TABLE table_name_20 (location VARCHAR, rank VARCHAR) | SELECT location FROM table_name_20 WHERE rank = 36 |
What film had Bub Ltd as the recipient? | CREATE TABLE table_name_75 (film VARCHAR, recipient VARCHAR) | SELECT film FROM table_name_75 WHERE recipient = "bub ltd" |
What alumni had noor jehangir as their fresh meat partner? | CREATE TABLE table_26419467_1 (alumni VARCHAR, fresh_meat_partner VARCHAR) | SELECT alumni FROM table_26419467_1 WHERE fresh_meat_partner = "Noor Jehangir" |
WHAT IS THE POINTS WITH 55 TRIES? | CREATE TABLE table_name_89 (points VARCHAR, tries_for VARCHAR) | SELECT points FROM table_name_89 WHERE tries_for = "55" |
What is the drawn result with a league position of 15th and a lost result that is more than 17? | CREATE TABLE table_name_36 (drawn INTEGER, league_pos VARCHAR, lost VARCHAR) | SELECT SUM(drawn) FROM table_name_36 WHERE league_pos = "15th" AND lost > 17 |
What is the others# when bush% is 57.0%? | CREATE TABLE table_1302886_1 (others_number INTEGER, bush_percentage VARCHAR) | SELECT MAX(others_number) FROM table_1302886_1 WHERE bush_percentage = "57.0%" |
What was the women's singles were men's doubles were steen fladberg jens peter nierhoff? | CREATE TABLE table_12186309_1 (womens_singles VARCHAR, mens_doubles VARCHAR) | SELECT womens_singles FROM table_12186309_1 WHERE mens_doubles = "Steen Fladberg Jens Peter Nierhoff" |
Name the average zone for waddon marsh tram stop | CREATE TABLE table_name_64 (zone INTEGER, stations VARCHAR) | SELECT AVG(zone) FROM table_name_64 WHERE stations = "waddon marsh tram stop" |
What is the name of the subject who ran in the general election for Queen Anne's County State's Attorney? | CREATE TABLE table_name_63 (subject VARCHAR, election VARCHAR, office VARCHAR) | SELECT subject FROM table_name_63 WHERE election = "general" AND office = "queen anne's county state's attorney" |
What is the Points for number of the team with a 10 Tries against number? | CREATE TABLE table_name_44 (points_for VARCHAR, tries_against VARCHAR) | SELECT points_for FROM table_name_44 WHERE tries_against = "10" |
How many students are not involved in any behavior incident? | CREATE TABLE STUDENTS (student_id VARCHAR); CREATE TABLE Behavior_Incident (student_id VARCHAR) | SELECT COUNT(*) FROM STUDENTS WHERE NOT student_id IN (SELECT student_id FROM Behavior_Incident) |
What was the record in the November 7 game? | CREATE TABLE table_23308178_5 (record VARCHAR, date VARCHAR) | SELECT record FROM table_23308178_5 WHERE date = "November 7" |
Who was the visitor on October 20? | CREATE TABLE table_name_85 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_85 WHERE date = "october 20" |
Which Attendance has a Tie # of 32? | CREATE TABLE table_name_13 (attendance VARCHAR, tie_no VARCHAR) | SELECT attendance FROM table_name_13 WHERE tie_no = "32" |
What player plays center? | CREATE TABLE table_12962773_2 (player VARCHAR, position VARCHAR) | SELECT player FROM table_12962773_2 WHERE position = "Center" |
How many people on average attended the game in week 14? | CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR) | SELECT AVG(attendance) FROM table_name_68 WHERE week = 14 |
What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes? | CREATE TABLE table_name_39 (astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR) | SELECT astc_member FROM table_name_39 WHERE state = "arkansas" AND aam_member = "no" AND aam_accredited = "yes" |
Van Meter has a water(sqmi) of 0 and a longitude larger than -98.444062, what was their highest ANSI code? | CREATE TABLE table_name_63 (ansi_code INTEGER, longitude VARCHAR, water__sqmi_ VARCHAR, township VARCHAR) | SELECT MAX(ansi_code) FROM table_name_63 WHERE water__sqmi_ = 0 AND township = "van meter" AND longitude > -98.444062 |
what is the total number of round where opponents is haugar | CREATE TABLE table_1061075_1 (round VARCHAR, opponents VARCHAR) | SELECT COUNT(round) FROM table_1061075_1 WHERE opponents = "Haugar" |
what is the date of vacancy when the date of appointment is 1 january 2009? | CREATE TABLE table_name_54 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR) | SELECT date_of_vacancy FROM table_name_54 WHERE date_of_appointment = "1 january 2009" |
Was the missile intercepted by patriot when the parking lot was damaged? | CREATE TABLE table_23014685_1 (intercepted_by_patriot VARCHAR, area_damaged VARCHAR) | SELECT intercepted_by_patriot FROM table_23014685_1 WHERE area_damaged = "Parking lot" |
Pick larger than 229, and a Round smaller than 12, and a Position of defensive back is what school/club team? | CREATE TABLE table_name_66 (school_club_team VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR) | SELECT school_club_team FROM table_name_66 WHERE pick > 229 AND round < 12 AND position = "defensive back" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.