answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT weekly_rank_for_living FROM table_name_96 WHERE air_date = "october 6, 2008" | what is the weekly rank for living when the air date is october 6, 2008? | CREATE TABLE table_name_96 (weekly_rank_for_living VARCHAR, air_date VARCHAR) |
SELECT MIN(series_no) FROM table_21025437_3 | what is the lowest value under the column series no.? | CREATE TABLE table_21025437_3 (series_no INTEGER) |
SELECT away_team AS score FROM table_name_95 WHERE home_team = "footscray" | What is the score of the away team when the home team is Footscray? | CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR) |
SELECT SUM(weight) FROM table_name_22 WHERE home_town = "minnetonka, mn" | What is the total combined weight of players from minnetonka, mn? | CREATE TABLE table_name_22 (weight INTEGER, home_town VARCHAR) |
SELECT MAX(different_holders) FROM table_18676973_3 WHERE jerseys = 155 | When 155 is the jersey what is the highest amount of different holders? | CREATE TABLE table_18676973_3 (different_holders INTEGER, jerseys VARCHAR) |
SELECT COUNT(first_elected) FROM table_name_20 WHERE district = "dranesville" | Name the total number of first elected for dranesville | CREATE TABLE table_name_20 (first_elected VARCHAR, district VARCHAR) |
SELECT MIN(r) FROM table WHERE player = Marcelo | If the player is Marcelo, what is the minimum R? | CREATE TABLE table (r INTEGER, player VARCHAR, Marcelo VARCHAR) |
SELECT MAX(year) FROM table_name_63 WHERE team = "north melbourne" AND player = "hamish mcintosh" | What most recent year had North Melbourne as a team and Hamish Mcintosh as a player? | CREATE TABLE table_name_63 (year INTEGER, team VARCHAR, player VARCHAR) |
SELECT COUNT(player) FROM table_21321804_3 WHERE position = "DT" | How many players are at the DT position? | CREATE TABLE table_21321804_3 (player VARCHAR, position VARCHAR) |
SELECT T1.Date_Claim_Made, T1.Claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.Claim_id HAVING COUNT(*) > 2 UNION SELECT T1.Date_Claim_Made, T1.Claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id WHERE T1.Amount_Claimed = (SELECT MAX(Amount_Claimed) FROM Claims) | Which claims caused more than 2 settlements or have the maximum claim value? List the date the claim was made and the claim id. | CREATE TABLE Settlements (Claim_id VARCHAR); CREATE TABLE Claims (Amount_Claimed INTEGER); CREATE TABLE Claims (Date_Claim_Made VARCHAR, Claim_id VARCHAR, Amount_Claimed INTEGER) |
SELECT position FROM table_21223773_2 WHERE matches_for_nqf = "2009" | If the matches for NQF is 2009, what is the position? | CREATE TABLE table_21223773_2 (position VARCHAR, matches_for_nqf VARCHAR) |
SELECT MAX(first_elected) FROM table_name_73 WHERE party = "dem" AND district > 24 AND home_city_town = "berlin" | Which First elected is the highest one that has a Party of dem, and a District larger than 24, and a Home city/town of berlin? | CREATE TABLE table_name_73 (first_elected INTEGER, home_city_town VARCHAR, party VARCHAR, district VARCHAR) |
SELECT COUNT(year) FROM table_name_30 WHERE schwante < 2.043 AND eichstädt < 848 AND bärenklau < 1.262 | What year has a Schwante smaller than 2.043, an Eichstädt smaller than 848, and a Bärenklau smaller than 1.262? | CREATE TABLE table_name_30 (year VARCHAR, bärenklau VARCHAR, schwante VARCHAR, eichstädt VARCHAR) |
SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T2.document_name = "Data base" | What is the template type code of the template used by document with the name "Data base"? | CREATE TABLE Templates (template_type_code VARCHAR, template_id VARCHAR); CREATE TABLE Documents (template_id VARCHAR, document_name VARCHAR) |
SELECT date FROM table_name_98 WHERE venue = "moorabbin oval" | When was the game at Moorabbin Oval? | CREATE TABLE table_name_98 (date VARCHAR, venue VARCHAR) |
SELECT home_team AS score FROM table_name_27 WHERE venue = "victoria park" | What was the home team's score at Victoria Park? | CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR) |
SELECT laps FROM table_17802778_1 WHERE year = 2001 | How many laps recorded in 2001? | CREATE TABLE table_17802778_1 (laps VARCHAR, year VARCHAR) |
SELECT ground FROM table_16388545_1 WHERE crowd = 22537 | Which location had an attendance of 22537? | CREATE TABLE table_16388545_1 (ground VARCHAR, crowd VARCHAR) |
SELECT home_team AS score FROM table_name_59 WHERE home_team = "north melbourne" | What score did the home team of north melbourne get? | CREATE TABLE table_name_59 (home_team VARCHAR) |
SELECT school FROM table_name_30 WHERE position = "p" AND team = "kansas city royals" AND player = "jay gehrke" | What school did P Jay Gehrke of the Kansas City Royals attend? | CREATE TABLE table_name_30 (school VARCHAR, player VARCHAR, position VARCHAR, team VARCHAR) |
SELECT republican AS :_jeff_sessions FROM table_16751596_12 WHERE dates_administered = "June 30, 2008" | On June 30, 2008 who what was the Republican: Jeff Sessions percentage? | CREATE TABLE table_16751596_12 (republican VARCHAR, dates_administered VARCHAR) |
SELECT eliminated FROM table_29692554_2 WHERE time = "22:50" | What number was the person eliminated at 22:50? | CREATE TABLE table_29692554_2 (eliminated VARCHAR, time VARCHAR) |
SELECT loser FROM table_name_96 WHERE location = "municipal stadium" AND year > 1970 | Who was the loser at Municipal Stadium after 1970? | CREATE TABLE table_name_96 (loser VARCHAR, location VARCHAR, year VARCHAR) |
SELECT qual FROM table_name_6 WHERE laps = 125 | What is the qual when there are 125 laps? | CREATE TABLE table_name_6 (qual VARCHAR, laps VARCHAR) |
SELECT name FROM table_name_99 WHERE points > 14 AND drawn < 1 | Which name has more than 14 points with less than 1 draw? | CREATE TABLE table_name_99 (name VARCHAR, points VARCHAR, drawn VARCHAR) |
SELECT AVG(prize__) AS £k_ FROM table_name_33 WHERE race = "buttercross limited stakes" | What is the average prize for the Buttercross Limited Stakes? | CREATE TABLE table_name_33 (prize__ INTEGER, race VARCHAR) |
SELECT fsb FROM table_11602313_4 WHERE part_number_s_ = "LF80537GE0251MN" | What is the FSB of the model with part number lf80537ge0251mn? | CREATE TABLE table_11602313_4 (fsb VARCHAR, part_number_s_ VARCHAR) |
SELECT name FROM table_name_81 WHERE event = "36 arrow finals" | Who has the event of 36 arrow finals? | CREATE TABLE table_name_81 (name VARCHAR, event VARCHAR) |
SELECT MAX(round) FROM table_name_26 WHERE team = "long island lizards" | Which round was a player from the Long Island Lizards drafted in first? | CREATE TABLE table_name_26 (round INTEGER, team VARCHAR) |
SELECT gpu_model FROM table_name_33 WHERE sspec_number = "sr16z(c0)" | What's the GPU model that has sSpec number SR16Z(c0)? | CREATE TABLE table_name_33 (gpu_model VARCHAR, sspec_number VARCHAR) |
SELECT 2008 FROM table_name_34 WHERE 2003 = "325" | What is the 2008 result where 2003 is 325? | CREATE TABLE table_name_34 (Id VARCHAR) |
SELECT tournament FROM table_name_99 WHERE surface = "hard" AND score = "6–1, 6–2" | Tell me the tournament with a hard surface for 6–1, 6–2 | CREATE TABLE table_name_99 (tournament VARCHAR, surface VARCHAR, score VARCHAR) |
SELECT general_classification FROM table_29332810_14 WHERE winner = "Ben Swift" AND young_rider_classification = "Cameron Meyer" | Who is listed under the general classifcation where Ben Swift won and Cameron Meyer was listed under the young rider? | CREATE TABLE table_29332810_14 (general_classification VARCHAR, winner VARCHAR, young_rider_classification VARCHAR) |
SELECT size FROM table_name_61 WHERE year_joined < 1974 AND ihsaa_class = "aa" AND _number___county = "89 wayne" AND school = "centerville" | What's the size of Centerville in 89 Wayne county with an IHSAA class of AA in the year before 1974? | CREATE TABLE table_name_61 (size VARCHAR, school VARCHAR, _number___county VARCHAR, year_joined VARCHAR, ihsaa_class VARCHAR) |
SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = "Aberdeen" | What are flight numbers of flights departing from City "Aberdeen "? | CREATE TABLE FLIGHTS (FlightNo VARCHAR, SourceAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR) |
SELECT team FROM table_name_83 WHERE kit_manufacturer = "umbro" AND captain = "gary mabbutt" | Which team is the kit manufacturer Umbro, and the captain Gary Mabbutt? | CREATE TABLE table_name_83 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR) |
SELECT episode FROM table_name_35 WHERE budget = "£7,000" | Which episode of Top Gear had a budget of £7,000? | CREATE TABLE table_name_35 (episode VARCHAR, budget VARCHAR) |
SELECT date FROM table_name_35 WHERE fastest_lap = "patrick tambay" | What day did Patrick Tambay have the fastest lap? | CREATE TABLE table_name_35 (date VARCHAR, fastest_lap VARCHAR) |
SELECT traditional FROM table_1300525_1 WHERE area = 2331 | What is the traditional way to write the name of the district who's area is 2331? | CREATE TABLE table_1300525_1 (traditional VARCHAR, area VARCHAR) |
SELECT format, _special_notes FROM table_name_23 WHERE title = "the pact: ...of the gods" | What is the Format and Special Notes for of the pact: ...of the gods? | CREATE TABLE table_name_23 (format VARCHAR, _special_notes VARCHAR, title VARCHAR) |
SELECT province FROM table_27274222_2 WHERE turnout___percentage_ = "54.09" | What province had a turnout of 54.09%? | CREATE TABLE table_27274222_2 (province VARCHAR, turnout___percentage_ VARCHAR) |
SELECT third FROM table_name_29 WHERE second = "scott pfeifer" | Which Third has a Second of scott pfeifer? | CREATE TABLE table_name_29 (third VARCHAR, second VARCHAR) |
SELECT score FROM table_name_71 WHERE record = "81-60" | What was the score of the game with a record of 81-60? | CREATE TABLE table_name_71 (score VARCHAR, record VARCHAR) |
SELECT MAX(year_built) FROM table_name_47 WHERE name = "fay no. 4" | What is the year built for the Fay No. 4? | CREATE TABLE table_name_47 (year_built INTEGER, name VARCHAR) |
SELECT country_region FROM table_name_76 WHERE languages = "vietnamese" | What country speaks Vietnamese? | CREATE TABLE table_name_76 (country_region VARCHAR, languages VARCHAR) |
SELECT opponents FROM table_name_59 WHERE score = "6–4, 6–3" | Which Opponents have a Score of 6–4, 6–3? | CREATE TABLE table_name_59 (opponents VARCHAR, score VARCHAR) |
SELECT mountains_classification FROM table_22941863_19 WHERE winner = "Bernhard Eisel" | What is the mountain classification name if the winner is Bernhard Eisel? | CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR) |
SELECT AVG(total) FROM table_name_12 WHERE country = "united states" AND player = "andy north" | Which Total has a Country of united states, and a Player of andy north? | CREATE TABLE table_name_12 (total INTEGER, country VARCHAR, player VARCHAR) |
SELECT name AS origin FROM table_16799784_12 WHERE name = "Ovda Fluctus" | What is every name origin with the name Ovda Fluctus? | CREATE TABLE table_16799784_12 (name VARCHAR) |
SELECT home_team AS score FROM table_name_25 WHERE away_team = "carlton" | What is the home team score for the game with the away team Carlton? | CREATE TABLE table_name_25 (home_team VARCHAR, away_team VARCHAR) |
SELECT score FROM table_name_31 WHERE game > 78 AND date = 4 | What is Score, when Game is greater than 78, and when Date is "4"? | CREATE TABLE table_name_31 (score VARCHAR, game VARCHAR, date VARCHAR) |
SELECT COUNT(directed_by) FROM table_20124413_2 WHERE prod_code = "2.8" | How many directed have the product code of 2.8? | CREATE TABLE table_20124413_2 (directed_by VARCHAR, prod_code VARCHAR) |
SELECT COUNT(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRLINES AS T3 ON T3.uid = T1.Airline WHERE T2.City = "Aberdeen" AND T3.Airline = "United Airlines" | How many United Airlines flights go to City 'Aberdeen'? | CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR); CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR); CREATE TABLE FLIGHTS (DestAirport VARCHAR, Airline VARCHAR) |
SELECT name FROM table_name_43 WHERE position = "ot" AND round = 27 | Which player had a position of OT during round 27? | CREATE TABLE table_name_43 (name VARCHAR, position VARCHAR, round VARCHAR) |
SELECT line FROM table_name_87 WHERE operator = "london overground" AND destination = "crystal palace" | Which line has an operator of the London Overground and ends at the Crystal Palace? | CREATE TABLE table_name_87 (line VARCHAR, operator VARCHAR, destination VARCHAR) |
SELECT visitor FROM table_name_28 WHERE leading_scorer = "rudy gay (24)" | What is the Visitor with a Leading scorer with rudy gay (24)? | CREATE TABLE table_name_28 (visitor VARCHAR, leading_scorer VARCHAR) |
SELECT venue FROM table_name_55 WHERE position = "7th" | What venue did he finish 7th? | CREATE TABLE table_name_55 (venue VARCHAR, position VARCHAR) |
SELECT glider FROM table_name_40 WHERE speed = "147.3km/h" | What is Glider, when Speed is "147.3km/h"? | CREATE TABLE table_name_40 (glider VARCHAR, speed VARCHAR) |
SELECT series FROM table_name_96 WHERE visitor = "st. louis" AND date = "april 18" | What was the series score when st. louis was away on april 18? | CREATE TABLE table_name_96 (series VARCHAR, visitor VARCHAR, date VARCHAR) |
SELECT COUNT(synthesis) FROM table_30057479_1 WHERE output_power = "5~16.2 pW per cycle (calculated)" | How many synthesis are there for 5~16.2 pw per cycle (calculated) output power? | CREATE TABLE table_30057479_1 (synthesis VARCHAR, output_power VARCHAR) |
SELECT runner_s__up FROM table_name_21 WHERE date = "may 19, 1973" | Which Runner(s)-up has a Date of may 19, 1973? | CREATE TABLE table_name_21 (runner_s__up VARCHAR, date VARCHAR) |
SELECT COUNT(score) FROM table_27501030_3 WHERE opponent = "Florida Panthers" | What was the score for the opponent florida panthers? | CREATE TABLE table_27501030_3 (score VARCHAR, opponent VARCHAR) |
SELECT title FROM table_name_34 WHERE type = "album" AND year = 1983 | Which Title has a Type of album in 1983? | CREATE TABLE table_name_34 (title VARCHAR, type VARCHAR, year VARCHAR) |
SELECT MIN(losses) FROM table_name_39 WHERE wins < 6 AND south_west_dfl = "sandford" | Which Losses have Wins smaller than 6, and a South West DFL of sandford? | CREATE TABLE table_name_39 (losses INTEGER, wins VARCHAR, south_west_dfl VARCHAR) |
SELECT COUNT(place) FROM table_name_72 WHERE artist = "vicky gordon" AND points > 23 | Name the total number of places for vicky gordon and points more than 23 | CREATE TABLE table_name_72 (place VARCHAR, artist VARCHAR, points VARCHAR) |
SELECT COUNT(games) FROM table_name_58 WHERE losses > 6 AND club = "club sportif sfaxien" AND wins < 3 | What is the total number of Games, when Losses is greater than 6, when Club is "Club Sportif Sfaxien", and when Wins is less than 3? | CREATE TABLE table_name_58 (games VARCHAR, wins VARCHAR, losses VARCHAR, club VARCHAR) |
SELECT COUNT(won_by) FROM table_21046399_3 WHERE county = "Milwaukee" | How many total figures are given for Milwaukee county? | CREATE TABLE table_21046399_3 (won_by VARCHAR, county VARCHAR) |
SELECT COUNT(place) FROM table_name_85 WHERE team = "tauro" AND played < 18 | how many times is the team tauro and played less than 18? | CREATE TABLE table_name_85 (place VARCHAR, team VARCHAR, played VARCHAR) |
SELECT player FROM table_name_73 WHERE school_club_team = "georgia" | Who is the player for the School/Club team in Georgia? | CREATE TABLE table_name_73 (player VARCHAR, school_club_team VARCHAR) |
SELECT principal FROM table_name_92 WHERE mascot = "patriots" | What principal has a school mascot of the patriots? | CREATE TABLE table_name_92 (principal VARCHAR, mascot VARCHAR) |
SELECT T1.login_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = "advanced database" | Find the login name of the course author that teaches the course with name "advanced database". | CREATE TABLE Courses (author_id VARCHAR, course_name VARCHAR); CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR, author_id VARCHAR) |
SELECT points_for FROM table_name_71 WHERE drawn = "0" AND tries_against = "60" | what is the points for when the club has 0 drawn and 60 tries against? | CREATE TABLE table_name_71 (points_for VARCHAR, drawn VARCHAR, tries_against VARCHAR) |
SELECT location_attendance FROM table_27756474_2 WHERE game = 5 | What location and attendance were there for game 5? | CREATE TABLE table_27756474_2 (location_attendance VARCHAR, game VARCHAR) |
SELECT standing FROM table_2110959_1 WHERE pct__percentage = "0.769" | What was the standing in the season that the pct% was 0.769? | CREATE TABLE table_2110959_1 (standing VARCHAR, pct__percentage VARCHAR) |
SELECT COUNT(losses) FROM table_name_85 WHERE team = "sturt" AND wins > 0 | How many losses did the team, Sturt, have when they had more than 0 wins? | CREATE TABLE table_name_85 (losses VARCHAR, team VARCHAR, wins VARCHAR) |
SELECT official_name FROM table_name_70 WHERE census_ranking = "769 of 5,008" | What is Official Name, when Census Ranking is 769 of 5,008? | CREATE TABLE table_name_70 (official_name VARCHAR, census_ranking VARCHAR) |
SELECT MIN(no_in_series) FROM table_2226817_6 WHERE no_in_season = 13 | What' the series number of the episode with season number 13? | CREATE TABLE table_2226817_6 (no_in_series INTEGER, no_in_season VARCHAR) |
SELECT directed_by FROM table_21726793_1 WHERE production_code = "2T5710" | who directed the production code 2t5710? | CREATE TABLE table_21726793_1 (directed_by VARCHAR, production_code VARCHAR) |
SELECT date FROM table_name_97 WHERE tie_no = "37" | What is Date, when Tie no is "37"? | CREATE TABLE table_name_97 (date VARCHAR, tie_no VARCHAR) |
SELECT natural_change FROM table_name_74 WHERE crude_death_rate__per_1000_ = 8.7 AND live_births < 472 | What is natural change with a crude death rate of 8.7 and less than 472 live births? | CREATE TABLE table_name_74 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, live_births VARCHAR) |
SELECT MAX(against) FROM table_name_73 WHERE lost = 3 AND points < 30 | What is the highest against when the lost is 3 with less than 30 points? | CREATE TABLE table_name_73 (against INTEGER, lost VARCHAR, points VARCHAR) |
SELECT MIN(population) FROM table_name_72 WHERE area__km²_ = 1115.4 | What is the smallest population with an Area (km²) of 1115.4? | CREATE TABLE table_name_72 (population INTEGER, area__km²_ VARCHAR) |
SELECT number_range FROM table_name_84 WHERE builder = "gloucester rcw" AND introduced = "1937" | What is the number range for the Gloucester RCW builder introduced in 1937? | CREATE TABLE table_name_84 (number_range VARCHAR, builder VARCHAR, introduced VARCHAR) |
SELECT name FROM table_name_57 WHERE constituency_number = "16" | Where is constituency number 16? | CREATE TABLE table_name_57 (name VARCHAR, constituency_number VARCHAR) |
SELECT representative FROM table_name_93 WHERE presentation_of_credentials = "september 8, 2005" | Which Representative has a Presentation of Credentials on september 8, 2005? | CREATE TABLE table_name_93 (representative VARCHAR, presentation_of_credentials VARCHAR) |
SELECT COUNT(offensive) FROM table_23265433_2 WHERE overall = "Colin Doyle" | Name the total number of offensive for colin doyle | CREATE TABLE table_23265433_2 (offensive VARCHAR, overall VARCHAR) |
SELECT nickname FROM table_1974545_1 WHERE enrollment = 9000 | Name the nickname for enrollment being 9000 | CREATE TABLE table_1974545_1 (nickname VARCHAR, enrollment VARCHAR) |
SELECT house FROM table_name_60 WHERE abbr = "g" | Which house has an abbreviation of G? | CREATE TABLE table_name_60 (house VARCHAR, abbr VARCHAR) |
SELECT teams FROM table_name_95 WHERE third__points_ = "season cancelled" | Name the teams for third points of season cancelled | CREATE TABLE table_name_95 (teams VARCHAR, third__points_ VARCHAR) |
SELECT 1944 FROM table_name_52 WHERE tournament = "u.s. championships" | What is the 1944 result for the U.S. Championships? | CREATE TABLE table_name_52 (tournament VARCHAR) |
SELECT location_attendance FROM table_15780049_8 WHERE team = "Philadelphia" | Name the location attendance for philadelphia | CREATE TABLE table_15780049_8 (location_attendance VARCHAR, team VARCHAR) |
SELECT date FROM table_name_13 WHERE away_team = "minehead" | What is Date, when Away Team is "Minehead"? | CREATE TABLE table_name_13 (date VARCHAR, away_team VARCHAR) |
SELECT shuttle FROM table_14118521_1 WHERE primary_payload_s_ = "United States Microgravity Laboratory-1" | what's the shuttle with primary payload(s) being united states microgravity laboratory-1 | CREATE TABLE table_14118521_1 (shuttle VARCHAR, primary_payload_s_ VARCHAR) |
SELECT MAX(bronze) FROM table_name_20 WHERE silver = 3 AND total > 5 | What is the highest bronze when the silver was 3 and the total was larger than 5? | CREATE TABLE table_name_20 (bronze INTEGER, silver VARCHAR, total VARCHAR) |
SELECT COUNT(round) FROM table_name_70 WHERE pick < 10 AND name = "larry hendershot" | How many rounds have a Pick smaller than 10, and a Name of larry hendershot? | CREATE TABLE table_name_70 (round VARCHAR, pick VARCHAR, name VARCHAR) |
SELECT Name FROM country WHERE SurfaceArea > (SELECT MIN(SurfaceArea) FROM country WHERE Continent = "Europe") | What are the countries that have greater surface area than any country in Europe? | CREATE TABLE country (Name VARCHAR, SurfaceArea INTEGER, Continent VARCHAR) |
SELECT w FROM table_29565673_2 WHERE pa = 62 | What is the win record where the pa record is 62? | CREATE TABLE table_29565673_2 (w VARCHAR, pa VARCHAR) |
SELECT name FROM table_name_21 WHERE moving_to = "triestina" | Who is moving to Triestina? | CREATE TABLE table_name_21 (name VARCHAR, moving_to VARCHAR) |
SELECT COUNT(episodes) FROM table_name_90 WHERE romaji_title = "dragon zakura" | How many Episodes have a Romaji Title of dragon zakura? | CREATE TABLE table_name_90 (episodes VARCHAR, romaji_title VARCHAR) |
SELECT COUNT(first_elected) FROM table_1342379_41 WHERE incumbent = "Cordell Hull" | How many times was incumbent cordell hull first elected? | CREATE TABLE table_1342379_41 (first_elected VARCHAR, incumbent VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.