answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT venue FROM table_name_70 WHERE pens = "0" AND tries = "1" | In which venue did 0 pens and 1 try occur? | CREATE TABLE table_name_70 (venue VARCHAR, pens VARCHAR, tries VARCHAR) |
SELECT focal_plane_in_ft__m_ FROM table_25597136_1 WHERE location = "Naidi Hills, Basco" | Location for focal plane in ft (m) is naidi hills, basco. | CREATE TABLE table_25597136_1 (focal_plane_in_ft__m_ VARCHAR, location VARCHAR) |
SELECT manager FROM table_name_29 WHERE captain = "sol campbell" | Which manager has Sol Campbell as captain? | CREATE TABLE table_name_29 (manager VARCHAR, captain VARCHAR) |
SELECT part_2 FROM table_name_69 WHERE part_4 = "*haldanaz" | What was part 2 when part 4 was *haldanaz? | CREATE TABLE table_name_69 (part_2 VARCHAR, part_4 VARCHAR) |
SELECT T1.Year FROM film_market_estimation AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID WHERE T2.Country = "Japan" ORDER BY T1.Year DESC | Please list the years of film market estimations when the market is in country "Japan" in descending order. | CREATE TABLE film_market_estimation (Year VARCHAR, Market_ID VARCHAR); CREATE TABLE market (Market_ID VARCHAR, Country VARCHAR) |
SELECT country FROM table_name_70 WHERE player = "bobby nichols" | What country does Bobby Nichols play for? | CREATE TABLE table_name_70 (country VARCHAR, player VARCHAR) |
SELECT COUNT(*) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2000 | How many players were in the team Boston Red Stockings in 2000? | CREATE TABLE salary (team_id VARCHAR, year VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR) |
SELECT time FROM table_26842217_10 WHERE visiting_team = "Georgia" | Name the time for georgia | CREATE TABLE table_26842217_10 (time VARCHAR, visiting_team VARCHAR) |
SELECT podiums FROM table_10753917_1 WHERE team = "Alfa Romeo" | Which podiums did the alfa romeo team have? | CREATE TABLE table_10753917_1 (podiums VARCHAR, team VARCHAR) |
SELECT T1.stu_fname, T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'C' OR T2.enroll_grade = 'A' | Find names of all students who took some course and got A or C. | CREATE TABLE enroll (stu_num VARCHAR, enroll_grade VARCHAR); CREATE TABLE student (stu_fname VARCHAR, stu_lname VARCHAR, stu_num VARCHAR) |
SELECT team FROM table_13464416_5 WHERE game = 20 | Which team played in game 20? | CREATE TABLE table_13464416_5 (team VARCHAR, game VARCHAR) |
SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'male' AND T1.job = 'doctor' | Find the male friend of Alice whose job is a doctor? | CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, job VARCHAR, gender VARCHAR) |
SELECT MIN(total) FROM table_name_64 WHERE bronze > 1 AND gold > 8 AND silver < 10 | What is the lowest total for bronzes over 1, golds over 8, and fewer than 10 silvers? | CREATE TABLE table_name_64 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR) |
SELECT MIN(total_points) FROM table_name_8 WHERE draw < 4 AND artist = "karine trécy" | What is the lowest total points Karine Trécy has with less than 4 draws? | CREATE TABLE table_name_8 (total_points INTEGER, draw VARCHAR, artist VARCHAR) |
SELECT COUNT(rank) FROM table_1682026_9 WHERE profits__billion_$_ = "9.52" | Name the number of rank for 9.52 profits | CREATE TABLE table_1682026_9 (rank VARCHAR, profits__billion_$_ VARCHAR) |
SELECT MIN(kurdistan_democratic_party) FROM table_24440361_1 WHERE total_kurdistan_list = 10 | Name the kurdistan democratic party for kurdistan list being 10 | CREATE TABLE table_24440361_1 (kurdistan_democratic_party INTEGER, total_kurdistan_list VARCHAR) |
SELECT SUM(T1.budgeted) FROM budget AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T2.school_name = 'Glenn' | What is the total budget amount for school "Glenn" in all years? | CREATE TABLE budget (budgeted INTEGER, school_id VARCHAR); CREATE TABLE school (school_id VARCHAR, school_name VARCHAR) |
SELECT MIN(number_of_households) FROM table_name_77 WHERE median_family_income = "$41,778" AND population > 38 OFFSET 319 | What is the lowest number of households for the entry with a median income of $41,778 and a population greater than 38,319? | CREATE TABLE table_name_77 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR) |
SELECT MAX(bronze) FROM table_name_37 WHERE silver < 0 | How many Bronze medals did the Nation with 0 Silver receive? | CREATE TABLE table_name_37 (bronze INTEGER, silver INTEGER) |
SELECT date_of_appointment FROM table_24172157_3 WHERE team = "Liverpool" AND incoming_manager = "Roy Hodgson" | What was the date of appointment for incoming manager Roy Hodgson and the team is Liverpool? | CREATE TABLE table_24172157_3 (date_of_appointment VARCHAR, team VARCHAR, incoming_manager VARCHAR) |
SELECT callsign FROM table_17487395_1 WHERE branding = "Mom's Radio 101.5 Tacloban" | What is the call sign for the station that uses the branding, mom's radio 101.5 tacloban? | CREATE TABLE table_17487395_1 (callsign VARCHAR, branding VARCHAR) |
SELECT engine FROM table_name_27 WHERE points = 0 AND chassis = "porsche 718" AND year = 1961 | what is the engine that saw 0 points, and a Chassis of porsche 718, in 1961? | CREATE TABLE table_name_27 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR) |
SELECT COUNT(location_attendance) FROM table_17080868_6 WHERE date = "December 29" | what is the total number of attendance where the date is december 29? | CREATE TABLE table_17080868_6 (location_attendance VARCHAR, date VARCHAR) |
SELECT COUNT(call_sign) FROM table_1949746_1 WHERE frequency = "1180 AM" | When 1180 am is the frequency how many call signs are there? | CREATE TABLE table_1949746_1 (call_sign VARCHAR, frequency VARCHAR) |
SELECT home FROM table_name_96 WHERE score = "2 – 2" | Who was the home team at the game that had a score of 2 – 2? | CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR) |
SELECT variant__with_niqqud__ FROM table_name_77 WHERE phonetic_realisation = "[[[|v]]]" | What is the variant with niqqud for a phonetic realisation of [[[|v]]]? | CREATE TABLE table_name_77 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR) |
SELECT significand__fraction_field_ FROM table_name_2 WHERE value = "1.0" | What's the Significant of a value 1.0? | CREATE TABLE table_name_2 (significand__fraction_field_ VARCHAR, value VARCHAR) |
SELECT COUNT(institution) FROM table_261895_1 WHERE founded = 1833 | in 1833, how many institutions were created? | CREATE TABLE table_261895_1 (institution VARCHAR, founded VARCHAR) |
SELECT date FROM table_name_74 WHERE home_team = "melbourne" | Name the date with a home team of melbourne | CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR) |
SELECT MAX(stage) FROM table_25655781_17 | How many stages are there? | CREATE TABLE table_25655781_17 (stage INTEGER) |
SELECT date FROM table_name_18 WHERE attendance = "16,404" | What was the date of the game with 16,404 people? | CREATE TABLE table_name_18 (date VARCHAR, attendance VARCHAR) |
SELECT start_station_name, end_station_name FROM trip ORDER BY id LIMIT 3 | Give me the start station and end station for the trips with the three oldest id. | CREATE TABLE trip (start_station_name VARCHAR, end_station_name VARCHAR, id VARCHAR) |
SELECT MIN(year_named) FROM table_name_84 WHERE name = "nuptadi planitia" AND diameter__km_ > 1 OFFSET 200.0 | Which Year named has a Name of nuptadi planitia, and a Diameter (km) larger than 1,200.0? | CREATE TABLE table_name_84 (year_named INTEGER, name VARCHAR, diameter__km_ VARCHAR) |
SELECT mission FROM table_name_47 WHERE apogee = "707 km" | What kind of Mission has a Apogee of 707 km? | CREATE TABLE table_name_47 (mission VARCHAR, apogee VARCHAR) |
SELECT role FROM table_name_78 WHERE closing_broadway_cast = "adam grupper" | Which role had a closing broadway cast of Adam Grupper? | CREATE TABLE table_name_78 (role VARCHAR, closing_broadway_cast VARCHAR) |
SELECT COUNT(round) FROM table_name_95 WHERE player = "honester davidson" | How many rounds did Honester Davidson play? | CREATE TABLE table_name_95 (round VARCHAR, player VARCHAR) |
SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*) | Please show the record formats of orchestras in ascending order of count. | CREATE TABLE orchestra (Major_Record_Format VARCHAR) |
SELECT place_of_birth FROM table_name_78 WHERE elevated = "may 16, 1288" AND cardinalatial_title = "deacon of s. eustachio" | What is the place of birth when elevated is May 16, 1288, and cardinalatial title is Deacon of S. Eustachio? | CREATE TABLE table_name_78 (place_of_birth VARCHAR, elevated VARCHAR, cardinalatial_title VARCHAR) |
SELECT tv_season FROM table_10120207_8 WHERE season = 12 | What is the year of the season that was 12? | CREATE TABLE table_10120207_8 (tv_season VARCHAR, season VARCHAR) |
SELECT COUNT(rank) FROM table_name_27 WHERE reb_avg < 6.1 | How many ranks have a rebound average smaller than 6.1? | CREATE TABLE table_name_27 (rank VARCHAR, reb_avg INTEGER) |
SELECT speed FROM table_name_24 WHERE points = 1 | What was the speed of the rider that earned 1 point? | CREATE TABLE table_name_24 (speed VARCHAR, points VARCHAR) |
SELECT song FROM table_name_24 WHERE artist = "terence trent d'arby" | What song is done by Terence Trent D'Arby? | CREATE TABLE table_name_24 (song VARCHAR, artist VARCHAR) |
SELECT date FROM table_name_23 WHERE rank = 2 | What Date has a Rank of 2? | CREATE TABLE table_name_23 (date VARCHAR, rank VARCHAR) |
SELECT area_km_2 FROM table_24066938_1 WHERE member_state = "Austria" | What is the area of Austria's territory in square kilometers? | CREATE TABLE table_24066938_1 (area_km_2 VARCHAR, member_state VARCHAR) |
SELECT title FROM table_22170495_7 WHERE original_airing = "April 19, 2010" | Which episodes originally aired on April 19, 2010? | CREATE TABLE table_22170495_7 (title VARCHAR, original_airing VARCHAR) |
SELECT AVG(december) FROM table_name_18 WHERE opponent = "@ toronto maple leafs" | Can you tell me the average December rhat has the Opponent of @ toronto maple leafs? | CREATE TABLE table_name_18 (december INTEGER, opponent VARCHAR) |
SELECT SUM(3 AS rd_pl) FROM table_name_31 WHERE titles < 0 | What is the total number of 3rd place finishes for racers with 0 titles? | CREATE TABLE table_name_31 (titles INTEGER) |
SELECT COUNT(round) FROM table_name_14 WHERE college = "nebraska" AND overall > 40 | What is the sum number of round with Nebraska as the college and the overall greater than 40? | CREATE TABLE table_name_14 (round VARCHAR, college VARCHAR, overall VARCHAR) |
SELECT MAX(_number) FROM table_24108789_6 WHERE player = "Steve Stricker" | Name the most number for steve stricker | CREATE TABLE table_24108789_6 (_number INTEGER, player VARCHAR) |
SELECT city FROM table_name_55 WHERE rank < 8 AND first < 1980 AND last > 1960 AND school = "highland" | What city is the School, Highland, in that ranks less than 8 and had its first title before 1980 and its last title later than 1960? | CREATE TABLE table_name_55 (city VARCHAR, school VARCHAR, last VARCHAR, rank VARCHAR, first VARCHAR) |
SELECT result FROM table_name_66 WHERE date = "november 23, 2008" | What was the final score of the game on November 23, 2008? | CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) |
SELECT competition FROM table_name_38 WHERE result = "17-1" | What competition has 17-1 as the result? | CREATE TABLE table_name_38 (competition VARCHAR, result VARCHAR) |
SELECT date FROM table_name_22 WHERE visitor = "chicago" | What is the date of the game that had a visitor of Chicago? | CREATE TABLE table_name_22 (date VARCHAR, visitor VARCHAR) |
SELECT turbo_boost FROM table_269920_17 WHERE model = "E5504" | Does the model e5504 have a turbo boost? | CREATE TABLE table_269920_17 (turbo_boost VARCHAR, model VARCHAR) |
SELECT record FROM table_name_35 WHERE time = "8:17" | What was the record after the fight that lasted 8:17? | CREATE TABLE table_name_35 (record VARCHAR, time VARCHAR) |
SELECT circuit FROM table_1140105_6 WHERE race_name = "XI Syracuse Grand Prix" | What is the name of the circuit where the race xi Syracuse grand prix was held? | CREATE TABLE table_1140105_6 (circuit VARCHAR, race_name VARCHAR) |
SELECT country FROM table_name_93 WHERE player = "ian woosnam" | What is the country of player ian woosnam? | CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR) |
SELECT us_viewers__millions_ FROM table_22265225_1 WHERE no_in_season = "12" | How many million U.s. Viewers watched episode 12 in the season? | CREATE TABLE table_22265225_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) |
SELECT MIN(erp_w) FROM table_name_27 WHERE frequency_mhz = "89.3 fm" | What is the least ERP W when the freguency MHz is 89.3 fm? | CREATE TABLE table_name_27 (erp_w INTEGER, frequency_mhz VARCHAR) |
SELECT gold FROM table_name_28 WHERE bronze = 1 | What shows for gold when bronze is 1? | CREATE TABLE table_name_28 (gold VARCHAR, bronze VARCHAR) |
SELECT SUM(tonnage__grt_) FROM table_name_30 WHERE time = "00:10" AND casualties < 42 | What is the sum of tonnage with a time at 00:10 and less than 42 casualties? | CREATE TABLE table_name_30 (tonnage__grt_ INTEGER, time VARCHAR, casualties VARCHAR) |
SELECT time FROM table_name_14 WHERE team_s_ = "minnesota vikings" AND artist_s_ = "xxx" | How long is the XXX track used by the Minnesota Vikings? | CREATE TABLE table_name_14 (time VARCHAR, team_s_ VARCHAR, artist_s_ VARCHAR) |
SELECT theme FROM table_name_6 WHERE days < 148 AND series = "season 3" | What's the theme for a series of season 3 with smaller than 148 days? | CREATE TABLE table_name_6 (theme VARCHAR, days VARCHAR, series VARCHAR) |
SELECT state_rank_by_revenue FROM table_21926985_2 WHERE company_name = "Murphy Oil" | What is the rank for Murphy Oil? | CREATE TABLE table_21926985_2 (state_rank_by_revenue VARCHAR, company_name VARCHAR) |
SELECT AVG(january) FROM table_name_92 WHERE opponent = "chicago black hawks" | What is the average date in January that the Rangers played against Chicago Black Hawks? | CREATE TABLE table_name_92 (january INTEGER, opponent VARCHAR) |
SELECT Country, COUNT(*) FROM climber GROUP BY Country | Please show the countries and the number of climbers from each country. | CREATE TABLE climber (Country VARCHAR) |
SELECT title FROM table_name_7 WHERE peak_position = 10 AND weeks_on_chart < 19 | What is the title of the single with the peak position of 10 and weeks on chart is less than 19? | CREATE TABLE table_name_7 (title VARCHAR, peak_position VARCHAR, weeks_on_chart VARCHAR) |
SELECT title FROM table_11111116_7 WHERE us_viewers__million_ = "3.02" | What were the names of the episodes that had 3.02 million U.S. viewers? | CREATE TABLE table_11111116_7 (title VARCHAR, us_viewers__million_ VARCHAR) |
SELECT opponent FROM table_name_73 WHERE competition = "challenge" AND result = "8-2 w" | Which opponent completed a challenge competition with a result of 8-2 w? | CREATE TABLE table_name_73 (opponent VARCHAR, competition VARCHAR, result VARCHAR) |
SELECT SUM(q_) > _1.4 FROM table_name_51 WHERE q_ > _1.3 = 455 AND q_ > _1.2 < 3 OFFSET 028 | What is the total of q > 1.4 when q > 1.3 is 455, and q >1.2 is less than 3,028? | CREATE TABLE table_name_51 (q_ INTEGER) |
SELECT metric_value FROM table_name_19 WHERE russian = "че́тверть" | What is the Metric value of Russian че́тверть? | CREATE TABLE table_name_19 (metric_value VARCHAR, russian VARCHAR) |
SELECT event FROM table_name_15 WHERE opponent = "bernard ackah" | Which Event has the Opponent, Bernard Ackah? | CREATE TABLE table_name_15 (event VARCHAR, opponent VARCHAR) |
SELECT COUNT(total) FROM table_name_1 WHERE player = "karrie webb" | What is the total for player karrie webb? | CREATE TABLE table_name_1 (total VARCHAR, player VARCHAR) |
SELECT cubic_inches__exact_ FROM table_name_86 WHERE unit = "kruzhka" | What are the exact Cubic inches of the Unit of kruzhka? | CREATE TABLE table_name_86 (cubic_inches__exact_ VARCHAR, unit VARCHAR) |
SELECT player FROM table_name_15 WHERE school = "seattle prep" | What is the player that is from seattle prep? | CREATE TABLE table_name_15 (player VARCHAR, school VARCHAR) |
SELECT latitude FROM table_name_70 WHERE distance = "42.5km" | what is the latitude when the distance is 42.5km? | CREATE TABLE table_name_70 (latitude VARCHAR, distance VARCHAR) |
SELECT res FROM table_name_96 WHERE opponent = "rory markham" | What was the result when the opponent was Rory Markham? | CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR) |
SELECT MIN(international_mail) FROM table_name_82 WHERE domestic_freight < 72 AND domestic_mail = 0 AND year < 2012 AND total_freight_and_mail > 4 OFFSET 695 | What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695? | CREATE TABLE table_name_82 (international_mail INTEGER, total_freight_and_mail VARCHAR, year VARCHAR, domestic_freight VARCHAR, domestic_mail VARCHAR) |
SELECT SUM(interview) FROM table_name_51 WHERE country = "illinois" AND preliminary < 8.558 | What is the number for the interview in Illinois when the preliminary is less than 8.558? | CREATE TABLE table_name_51 (interview INTEGER, country VARCHAR, preliminary VARCHAR) |
SELECT local_name FROM table_name_60 WHERE network = "nova tv" | Which Local name has a Network of nova tv? | CREATE TABLE table_name_60 (local_name VARCHAR, network VARCHAR) |
SELECT date FROM table_name_69 WHERE country = "united kingdom" AND catalog = "cdzap22" | What is the date for the catalog CDZAP22 in the United Kingdom? | CREATE TABLE table_name_69 (date VARCHAR, country VARCHAR, catalog VARCHAR) |
SELECT COUNT(1 AS st_prize___) AS $__ FROM table_name_15 WHERE country = "united states" AND score < 271 AND year > 1964 AND winner = "bobby mitchell" | What is the total number of 1st prize ($) that has a United States country with a score lower than 271 and in a year after 1964 with a winner of Bobby Mitchell? | CREATE TABLE table_name_15 (winner VARCHAR, year VARCHAR, country VARCHAR, score VARCHAR) |
SELECT died FROM table_name_62 WHERE ordained_bishop = "july 25, 1902" | When did the archbishop that was ordained a bishop on July 25, 1902 die? | CREATE TABLE table_name_62 (died VARCHAR, ordained_bishop VARCHAR) |
SELECT tournament FROM table_name_27 WHERE runner_s__up = "ian baker-finch" | In which tournament was Ian Baker-Finch the runner-up? | CREATE TABLE table_name_27 (tournament VARCHAR, runner_s__up VARCHAR) |
SELECT AVG(T1.Votes) FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID WHERE T2.Party = "Republican" | What is the average number of votes of representatives from party "Republican"? | CREATE TABLE election (Votes INTEGER, Representative_ID VARCHAR); CREATE TABLE representative (Representative_ID VARCHAR, Party VARCHAR) |
SELECT tournament FROM table_name_5 WHERE margin_of_victory = "1 stroke" AND date = "18 jan 2009" | What is Tournament, when Margin Of Victory is 1 Stroke, and when Date is 18 Jan 2009? | CREATE TABLE table_name_5 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR) |
SELECT high_assists FROM table_name_50 WHERE date = "march 5" | Who had the highest assists of the game on March 5? | CREATE TABLE table_name_50 (high_assists VARCHAR, date VARCHAR) |
SELECT opponent FROM table_name_21 WHERE attendance = "bye" | which team had a bye week? | CREATE TABLE table_name_21 (opponent VARCHAR, attendance VARCHAR) |
SELECT COUNT(location) FROM table_17822401_1 WHERE branding = "Radyo5 101.9 News FM" | How many stations are called radyo5 101.9 news fm? | CREATE TABLE table_17822401_1 (location VARCHAR, branding VARCHAR) |
SELECT prohibition_ticket FROM table_name_39 WHERE greenback_ticket = "abraham j. cuddeback" | Who was on the prohibition ticket when Abraham J. Cuddeback was on the Greenback ticket? | CREATE TABLE table_name_39 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR) |
SELECT absorb__nm_ FROM table_name_40 WHERE color = "orange" | What is the Absorbtion (in nanometers) of the color Orange? | CREATE TABLE table_name_40 (absorb__nm_ VARCHAR, color VARCHAR) |
SELECT author FROM table_22464685_1 WHERE transliteration = "lasha-giorgis droindeli matiane" | who is the auther when the transliteration is lasha-giorgis droindeli matiane? | CREATE TABLE table_22464685_1 (author VARCHAR, transliteration VARCHAR) |
SELECT place FROM table_name_86 WHERE score < 71 AND country = "zimbabwe" | What is the Place when the score is less than 71, and Country is zimbabwe? | CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR, country VARCHAR) |
SELECT DISTINCT headquarter FROM manufacturers | What are the different cities listed? | CREATE TABLE manufacturers (headquarter VARCHAR) |
SELECT score FROM table_name_37 WHERE date = "january 12" | What is Score, when Date is January 12? | CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR) |
SELECT COUNT(party) FROM table_1108394_47 WHERE manhattan = "29.9_percentage" | How many parties received 29.9% of the vote in Manhattan? | CREATE TABLE table_1108394_47 (party VARCHAR, manhattan VARCHAR) |
SELECT SUM(played) FROM table_name_4 WHERE lost > 4 AND team = "américa" AND points < 5 | Which Played has a Lost larger than 4, and a Team of américa, and Points smaller than 5? | CREATE TABLE table_name_4 (played INTEGER, points VARCHAR, lost VARCHAR, team VARCHAR) |
SELECT COUNT(episode_number) FROM table_24798489_1 WHERE location = "New York, New York" | How many episodes had New York, New York as the location? | CREATE TABLE table_24798489_1 (episode_number VARCHAR, location VARCHAR) |
SELECT game FROM table_name_54 WHERE pov_character = "quentyn martell" | Which game does the quentyn martell have? | CREATE TABLE table_name_54 (game VARCHAR, pov_character VARCHAR) |
SELECT thursday FROM table_11019212_1 WHERE sunday = "1:00-5:00" AND tuesday = "1:00-7:00" | what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00 | CREATE TABLE table_11019212_1 (thursday VARCHAR, sunday VARCHAR, tuesday VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.