answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT COUNT(starter) FROM table_25517718_3 WHERE position = "Right tackle" | How many starters are there at right tackle? | CREATE TABLE table_25517718_3 (starter VARCHAR, position VARCHAR) |
SELECT position FROM table_name_34 WHERE round = 4 AND school_club_team = "concordia" | Which Position has a Round of 4, and a School/Club Team of concordia? | CREATE TABLE table_name_34 (position VARCHAR, round VARCHAR, school_club_team VARCHAR) |
SELECT T1.id, T1.name FROM operate_company AS T1 JOIN flight AS t2 ON T1.id = T2.company_id GROUP BY T1.id HAVING COUNT(*) > 1 | What are the ids and names of the companies that operated more than one flight? | CREATE TABLE flight (Id VARCHAR); CREATE TABLE operate_company (id VARCHAR, name VARCHAR) |
SELECT plural_abbreviation FROM table_name_21 WHERE plural_word = "following lines or pages" | The plural word of following lines or pages has what plural abbreviation? | CREATE TABLE table_name_21 (plural_abbreviation VARCHAR, plural_word VARCHAR) |
SELECT SUM(attendance) FROM table_name_10 WHERE date = "july 5" | How many people attended on July 5? | CREATE TABLE table_name_10 (attendance INTEGER, date VARCHAR) |
SELECT MIN(population) FROM table_name_66 WHERE code < 70409 AND area__km_2__ < 5.97 AND place = "tshepiso" | What is the Population of Tshepiso with a Code of 70409 or smaller and an Area (km 2) smaller than 5.97? | CREATE TABLE table_name_66 (population INTEGER, place VARCHAR, code VARCHAR, area__km_2__ VARCHAR) |
SELECT MAX(long) FROM table_name_84 WHERE yards = "26" AND car < 9 | Who has a highest Long with 26 Yards and less than 9 Car? | CREATE TABLE table_name_84 (long INTEGER, yards VARCHAR, car VARCHAR) |
SELECT version FROM table_28540539_2 WHERE release = "1.0.12" | What's the version of the 1.0.12 release? | CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR) |
SELECT vacator FROM table_1847180_3 WHERE date_of_successors_formal_installation = "May 11, 1966" | Who vacated his post when his successor was formally installed on May 11, 1966? | CREATE TABLE table_1847180_3 (vacator VARCHAR, date_of_successors_formal_installation VARCHAR) |
SELECT COUNT(attendance) FROM table_name_59 WHERE game_site = "veterans stadium" AND week < 1 | How many attendance numbers are associated with the site of Veterans Stadium before week 1? | CREATE TABLE table_name_59 (attendance VARCHAR, game_site VARCHAR, week VARCHAR) |
SELECT record FROM table_name_41 WHERE stadium = "paul brown stadium" | What was the Browns record after they played the game at the Paul Brown stadium? | CREATE TABLE table_name_41 (record VARCHAR, stadium VARCHAR) |
SELECT round FROM table_name_58 WHERE player = "jerry butler" | In which round was Jerry Butler chosen? | CREATE TABLE table_name_58 (round VARCHAR, player VARCHAR) |
SELECT nationality FROM table_name_1 WHERE player = "demetris nichols" | What nationality is Demetris Nichols? | CREATE TABLE table_name_1 (nationality VARCHAR, player VARCHAR) |
SELECT director FROM table_name_77 WHERE year = 2014 AND writer = "yes" | With yes under writer and in 2014, what is the director? | CREATE TABLE table_name_77 (director VARCHAR, year VARCHAR, writer VARCHAR) |
SELECT date_of_appointment FROM table_17327264_3 WHERE manner_of_departure = "Sacked" AND position_in_table = "14th" AND replaced_by = "Marco Kostmann" | Name the date of appointment for sacked and 14th position replaced by marco kostmann | CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR) |
SELECT county FROM table_23014476_1 WHERE others__percentage = "5.8" | Name the couty for others% 5.8 | CREATE TABLE table_23014476_1 (county VARCHAR, others__percentage VARCHAR) |
SELECT week_4 FROM table_name_80 WHERE week_3 = "cidney carson" | Which week 4 had a week 3 of Cidney Carson? | CREATE TABLE table_name_80 (week_4 VARCHAR, week_3 VARCHAR) |
SELECT AVG(wins) FROM table_name_54 WHERE team = "nsu" AND points > 2 | How many wins for team nsu and over 2 points? | CREATE TABLE table_name_54 (wins INTEGER, team VARCHAR, points VARCHAR) |
SELECT college FROM table_name_78 WHERE pick > 18 AND pba_team = "barangay ginebra kings" | What college was the draft pick number larger than 18 that went to the Barangay ginebra kings? | CREATE TABLE table_name_78 (college VARCHAR, pick VARCHAR, pba_team VARCHAR) |
SELECT COUNT(tree_species) FROM table_16577990_1 WHERE total_plant_species = 113 | How many tree species are there when the total plant species is 113? | CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR) |
SELECT competition FROM table_name_86 WHERE score = "4-3" | Which competition had a 4-3 score? | CREATE TABLE table_name_86 (competition VARCHAR, score VARCHAR) |
SELECT away_team AS score FROM table_name_21 WHERE away_team = "south melbourne" | What did South Melbourne score when they were the Away team? | CREATE TABLE table_name_21 (away_team VARCHAR) |
SELECT COUNT(*), District FROM city WHERE Population > (SELECT AVG(Population) FROM city) GROUP BY District | Find the number of cities in each district whose population is greater than the average population of cities? | CREATE TABLE city (District VARCHAR, Population INTEGER) |
SELECT gto_winning_team FROM table_13642023_2 WHERE rnd = 5 AND gtu_winning_team = "#59 Brumos Porsche - Audi" | Who was the GTO winning team in round 5 when the GTU winning team was #59 Brumos Porsche - Audi? | CREATE TABLE table_13642023_2 (gto_winning_team VARCHAR, rnd VARCHAR, gtu_winning_team VARCHAR) |
SELECT COUNT(gold) FROM table_name_16 WHERE rank = "2" AND silver < 2 | What is the total number of gold medals of the ranked 2nd nation, which has less than 2 silvers? | CREATE TABLE table_name_16 (gold VARCHAR, rank VARCHAR, silver VARCHAR) |
SELECT position FROM table_2850912_4 WHERE nhl_team = "Toronto Maple Leafs" | Which position was selected for by the Toronto Maple Leafs? | CREATE TABLE table_2850912_4 (position VARCHAR, nhl_team VARCHAR) |
SELECT built_for FROM table_28885977_1 WHERE location = "Moorabbin, Victoria" | What was the stadium in Moorabbin, Victoria built for? | CREATE TABLE table_28885977_1 (built_for VARCHAR, location 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 COUNT(population__2000_) FROM table_2004733_2 WHERE barangay = "San Gabriel" | How many people lived in san gabriel in the year 2000? | CREATE TABLE table_2004733_2 (population__2000_ VARCHAR, barangay VARCHAR) |
SELECT main_location_s_ FROM table_name_77 WHERE _percentage_of_national = "2.05%" | What is listed for the Main Location(s) that has a % of National of 2.05%? | CREATE TABLE table_name_77 (main_location_s_ VARCHAR, _percentage_of_national VARCHAR) |
SELECT score FROM table_name_58 WHERE opponent = "boston celtics" | What is the Score of the game against the boston celtics? | CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR) |
SELECT record FROM table_name_65 WHERE date = "december 19" | what team scored on december 19 | CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR) |
SELECT streak FROM table_name_75 WHERE location_attendance = "new orleans arena" AND record = "31–33" | Which Streak is in new orleans arena and a Record of 31–33? | CREATE TABLE table_name_75 (streak VARCHAR, location_attendance VARCHAR, record VARCHAR) |
SELECT final_score FROM table_name_40 WHERE opponent = "atlético choloma" | What was the final score when the opponent was Atlético Choloma? | CREATE TABLE table_name_40 (final_score VARCHAR, opponent VARCHAR) |
SELECT event FROM table_name_72 WHERE date = "august 20-august 27" | What is Event, when Date is August 20-August 27? | CREATE TABLE table_name_72 (event VARCHAR, date VARCHAR) |
SELECT rounds FROM table_name_69 WHERE entrant = "alfa romeo spa" AND driver = "luigi fagioli" | In what rounds did Luigi Fagioli drive for Alfa Romeo SPA? | CREATE TABLE table_name_69 (rounds VARCHAR, entrant VARCHAR, driver VARCHAR) |
SELECT COUNT(qatari_female) FROM table_19309079_2 WHERE qatari_male = 97 | How many numbers were recorded for Qatari female when Qatari male was 97? | CREATE TABLE table_19309079_2 (qatari_female VARCHAR, qatari_male VARCHAR) |
SELECT star_rating_code, AVG(price_range) FROM HOTELS GROUP BY star_rating_code | Show the average price of hotels for each star rating code. | CREATE TABLE HOTELS (star_rating_code VARCHAR, price_range INTEGER) |
SELECT T1.cust_name, T1.acc_type FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name HAVING SUM(T2.amount) > 5000 | Find the name and account balance of the customers who have loans with a total amount of more than 5000. | CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR, cust_id VARCHAR) |
SELECT position FROM table_11734041_11 WHERE school_club_team_country = "Purdue" | What is the position of the player that came from the school/club team/country of Purdue? | CREATE TABLE table_11734041_11 (position VARCHAR, school_club_team_country VARCHAR) |
SELECT COUNT(_number_of_seats_won) FROM table_123462_2 WHERE _number_of_total_votes = 2582322 | How many times was the # of total votes 2582322? | CREATE TABLE table_123462_2 (_number_of_seats_won VARCHAR, _number_of_total_votes VARCHAR) |
SELECT episode FROM table_25391981_20 WHERE rating / SHARE(18 AS –49) = 2.8 / 8 | For what episode was the rating/share for 18-49 at 2.8/8 | CREATE TABLE table_25391981_20 (episode VARCHAR, rating VARCHAR) |
SELECT run_3 FROM table_name_40 WHERE run_1 = "1:17.6" | What was the run 3 for the team with a run 1 of 1:17.6? | CREATE TABLE table_name_40 (run_3 VARCHAR, run_1 VARCHAR) |
SELECT high_assists FROM table_27722408_2 WHERE date = "October 7" | Who had the most assists and how many did they have on October 7? | CREATE TABLE table_27722408_2 (high_assists VARCHAR, date VARCHAR) |
SELECT COUNT(others_number) FROM table_name_94 WHERE county = "langlade" AND bush_number > 6 OFFSET 235 | What is the total number of the value Others#, when the county is Langlade, and when the value Bush# is greater than 6,235? | CREATE TABLE table_name_94 (others_number VARCHAR, county VARCHAR, bush_number VARCHAR) |
SELECT location FROM table_name_21 WHERE record = "5-3" | Name the location of record 5-3 | CREATE TABLE table_name_21 (location VARCHAR, record VARCHAR) |
SELECT venue FROM table_name_80 WHERE result = "aus by 229 runs" | Which Venue resulted in AUS by 229 runs? | CREATE TABLE table_name_80 (venue VARCHAR, result VARCHAR) |
SELECT label FROM table_name_8 WHERE date = "22 january 2008" | What label has 22 January 2008 date? | CREATE TABLE table_name_8 (label VARCHAR, date VARCHAR) |
SELECT location FROM table_name_64 WHERE date = "october 10" | What location has October 10 as date? | CREATE TABLE table_name_64 (location VARCHAR, date VARCHAR) |
SELECT COUNT(1876) FROM table_name_64 WHERE 1872 < 1921 AND 1891 < 354 | What is the total number of 1876(s), when 1872 is less than 1921, and when 1891 is less than 354? | CREATE TABLE table_name_64 (Id VARCHAR) |
SELECT event FROM table_name_1 WHERE gold = "darren kenny great britain (gbr)" | what is the event when gold is darren kenny great britain (gbr)? | CREATE TABLE table_name_1 (event VARCHAR, gold VARCHAR) |
SELECT rank__all__2012 FROM table_23950611_2 WHERE name = "Cenovus Energy" | What was the Forbers rank (all companies) in 2012 for cenovus energy? | CREATE TABLE table_23950611_2 (rank__all__2012 VARCHAR, name VARCHAR) |
SELECT date FROM table_name_66 WHERE circuit = "daytona international speedway" AND race = "paul revere 250" | What is the date of the Paul Revere 250 race in the Daytona International Speedway circuit? | CREATE TABLE table_name_66 (date VARCHAR, circuit VARCHAR, race VARCHAR) |
SELECT COUNT(game) FROM table_name_83 WHERE high_assists = "rajon rondo (6)" | What is the total number of Game, when High Assists is "Rajon Rondo (6)"? | CREATE TABLE table_name_83 (game VARCHAR, high_assists VARCHAR) |
SELECT computing_mechanism FROM table_13636_1 WHERE name = "Atanasoff–Berry Computer (US)" | what's the computing mechanbeingm with name being atanasoff–berry computer (us) | CREATE TABLE table_13636_1 (computing_mechanism VARCHAR, name VARCHAR) |
SELECT COUNT(round) FROM table_name_95 WHERE school_club_team = "tennessee state" AND overall < 261 | What is the sum of all rounds where a Tennessee State player with an overall rank less than 261 was drafted? | CREATE TABLE table_name_95 (round VARCHAR, school_club_team VARCHAR, overall VARCHAR) |
SELECT district FROM table_name_2 WHERE reserved_for___sc___st__none_ = "sc" AND constituency_number = "169" | Which district had SC reserved and 169 Constituents? | CREATE TABLE table_name_2 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR) |
SELECT AVG(points) FROM table_name_97 WHERE goals_conceded = 14 AND goals_scored < 32 | what is the average points when goals conceded is 14 and goals scored is less than 32? | CREATE TABLE table_name_97 (points INTEGER, goals_conceded VARCHAR, goals_scored VARCHAR) |
SELECT top_speed FROM table_1857216_1 WHERE transmission = "4-speed automatic" AND production = "2002-2005" | What is the top speed of a 4-speed automatic with production in 2002-2005? | CREATE TABLE table_1857216_1 (top_speed VARCHAR, transmission VARCHAR, production VARCHAR) |
SELECT rank FROM table_name_65 WHERE event = "lapt3 punta del este" | What is Rank, when Event is "LAPT3 Punta Del Este"? | CREATE TABLE table_name_65 (rank VARCHAR, event VARCHAR) |
SELECT SUM(total) FROM table_name_46 WHERE rank = "2" | What is the sum of Total when rank is 2? | CREATE TABLE table_name_46 (total INTEGER, rank VARCHAR) |
SELECT record FROM table_name_1 WHERE date = "october 20" | What was the oilers record on October 20? | CREATE TABLE table_name_1 (record VARCHAR, date VARCHAR) |
SELECT MIN(tracks) FROM table_name_26 WHERE length = "18:36" | Which tracks have a length of 18:36? | CREATE TABLE table_name_26 (tracks INTEGER, length VARCHAR) |
SELECT place FROM table_name_95 WHERE country = "united states" AND to_par = "–5" | Name the Place which has To par of –5, in united states? | CREATE TABLE table_name_95 (place VARCHAR, country VARCHAR, to_par VARCHAR) |
SELECT standard_name FROM table_name_49 WHERE version = "adsl2" AND downstream_rate = "01.5 1.5 mbit/s" | What's the standard name with an ADSL2 version and a 01.5 1.5 mbit/s downstream rate? | CREATE TABLE table_name_49 (standard_name VARCHAR, version VARCHAR, downstream_rate VARCHAR) |
SELECT AVG(round) FROM table_name_54 WHERE opponent = "clay guida" | What is the average number of rounds when fighting against Clay Guida? | CREATE TABLE table_name_54 (round INTEGER, opponent VARCHAR) |
SELECT meaning FROM table_name_61 WHERE pīnyīn = "chē" | WHAT IS THE MEANING WITH Pīnyīn of chē? | CREATE TABLE table_name_61 (meaning VARCHAR, pīnyīn VARCHAR) |
SELECT SUM(production_number) FROM table_name_18 WHERE director = "robert mckimson" AND series = "mm" AND title = "people are bunny" | What is the production number directed by Robert McKimson in series mm titled People Are Bunny? | CREATE TABLE table_name_18 (production_number INTEGER, title VARCHAR, director VARCHAR, series VARCHAR) |
SELECT MAX(crowd) FROM table_name_19 WHERE home_team = "fitzroy" | What was the largest crowd where the home team was Fitzroy? | CREATE TABLE table_name_19 (crowd INTEGER, home_team VARCHAR) |
SELECT opponent FROM table_name_86 WHERE date = "november 26, 1989" | Who was the opponent on November 26, 1989? | CREATE TABLE table_name_86 (opponent VARCHAR, date VARCHAR) |
SELECT DISTINCT artist_name FROM artist WHERE country = "Bangladesh" EXCEPT SELECT DISTINCT artist_name FROM song WHERE rating > 7 | Find the names of the artists who are from Bangladesh and have never received rating higher than 7. | CREATE TABLE artist (artist_name VARCHAR, country VARCHAR, rating INTEGER); CREATE TABLE song (artist_name VARCHAR, country VARCHAR, rating INTEGER) |
SELECT year_s_ FROM table_name_39 WHERE rank = 2 AND player = "álvaro pérez" | During what years was álvaro pérez the number 2 ranked player? | CREATE TABLE table_name_39 (year_s_ VARCHAR, rank VARCHAR, player VARCHAR) |
SELECT AVG(gold) FROM table_name_73 WHERE bronze > 6 AND silver > 18 | How many Gold medals for the Nations with 6 or more Bronze medals and 18 or more Silver? | CREATE TABLE table_name_73 (gold INTEGER, bronze VARCHAR, silver VARCHAR) |
SELECT COUNT(minutes) FROM table_22993636_5 WHERE player = "Chanel Chisholm" | How much time, in minutes, did Chanel Chisholm play? | CREATE TABLE table_22993636_5 (minutes VARCHAR, player VARCHAR) |
SELECT team FROM table_17271495_1 WHERE driver = "Scott Dixon" | Name the team for scott dixon | CREATE TABLE table_17271495_1 (team VARCHAR, driver VARCHAR) |
SELECT COUNT(year) FROM table_name_2 WHERE chassis = "ensign n175" | Name the total number of years for chassis of ensign n175 | CREATE TABLE table_name_2 (year VARCHAR, chassis VARCHAR) |
SELECT COUNT(electorate) FROM table_20683381_3 WHERE for___percentage_ = "27,822 (72.3)" | When 27,822 (72.3) is the percentage for how many electorate measurements are there? | CREATE TABLE table_20683381_3 (electorate VARCHAR, for___percentage_ VARCHAR) |
SELECT date FROM table_name_97 WHERE opponent = "buffalo bills" | What date did the Ravens play the buffalo bills? | CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR) |
SELECT home_team FROM table_name_94 WHERE game = "game 2" | Who is the home team in game 2? | CREATE TABLE table_name_94 (home_team VARCHAR, game VARCHAR) |
SELECT country FROM table_name_69 WHERE original_title = "cidade de deus" | What is the country of the original title Cidade de deus? | CREATE TABLE table_name_69 (country VARCHAR, original_title VARCHAR) |
SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE municipal_district = "Smoky Lake County" | What is the density per km in Smoky Lake County? | CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, municipal_district VARCHAR) |
SELECT nation FROM table_name_52 WHERE rank = "7" | Which nation has a rank of 7? | CREATE TABLE table_name_52 (nation VARCHAR, rank VARCHAR) |
SELECT name FROM races WHERE YEAR BETWEEN 2009 AND 2011 | What are the names of races held between 2009 and 2011? | CREATE TABLE races (name VARCHAR, YEAR INTEGER) |
SELECT productions FROM table_name_96 WHERE herbie = "rex robbins" | Which production had Rex Robbins as Herbie? | CREATE TABLE table_name_96 (productions VARCHAR, herbie VARCHAR) |
SELECT COUNT(goals_conceded) FROM table_18018214_4 WHERE points = 31 | In the game with 31 points, how many goals were conceded? | CREATE TABLE table_18018214_4 (goals_conceded VARCHAR, points VARCHAR) |
SELECT home_team FROM table_name_2 WHERE away_team = "arsenal" | Who was the home team for the match against Arsenal? | CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR) |
SELECT doctor_who_episode FROM table_name_51 WHERE original_airdate__uk_ = "dvd only" | Which Doctor Who episode has a Original airdate (UK) of dvd only? | CREATE TABLE table_name_51 (doctor_who_episode VARCHAR, original_airdate__uk_ VARCHAR) |
SELECT miles__km_ FROM table_2220432_1 WHERE average_speed__mph_ = "136.117" | What was the miles (km) for the race that had an average speed of 136.117 MPH? | CREATE TABLE table_2220432_1 (miles__km_ VARCHAR, average_speed__mph_ VARCHAR) |
SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND NOT T1.Name IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English') | Which cities are in European countries where English is not the official language? | CREATE TABLE city (Name VARCHAR, CountryCode VARCHAR); CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, IsOfficial VARCHAR, Language VARCHAR); CREATE TABLE country (Code VARCHAR, Continent VARCHAR, Name VARCHAR) |
SELECT AVG(drop_zone) AS Time FROM table_name_22 WHERE drop_zone = "n" AND troop_carrier_group = "1st pathfinder prov." | What is the average drop zone time in the N drop zone for the 1st Pathfinder Prov.? | CREATE TABLE table_name_22 (drop_zone INTEGER, troop_carrier_group VARCHAR) |
SELECT original_us_air_date FROM table_27622417_1 WHERE prod_code = "415" | when was the premiere of the episode whose production code is 415? | CREATE TABLE table_27622417_1 (original_us_air_date VARCHAR, prod_code VARCHAR) |
SELECT location FROM table_name_69 WHERE court_surface = "hard" AND country = "china" | Which location was in China, and played on a hard court? | CREATE TABLE table_name_69 (location VARCHAR, court_surface VARCHAR, country VARCHAR) |
SELECT AVG(guests) FROM table_name_46 WHERE ship_name = "viking ingvar" AND year_built < 1990 | What is the number of guests for the Viking Ingvar, built earlier than 1990? | CREATE TABLE table_name_46 (guests INTEGER, ship_name VARCHAR, year_built VARCHAR) |
SELECT artist FROM table_19523708_1 WHERE original = "Shake It, Europe" | Who was the artist for the origin Shake it, Europe? | CREATE TABLE table_19523708_1 (artist VARCHAR, original VARCHAR) |
SELECT date_of_vacancy FROM table_name_2 WHERE outgoing_manager = "ralf santelli" | What was the date of vacancy after the outgoing manager, ralf santelli departed? | CREATE TABLE table_name_2 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) |
SELECT tries_against FROM table_name_95 WHERE played = "22" AND club = "ystalyfera rfc" | What is listed for the Tries against that has a Played of 22, along with a Club of Ystalyfera RFC? | CREATE TABLE table_name_95 (tries_against VARCHAR, played VARCHAR, club VARCHAR) |
SELECT region__year_ FROM table_name_12 WHERE no_7 = "abigail" AND no_1 = "sophia" AND no_5 = "aaliyah" | Which region (year) has Abigail at number 7, Sophia at number 1 and Aaliyah at number 5? | CREATE TABLE table_name_12 (region__year_ VARCHAR, no_5 VARCHAR, no_7 VARCHAR, no_1 VARCHAR) |
SELECT total_area FROM table_name_53 WHERE code < 1862 AND density__per_km_2_land_ = 21.6 | What is the total area for a code less than 1862 and a density (per km 2 land) of 21.6? | CREATE TABLE table_name_53 (total_area VARCHAR, code VARCHAR, density__per_km_2_land_ VARCHAR) |
SELECT final_score FROM table_name_42 WHERE game_site = "raymond james stadium" | What is the final score of the game that was at raymond james stadium? | CREATE TABLE table_name_42 (final_score VARCHAR, game_site VARCHAR) |
SELECT score FROM table_name_84 WHERE opponent = "@ la lakers" AND record = "8-6" | Which Score has an Opponent of @ la lakers, and a Record of 8-6? | CREATE TABLE table_name_84 (score VARCHAR, opponent VARCHAR, record VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.