answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT format FROM table_name_93 WHERE region = "china" | Which Format is listed that has a Region of China? | CREATE TABLE table_name_93 (format VARCHAR, region VARCHAR) |
SELECT broadcast_date FROM table_1776943_1 WHERE viewers__in_millions_ = "6.4" AND archive = "16mm t/r" | Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r | CREATE TABLE table_1776943_1 (broadcast_date VARCHAR, viewers__in_millions_ VARCHAR, archive VARCHAR) |
SELECT m1a1_abrams FROM table_name_92 WHERE lince = "t (short tons)" | What is the M1A1 when the Lince was T (Short Tons)? | CREATE TABLE table_name_92 (m1a1_abrams VARCHAR, lince VARCHAR) |
SELECT location FROM table_name_55 WHERE event = "deep - 30 impact" | Where was the Deep - 30 Impact event held? | CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR) |
SELECT MAX(rank) FROM table_name_82 WHERE u_17_goals = 7 AND player = "cesc fàbregas" | What is the highest Rank, when U-17 Goals is "7", and when Player is "Cesc Fàbregas"? | CREATE TABLE table_name_82 (rank INTEGER, u_17_goals VARCHAR, player VARCHAR) |
SELECT region FROM table_name_58 WHERE date = "1970" | Which region has a date of 1970? | CREATE TABLE table_name_58 (region VARCHAR, date VARCHAR) |
SELECT AVG(score) FROM table_name_74 WHERE to_par = "−3" AND country = "south africa" AND player = "richard sterne" | What is the score when To par was −3, in South Africa, for Richard Sterne? | CREATE TABLE table_name_74 (score INTEGER, player VARCHAR, to_par VARCHAR, country VARCHAR) |
SELECT qual FROM table_name_16 WHERE laps = 585 | What was the qualification with more than 585 laps? | CREATE TABLE table_name_16 (qual VARCHAR, laps VARCHAR) |
SELECT decor FROM Rooms WHERE roomName = "Recluse and defiance" | What is the decor of room Recluse and defiance? | CREATE TABLE Rooms (decor VARCHAR, roomName VARCHAR) |
SELECT SUM(bronze) FROM table_name_67 WHERE rank = "10" AND gold < 0 | What is the sum of bronzes associated with 0 golds and a rank of 10? | CREATE TABLE table_name_67 (bronze INTEGER, rank VARCHAR, gold VARCHAR) |
SELECT date FROM table_name_56 WHERE opponent = "luxembourg" | What day did Yugoslavia play Luxembourg? | CREATE TABLE table_name_56 (date VARCHAR, opponent VARCHAR) |
SELECT party FROM table_name_33 WHERE district = "tennessee 8" | What is Party, when District is "Tennessee 8"? | CREATE TABLE table_name_33 (party VARCHAR, district VARCHAR) |
SELECT COUNT(attendance) FROM table_name_96 WHERE week = 8 | What was the total attendance in week 8? | CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR) |
SELECT COUNT(all_bills_cosponsored) FROM table_name_80 WHERE all_amendments_sponsored < 15 AND all_bills_sponsored = 6 AND all_amendments_cosponsored < 0 | What is the total number of all bills co-sponsored associated with all amendments sponsored under 15, all bills sponsored of 6, and 0 amendments cosponsored? | CREATE TABLE table_name_80 (all_bills_cosponsored VARCHAR, all_amendments_cosponsored VARCHAR, all_amendments_sponsored VARCHAR, all_bills_sponsored VARCHAR) |
SELECT challengers__female_ FROM table_24051050_1 WHERE episode = 28 | Which female challengers featured in episode 28? | CREATE TABLE table_24051050_1 (challengers__female_ VARCHAR, episode VARCHAR) |
SELECT silver FROM table_name_28 WHERE bronze = "katie curtis unknown" | Who won the Silver the Year Katie Curtis Unknown won the Bronze? | CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR) |
SELECT ticket_price_s_ FROM table_name_56 WHERE date_s_ = "september 16, 1986" | What was the ticket price on September 16, 1986? | CREATE TABLE table_name_56 (ticket_price_s_ VARCHAR, date_s_ VARCHAR) |
SELECT COUNT(rank) FROM table_name_89 WHERE time = "6:30.53" | What is the rank of the time of 6:30.53? | CREATE TABLE table_name_89 (rank VARCHAR, time VARCHAR) |
SELECT pick__number FROM table_name_74 WHERE cfl_team = "montreal alouettes" AND player = "peter moore" | What is the pick number for Peter Moore of the Montreal Alouettes? | CREATE TABLE table_name_74 (pick__number VARCHAR, cfl_team VARCHAR, player VARCHAR) |
SELECT score FROM table_name_48 WHERE country = "united states" AND place = "t2" AND player = "tom watson" | Can you tell me the Score that has the Country of united states, and the Place of t2, and the Player of tom watson? | CREATE TABLE table_name_48 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR) |
SELECT debut_album FROM table_name_93 WHERE season = "season 2 (2005)" | Which album debuted in season 2 (2005)? | CREATE TABLE table_name_93 (debut_album VARCHAR, season VARCHAR) |
SELECT result FROM table_name_88 WHERE round = "6" | Which Result has a Round of 6? | CREATE TABLE table_name_88 (result VARCHAR, round VARCHAR) |
SELECT T1.name, T1.hours FROM projects AS T1 JOIN assignedto AS T2 ON T1.code = T2.project GROUP BY T2.project ORDER BY COUNT(*) DESC LIMIT 1 | Find the name and hours of project that has the most number of scientists. | CREATE TABLE assignedto (project VARCHAR); CREATE TABLE projects (name VARCHAR, hours VARCHAR, code VARCHAR) |
SELECT competition FROM table_name_54 WHERE captain = "robbie paul" AND lost < 5 AND main_article = "bradford bulls 1997" | What Competition in Main Article of Bradford Bulls 1997 have Robbie Paul as Captain with less than 5 Lost? | CREATE TABLE table_name_54 (competition VARCHAR, main_article VARCHAR, captain VARCHAR, lost VARCHAR) |
SELECT college_junior_club_team FROM table_2781227_9 WHERE player = "Dmitri Gorenko" | What college/junior/club team did dmitri gorenko play for? | CREATE TABLE table_2781227_9 (college_junior_club_team VARCHAR, player VARCHAR) |
SELECT COUNT(constructor) FROM table_1140113_5 WHERE race_name = "III RedeX Trophy" | How many constructors won the III Redex Trophy? | CREATE TABLE table_1140113_5 (constructor VARCHAR, race_name VARCHAR) |
SELECT orthodoxy FROM table_26173063_2 WHERE × = "wehdat" | What is orthodoxy when x is wehdat? | CREATE TABLE table_26173063_2 (orthodoxy VARCHAR, × VARCHAR) |
SELECT AVG(T1.Total) FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Height > 200 | What is the average total score of body builders with height bigger than 200? | CREATE TABLE people (People_ID VARCHAR, Height INTEGER); CREATE TABLE body_builder (Total INTEGER, People_ID VARCHAR) |
SELECT report FROM table_name_6 WHERE date = "june 5, 2005" | What Report has the Date of June 5, 2005? | CREATE TABLE table_name_6 (report VARCHAR, date VARCHAR) |
SELECT date FROM table_name_82 WHERE week > 5 AND attendance = "62,262" | What was the date of the game after week 5 with 62,262 fans attending? | CREATE TABLE table_name_82 (date VARCHAR, week VARCHAR, attendance VARCHAR) |
SELECT date FROM table_name_87 WHERE venue = "sam nujoma stadium, windhoek, namibia" | On what date is the venue Sam Nujoma Stadium, Windhoek, Namibia? | CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR) |
SELECT MAX(bronze) FROM table_name_48 WHERE total > 3 AND rank > 1 | What are the most bronze medals in a rank more than 1 with a total larger than 3? | CREATE TABLE table_name_48 (bronze INTEGER, total VARCHAR, rank VARCHAR) |
SELECT torque FROM table_name_29 WHERE engine = "2b" | What is the torque of a 2B engine? | CREATE TABLE table_name_29 (torque VARCHAR, engine VARCHAR) |
SELECT losing_bp FROM table_name_72 WHERE played = "22" AND try_bp = "9" | Name the Losing BP with 22 played and 9 Try BP. | CREATE TABLE table_name_72 (losing_bp VARCHAR, played VARCHAR, try_bp VARCHAR) |
SELECT results FROM table_1341423_46 WHERE incumbent = "Norman Sisisky" | What was the result of the election featuring incumbent norman sisisky? | CREATE TABLE table_1341423_46 (results VARCHAR, incumbent VARCHAR) |
SELECT opponent FROM table_name_87 WHERE week < 5 AND date = "october 10, 1954" | Who was the opponent for the game taht was before week 5 on October 10, 1954? | CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR, date VARCHAR) |
SELECT mens_singles FROM table_14903491_1 WHERE year = 1989 | Name the mens singles for 1989 | CREATE TABLE table_14903491_1 (mens_singles VARCHAR, year VARCHAR) |
SELECT MAX(total_goals) FROM table_10240125_2 | Whatis the number of total goals maximum? | CREATE TABLE table_10240125_2 (total_goals INTEGER) |
SELECT city_of_license__market FROM table_name_75 WHERE owned_since < 2011 AND affiliation = "abc" AND channel___tv___rf__ = "9 (22)" | What city of license/market has an owned since before 2011,and a affiliation of abc and channel (tv/rf) of 9 (22)? | CREATE TABLE table_name_75 (city_of_license__market VARCHAR, channel___tv___rf__ VARCHAR, owned_since VARCHAR, affiliation VARCHAR) |
SELECT visa_3 FROM table_name_70 WHERE visa_4 = "youssouf hersi" | Which Visa 3 has a Visa 4 of youssouf hersi? | CREATE TABLE table_name_70 (visa_3 VARCHAR, visa_4 VARCHAR) |
SELECT SUM(points) FROM table_name_64 WHERE performer = "fe-mail" | What is the sum of Points, when the Performer is fe-mail? | CREATE TABLE table_name_64 (points INTEGER, performer VARCHAR) |
SELECT decision FROM table_name_14 WHERE visitor = "tampa bay" | What was the decision when Tampa Bay was the visitor? | CREATE TABLE table_name_14 (decision VARCHAR, visitor VARCHAR) |
SELECT status FROM table_28178595_2 WHERE character = "Keel (Keele) Zeibel" | What is the status of the character keel (keele) zeibel? | CREATE TABLE table_28178595_2 (status VARCHAR, character VARCHAR) |
SELECT tie_no FROM table_name_97 WHERE home_team = "birmingham city" | Which Tie is from birmingham city? | CREATE TABLE table_name_97 (tie_no VARCHAR, home_team VARCHAR) |
SELECT class FROM table_name_9 WHERE weight = 242 | What is the class of the player with a weight of 242 pounds? | CREATE TABLE table_name_9 (class VARCHAR, weight VARCHAR) |
SELECT season__number FROM table_name_52 WHERE series__number = 81 | What is the season for series 81? | CREATE TABLE table_name_52 (season__number VARCHAR, series__number VARCHAR) |
SELECT years_for_rockets FROM table_11734041_6 WHERE player = "Ford, Phil Phil Ford" | What years for the rockets did the player ford, phil phil ford play? | CREATE TABLE table_11734041_6 (years_for_rockets VARCHAR, player VARCHAR) |
SELECT height__ft_ FROM table_20669355_2 WHERE country = "Ecuador" | How tall is the contestant from Ecuador? | CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, country VARCHAR) |
SELECT games FROM table_name_18 WHERE event = "men's 5000 metres" | Tell me the games for men's 5000 metres | CREATE TABLE table_name_18 (games VARCHAR, event VARCHAR) |
SELECT DISTINCT T1.Fname, T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.VICE_President_VOTE WHERE T1.age = 18 | Find the first and last name of all the students of age 18 who have vice president votes. | CREATE TABLE STUDENT (Fname VARCHAR, LName VARCHAR, StuID VARCHAR, age VARCHAR); CREATE TABLE VOTING_RECORD (VICE_President_VOTE VARCHAR) |
SELECT country FROM table_name_9 WHERE singles_champions = "dennis blömke" AND tournament = "germany f13 futures" | In what Country will Dennis Blömke play the Germany F13 Futures Tournament? | CREATE TABLE table_name_9 (country VARCHAR, singles_champions VARCHAR, tournament VARCHAR) |
SELECT MIN(sales__billion_) AS $_ FROM table_name_43 WHERE headquarters = "germany" AND profits__billion_$_ < 6.7 | What was Germany's lowest sales when the profit was smaller than 6.7 billion? | CREATE TABLE table_name_43 (sales__billion_ INTEGER, headquarters VARCHAR, profits__billion_$_ VARCHAR) |
SELECT quantity_made FROM table_name_97 WHERE withdrawn = "1913" | How many locomotives were made that were withdrawn in 1913? | CREATE TABLE table_name_97 (quantity_made VARCHAR, withdrawn VARCHAR) |
SELECT T2.cell_mobile_number FROM Student_Addresses AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id ORDER BY T1.monthly_rental LIMIT 1 | What is the cell phone number of the student whose address has the lowest monthly rental? | CREATE TABLE Students (cell_mobile_number VARCHAR, student_id VARCHAR); CREATE TABLE Student_Addresses (student_id VARCHAR, monthly_rental VARCHAR) |
SELECT AVG(total) FROM table_name_52 WHERE nation = "sweden" AND bronze < 3 | What is the average Total, when the Nation is Sweden, and when the value for Bronze is less than 3? | CREATE TABLE table_name_52 (total INTEGER, nation VARCHAR, bronze VARCHAR) |
SELECT result FROM table_1341586_19 WHERE candidates = "Billy Tauzin (D) Unopposed" | what's the result with candidates being billy tauzin (d) unopposed | CREATE TABLE table_1341586_19 (result VARCHAR, candidates VARCHAR) |
SELECT starter FROM table_14342592_7 WHERE touchdowns = 3 | Was there a starter when 3 touchdowns were scored? | CREATE TABLE table_14342592_7 (starter VARCHAR, touchdowns VARCHAR) |
SELECT prr_class FROM table_name_4 WHERE wheel_arrangement = "b-b" AND service = "freight" AND build_date = "1967" | What is the PRR class of the freight train built in 1967 with a b-b wheel arrangement? | CREATE TABLE table_name_4 (prr_class VARCHAR, build_date VARCHAR, wheel_arrangement VARCHAR, service VARCHAR) |
SELECT DISTINCT T2.Position FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Capital = "Dublin" | What are the distinct positions of the players from a country whose capital is Dublin? | CREATE TABLE country (Country_id VARCHAR, Capital VARCHAR); CREATE TABLE match_season (Position VARCHAR, Country VARCHAR) |
SELECT points_for FROM table_name_37 WHERE club = "senghenydd rfc" | What is senghenydd rfc's points for? | CREATE TABLE table_name_37 (points_for VARCHAR, club VARCHAR) |
SELECT name FROM table_name_32 WHERE courtesy_title = "sanuki-no-kami/jiju" | What is the name of the person with a courtesy title of sanuki-no-kami/jiju? | CREATE TABLE table_name_32 (name VARCHAR, courtesy_title VARCHAR) |
SELECT MAX(against) FROM table_name_95 WHERE team = "flamengo" AND lost < 1 | Which Against is the highest one that has a Team of flamengo, and a Lost smaller than 1? | CREATE TABLE table_name_95 (against INTEGER, team VARCHAR, lost VARCHAR) |
SELECT opponent FROM table_name_11 WHERE attendance = "10,089" | What opponent had an attendance of 10,089? | CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR) |
SELECT T3.Name, T2.District FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID | Show the names of phones and the districts of markets they are on. | CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR); CREATE TABLE market (District VARCHAR, Market_ID VARCHAR); CREATE TABLE phone_market (Market_ID VARCHAR, Phone_ID VARCHAR) |
SELECT COUNT(draw) FROM table_name_44 WHERE televote > 18 AND artist = "elizabeth anastasiou" AND jury > 4 | How much Draw has a Televote larger than 18, and an Artist of elizabeth anastasiou, and a Jury larger than 4? | CREATE TABLE table_name_44 (draw VARCHAR, jury VARCHAR, televote VARCHAR, artist VARCHAR) |
SELECT MAX(diameter__km_) FROM table_name_52 WHERE longitude = "152.5e" AND year_named < 1997 | What is the Diameter (km) of the Valle with a Longitude of 152.5e named before 1997? | CREATE TABLE table_name_52 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR) |
SELECT TYPE FROM film_market_estimation WHERE YEAR = 1995 | What are the types of film market estimations in year 1995? | CREATE TABLE film_market_estimation (TYPE VARCHAR, YEAR VARCHAR) |
SELECT AVG(elevation__m_) FROM table_name_22 WHERE country = "vanuatu" AND rank < 3 | What is the elevation of Vanuatu, when the rank is smaller than 3? | CREATE TABLE table_name_22 (elevation__m_ INTEGER, country VARCHAR, rank VARCHAR) |
SELECT candidates FROM table_2668173_4 WHERE incumbent = "Henry Logan" | Who were the candidates if the incumbent was Henry Logan? | CREATE TABLE table_2668173_4 (candidates VARCHAR, incumbent VARCHAR) |
SELECT percentage___percentage_ FROM table_name_90 WHERE language = "russian" | What is the percentage for Russian? | CREATE TABLE table_name_90 (percentage___percentage_ VARCHAR, language VARCHAR) |
SELECT written_by FROM table_23242968_1 WHERE production_code = "3AJN20" | Who wrote the episode that had a production code of 3ajn20? | CREATE TABLE table_23242968_1 (written_by VARCHAR, production_code VARCHAR) |
SELECT college_junior_club_team__league_ FROM table_name_12 WHERE round = 2 AND position = "d" | What college or league did the round 2 pick with d position come from? | CREATE TABLE table_name_12 (college_junior_club_team__league_ VARCHAR, round VARCHAR, position VARCHAR) |
SELECT T1.Name, T2.Orchestra FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID | Show the names of conductors and the orchestras they have conducted. | CREATE TABLE conductor (Name VARCHAR, Conductor_ID VARCHAR); CREATE TABLE orchestra (Orchestra VARCHAR, Conductor_ID VARCHAR) |
SELECT name FROM table_name_68 WHERE qual_2 > 58.669 AND team = "team australia" | Who had a Qualifying 2 time over 58.669 for Team Australia? | CREATE TABLE table_name_68 (name VARCHAR, qual_2 VARCHAR, team VARCHAR) |
SELECT end__utc_ FROM table_22385461_8 WHERE duration = "6 hours, 55 minutes" | What is the end (UTC) if the duration is 6 hours, 55 minutes? | CREATE TABLE table_22385461_8 (end__utc_ VARCHAR, duration VARCHAR) |
SELECT original_title FROM table_name_95 WHERE year < 2003 AND country = "japan/taiwan" | What is the original title of the film from Japan/Taiwan before 2003? | CREATE TABLE table_name_95 (original_title VARCHAR, year VARCHAR, country VARCHAR) |
SELECT branding FROM table_name_25 WHERE location = "zamboanga" | What is the Branding for the station located in Zamboanga? | CREATE TABLE table_name_25 (branding VARCHAR, location VARCHAR) |
SELECT owner FROM table_name_43 WHERE winner = "raglan road" | Who is the owner of the Raglan Road winner? | CREATE TABLE table_name_43 (owner VARCHAR, winner VARCHAR) |
SELECT COUNT(byes) FROM table_name_96 WHERE wins = 8 AND losses > 10 | What is the sum of byes when wins are 8, and losses are larger than 10? | CREATE TABLE table_name_96 (byes VARCHAR, wins VARCHAR, losses VARCHAR) |
SELECT SUM(melbourne) FROM table_name_93 WHERE episode_number_production_number = "19 2-06" AND sydney < 389 OFFSET 000 | What is the sum of the values for Melbourne, when Episode Number Production Number is 19 2-06, and when Sydney is less than 389,000? | CREATE TABLE table_name_93 (melbourne INTEGER, episode_number_production_number VARCHAR, sydney VARCHAR) |
SELECT goals FROM table_name_5 WHERE score = "26-28" | What were the goals in the game with the 26-28 final score? | CREATE TABLE table_name_5 (goals VARCHAR, score VARCHAR) |
SELECT COUNT(season) FROM table_name_67 WHERE original_airdate = "january 24, 1999" AND year < 1999 | What is the total number of Season(s), when Original Airdate is January 24, 1999, and when Year is less than 1999? | CREATE TABLE table_name_67 (season VARCHAR, original_airdate VARCHAR, year VARCHAR) |
SELECT 2004 FROM table_name_49 WHERE tournament = "paris masters" | what is 2004 when the tournament is paris masters? | CREATE TABLE table_name_49 (tournament VARCHAR) |
SELECT attendance FROM table_name_22 WHERE visitor = "anaheim" | What was the attendance at the Kings game when Anaheim was the visiting team? | CREATE TABLE table_name_22 (attendance VARCHAR, visitor VARCHAR) |
SELECT MIN(position) FROM table_name_84 WHERE difference = "5" AND drawn < 3 | Which Position has a Difference of 5, and a Drawn smaller than 3? | CREATE TABLE table_name_84 (position INTEGER, difference VARCHAR, drawn VARCHAR) |
SELECT score FROM table_name_44 WHERE opponent = "roger federer" AND date = "april 3, 2006" | What was the score of the match against roger federer on April 3, 2006? | CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR, date VARCHAR) |
SELECT record FROM table_28768469_7 WHERE high_assists = "Earl Watson (6)" | What is the record listed when the high assists is earl watson (6)? | CREATE TABLE table_28768469_7 (record VARCHAR, high_assists VARCHAR) |
SELECT weight FROM table_15582870_1 WHERE college = "Arkansas" | How heavy were the players who attended Arkansas? | CREATE TABLE table_15582870_1 (weight VARCHAR, college VARCHAR) |
SELECT COUNT(vote) FROM table_1272844_2 WHERE finish = "6th voted Out Day 12" | How many votes were taken when the outcome was "6th voted out day 12"? | CREATE TABLE table_1272844_2 (vote VARCHAR, finish VARCHAR) |
SELECT composition FROM table_name_76 WHERE mintage > 999 AND artist = "jody broomfield" AND year > 2008 | What is the composition of the coin that was issued after 2008, had a mintage larger than 999, and was designed by Jody Broomfield? | CREATE TABLE table_name_76 (composition VARCHAR, year VARCHAR, mintage VARCHAR, artist VARCHAR) |
SELECT COUNT(game) FROM table_name_13 WHERE score = "new york yankees – 2, brooklyn dodgers – 3" | Score of new york yankees – 2, brooklyn dodgers – 3 involves how many number of games? | CREATE TABLE table_name_13 (game VARCHAR, score VARCHAR) |
SELECT county FROM table_name_85 WHERE mascot = "red ramblers" | What counties mascot are the Red Ramblers? | CREATE TABLE table_name_85 (county VARCHAR, mascot VARCHAR) |
SELECT outcome FROM table_name_2 WHERE score = "6–3, 6–4" | What is the Outcome of the match with a Score of 6–3, 6–4? | CREATE TABLE table_name_2 (outcome VARCHAR, score VARCHAR) |
SELECT MIN(mdr_no) FROM table_26036389_1 WHERE name_of_road = "Rait Charhi Dharamshala" | What is the MDR number of Rait Charhi Dharamshala? | CREATE TABLE table_26036389_1 (mdr_no INTEGER, name_of_road VARCHAR) |
SELECT venue FROM table_name_95 WHERE home_team = "essendon" | Where did Essendon play as the home team? | CREATE TABLE table_name_95 (venue VARCHAR, home_team VARCHAR) |
SELECT SUM(points) FROM table_name_41 WHERE entrant = "peter whitehead" AND chassis = "alta f2" | What is the sum of all the points won by Peter Whitehead in an alta f2 Chassis? | CREATE TABLE table_name_41 (points INTEGER, entrant VARCHAR, chassis VARCHAR) |
SELECT tunnel FROM table_name_38 WHERE length__imperial_ = "307 yd" | What Tunnel has an Imperial Length of 307 yd? | CREATE TABLE table_name_38 (tunnel VARCHAR, length__imperial_ VARCHAR) |
SELECT episode FROM table_2108684_1 WHERE run_time = "23:38" | What episode had a run time of 23:38? | CREATE TABLE table_2108684_1 (episode VARCHAR, run_time VARCHAR) |
SELECT league FROM table_name_48 WHERE venue = "billesley common" | What kind of League has a Venue of billesley common? | CREATE TABLE table_name_48 (league VARCHAR, venue VARCHAR) |
SELECT attendance FROM table_name_49 WHERE date = "november 19, 1990" | What is the attendance of the November 19, 1990 game? | CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.