answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT terminus FROM table_name_1 WHERE line = "line 10" | Which Terminus is on line 10? | CREATE TABLE table_name_1 (terminus VARCHAR, line VARCHAR) |
SELECT MIN(ansi_code) FROM table_name_48 WHERE geo_id > 3809927140 AND water__sqmi_ < 0.492 AND pop__2010_ = 37 AND latitude > 48.245979 | Which ANSI code has a GEO ID larger than 3809927140, and a Water (sqmi) smaller than 0.492, and a Pop (2010) of 37, and a Latitude larger than 48.245979? | CREATE TABLE table_name_48 (ansi_code INTEGER, latitude VARCHAR, pop__2010_ VARCHAR, geo_id VARCHAR, water__sqmi_ VARCHAR) |
SELECT T3.brand FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id JOIN camera_lens AS T3 ON T2.camera_lens_id = T3.id WHERE T1.range = 'Toubkal Atlas' INTERSECT SELECT T3.brand FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id JOIN camera_lens AS T3 ON T2.camera_lens_id = T3.id WHERE T1.rang... | List the brands of lenses that took both a picture of mountains with range 'Toubkal Atlas' and a picture of mountains with range 'Lasta Massif' | CREATE TABLE mountain (id VARCHAR, range VARCHAR); CREATE TABLE photos (mountain_id VARCHAR, camera_lens_id VARCHAR); CREATE TABLE camera_lens (brand VARCHAR, id VARCHAR) |
SELECT position FROM table_name_42 WHERE player = "mike dennis" | What position does Mike Dennis play? | CREATE TABLE table_name_42 (position VARCHAR, player VARCHAR) |
SELECT AVG(crowd) FROM table_name_54 WHERE home_team = "st kilda" | What was the attendance at the St Kilda home game? | CREATE TABLE table_name_54 (crowd INTEGER, home_team VARCHAR) |
SELECT name FROM table_name_42 WHERE type = "dead end" AND rank = "22" | What is the name of the dead end type ranked 22? | CREATE TABLE table_name_42 (name VARCHAR, type VARCHAR, rank VARCHAR) |
SELECT inscription FROM table_name_57 WHERE identification = "virgil" | What is the name of the inscription where Virgil is listed as the identification? | CREATE TABLE table_name_57 (inscription VARCHAR, identification VARCHAR) |
SELECT no_in_series FROM table_25246990_2 WHERE prod_code = "111" | What number episode in the series had a production code of 111? | CREATE TABLE table_25246990_2 (no_in_series VARCHAR, prod_code VARCHAR) |
SELECT T1.vehicle_id, T1.vehicle_details FROM Vehicles AS T1 JOIN Lessons AS T2 ON T1.vehicle_id = T2.vehicle_id GROUP BY T1.vehicle_id ORDER BY COUNT(*) DESC LIMIT 1 | What is the id and detail of the vehicle used in lessons for most of the times? | CREATE TABLE Lessons (vehicle_id VARCHAR); CREATE TABLE Vehicles (vehicle_id VARCHAR, vehicle_details VARCHAR) |
SELECT T3.name, T2.title, T1.stars, T1.ratingDate FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID ORDER BY T3.name, T2.title, T1.stars | Return reviewer name, movie title, stars, and ratingDate. And sort the data first by reviewer name, then by movie title, and lastly by number of stars. | CREATE TABLE Rating (stars VARCHAR, ratingDate VARCHAR, mID VARCHAR, rID VARCHAR); CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Movie (title VARCHAR, mID VARCHAR) |
SELECT surface FROM table_name_56 WHERE finalist = "justine henin" | What was the surface for finalist Justine Henin? | CREATE TABLE table_name_56 (surface VARCHAR, finalist VARCHAR) |
SELECT author FROM table_name_1 WHERE tv_companions_featured = "peri brown" AND title = "race against time" | What is Author, when TV Companions Featured is "Peri Brown", and when Title is "Race Against Time"? | CREATE TABLE table_name_1 (author VARCHAR, tv_companions_featured VARCHAR, title VARCHAR) |
SELECT AVG(points) FROM table_name_98 WHERE position > 6 AND lost < 13 | Which Points have a Position larger than 6, and a Lost smaller than 13? | CREATE TABLE table_name_98 (points INTEGER, position VARCHAR, lost VARCHAR) |
SELECT constructor FROM table_name_92 WHERE rounds = "all" AND driver = "gerhard berger" | Who constructed Gerhard Berger car that went all rounds? | CREATE TABLE table_name_92 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR) |
SELECT SUM(rank) FROM table_name_86 WHERE silver = 0 AND total > 2 | What is the rank for the nation with 0 silver medals and a total larger than 2? | CREATE TABLE table_name_86 (rank INTEGER, silver VARCHAR, total VARCHAR) |
SELECT written_by FROM table_28081876_6 WHERE original_air_date = "August 10, 2012" | 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 AVG(gold) FROM table_name_17 WHERE bronze < 5 AND rank = "8" | What is the average gold with a bronze smaller than 5 with a rank of 8? | CREATE TABLE table_name_17 (gold INTEGER, bronze VARCHAR, rank VARCHAR) |
SELECT 2006 FROM table_name_65 WHERE 2000 = "1r" AND 1996 = "a" AND tournament = "cincinnati masters" | What shows for 2006 when 2000 is 1r, 1996 is A, and Tournament is Cincinnati Masters? | CREATE TABLE table_name_65 (tournament VARCHAR) |
SELECT date FROM table_name_9 WHERE location = "delta center" | What date was the game played at the Delta Center? | CREATE TABLE table_name_9 (date VARCHAR, location VARCHAR) |
SELECT AVG(gold) FROM table_name_95 WHERE total = 2 AND silver < 1 AND rank > 5 | What is the average Gold, when Total is 2, when Silver is less than 1, and when Rank is greater than 5? | CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR) |
SELECT country FROM table_name_26 WHERE player = "greg norman" | What country does Greg Norman represent? | CREATE TABLE table_name_26 (country VARCHAR, player VARCHAR) |
SELECT COUNT(pick) FROM table_2781227_2 WHERE player = "Vlastimil Kroupa" | How many values are displayed under pick for Vlastimil Kroupa? | CREATE TABLE table_2781227_2 (pick VARCHAR, player VARCHAR) |
SELECT SUM(week) FROM table_name_9 WHERE result = "l 3-17" | How many weeks have l 3-17 as the result? | CREATE TABLE table_name_9 (week INTEGER, result VARCHAR) |
SELECT COUNT(height) FROM table_22603701_1 WHERE position = "WR" AND name = "Jesse Holley" | How many heights are listed for Jesse Holley in the WR position? | CREATE TABLE table_22603701_1 (height VARCHAR, position VARCHAR, name VARCHAR) |
SELECT vehicle_id FROM Vehicles | List all vehicle id | CREATE TABLE Vehicles (vehicle_id VARCHAR) |
SELECT venue FROM table_name_55 WHERE against > 3 AND opposing_teams = "south africa" | What is the venue with more than 3 against, and South Africa is the opposing team? | CREATE TABLE table_name_55 (venue VARCHAR, against VARCHAR, opposing_teams VARCHAR) |
SELECT MAX(matches) FROM table_name_44 WHERE rank = 8 | What is the number of matches for the player in rank 8? | CREATE TABLE table_name_44 (matches INTEGER, rank VARCHAR) |
SELECT COUNT(year) FROM table_name_97 WHERE award = "american music awards" | What year has american music awards? | CREATE TABLE table_name_97 (year VARCHAR, award VARCHAR) |
SELECT MIN(touchdowns) FROM table_name_81 WHERE points = 5 AND field_goals > 0 | Which Touchdowns is the lowest one that has Points of 5, and a Field goals larger than 0? | CREATE TABLE table_name_81 (touchdowns INTEGER, points VARCHAR, field_goals VARCHAR) |
SELECT MIN(number_of_dances) FROM table_1354805_3 WHERE average = "34.1" | The minimum average number of dancers is 34.1 how many times | CREATE TABLE table_1354805_3 (number_of_dances INTEGER, average VARCHAR) |
SELECT MIN(age_40_49) FROM table_169693_1 | Name the least age 40-49 | CREATE TABLE table_169693_1 (age_40_49 INTEGER) |
SELECT frequency FROM table_name_53 WHERE callsign = "dybt" | What is the frequency for the station with DYBT as its callsign? | CREATE TABLE table_name_53 (frequency VARCHAR, callsign VARCHAR) |
SELECT T1.name FROM browser AS T1 JOIN accelerator_compatible_browser AS T2 ON T1.id = T2.browser_id JOIN web_client_accelerator AS T3 ON T2.accelerator_id = T3.id WHERE T3.name = 'CProxy' AND T2.compatible_since_year > 1998 | What is the name of the browser that became compatible with the accelerator 'CProxy' after year 1998 ? | CREATE TABLE accelerator_compatible_browser (browser_id VARCHAR, accelerator_id VARCHAR, compatible_since_year VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR); CREATE TABLE browser (name VARCHAR, id VARCHAR) |
SELECT MIN(founded) FROM table_2439728_1 WHERE school = "Lawrence Academy at Groton" | when was lawrence academy at groton established? | CREATE TABLE table_2439728_1 (founded INTEGER, school VARCHAR) |
SELECT successor FROM table_2417345_3 WHERE date_of_successors_formal_installation = "February 23, 1870" | Who were the successors when the date the successors were installed was February 23, 1870? | CREATE TABLE table_2417345_3 (successor VARCHAR, date_of_successors_formal_installation VARCHAR) |
SELECT date FROM table_17288869_6 WHERE game = 21 | What was the date of game 21? | CREATE TABLE table_17288869_6 (date VARCHAR, game VARCHAR) |
SELECT obama_percentage FROM table_20684390_1 WHERE county = "Gem" | For Gem County, what was the Obama vote percentage? | CREATE TABLE table_20684390_1 (obama_percentage VARCHAR, county VARCHAR) |
SELECT name FROM table_name_21 WHERE best = "1:32.269" | Who had the best time of 1:32.269? | CREATE TABLE table_name_21 (name VARCHAR, best VARCHAR) |
SELECT COUNT(nat) FROM table_22542179_3 WHERE total_g = 6 | Name the number of nat for total g of 6 | CREATE TABLE table_22542179_3 (nat VARCHAR, total_g VARCHAR) |
SELECT time_retired FROM table_name_29 WHERE driver = "jean alesi" | What is the value of time/retired for Jean Alesi? | CREATE TABLE table_name_29 (time_retired VARCHAR, driver VARCHAR) |
SELECT appointed_by FROM table_name_72 WHERE presentation_of_credentials = "march 25, 1976" | Who appointed the representative that had a Presentation of Credentials on March 25, 1976? | CREATE TABLE table_name_72 (appointed_by VARCHAR, presentation_of_credentials VARCHAR) |
SELECT T1.grant_amount FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id WHERE T2.sent_date < '1986-08-26 20:49:27' INTERSECT SELECT grant_amount FROM grants WHERE grant_end_date > '1989-03-16 18:27:16' | What are the distinct grant amount for the grants where the documents were sent before '1986-08-26 20:49:27' and grant were ended after '1989-03-16 18:27:16'? | CREATE TABLE grants (grant_amount VARCHAR, grant_end_date INTEGER); CREATE TABLE Grants (grant_amount VARCHAR, grant_id VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, sent_date INTEGER) |
SELECT home_team FROM table_name_74 WHERE tie_no = "20" | Which Home team that has a Tie no of 20? | CREATE TABLE table_name_74 (home_team VARCHAR, tie_no VARCHAR) |
SELECT investing_dragon_s_ FROM table_name_82 WHERE episode = "episode 9" AND entrepreneur_s_ = "ashley sayed" | Which Investing Dragon(s) belong to Episode 9 with the Entrepreneur Ashley Sayed? | CREATE TABLE table_name_82 (investing_dragon_s_ VARCHAR, episode VARCHAR, entrepreneur_s_ VARCHAR) |
SELECT MIN(pick__number) FROM table_1965650_2 WHERE player = "Colin Campbell" | Name the least pick number for colin campbell | CREATE TABLE table_1965650_2 (pick__number INTEGER, player VARCHAR) |
SELECT AVG(week) FROM table_name_94 WHERE record = "0–1" | What week that shows a game record of 0–1? | CREATE TABLE table_name_94 (week INTEGER, record VARCHAR) |
SELECT SUM(crowd) FROM table_name_84 WHERE venue = "princes park" | What is the average crowd size at Princes Park? | CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR) |
SELECT type FROM table_254776_1 WHERE location = "Swarthmore, Pennsylvania" | What type of school is in swarthmore, pennsylvania? | CREATE TABLE table_254776_1 (type VARCHAR, location VARCHAR) |
SELECT MIN(prom__m_) FROM table_name_62 WHERE class = "hewitt" AND peak = "cushat law" AND height__m_ > 615 | Tell me the lowest prom for class of hewitt and peak of cushat law and height more than 615 | CREATE TABLE table_name_62 (prom__m_ INTEGER, height__m_ VARCHAR, class VARCHAR, peak VARCHAR) |
SELECT rushing_yards FROM table_28697228_4 WHERE passing_yards = 244 | How many rushing yards are listed when the passing yards are 244? | CREATE TABLE table_28697228_4 (rushing_yards VARCHAR, passing_yards VARCHAR) |
SELECT MAX(attendance) FROM table_name_99 WHERE week = 12 | What is the Attendance of the game in Week 12? | CREATE TABLE table_name_99 (attendance INTEGER, week VARCHAR) |
SELECT island FROM table_name_74 WHERE summit = "haleakalā" | What's the island with a summit of Haleakalā? | CREATE TABLE table_name_74 (island VARCHAR, summit VARCHAR) |
SELECT loss FROM table_name_41 WHERE record = "20-13" | Who lost the game with a record of 20-13? | CREATE TABLE table_name_41 (loss VARCHAR, record VARCHAR) |
SELECT partnering FROM table_name_25 WHERE score = "4–6, 7–5, [10–8]" | What is the partner with a score of 4–6, 7–5, [10–8]? | CREATE TABLE table_name_25 (partnering VARCHAR, score VARCHAR) |
SELECT record FROM table_name_98 WHERE date = "may 24" AND loss = "hayes (2-1)" | What is the Record on may 24, with a Loss of hayes (2-1)? | CREATE TABLE table_name_98 (record VARCHAR, date VARCHAR, loss VARCHAR) |
SELECT date FROM table_name_11 WHERE opponen = "joão souza" | When did joão souza play? | CREATE TABLE table_name_11 (date VARCHAR, opponen VARCHAR) |
SELECT player FROM table_name_5 WHERE round > 2 AND pick > 83 | Who is the player that has a round greater than 2 and a pick bigger than 83? | CREATE TABLE table_name_5 (player VARCHAR, round VARCHAR, pick VARCHAR) |
SELECT region FROM table_name_49 WHERE format = "cd" AND label = "a&m/canyon" | What is the region of the Catalog that is in cd format and has a label a&m/canyon? | CREATE TABLE table_name_49 (region VARCHAR, format VARCHAR, label VARCHAR) |
SELECT COUNT(launched) FROM table_28803803_1 WHERE original_channel = "CBS (2002)" | How many shows were launched on CBS (2002)? | CREATE TABLE table_28803803_1 (launched VARCHAR, original_channel VARCHAR) |
SELECT COUNT(week) FROM table_name_85 WHERE result = "l 20-10" | How many weeks ended in a result of L 20-10? | CREATE TABLE table_name_85 (week VARCHAR, result VARCHAR) |
SELECT opponent FROM table_name_11 WHERE attendance = "70,724" | Who did the Texans play when there were 70,724 people in attendance? | CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR) |
SELECT name FROM table_11585313_1 WHERE date_of_death† = "01-04-1954" | What is the name of the person whose date of death is 01-04-1954? | CREATE TABLE table_11585313_1 (name VARCHAR, date_of_death† VARCHAR) |
SELECT name FROM table_25794010_1 WHERE company = "company D" | Name the name for company d | CREATE TABLE table_25794010_1 (name VARCHAR, company VARCHAR) |
SELECT character FROM table_name_21 WHERE version = 5.1 AND name = "greek capital letter archaic sampi" | What character was the version 5.1 and had a Greek capital letter Archaic Sampi? | CREATE TABLE table_name_21 (character VARCHAR, version VARCHAR, name VARCHAR) |
SELECT second_baseman FROM table_12142298_2 WHERE first_baseman = "Nomar Garciaparra" | Who played 2nd base when nomar garciaparra was at 1st base? | CREATE TABLE table_12142298_2 (second_baseman VARCHAR, first_baseman VARCHAR) |
SELECT results FROM table_13643154_2 WHERE gto_winning_team = "Steve Millen" | Name the results for steve millen | CREATE TABLE table_13643154_2 (results VARCHAR, gto_winning_team VARCHAR) |
SELECT 2 AS nd_runner_up FROM table_name_91 WHERE premiere_date = "july 20, 2007" | Name the 2nd runner-up for july 20, 2007 | CREATE TABLE table_name_91 (premiere_date VARCHAR) |
SELECT 2010 FROM table_name_38 WHERE 2012 = "grand slam tournaments" | Name the 2010 for 2012 grand slam tournaments | CREATE TABLE table_name_38 (Id VARCHAR) |
SELECT date FROM table_name_78 WHERE opponent_number = "indiana" | When was the game against Indiana? | CREATE TABLE table_name_78 (date VARCHAR, opponent_number VARCHAR) |
SELECT election FROM table_123462_2 WHERE _number_of_seats_won = 65 | What year was the election when the # of seats won was 65? | CREATE TABLE table_123462_2 (election VARCHAR, _number_of_seats_won VARCHAR) |
SELECT AVG(gold) FROM table_name_28 WHERE nation = "yugoslavia" AND silver > 0 | What is the average Gold, when Nation is Yugoslavia, and when Silver is greater than 0? | CREATE TABLE table_name_28 (gold INTEGER, nation VARCHAR, silver VARCHAR) |
SELECT MAX(mintage) FROM table_name_57 WHERE theme = "common eider" AND year < 2008 | What is the most mintage with common eider as the theme, and the year less than 2008? | CREATE TABLE table_name_57 (mintage INTEGER, theme VARCHAR, year VARCHAR) |
SELECT nationality FROM table_name_98 WHERE round < 3 | Which Nationality has a Round smaller than 3? | CREATE TABLE table_name_98 (nationality VARCHAR, round INTEGER) |
SELECT team FROM table_22669044_10 WHERE high_points = "Hakim Warrick (14)" | Who was the opponent in the game in which Hakim Warrick (14) did the most high points? | CREATE TABLE table_22669044_10 (team VARCHAR, high_points VARCHAR) |
SELECT strongs__number FROM table_1242447_2 WHERE hebrew_word = "יִרְמְיָה" | What is the strongs # for the hebrew word יִרְמְיָה? | CREATE TABLE table_1242447_2 (strongs__number VARCHAR, hebrew_word VARCHAR) |
SELECT COUNT(*) FROM poker_player | How many poker players are there? | CREATE TABLE poker_player (Id VARCHAR) |
SELECT competition FROM table_name_64 WHERE date = "november 16, 2007" | What was the Competition on November 16, 2007? | CREATE TABLE table_name_64 (competition VARCHAR, date VARCHAR) |
SELECT MAX(effic) FROM table_name_56 WHERE avg_g < 305.6 AND gp_gs = "13-13" | Which Effic is the highest one that has an Avg/G smaller than 305.6, and a GP-GS of 13-13? | CREATE TABLE table_name_56 (effic INTEGER, avg_g VARCHAR, gp_gs VARCHAR) |
SELECT event FROM table_name_39 WHERE location = "philadelphia, pa" AND days_held = 41 | Which event has Philadelphia, PA as the location and 41 days held? | CREATE TABLE table_name_39 (event VARCHAR, location VARCHAR, days_held VARCHAR) |
SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC LIMIT 1 | List the industry shared by the most companies. | CREATE TABLE Companies (Industry VARCHAR) |
SELECT perth FROM table_name_50 WHERE auckland = "yes" AND gold_coast = "yes" | Which Perth has Auckland yes and Gold Coast yes? | CREATE TABLE table_name_50 (perth VARCHAR, auckland VARCHAR, gold_coast VARCHAR) |
SELECT release_date FROM table_name_42 WHERE title = "three little bops" | What was the release date of Three Little Bops? | CREATE TABLE table_name_42 (release_date VARCHAR, title VARCHAR) |
SELECT AVG(year) FROM table_name_36 WHERE notes = "electronics brand" | What is the average of all the years when the notes are “electronics brand?” | CREATE TABLE table_name_36 (year INTEGER, notes VARCHAR) |
SELECT MAX(left) FROM table_2419754_1 | In what year did the teams leave the conference? | CREATE TABLE table_2419754_1 (left INTEGER) |
SELECT date_made FROM table_name_46 WHERE notes = "45/48 renumbered 15/16; two sold to sl&ncr" | When has a Note of 45/48 renumbered 15/16; two sold to sl&ncr? | CREATE TABLE table_name_46 (date_made VARCHAR, notes VARCHAR) |
SELECT award FROM table_name_40 WHERE producer_s_ = "andrew ryder" | What award did Andrew Ryder win as producer? | CREATE TABLE table_name_40 (award VARCHAR, producer_s_ VARCHAR) |
SELECT MAX(population__2011_) FROM table_2562572_46 WHERE cyrillic_name_other_names = "Ватин" | What was the population in 2011 of the settlement with the cyrillic name of ватин? | CREATE TABLE table_2562572_46 (population__2011_ INTEGER, cyrillic_name_other_names VARCHAR) |
SELECT team FROM table_name_17 WHERE date = "december 30" | Which team was the opponent on December 30? | CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR) |
SELECT athlete FROM table_name_87 WHERE country = "lithuania" | Who was the athlete from Lithuania? | CREATE TABLE table_name_87 (athlete VARCHAR, country VARCHAR) |
SELECT catalog_level_name, catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10 | Find the name and level of catalog structure with level between 5 and 10. | CREATE TABLE Catalog_Structure (catalog_level_name VARCHAR, catalog_level_number INTEGER) |
SELECT song_choice FROM table_name_26 WHERE order__number = "4" | What is the Song choice when there is an Order # of 4? | CREATE TABLE table_name_26 (song_choice VARCHAR, order__number VARCHAR) |
SELECT COUNT(*) FROM Paragraphs | How many paragraphs in total? | CREATE TABLE Paragraphs (Id VARCHAR) |
SELECT AVG(league_goals) FROM table_name_18 WHERE total_apps = "2 (1)" | What are the average league goals that have 2 (1) as the total apps? | CREATE TABLE table_name_18 (league_goals INTEGER, total_apps VARCHAR) |
SELECT result FROM table_name_16 WHERE party = "republican" AND first_elected = "1886" AND district = "ohio 17" | Which republican was first elected in 1886 in the district of ohio 17? | CREATE TABLE table_name_16 (result VARCHAR, district VARCHAR, party VARCHAR, first_elected VARCHAR) |
SELECT COUNT(position) FROM table_2508633_5 WHERE nfl_team = "Philadelphia Eagles" | How many players did the philadelphia eagles pick? | CREATE TABLE table_2508633_5 (position VARCHAR, nfl_team VARCHAR) |
SELECT notes FROM table_name_57 WHERE distance = "men's speed skating" | What were the notes during the distance of Men's Speed Skating? | CREATE TABLE table_name_57 (notes VARCHAR, distance VARCHAR) |
SELECT country FROM table_15887683_4 WHERE television_service = "Sky Calcio 2" | What country has the Sky Calcio 2 tv service? | CREATE TABLE table_15887683_4 (country VARCHAR, television_service VARCHAR) |
SELECT result FROM table_name_49 WHERE date = "october 3" | What is the Result of the game on October 3? | CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR) |
SELECT Weight FROM people ORDER BY Height LIMIT 1 | What is the weight of the shortest person? | CREATE TABLE people (Weight VARCHAR, Height VARCHAR) |
SELECT type FROM table_name_25 WHERE characters = "廣丙" | What type has the characters 廣丙? | CREATE TABLE table_name_25 (type VARCHAR, characters VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.