answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT stepping FROM table_name_25 WHERE release_date = "june 5, 2007" | What is the stepping for the processor released June 5, 2007? | CREATE TABLE table_name_25 (stepping VARCHAR, release_date VARCHAR) |
SELECT season AS finale FROM table_19188562_2 WHERE us_viewers__in_millions_ = "2.02" | What season finale date has 2.02 million u.s. Viewers? | CREATE TABLE table_19188562_2 (season VARCHAR, us_viewers__in_millions_ VARCHAR) |
SELECT reason_for_change FROM table_2147588_3 WHERE date_of_successors_formal_installation = "March 9, 1865" | What change caused a change of staff in March 9, 1865? | CREATE TABLE table_2147588_3 (reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR) |
SELECT date FROM table_name_36 WHERE points < 85 AND game__number = 74 | Which Date has Points smaller than 85 and a Game # of 74? | CREATE TABLE table_name_36 (date VARCHAR, points VARCHAR, game__number VARCHAR) |
SELECT conventional_plans FROM table_name_55 WHERE pos_plans = "13%" | Which conventional plan has a POS of 13%? | CREATE TABLE table_name_55 (conventional_plans VARCHAR, pos_plans VARCHAR) |
SELECT outcome FROM table_name_75 WHERE opponent_in_the_final = "sylvia hanika" AND surface = "hard (i)" | What is the outcome of the match against Sylvia Hanika on a hard (i) surface? | CREATE TABLE table_name_75 (outcome VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR) |
SELECT assist_pass FROM table_name_14 WHERE score = "1-0" AND competition = "2010 concacaf world cup qualifying – group stage" | Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying – group stage? | CREATE TABLE table_name_14 (assist_pass VARCHAR, score VARCHAR, competition VARCHAR) |
SELECT score_in_the_final FROM table_name_95 WHERE outcome = "runner-up" AND date = 1970 | What is the Score in the final with an Outcome with runner-up, and a Date with 1970? | CREATE TABLE table_name_95 (score_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR) |
SELECT record FROM table_name_93 WHERE opponent = "milwaukee bucks" | Which Record has an Opponent of milwaukee bucks? | CREATE TABLE table_name_93 (record VARCHAR, opponent VARCHAR) |
SELECT SUM(pct) FROM table_name_89 WHERE years = "1957–1970" AND wins < 78 | Which Pct has Years of 1957–1970, and Wins smaller than 78? | CREATE TABLE table_name_89 (pct INTEGER, years VARCHAR, wins VARCHAR) |
SELECT right_ascension___j2000__ FROM table_name_71 WHERE apparent_magnitude = 10.5 | When the apparent magnitude is 10.5, what is the right ascension? | CREATE TABLE table_name_71 (right_ascension___j2000__ VARCHAR, apparent_magnitude VARCHAR) |
SELECT score FROM table_name_24 WHERE date = "february 9" | Which Score has a Date of february 9? | CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR) |
SELECT opponent FROM table_name_52 WHERE result = "l 27–3" | Who was the opponent at the game with a result of l 27–3? | CREATE TABLE table_name_52 (opponent VARCHAR, result VARCHAR) |
SELECT share_of_seats FROM table_name_79 WHERE european_election__uk_ = 2009 | Which Share of seats has a European election (UK) of 2009? | CREATE TABLE table_name_79 (share_of_seats VARCHAR, european_election__uk_ VARCHAR) |
SELECT away_team FROM table_name_11 WHERE venue = "moorabbin oval" | What is moorabbin oval's away team? | CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR) |
SELECT phone_number FROM employees WHERE salary BETWEEN 8000 AND 12000 | what is the phone number of employees whose salary is in the range of 8000 and 12000? | CREATE TABLE employees (phone_number VARCHAR, salary INTEGER) |
SELECT season FROM table_name_26 WHERE school_club_team = "far eastern" AND number = 26 | What season did the player who had the number 26 play on who came from far eastern? | CREATE TABLE table_name_26 (season VARCHAR, school_club_team VARCHAR, number VARCHAR) |
SELECT surface FROM table_name_24 WHERE partner = "david martin" AND score = "4–6, 6–7 (4-7)" | On what Surface was the game with Partner David Martin played Scoring 4–6, 6–7 (4-7)? | CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR, score VARCHAR) |
SELECT division FROM table_name_39 WHERE open_cup = "2nd round" | Which division was the Rampage in when they were in the 2nd round in the Open Cup? | CREATE TABLE table_name_39 (division VARCHAR, open_cup VARCHAR) |
SELECT opponent FROM table_name_85 WHERE round = "1" | Which opponent had round 1? | CREATE TABLE table_name_85 (opponent VARCHAR, round VARCHAR) |
SELECT MAX(week) FROM table_name_89 WHERE result = "w 34-21" | What is the highest Week, when Result is W 34-21? | CREATE TABLE table_name_89 (week INTEGER, result VARCHAR) |
SELECT result FROM table_name_54 WHERE venue = "praterstadion, vienna" AND competition = "euro 1980 qualifier" | Tell me the score of praterstadion, vienna, and competition of euro 1980 qualifier | CREATE TABLE table_name_54 (result VARCHAR, venue VARCHAR, competition VARCHAR) |
SELECT AVG(position) FROM table_name_69 WHERE points < 54 AND equipment = "husaberg-bsu" | What is the average position for a driver with less than 54 points and husaberg-bsu as equipment? | CREATE TABLE table_name_69 (position INTEGER, points VARCHAR, equipment VARCHAR) |
SELECT performer_1 FROM table_name_93 WHERE performer_3 = "paul merton" AND performer_4 = "sandi toksvig" | Performer 3 of paul merton, and a Performer 4 of sandi toksvig is which performer 1? | CREATE TABLE table_name_93 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR) |
SELECT score FROM table_name_8 WHERE time = "2:44" | What was the score for the team with a time of 2:44? | CREATE TABLE table_name_8 (score VARCHAR, time VARCHAR) |
SELECT AVG(number_of_electorates__2009_) FROM table_name_58 WHERE district = "indore" | What is the average number of electorates (2009) when the district is indore? | CREATE TABLE table_name_58 (number_of_electorates__2009_ INTEGER, district VARCHAR) |
SELECT Giant AS slalom FROM table_name_29 WHERE season = 1997 | Which Giant Slalom was obtained in the 1997 season? | CREATE TABLE table_name_29 (Giant VARCHAR, season VARCHAR) |
SELECT 1 AS st_leg FROM table_1061075_1 WHERE opponents = "Galatasaray" | what's the 1st leg where opponents is galatasaray | CREATE TABLE table_1061075_1 (opponents VARCHAR) |
SELECT type FROM table_224672_2 WHERE term_ended = "January 3, 2001" | What branch of government was the term that ended on January 3, 2001? | CREATE TABLE table_224672_2 (type VARCHAR, term_ended VARCHAR) |
SELECT alvin_greene__d_ FROM table_name_29 WHERE other = "9%" | What was the vote for Alvin Green when other was 9%? | CREATE TABLE table_name_29 (alvin_greene__d_ VARCHAR, other VARCHAR) |
SELECT score FROM table_name_18 WHERE game > 56 AND decision = "lundqvist" AND record = "29-24-7" | What's the score for a game over 56 with a record of 29-24-7 with a lundqvist decision? | CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR, game VARCHAR, decision VARCHAR) |
SELECT SUM(week) FROM table_name_54 WHERE date = "november 20, 1977" | What was the Week number on November 20, 1977? | CREATE TABLE table_name_54 (week INTEGER, date VARCHAR) |
SELECT awardee_s_ FROM table_24446718_3 WHERE name_of_award = "Best Special Effects" | Name the awardees for best special effects | CREATE TABLE table_24446718_3 (awardee_s_ VARCHAR, name_of_award VARCHAR) |
SELECT player FROM table_name_58 WHERE score = 67 - 72 = 139 | What player has the score of 67-72=139? | CREATE TABLE table_name_58 (player VARCHAR, score VARCHAR) |
SELECT MIN(year) FROM table_name_8 WHERE structure = "mercury city tower" | What year was the Mercury City Tower? | CREATE TABLE table_name_8 (year INTEGER, structure VARCHAR) |
SELECT result FROM table_name_85 WHERE competition = "world cup qualifying" AND date = "march 21, 1954" | Which Result has a Competition of world cup qualifying, and a Date of march 21, 1954? | CREATE TABLE table_name_85 (result VARCHAR, competition VARCHAR, date VARCHAR) |
SELECT match_report FROM table_name_98 WHERE result_score = "l 7-30" | Which match report has l 7-30 as the result/score? | CREATE TABLE table_name_98 (match_report VARCHAR, result_score VARCHAR) |
SELECT bout_1 FROM table_19398910_4 WHERE bout_5 = "Andreev ( RUS ) W 5-2" | Which were the bout 1 when the bout 5 was andreev ( rus ) w 5-2? | CREATE TABLE table_19398910_4 (bout_1 VARCHAR, bout_5 VARCHAR) |
SELECT AVG(laps) FROM table_name_91 WHERE driver = "lorenzo bandini" AND grid < 3 | What is the average laps for lorenzo bandini with a grid under 3? | CREATE TABLE table_name_91 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
SELECT COUNT(record) FROM table_22815265_1 WHERE opponents = 9 | How many records were there when opponents were 9? | CREATE TABLE table_22815265_1 (record VARCHAR, opponents VARCHAR) |
SELECT result FROM table_name_28 WHERE venue = "rosehill" AND race = "todman stakes" | What was the result of the Todman stakes race at rosehill? | CREATE TABLE table_name_28 (result VARCHAR, venue VARCHAR, race VARCHAR) |
SELECT AVG(overall) FROM table_name_88 WHERE round > 7 AND pick > 13 AND name = "tony hall" | Which Overall has a Round larger than 7, a Pick larger than 13, and a Name of tony hall? | CREATE TABLE table_name_88 (overall INTEGER, name VARCHAR, round VARCHAR, pick VARCHAR) |
SELECT final_four FROM table_name_32 WHERE win__percentage = ".750" | What is the Final Four with a win percentage of .750? | CREATE TABLE table_name_32 (final_four VARCHAR, win__percentage VARCHAR) |
SELECT COUNT(*) FROM device | How many devices are there? | CREATE TABLE device (Id VARCHAR) |
SELECT 2010 FROM table_name_9 WHERE 2006 = "2r" | Name the 2010 for 2006 of 2r | CREATE TABLE table_name_9 (Id VARCHAR) |
SELECT DISTINCT state, created FROM votes | What are the distinct states and create time of all votes? | CREATE TABLE votes (state VARCHAR, created VARCHAR) |
SELECT network FROM table_name_83 WHERE year > 1990 AND colour_commentator_s_ = "chris walby" | For which network was Chris Walby the color commentator after 1990? | CREATE TABLE table_name_83 (network VARCHAR, year VARCHAR, colour_commentator_s_ VARCHAR) |
SELECT MIN(total) FROM table_name_18 WHERE bronze > 0 AND nation = "switzerland" AND gold < 1 | What is the lowest metal total when the Bronze metals are larger than 0, the Gold medals are smaller than 1, and the nation is Switzerland? | CREATE TABLE table_name_18 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR) |
SELECT score FROM table_name_25 WHERE opponent = "braves" AND record = "41–27" | What was the score of the game against the Braves with a record of 41–27? | CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, record VARCHAR) |
SELECT incumbent FROM table_1341423_35 WHERE first_elected = 1972 | Who was elected in 1972 | CREATE TABLE table_1341423_35 (incumbent VARCHAR, first_elected VARCHAR) |
SELECT date FROM table_name_85 WHERE visitor = "cavaliers" AND home = "knicks" | What day was the game that had the Cavaliers as visiting team and the Knicks as the home team? | CREATE TABLE table_name_85 (date VARCHAR, visitor VARCHAR, home VARCHAR) |
SELECT part_3 FROM table_1745843_10 WHERE class = "4" | What is part 1 of the verb in class 4 | CREATE TABLE table_1745843_10 (part_3 VARCHAR, class VARCHAR) |
SELECT catalog FROM table_name_10 WHERE format = "stereo compact cassette" | What catalog uses the stereo compact cassette format? | CREATE TABLE table_name_10 (catalog VARCHAR, format VARCHAR) |
SELECT COUNT(grid) FROM table_name_3 WHERE driver = "giancarlo fisichella" | How many grid numbers were there for the driver Giancarlo Fisichella? | CREATE TABLE table_name_3 (grid VARCHAR, driver VARCHAR) |
SELECT school_club_team FROM table_15463188_7 WHERE season = "2008" | Namethe school team for season 2008 | CREATE TABLE table_15463188_7 (school_club_team VARCHAR, season VARCHAR) |
SELECT number_of_contestants FROM table_name_55 WHERE international_destinations = "london lisbon" | What is Number of Contestants, when International Destinations is London Lisbon? | CREATE TABLE table_name_55 (number_of_contestants VARCHAR, international_destinations VARCHAR) |
SELECT events_won__uk_series_ FROM table_name_45 WHERE events_won__us_series_ < 1 | How many UK events won for the contestant that won under 1 US event? | CREATE TABLE table_name_45 (events_won__uk_series_ VARCHAR, events_won__us_series_ INTEGER) |
SELECT AVG(round) FROM table_name_48 WHERE college = "usf" AND pick__number < 24 | What is the average round that the player from USF was picked in when his draft pick number was less than 24? | CREATE TABLE table_name_48 (round INTEGER, college VARCHAR, pick__number VARCHAR) |
SELECT imap_shared FROM table_name_93 WHERE web_ui = "web ui" | What IMAP sharing options exist for software with a web UI? | CREATE TABLE table_name_93 (imap_shared VARCHAR, web_ui VARCHAR) |
SELECT MAX(legs) FROM table_256862_1 WHERE winning_yacht = "Steinlager 2" | Name the most legs for steinlager 2 | CREATE TABLE table_256862_1 (legs INTEGER, winning_yacht VARCHAR) |
SELECT death FROM table_name_34 WHERE birth = "6 january 1655" | When did the person born on 6 january 1655 die? | CREATE TABLE table_name_34 (death VARCHAR, birth VARCHAR) |
SELECT T1.student_details FROM students AS T1 JOIN student_course_registrations AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1 | What is detail of the student who registered the most number of courses? | CREATE TABLE students (student_details VARCHAR, student_id VARCHAR); CREATE TABLE student_course_registrations (student_id VARCHAR) |
SELECT method FROM table_name_3 WHERE time = "5:00" AND record = "14–6–1" | What is the method when the time is 5:00, and the record is 14–6–1? | CREATE TABLE table_name_3 (method VARCHAR, time VARCHAR, record VARCHAR) |
SELECT MAX(losses) FROM table_14871601_2 WHERE scored = 25 | What was the number of losses when the scored value was 25? | CREATE TABLE table_14871601_2 (losses INTEGER, scored VARCHAR) |
SELECT home_team FROM table_name_16 WHERE venue = "windy hill" | Who was the home team when VFL played at Windy Hill? | CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) |
SELECT t3.headquartered_city FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t1.store_name = "Blackville" | Which city is the headquarter of the store named "Blackville" in? | CREATE TABLE store (store_id VARCHAR, store_name VARCHAR); CREATE TABLE district (headquartered_city VARCHAR, district_id VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR) |
SELECT method FROM table_name_98 WHERE round = 1 AND time = "0:28" | Which Method has a Round of 1, and a Time of 0:28? | CREATE TABLE table_name_98 (method VARCHAR, round VARCHAR, time VARCHAR) |
SELECT MIN(position) FROM table_name_12 WHERE name = "esv türkheim" AND drawn > 0 | what is the lowest position when the name is esv türkheim, and Drawn more than 0? | CREATE TABLE table_name_12 (position INTEGER, name VARCHAR, drawn VARCHAR) |
SELECT 2009 FROM table_name_77 WHERE 2012 = "1r" AND tournament = "wimbledon" AND 2011 = "2r" | What is the 2009 for 2012 1R in Wimbledon and a 2011 2r? | CREATE TABLE table_name_77 (tournament VARCHAR) |
SELECT tournament FROM table_name_8 WHERE opponent_in_the_final = "silke meier" | In which tournament was Silke Meier the opponent in the final? | CREATE TABLE table_name_8 (tournament VARCHAR, opponent_in_the_final VARCHAR) |
SELECT MIN(position) FROM table_name_4 WHERE played > 9 | What is the smallest positioned with more than 9 played? | CREATE TABLE table_name_4 (position INTEGER, played INTEGER) |
SELECT finish FROM table_name_36 WHERE country = "west germany" | What was the finish by the player from West Germany? | CREATE TABLE table_name_36 (finish VARCHAR, country VARCHAR) |
SELECT fri_3_june FROM table_29218221_1 WHERE tues_31_may = "19' 18.80 117.215mph" | What is the Fri 3 June time for the rider whose Tues 31 May time was 19' 18.80 117.215mph? | CREATE TABLE table_29218221_1 (fri_3_june VARCHAR, tues_31_may VARCHAR) |
SELECT class FROM table_name_32 WHERE laps = 325 | What was the class when there were 325 laps? | CREATE TABLE table_name_32 (class VARCHAR, laps VARCHAR) |
SELECT 2011 FROM table_name_93 WHERE 2002 = "—" AND model = "seat marbella" | Name the 2011 which has a 2002 of —, and a Model of seat marbella? | CREATE TABLE table_name_93 (model VARCHAR) |
SELECT location FROM table_22673872_1 WHERE pole_position = "Gordon Johncock" | Which locations did Gordon Johncock hold the pole position? | CREATE TABLE table_22673872_1 (location VARCHAR, pole_position VARCHAR) |
SELECT overall_record FROM table_name_42 WHERE week < 16 AND divisional_record = "(1-0)" AND away_team = "miami" | Can you tell me the Overall Record that has the Week smaller than 16, and the Divisional Record of (1-0), and the Away Team of miami? | CREATE TABLE table_name_42 (overall_record VARCHAR, away_team VARCHAR, week VARCHAR, divisional_record VARCHAR) |
SELECT result FROM table_name_69 WHERE time = "6:00 pm" AND attendance = "79,419" | What was the score of the match that took place at 6:00 PM with 79,419 in attendance? | CREATE TABLE table_name_69 (result VARCHAR, time VARCHAR, attendance VARCHAR) |
SELECT track FROM table_name_96 WHERE translation = "flemish women" | Which track translates to Flemish Women? | CREATE TABLE table_name_96 (track VARCHAR, translation VARCHAR) |
SELECT away FROM table_name_41 WHERE club = "apoel" | Which away has apoel as the club? | CREATE TABLE table_name_41 (away VARCHAR, club VARCHAR) |
SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Brittas" | what is the number of areas where the townland is brittas? | CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR) |
SELECT MAX(top_10) FROM table_name_81 WHERE cuts_made = 16 AND top_25 < 13 | What is the highest top-10 a tournament with 16 cuts and less than 13 top-25 has? | CREATE TABLE table_name_81 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR) |
SELECT number_one_single_s_ FROM table_27441210_20 WHERE weeks_at__number1 = 5 | Name the number one singles for week 1 being 5 | CREATE TABLE table_27441210_20 (number_one_single_s_ VARCHAR, weeks_at__number1 VARCHAR) |
SELECT round FROM table_name_36 WHERE pick = 63 | What is the round of pick 63? | CREATE TABLE table_name_36 (round VARCHAR, pick VARCHAR) |
SELECT alternate FROM table_name_55 WHERE skip = "erkki lill" | What is the alternate of the nation with Erkki Lill as the skip? | CREATE TABLE table_name_55 (alternate VARCHAR, skip VARCHAR) |
SELECT DISTINCT T2.source_system_code FROM customer_master_index AS T1 JOIN cmi_cross_references AS T2 ON T1.master_customer_id = T2.master_customer_id WHERE T1.cmi_details = 'Gottlieb , Becker and Wyman' | What are the distinct cross reference source system codes which are related to the master customer details 'Gottlieb, Becker and Wyman'? | CREATE TABLE customer_master_index (master_customer_id VARCHAR, cmi_details VARCHAR); CREATE TABLE cmi_cross_references (source_system_code VARCHAR, master_customer_id VARCHAR) |
SELECT season FROM table_name_82 WHERE player = "jon stefansson" | What Season is listed for the Player of Jon Stefansson? | CREATE TABLE table_name_82 (season VARCHAR, player VARCHAR) |
SELECT venue FROM table_name_95 WHERE away_team = "melbourne tigers" | What was the venue that featured the Melbourne Tigers as the away team? | CREATE TABLE table_name_95 (venue VARCHAR, away_team VARCHAR) |
SELECT winning_score FROM table_name_32 WHERE margin_of_victory = "1 stroke" AND date = "jan 22, 1995" | What was the winning score on Jan 22, 1995 when the margin of victory was 1 stroke? | CREATE TABLE table_name_32 (winning_score VARCHAR, margin_of_victory VARCHAR, date VARCHAR) |
SELECT AVG(land_area__hectares_) FROM table_name_29 WHERE density__inh_km²_ = 815.48 AND population > 411 | What is the average land area with a density of 815.48, and a Population larger than 411? | CREATE TABLE table_name_29 (land_area__hectares_ INTEGER, density__inh_km²_ VARCHAR, population VARCHAR) |
SELECT nat FROM table_name_32 WHERE type = "loan" AND transfer_fee = "loan" | What is the type of loan and the transfer fee loan? | CREATE TABLE table_name_32 (nat VARCHAR, type VARCHAR, transfer_fee VARCHAR) |
SELECT team FROM table_name_86 WHERE high_rebounds = "popeye jones (14)" AND record = "16-28" | What was the team that has a High rebounds of popeye jones (14), and when the Record was 16-28? | CREATE TABLE table_name_86 (team VARCHAR, high_rebounds VARCHAR, record VARCHAR) |
SELECT role FROM table_name_4 WHERE year = 2008 AND festival_organization = "sydney film festival" | What role was at the Sydney Film Festival in 2008? | CREATE TABLE table_name_4 (role VARCHAR, year VARCHAR, festival_organization VARCHAR) |
SELECT award FROM table_name_78 WHERE director_s_ = "candida scott knight" | Name the award for candida scott knight | CREATE TABLE table_name_78 (award VARCHAR, director_s_ VARCHAR) |
SELECT AVG(laps) FROM table_name_77 WHERE driver = "jackie stewart" | What are the average laps for jackie stewart? | CREATE TABLE table_name_77 (laps INTEGER, driver VARCHAR) |
SELECT spokespersons FROM table_184803_4 WHERE voting_order = 9 | list the spokespersons where voting order is 9 | CREATE TABLE table_184803_4 (spokespersons VARCHAR, voting_order VARCHAR) |
SELECT T2.name FROM train_station AS T1 JOIN train AS T2 ON T1.train_id = T2.train_id WHERE NOT T1.station_id IN (SELECT T4.station_id FROM train_station AS T3 JOIN station AS T4 ON T3.station_id = T4.station_id WHERE t4.location = "London") | Find the names of the trains that do not pass any station located in London. | CREATE TABLE station (station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR); CREATE TABLE train_station (train_id VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR) |
SELECT date FROM table_name_28 WHERE attendance = 960 | What is the date when the attendance is 960? | CREATE TABLE table_name_28 (date VARCHAR, attendance VARCHAR) |
SELECT MIN(population_served) FROM table_18268930_1 | What's the minimal number of population served? | CREATE TABLE table_18268930_1 (population_served INTEGER) |
SELECT japanese_name FROM table_name_8 WHERE korean_name_² = "경칩 (驚蟄) gyeongchip" | Which Japanese name has a Korean name ² of 경칩 (驚蟄) gyeongchip? | CREATE TABLE table_name_8 (japanese_name VARCHAR, korean_name_² VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.