answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT position FROM table_11677691_2 WHERE school = "South Pointe High school" | WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY? | CREATE TABLE table_11677691_2 (position VARCHAR, school VARCHAR) |
SELECT original_nfl_team FROM table_name_31 WHERE pos = "s" AND college = "georgia tech" | What's the original NFL team when the POS is S and college is Georgia Tech? | CREATE TABLE table_name_31 (original_nfl_team VARCHAR, pos VARCHAR, college VARCHAR) |
SELECT event FROM table_name_52 WHERE res = "loss" AND time = "5:00" | What event was a loss in 5:00? | CREATE TABLE table_name_52 (event VARCHAR, res VARCHAR, time VARCHAR) |
SELECT opponent FROM table_name_30 WHERE round = 3 | Can you tell me the Opponent that has the Round of 3? | CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR) |
SELECT AVG(active_to_date - active_from_date) FROM customer_contact_channels | What is the average time span of contact channels in the database? | CREATE TABLE customer_contact_channels (active_to_date VARCHAR, active_from_date VARCHAR) |
SELECT MAX(holborn_division) FROM table_16677738_1 WHERE tower_division = 272966 | When 272966 is the tower division what is the highest holborn division? | CREATE TABLE table_16677738_1 (holborn_division INTEGER, tower_division VARCHAR) |
SELECT internet_explorer FROM table_name_4 WHERE opera = "1.67%" AND period = "2012 q1" | What internet explorer has 1.67% as the opera, with 2012 q1 as the period? | CREATE TABLE table_name_4 (internet_explorer VARCHAR, opera VARCHAR, period VARCHAR) |
SELECT MAX(attendance) FROM table_name_43 WHERE date = "october 25" | Which Attendance has a Date of october 25? | CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR) |
SELECT opponents_in_the_final FROM table_name_44 WHERE partnering = "ricardo hocevar" | Who are the finals opponents for the match with partner Ricardo Hocevar? | CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, partnering VARCHAR) |
SELECT nationality FROM table_name_14 WHERE pick > 21 AND college_high_school_club = "college of the sequoias" | What is the nationality of the player with a pick larger than 21 from the College of the Sequoias? | CREATE TABLE table_name_14 (nationality VARCHAR, pick VARCHAR, college_high_school_club VARCHAR) |
SELECT score FROM table_name_25 WHERE outcome = "runner-up" AND date < 1975 | What is the score when the outcome was runner-up, earlier than 1975? | CREATE TABLE table_name_25 (score VARCHAR, outcome VARCHAR, date VARCHAR) |
SELECT regular_judge FROM table_1597866_3 WHERE host = "Anja Rubik" | Name the regular judge when host is anja rubik | CREATE TABLE table_1597866_3 (regular_judge VARCHAR, host VARCHAR) |
SELECT date_of_appointment FROM table_name_68 WHERE replaced_by = "lucien favre" | When was the appointment date for the manager replaced by Lucien Favre? | CREATE TABLE table_name_68 (date_of_appointment VARCHAR, replaced_by VARCHAR) |
SELECT ht FROM table_name_31 WHERE venue = "stadio luigi ferraris" | What was the HT for the game at Stadio Luigi Ferraris? | CREATE TABLE table_name_31 (ht VARCHAR, venue VARCHAR) |
SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = "garbitzen" | What is the short stem for garbitzen? | CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR) |
SELECT position_in_1999 FROM table_name_70 WHERE capacity > 6 OFFSET 500 | What is the position of the team that played at the venue with more than 6,500 capacity? | CREATE TABLE table_name_70 (position_in_1999 VARCHAR, capacity INTEGER) |
SELECT date FROM table_name_57 WHERE result = "106-105" | On what date was the result 106-105? | CREATE TABLE table_name_57 (date VARCHAR, result VARCHAR) |
SELECT score FROM table_name_84 WHERE points = 88 AND record = "38–22–12" | Which Score has Points of 88, and a Record of 38–22–12? | CREATE TABLE table_name_84 (score VARCHAR, points VARCHAR, record VARCHAR) |
SELECT opponent FROM table_name_17 WHERE loss = "báez (5-5)" | Which Opponent has a Loss of báez (5-5)? | CREATE TABLE table_name_17 (opponent VARCHAR, loss VARCHAR) |
SELECT position_in_table FROM table_name_64 WHERE team = "morelia" | What is Position in Table, when Team is "Morelia"? | CREATE TABLE table_name_64 (position_in_table VARCHAR, team VARCHAR) |
SELECT COUNT(type) FROM table_256286_13 WHERE description = "Restoring Capital Punishment" | When restoring capital punishment is the description how many types are there? | CREATE TABLE table_256286_13 (type VARCHAR, description VARCHAR) |
SELECT player FROM table_name_41 WHERE total < 151 AND to_par = 8 | WHAT IS THE PLAYER WITH TOTAL LESS THAN 151, TO PAR OF 8? | CREATE TABLE table_name_41 (player VARCHAR, total VARCHAR, to_par VARCHAR) |
SELECT team FROM table_name_11 WHERE points = 48 AND class = "500 cc" | Who has 48 points in the class of 500 cc? | CREATE TABLE table_name_11 (team VARCHAR, points VARCHAR, class VARCHAR) |
SELECT rank FROM table_name_70 WHERE notes = "fb" AND time = "5:57.31" | Which Rank has Notes of fb, and a Time of 5:57.31? | CREATE TABLE table_name_70 (rank VARCHAR, notes VARCHAR, time VARCHAR) |
SELECT COUNT(overall) FROM table_name_63 WHERE name = "derek smith" AND round > 3 | how many times is the name Derek Smith when the round is higher than 3? | CREATE TABLE table_name_63 (overall VARCHAR, name VARCHAR, round VARCHAR) |
SELECT title, Directed_by FROM Cartoon ORDER BY Original_air_date | list all cartoon titles and their directors ordered by their air date | CREATE TABLE Cartoon (title VARCHAR, Directed_by VARCHAR, Original_air_date VARCHAR) |
SELECT phoneme FROM table_name_16 WHERE realization = "[ɑ]" | Name the phoneme when the realizationis [ɑ] | CREATE TABLE table_name_16 (phoneme VARCHAR, realization VARCHAR) |
SELECT to_par FROM table_name_72 WHERE player = "greg turner" | What is To par, when Player is "Greg Turner"? | CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR) |
SELECT MIN(number_of_seasons_in_top_division) FROM table_name_46 WHERE position_in_2012_13 = "001 1st" | Name the least number of seasons in top division with position in 2012-13 of 001 1st | CREATE TABLE table_name_46 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR) |
SELECT position FROM table_name_98 WHERE player = "michael ruffin" | What position does Michael Ruffin play? | CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR) |
SELECT incumbent FROM table_name_35 WHERE party = "democratic" AND district = "washington 7" | Who is the incumbent from the democratic party in the washington 7 district? | CREATE TABLE table_name_35 (incumbent VARCHAR, party VARCHAR, district VARCHAR) |
SELECT status FROM table_name_54 WHERE name = "ajax" | What status does the boat Ajax have? | CREATE TABLE table_name_54 (status VARCHAR, name VARCHAR) |
SELECT time FROM table_name_82 WHERE home_team = "southern" | What time is it for the southern home team? | CREATE TABLE table_name_82 (time VARCHAR, home_team VARCHAR) |
SELECT dimension__m_ FROM table_name_57 WHERE range__km_ = "8,000 – 10,000" | Tell me the dimension that has a range of 8,000 – 10,000 | CREATE TABLE table_name_57 (dimension__m_ VARCHAR, range__km_ VARCHAR) |
SELECT college FROM table_name_47 WHERE round = 3 AND pick__number = 84 | Which college has a pick # 84 in round 3? | CREATE TABLE table_name_47 (college VARCHAR, round VARCHAR, pick__number VARCHAR) |
SELECT MAX(grid) FROM table_name_14 WHERE driver = "maurice trintignant" AND laps < 87 | Tell me the highest Grid for Maurice Trintignant and laps less than 87 | CREATE TABLE table_name_14 (grid INTEGER, driver VARCHAR, laps VARCHAR) |
SELECT tries_against FROM table_name_47 WHERE try_bonus = "8" | With a Try Bonus of 8, what is the Tries Against? | CREATE TABLE table_name_47 (tries_against VARCHAR, try_bonus VARCHAR) |
SELECT founding_date FROM table_2538117_7 WHERE letters = "ΚΨΚ" | What is the founding date if the letters are κψκ? | CREATE TABLE table_2538117_7 (founding_date VARCHAR, letters VARCHAR) |
SELECT club FROM table_name_28 WHERE runners_up > 1 AND last_final_won = "2010" | What club has over 1 runners-up and last won the final in 2010? | CREATE TABLE table_name_28 (club VARCHAR, runners_up VARCHAR, last_final_won VARCHAR) |
SELECT venue FROM table_name_60 WHERE score = "2–0" | Which venue has a scoreof 2–0? | CREATE TABLE table_name_60 (venue VARCHAR, score VARCHAR) |
SELECT home FROM table_name_20 WHERE venue = "bucharest" AND score = "9-9" | Who was at Home at the Bucharest Venue with a Score of 9-9? | CREATE TABLE table_name_20 (home VARCHAR, venue VARCHAR, score VARCHAR) |
SELECT country FROM table_name_18 WHERE total < 153 AND year_s__won = "1984" | What is the Country of the Player with a Total less than 153 and Year(s) won of 1984? | CREATE TABLE table_name_18 (country VARCHAR, total VARCHAR, year_s__won VARCHAR) |
SELECT profits__billion_$_ FROM table_1682026_6 WHERE market_value__billion_$_ = "204.9" | what is the amount of profits in billions for companies with a market value of 204.9 billion? | CREATE TABLE table_1682026_6 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR) |
SELECT candidates FROM table_1341423_49 WHERE incumbent = "Tom Petri" | Who ran in the district elections won by Tom Petri? | CREATE TABLE table_1341423_49 (candidates VARCHAR, incumbent VARCHAR) |
SELECT MAX(poles) FROM table_25548630_1 | What are the most poles listed? | CREATE TABLE table_25548630_1 (poles INTEGER) |
SELECT MAX(flaps) FROM table_name_2 WHERE podiums = 24 AND races > 143 | WHAT IS THE FLAPS WITH PODIUMS OF 24 AND RACES BIGGER THAN 143? | CREATE TABLE table_name_2 (flaps INTEGER, podiums VARCHAR, races VARCHAR) |
SELECT date_of_designation FROM table_name_36 WHERE name = "kurume" | Which Date of designation has a Name of kurume? | CREATE TABLE table_name_36 (date_of_designation VARCHAR, name VARCHAR) |
SELECT third FROM table_name_83 WHERE location = "winterberg" AND second = "monique riekewald" | In Winterberg, who was 3rd the year that Monique Riekewald was 2nd? | CREATE TABLE table_name_83 (third VARCHAR, location VARCHAR, second VARCHAR) |
SELECT COUNT(high_assists) FROM table_17311759_7 WHERE date = "February 4" | how many high assists stats were maade on february 4 | CREATE TABLE table_17311759_7 (high_assists VARCHAR, date VARCHAR) |
SELECT COUNT(original_airdate) FROM table_27547668_4 WHERE written_by = "Allan Hawco" | what is the number of original airdate written by allan hawco? | CREATE TABLE table_27547668_4 (original_airdate VARCHAR, written_by VARCHAR) |
SELECT date FROM table_name_79 WHERE competition = "friendly" AND venue = "pretoria, south africa" | What date has friendly as the competition, with pretoria, South Africa as the venue? | CREATE TABLE table_name_79 (date VARCHAR, competition VARCHAR, venue VARCHAR) |
SELECT entrant FROM table_name_68 WHERE engine = "cosworth dfv v8" AND chassis = "dn9" | What team uses a Cosworth DFV V8 engine and DN9 Chassis? | CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR) |
SELECT player FROM table_name_97 WHERE debut = "age 18 v plymouth , 14 august 2012" AND born = "portsmouth" | Who was the player with a debut of age 18 v plymouth , 14 august 2012, and born in Portsmouth? | CREATE TABLE table_name_97 (player VARCHAR, debut VARCHAR, born VARCHAR) |
SELECT paris__48___byes_ FROM table_20711545_1 WHERE seed = 3 | What was the result for Paris(48-byes) for 3 seed? | CREATE TABLE table_20711545_1 (paris__48___byes_ VARCHAR, seed VARCHAR) |
SELECT MIN(round) FROM table_name_99 WHERE player = "melvin johnson" | What was the lowest round that Melvin Johnson played? | CREATE TABLE table_name_99 (round INTEGER, player VARCHAR) |
SELECT country FROM table_name_86 WHERE author = "based on sophocles and euripides" | Which Country's Author is based on Sophocles and Euripides? | CREATE TABLE table_name_86 (country VARCHAR, author VARCHAR) |
SELECT result FROM table_name_97 WHERE year = 1973 | What was the Result in Year 1973? | CREATE TABLE table_name_97 (result VARCHAR, year VARCHAR) |
SELECT tally FROM table_name_86 WHERE total < 27 AND average > 3.41 | Name the tally with total less than 27 and average more than 3.41 | CREATE TABLE table_name_86 (tally VARCHAR, total VARCHAR, average VARCHAR) |
SELECT name FROM table_name_86 WHERE place = 1 | Can you tell me the Name that has the Place of 1? | CREATE TABLE table_name_86 (name VARCHAR, place VARCHAR) |
SELECT venue FROM table_name_38 WHERE home_team = "essendon" | Where does Essendon play their home games? | CREATE TABLE table_name_38 (venue VARCHAR, home_team VARCHAR) |
SELECT COUNT(episode__number) FROM table_17525955_2 WHERE us_air_date = "Saturday, July 11, 2009" | How many episodes aired Saturday, July 11, 2009 | CREATE TABLE table_17525955_2 (episode__number VARCHAR, us_air_date VARCHAR) |
SELECT t3.District_name 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.Type = "City Mall" INTERSECT SELECT t3.District_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_... | Find the names of districts where have both city mall and village store type stores. | CREATE TABLE district (District_name VARCHAR, district_id VARCHAR); CREATE TABLE store (store_id VARCHAR, Type VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR) |
SELECT SUM(assets__billion_) AS $_ FROM table_name_8 WHERE industry = "oil and gas" AND rank = 9 AND market_value__billion_$_ > 121.7 | How many Assets (billion $) has an Industry of oil and gas, and a Rank of 9, and a Market Value (billion $) larger than 121.7? | CREATE TABLE table_name_8 (assets__billion_ INTEGER, market_value__billion_$_ VARCHAR, industry VARCHAR, rank VARCHAR) |
SELECT record FROM table_name_46 WHERE decision = "valiquette" AND november = 23 | What is the record when the decision was valiquette on November 23? | CREATE TABLE table_name_46 (record VARCHAR, decision VARCHAR, november VARCHAR) |
SELECT MIN(joined_tschl) FROM table_16384648_2 | What's the earliest year anybody joined the hockey league? | CREATE TABLE table_16384648_2 (joined_tschl INTEGER) |
SELECT SUM(february) FROM table_name_8 WHERE record = "40-15-5" | How many games in February have a record of 40-15-5? | CREATE TABLE table_name_8 (february INTEGER, record VARCHAR) |
SELECT target_version FROM table_name_68 WHERE license = "lgpl or mpl" | What is Target Version, when License is LGPL or MPL? | CREATE TABLE table_name_68 (target_version VARCHAR, license VARCHAR) |
SELECT MIN(points) AS defending FROM table_24431264_18 WHERE player = "Radek Štěpánek" | List the total number of defensive points for radek štěpánek? | CREATE TABLE table_24431264_18 (points INTEGER, player VARCHAR) |
SELECT MAX(league) AS Cup FROM table_name_95 WHERE fa_cup > 2 | What's the highest League Cup with an FA Cup thats larger than 2? | CREATE TABLE table_name_95 (league INTEGER, fa_cup INTEGER) |
SELECT t1.name FROM inst AS t1 JOIN authorship AS t2 ON t1.instid = t2.instid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.name ORDER BY COUNT(*) DESC LIMIT 1 | Find the name of the organization that has published the largest number of papers. | CREATE TABLE inst (name VARCHAR, instid VARCHAR); CREATE TABLE authorship (instid VARCHAR, paperid VARCHAR); CREATE TABLE papers (paperid VARCHAR) |
SELECT team FROM table_name_8 WHERE chassis = "dallara f302" AND champion = "bastian kolmsee" | Which team, with champion Bastian Kolmsee, used a Dallara f302 for the chassis? | CREATE TABLE table_name_8 (team VARCHAR, chassis VARCHAR, champion VARCHAR) |
SELECT record FROM table_name_27 WHERE date = "29 march 2008" | What is the Record with a Date with 29 march 2008? | CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR) |
SELECT country FROM table_name_27 WHERE course = "merion golf club" AND to_par_[a_] = "e" | What is the country with a course of merion golf club, and a to par [1] of e? | CREATE TABLE table_name_27 (country VARCHAR, course VARCHAR, to_par_ VARCHAR, a_ VARCHAR) |
SELECT MAX(crowd) FROM table_name_94 WHERE away_team = "south melbourne" | What was the biggest crowd when South Melbourne was an away team? | CREATE TABLE table_name_94 (crowd INTEGER, away_team VARCHAR) |
SELECT MIN(not_outs) FROM table_name_76 WHERE innings > 25 | What is the lowest number of Not Outs when there were more than 25 innings? | CREATE TABLE table_name_76 (not_outs INTEGER, innings INTEGER) |
SELECT COUNT(national_titles) FROM table_14115168_4 WHERE school = "Peru State College" | how many big wins does peru state college have | CREATE TABLE table_14115168_4 (national_titles VARCHAR, school VARCHAR) |
SELECT year_s__won FROM table_name_69 WHERE total = 291 | In which year(s) did the person who has a total of 291 win? | CREATE TABLE table_name_69 (year_s__won VARCHAR, total VARCHAR) |
SELECT entered_service FROM table_name_54 WHERE locomotive = "h1" | What is the Entered service date of the H1 Locomotive? | CREATE TABLE table_name_54 (entered_service VARCHAR, locomotive VARCHAR) |
SELECT edition FROM table_name_45 WHERE result = "6-3, 6-0, 6-2" | What Edition had a Result of 6-3, 6-0, 6-2? | CREATE TABLE table_name_45 (edition VARCHAR, result VARCHAR) |
SELECT career FROM table_name_61 WHERE super_g = "5" AND combined = "6" | What Career has a Super G of 5, and a Combined of 6? | CREATE TABLE table_name_61 (career VARCHAR, super_g VARCHAR, combined VARCHAR) |
SELECT series_leader FROM table_name_93 WHERE date = "october 9" | What is the Series leader with a Date that is october 9? | CREATE TABLE table_name_93 (series_leader VARCHAR, date 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(viewers__in_millions_) FROM table_2102945_1 WHERE run_time = "24:31" | When 24:31 is the run time how many measurements of viewers (in millions) are there? | CREATE TABLE table_2102945_1 (viewers__in_millions_ VARCHAR, run_time VARCHAR) |
SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE prison_inmates_women = 153 | How many regions had 153 women prison inmates? | CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, prison_inmates_women VARCHAR) |
SELECT MAX(year) FROM table_name_35 WHERE start = "1st" AND chassis = "g-force" | What was the most recent year when a g-force chassis started in 1st? | CREATE TABLE table_name_35 (year INTEGER, start VARCHAR, chassis VARCHAR) |
SELECT goal_difference FROM table_name_61 WHERE position = 22 | What was the Goal Difference for Postion 22? | CREATE TABLE table_name_61 (goal_difference VARCHAR, position VARCHAR) |
SELECT player FROM table_name_17 WHERE home_town = "swift current, ab" | Which player's home town is Swift Current, AB? | CREATE TABLE table_name_17 (player VARCHAR, home_town VARCHAR) |
SELECT date FROM table_name_76 WHERE goal = 24 | On what date did Goal 24 take place? | CREATE TABLE table_name_76 (date VARCHAR, goal VARCHAR) |
SELECT t1.pixels FROM screen_mode AS t1 JOIN phone AS t2 ON t1.Graphics_mode = t2.screen_mode WHERE t2.Accreditation_type = 'Provisional' INTERSECT SELECT t1.pixels FROM screen_mode AS t1 JOIN phone AS t2 ON t1.Graphics_mode = t2.screen_mode WHERE t2.Accreditation_type = 'Full' | Find the pixels of the screen modes that are used by both phones with full accreditation types and phones with Provisional accreditation types. | CREATE TABLE phone (screen_mode VARCHAR, Accreditation_type VARCHAR); CREATE TABLE screen_mode (pixels VARCHAR, Graphics_mode VARCHAR) |
SELECT MIN(total) FROM table_name_97 WHERE bronze > 0 AND silver = 6 AND rank < 3 | What is the lowest total medals the team with more than 0 bronze, 6 silver, and a rank higher than 3 has? | CREATE TABLE table_name_97 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR) |
SELECT scores FROM table_29141354_2 WHERE jamie_and_johns_guest = "Phillips Idowu" | What were the scores when Jamie and Johns guest was Phillips Idowu? | CREATE TABLE table_29141354_2 (scores VARCHAR, jamie_and_johns_guest VARCHAR) |
SELECT MIN(grid) FROM table_name_90 WHERE driver = "thierry boutsen" AND laps < 44 | Which grid is lower for thierry boutsen which laps less than 44? | CREATE TABLE table_name_90 (grid INTEGER, driver VARCHAR, laps VARCHAR) |
SELECT T3.Name, T2.Date, T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID | Show the names of people, and dates and venues of debates they are on the affirmative side. | CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Date VARCHAR, Venue VARCHAR, Debate_ID VARCHAR); CREATE TABLE debate_people (Debate_ID VARCHAR, Affirmative VARCHAR) |
SELECT date FROM table_22879323_10 WHERE record = "11-67" | What date was the record 11-67? | CREATE TABLE table_22879323_10 (date VARCHAR, record VARCHAR) |
SELECT AVG(starts) FROM table_name_94 WHERE chassis = "focus rs wrc 08" AND finishes > 27 | what is the average starts when the chassis is focus rs wrc 08 and finishes is more than 27? | CREATE TABLE table_name_94 (starts INTEGER, chassis VARCHAR, finishes VARCHAR) |
SELECT COUNT(year) FROM table_name_25 WHERE category = "outstanding featured actor in a musical" AND nominated_work = "evita" | What year was Evita nominated for outstanding featured actor in a musical? | CREATE TABLE table_name_25 (year VARCHAR, category VARCHAR, nominated_work VARCHAR) |
SELECT MIN(year) FROM table_name_40 WHERE points < 3 AND entrant = "parmalat forti ford" | What is the earliest year with less than 3 points and Parmalat Forti Ford was the entrant? | CREATE TABLE table_name_40 (year INTEGER, points VARCHAR, entrant VARCHAR) |
SELECT date FROM table_name_65 WHERE score = "0–0" AND away_team = "scunthorpe united" | When has a Score of 0–0, and a Away team of scunthorpe united? | CREATE TABLE table_name_65 (date VARCHAR, score VARCHAR, away_team VARCHAR) |
SELECT population__2010_ FROM table_1691800_2 WHERE municipality = "San Jacinto" | what is the population where municipality is san jacinto? | CREATE TABLE table_1691800_2 (population__2010_ VARCHAR, municipality VARCHAR) |
SELECT parent_magazine FROM table_name_78 WHERE title = "dengeki g's festival! deluxe" | What is the parent magazine of Dengeki g's festival! deluxe? | CREATE TABLE table_name_78 (parent_magazine VARCHAR, title VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.