question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What is Record, when Location is "Des Moines, Iowa , United States", and when Method is "Submission (arm-triangle choke)"? | CREATE TABLE table_name_31 (record VARCHAR, location VARCHAR, method VARCHAR) | SELECT record FROM table_name_31 WHERE location = "des moines, iowa , united states" AND method = "submission (arm-triangle choke)" |
Find the name of amenities Smith Hall dorm have. ordered the results by amenity names. | CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR) | SELECT T3.amenity_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid WHERE T1.dorm_name = 'Smith Hall' ORDER BY T3.amenity_name |
What College/junior/club team (league) did mitch fadden play for? | CREATE TABLE table_name_14 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_14 WHERE player = "mitch fadden" |
Who was the winner in the event with a runner-up of Alberto Mancini? | CREATE TABLE table_name_1 (winner VARCHAR, runner_up VARCHAR) | SELECT winner FROM table_name_1 WHERE runner_up = "alberto mancini" |
What is the highest crowd with north melbourne as away team? | CREATE TABLE table_name_10 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_10 WHERE away_team = "north melbourne" |
Name the total number of results for new orleans saints | CREATE TABLE table_16710829_2 (result VARCHAR, opponent VARCHAR) | SELECT COUNT(result) FROM table_16710829_2 WHERE opponent = "New Orleans Saints" |
When 1994 is the first elected what is the district? | CREATE TABLE table_19753079_41 (district VARCHAR, first_elected VARCHAR) | SELECT district FROM table_19753079_41 WHERE first_elected = 1994 |
what is the total when bronze is more than 1 and gold smaller than 1? | CREATE TABLE table_name_1 (total INTEGER, bronze VARCHAR, gold VARCHAR) | SELECT SUM(total) FROM table_name_1 WHERE bronze > 1 AND gold < 1 |
How many trains call at Castor, Overton, Peterborough East and are operated by LNWR? | CREATE TABLE table_12221135_3 (arrival VARCHAR, operator VARCHAR, calling_at VARCHAR) | SELECT COUNT(arrival) FROM table_12221135_3 WHERE operator = "LNWR" AND calling_at = "Castor, Overton, Peterborough East" |
What is the league cup apps when the league goals are greater than 3, there are 30 (2) total apps, and has a position of mf? | CREATE TABLE table_name_13 (league_cup_apps VARCHAR, total_apps VARCHAR, position VARCHAR, league_goals VARCHAR) | SELECT league_cup_apps FROM table_name_13 WHERE position = "mf" AND league_goals > 3 AND total_apps = "30 (2)" |
Where was the 2013 Eaff East Asian Cup Qualifier played? | CREATE TABLE table_name_78 (venue VARCHAR, competition VARCHAR) | SELECT venue FROM table_name_78 WHERE competition = "2013 eaff east asian cup qualifier" |
Who was the home team for the game played at Corio Oval? | CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_20 WHERE venue = "corio oval" |
What is the population where the median household income is $87,832 and there are fewer than 64,886 households? | CREATE TABLE table_name_83 (population INTEGER, median_household_income VARCHAR, number_of_households VARCHAR) | SELECT AVG(population) FROM table_name_83 WHERE median_household_income = "$87,832" AND number_of_households < 64 OFFSET 886 |
What club had a score of 18.1? | CREATE TABLE table_name_87 (club VARCHAR, score VARCHAR) | SELECT club FROM table_name_87 WHERE score = "18.1" |
Name the name of award for zubeen garg | CREATE TABLE table_24446718_7 (name_of_award VARCHAR, awardee_s_ VARCHAR) | SELECT name_of_award FROM table_24446718_7 WHERE awardee_s_ = "Zubeen Garg" |
Which Norwegian (nynorsk) has a Danish of farvel? | CREATE TABLE table_name_12 (norwegian__nynorsk_ VARCHAR, danish VARCHAR) | SELECT norwegian__nynorsk_ FROM table_name_12 WHERE danish = "farvel" |
What Date has a Home listed as Calgary? | CREATE TABLE table_name_48 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_48 WHERE home = "calgary" |
When did Manny Pacquiao win his first championship? | CREATE TABLE table_name_37 (year INTEGER, fighter VARCHAR) | SELECT MIN(year) FROM table_name_37 WHERE fighter = "manny pacquiao" |
WHAT IS THE GROSS DOLLARS WITH A RANK OF 7 OR MORE, AND DIRECTOR BARRY LEVINSON? | CREATE TABLE table_name_71 (gross VARCHAR, rank VARCHAR, director VARCHAR) | SELECT gross FROM table_name_71 WHERE rank > 7 AND director = "barry levinson" |
Who wrote the episode with production code 1AJN05? | CREATE TABLE table_23242933_2 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_23242933_2 WHERE production_code = "1AJN05" |
How much money did James Seddon request? | CREATE TABLE table_name_2 (money_requested__Β£_ VARCHAR, entrepreneur_s_ VARCHAR) | SELECT money_requested__Β£_ FROM table_name_2 WHERE entrepreneur_s_ = "james seddon" |
Tell me the laps for 3 grids | CREATE TABLE table_name_67 (laps VARCHAR, grid VARCHAR) | SELECT laps FROM table_name_67 WHERE grid = 3 |
What was the total number of Points when the value Difference was 13, and when the value Lost was greater than 3? | CREATE TABLE table_name_75 (points INTEGER, difference VARCHAR, lost VARCHAR) | SELECT SUM(points) FROM table_name_75 WHERE difference = "13" AND lost > 3 |
What is the earliest year when the points were more than 0? | CREATE TABLE table_name_38 (year INTEGER, points INTEGER) | SELECT MIN(year) FROM table_name_38 WHERE points > 0 |
Who is the original artist for the theme "Year they were born?" | CREATE TABLE table_15796100_1 (original_artist VARCHAR, theme VARCHAR) | SELECT original_artist FROM table_15796100_1 WHERE theme = "Year They Were Born" |
Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3 | CREATE TABLE table_name_90 (erp_w INTEGER, city_of_license VARCHAR, frequency_mhz VARCHAR) | SELECT AVG(erp_w) FROM table_name_90 WHERE city_of_license = "pound, virginia" AND frequency_mhz > 91.3 |
How many Spins sources have a CCM Chart of CHR with a peak position less than 1? | CREATE TABLE table_name_61 (spins__since_1998__source VARCHAR, ccm_chart VARCHAR, peak_pos VARCHAR) | SELECT COUNT(spins__since_1998__source) AS :_mediabase FROM table_name_61 WHERE ccm_chart = "chr" AND peak_pos < 1 |
what's theΒ β function / genus βΒ withΒ shigellaΒ being spa32 | CREATE TABLE table_10321124_1 (β_function___genus_β VARCHAR, shigella VARCHAR) | SELECT β_function___genus_β FROM table_10321124_1 WHERE shigella = "Spa32" |
how many points did the argentinos juniors team score during the 1986-87 season? | CREATE TABLE table_14489821_1 (team VARCHAR) | SELECT 1986 AS _87 FROM table_14489821_1 WHERE team = "Argentinos Juniors" |
What's the storage case of the buttonholer described as ivory and red metal? | CREATE TABLE table_28652521_1 (storage_case VARCHAR, description VARCHAR) | SELECT storage_case FROM table_28652521_1 WHERE description = "ivory and red metal" |
What is the upstream for the 100 mbps downstream? | CREATE TABLE table_name_82 (upstream VARCHAR, downstream VARCHAR) | SELECT upstream FROM table_name_82 WHERE downstream = "100 mbps" |
Participation as of actor, film editor has what average year? | CREATE TABLE table_name_11 (year INTEGER, participation_as VARCHAR) | SELECT AVG(year) FROM table_name_11 WHERE participation_as = "actor, film editor" |
What is the value for positional opponents with no material or non-material, and 3 suits? | CREATE TABLE table_name_92 (opponents VARCHAR, suits VARCHAR, positional_or_automatic VARCHAR, material_or_non_material VARCHAR) | SELECT opponents FROM table_name_92 WHERE positional_or_automatic = "positional" AND material_or_non_material = "no" AND suits = "3" |
what city is the toamasina airport in? | CREATE TABLE table_name_42 (city VARCHAR, airport VARCHAR) | SELECT city FROM table_name_42 WHERE airport = "toamasina airport" |
What is the sum of bronze medals when the rank is greater than 2, and less than 2 total medals with silver medals being more than 0? | CREATE TABLE table_name_2 (bronze VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR) | SELECT COUNT(bronze) FROM table_name_2 WHERE rank > 2 AND total < 2 AND silver > 0 |
Where was the September 22 game played? | CREATE TABLE table_name_23 (location VARCHAR, date VARCHAR) | SELECT location FROM table_name_23 WHERE date = "september 22" |
Tell me the pole position for graham hill the fastest lap and winning driver of him on 30 may | CREATE TABLE table_name_43 (pole_position VARCHAR, date VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR) | SELECT pole_position FROM table_name_43 WHERE fastest_lap = "graham hill" AND winning_driver = "graham hill" AND date = "30 may" |
How many different scientists are assigned to any project? | CREATE TABLE assignedto (scientist VARCHAR) | SELECT COUNT(DISTINCT scientist) FROM assignedto |
What package/option has documentaries as the content, yes as the HDTV, and a television service of history hd? | CREATE TABLE table_name_56 (package_option VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR) | SELECT package_option FROM table_name_56 WHERE content = "documentaries" AND hdtv = "yes" AND television_service = "history hd" |
In what division will you find the team nicknamed the Silver Eagles | CREATE TABLE table_15475116_1 (division VARCHAR, nickname VARCHAR) | SELECT division FROM table_15475116_1 WHERE nickname = "Silver Eagles" |
What was Mark Brooks total score when he finished more than 2 above par? | CREATE TABLE table_name_88 (total INTEGER, to_par VARCHAR, player VARCHAR) | SELECT AVG(total) FROM table_name_88 WHERE to_par > 2 AND player = "mark brooks" |
When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )? | CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR) | SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = "6.0" |
What was the average pick of northwestern state college under round 3? | CREATE TABLE table_name_81 (pick INTEGER, round VARCHAR, college VARCHAR) | SELECT AVG(pick) FROM table_name_81 WHERE round < 3 AND college = "northwestern state" |
what is the most draw when the competition is soviet league and dynamo is more than 34? | CREATE TABLE table_name_19 (draw INTEGER, competition VARCHAR, dynamo VARCHAR) | SELECT MAX(draw) FROM table_name_19 WHERE competition = "soviet league" AND dynamo > 34 |
Who were the comedians on episode 1x03? | CREATE TABLE table_23122988_1 (comedians VARCHAR, episode VARCHAR) | SELECT comedians FROM table_23122988_1 WHERE episode = "1x03" |
What is the earliest game with a score of 99-89? | CREATE TABLE table_name_81 (game INTEGER, score VARCHAR) | SELECT MIN(game) FROM table_name_81 WHERE score = "99-89" |
What's the least losses for Horsham Saints with more than 13 wins and less than 1211 against? | CREATE TABLE table_name_24 (losses INTEGER, wins VARCHAR, against VARCHAR, wimmera_fl VARCHAR) | SELECT MIN(losses) FROM table_name_24 WHERE against < 1211 AND wimmera_fl = "horsham saints" AND wins > 13 |
How many proteins are associated with an institution founded after 1880 or an institution with type "Private"? | CREATE TABLE institution (institution_id VARCHAR, founded VARCHAR, type VARCHAR); CREATE TABLE protein (institution_id VARCHAR) | SELECT COUNT(*) FROM institution AS T1 JOIN protein AS T2 ON T1.institution_id = T2.institution_id WHERE T1.founded > 1880 OR T1.type = 'Private' |
Which Tie is from birmingham city? | CREATE TABLE table_name_97 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_97 WHERE home_team = "birmingham city" |
Find the first name and major of the students who are not allegry to soy. | CREATE TABLE Has_allergy (fname VARCHAR, major VARCHAR, StuID VARCHAR, Allergy VARCHAR); CREATE TABLE Student (fname VARCHAR, major VARCHAR, StuID VARCHAR, Allergy VARCHAR) | SELECT fname, major FROM Student WHERE NOT StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Soy") |
What place was the golfer with a score of 67-67-66-68=268 ranked in? | CREATE TABLE table_name_62 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_62 WHERE score = 67 - 67 - 66 - 68 = 268 |
How many medicines have the FDA approval status 'No' ? | CREATE TABLE medicine (FDA_approved VARCHAR) | SELECT COUNT(*) FROM medicine WHERE FDA_approved = 'No' |
When 45 is the goals for and 10 is the drawn what is the lost? | CREATE TABLE table_17718005_2 (lost VARCHAR, drawn VARCHAR, goals_for VARCHAR) | SELECT lost FROM table_17718005_2 WHERE drawn = 10 AND goals_for = 45 |
What is the 2011 value that has ATP Masters Series in 2007? | CREATE TABLE table_name_34 (Id VARCHAR) | SELECT 2011 FROM table_name_34 WHERE 2007 = "atp masters series" |
How many staying councillors were there when the election result was larger than 0, the new council less than 27 and the party conservatives? | CREATE TABLE table_name_42 (staying_councillors INTEGER, new_council VARCHAR, election_result VARCHAR, party VARCHAR) | SELECT AVG(staying_councillors) FROM table_name_42 WHERE election_result > 0 AND party = "conservatives" AND new_council < 27 |
How many points were there when there were less than 16 rebounds and 5 assists? | CREATE TABLE table_name_83 (points VARCHAR, assists VARCHAR, rebounds VARCHAR) | SELECT COUNT(points) FROM table_name_83 WHERE assists = 5 AND rebounds < 16 |
Which format has january 21, 2002 as the date? | CREATE TABLE table_name_11 (format VARCHAR, date VARCHAR) | SELECT format FROM table_name_11 WHERE date = "january 21, 2002" |
What was the tie resulting from Sheffield Wednesday's game? | CREATE TABLE table_name_56 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_56 WHERE home_team = "sheffield wednesday" |
What are the dates of squadron 33? | CREATE TABLE table_name_6 (dates VARCHAR, squadron VARCHAR) | SELECT dates FROM table_name_6 WHERE squadron = "squadron 33" |
What is the lowest crowd when North Melbourne played at home? | CREATE TABLE table_name_92 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_92 WHERE home_team = "north melbourne" |
What record has a score of 111-96? | CREATE TABLE table_name_56 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_56 WHERE score = "111-96" |
Which Zone is the lowest when Managed By Southern and has Platforms under 2? | CREATE TABLE table_name_88 (zone INTEGER, managed_by VARCHAR, platforms VARCHAR) | SELECT MIN(zone) FROM table_name_88 WHERE managed_by = "southern" AND platforms < 2 |
what is the highest week when the date is october 6, 1975 and attendance is higher than 79,384? | CREATE TABLE table_name_80 (week INTEGER, date VARCHAR, attendance VARCHAR) | SELECT MAX(week) FROM table_name_80 WHERE date = "october 6, 1975" AND attendance > 79 OFFSET 384 |
Name the member countries for finnish swedish | CREATE TABLE table_26519486_1 (member_countries VARCHAR, languages VARCHAR) | SELECT member_countries FROM table_26519486_1 WHERE languages = "Finnish Swedish" |
What player has a score of 67-70-77=214? | CREATE TABLE table_name_30 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_30 WHERE score = 67 - 70 - 77 = 214 |
What company has an unknown date and is an energy business? | CREATE TABLE table_name_20 (company VARCHAR, business VARCHAR, date VARCHAR) | SELECT company FROM table_name_20 WHERE business = "energy" AND date = "unknown" |
What was the transfer fee for the player who had an App(L/C/E) of 0 (0/0/0) and notes of to anagennisi karditsa? | CREATE TABLE table_name_61 (transfer_fee VARCHAR, app_l_c_e_ VARCHAR, notes VARCHAR) | SELECT transfer_fee FROM table_name_61 WHERE app_l_c_e_ = "0 (0/0/0)" AND notes = "to anagennisi karditsa" |
What are the notes of the United States? | CREATE TABLE table_name_31 (notes VARCHAR, country VARCHAR) | SELECT notes FROM table_name_31 WHERE country = "united states" |
Scunthorpe United as the home team has what tie number? | CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR) | SELECT tie_no FROM table_name_52 WHERE home_team = "scunthorpe united" |
How many different numbers of cantons does the province with the Armenian name ΥΎΥ‘Υ½ΥΊΥΈΦΦΥ‘Υ―Υ‘ΥΆ have? | CREATE TABLE table_23887174_1 (number_of_cantons__gavars_ VARCHAR, armenian_name VARCHAR) | SELECT COUNT(number_of_cantons__gavars_) FROM table_23887174_1 WHERE armenian_name = "ΥΥ‘Υ½ΥΊΥΈΦΦΥ‘Υ―Υ‘ΥΆ" |
Who was the girl on week 1 that preceded week 2's Kamila Sulewska? | CREATE TABLE table_name_12 (week_1 VARCHAR, week_2 VARCHAR) | SELECT week_1 FROM table_name_12 WHERE week_2 = "kamila sulewska" |
What is the capital of the district who's simplified name is δΏ‘ε·εΊ? | CREATE TABLE table_1300525_1 (pinyin VARCHAR, simplified VARCHAR) | SELECT COUNT(pinyin) FROM table_1300525_1 WHERE simplified = "δΏ‘ε·εΊ" |
Which year's crew is varsity 8+ when the record is 7-3? | CREATE TABLE table_name_63 (year VARCHAR, crew VARCHAR, record VARCHAR) | SELECT year FROM table_name_63 WHERE crew = "varsity 8+" AND record = "7-3" |
What are the characters of actors in descending order of age? | CREATE TABLE actor (Character VARCHAR, age VARCHAR) | SELECT Character FROM actor ORDER BY age DESC |
What type of award is the theatre world award? | CREATE TABLE table_name_34 (award VARCHAR, category VARCHAR) | SELECT award FROM table_name_34 WHERE category = "theatre world award" |
What number in the series was episode 2 in the season? | CREATE TABLE table_2468961_3 (no_in_series INTEGER, no_in_season VARCHAR) | SELECT MAX(no_in_series) FROM table_2468961_3 WHERE no_in_season = 2 |
Which Week has a Result of w 23β22? | CREATE TABLE table_name_77 (week VARCHAR, result VARCHAR) | SELECT week FROM table_name_77 WHERE result = "w 23β22" |
What is the away team at victoria park? | CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_69 WHERE venue = "victoria park" |
What is Driver, when Race 2 is 14? | CREATE TABLE table_name_48 (driver VARCHAR, race_2 VARCHAR) | SELECT driver FROM table_name_48 WHERE race_2 = "14" |
What's the Proto Germanic when then German is /s/ or /ts/? | CREATE TABLE table_name_41 (proto_germanic VARCHAR, german VARCHAR) | SELECT proto_germanic FROM table_name_41 WHERE german = "/s/ or /ts/" |
How many titles are listed with 8.44 million viewers? | CREATE TABLE table_24910733_1 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(title) FROM table_24910733_1 WHERE us_viewers__millions_ = "8.44" |
How many championships were there where the score was 4β6, 7β6 (7β5) , [5β10]? | CREATE TABLE table_29163303_4 (championship VARCHAR, score VARCHAR) | SELECT COUNT(championship) FROM table_29163303_4 WHERE score = "4β6, 7β6 (7β5) , [5β10]" |
Which Qual with laps less than 200 and an 11 start? | CREATE TABLE table_name_4 (qual VARCHAR, laps VARCHAR, start VARCHAR) | SELECT qual FROM table_name_4 WHERE laps < 200 AND start = "11" |
What's the lowest bits precision when the total bits are less than 16? | CREATE TABLE table_name_32 (bits_precision INTEGER, total_bits INTEGER) | SELECT MIN(bits_precision) FROM table_name_32 WHERE total_bits < 16 |
What is Points Difference, when Points Against is 451? | CREATE TABLE table_name_96 (points_difference VARCHAR, points_against VARCHAR) | SELECT points_difference FROM table_name_96 WHERE points_against = "451" |
Which Place has a To par smaller than 15, and a Score of 74-74-74-75=297? | CREATE TABLE table_name_26 (place VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT place FROM table_name_26 WHERE to_par < 15 AND score = 74 - 74 - 74 - 75 = 297 |
Where was the decision draw before round 5? | CREATE TABLE table_name_13 (location VARCHAR, method VARCHAR, round VARCHAR) | SELECT location FROM table_name_13 WHERE method = "decision draw" AND round < 5 |
Which Name has an Average of 48.83? | CREATE TABLE table_name_47 (name VARCHAR, average VARCHAR) | SELECT name FROM table_name_47 WHERE average = 48.83 |
Which team was the away team when home team was essendon? | CREATE TABLE table_29090919_1 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_29090919_1 WHERE home_team = "Essendon" |
What's the winner of the Painewebber Invitational tournament? | CREATE TABLE table_11622562_1 (winner VARCHAR, tournament VARCHAR) | SELECT winner FROM table_11622562_1 WHERE tournament = "PaineWebber Invitational" |
What series finale has the translation αα° αα‘ αͺα αααααα / ααα ααααα£α α α‘αααα£ααα? | CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR) | SELECT series_finale FROM table_name_56 WHERE translation = "αα° αα‘ αͺα αααααα / ααα ααααα£α α α‘αααα£ααα" |
When Platense was the away team on 16 August 2008 how many people attended the game? | CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR, away VARCHAR) | SELECT attendance FROM table_name_29 WHERE date = "16 august 2008" AND away = "platense" |
Before 1956, what Chassis has Gordini Straight-4 engine with 3 points? | CREATE TABLE table_name_83 (chassis VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR) | SELECT chassis FROM table_name_83 WHERE year < 1956 AND engine = "gordini straight-4" AND points = 3 |
What area has a % Other of β, and a % Muslim of 95%? | CREATE TABLE table_name_83 (area VARCHAR, _percentage_other VARCHAR, _percentage_muslim VARCHAR) | SELECT area FROM table_name_83 WHERE _percentage_other = "β" AND _percentage_muslim = "95%" |
Who was the Worship Leader for the song that was 7:05 long? | CREATE TABLE table_name_17 (worship_leader VARCHAR, time VARCHAR) | SELECT worship_leader FROM table_name_17 WHERE time = "7:05" |
In what year of school is the forward Iman McFarland? | CREATE TABLE table_name_90 (year VARCHAR, position VARCHAR, name VARCHAR) | SELECT year FROM table_name_90 WHERE position = "forward" AND name = "iman mcfarland" |
List the vehicle flight number, date and pilot of all the flights, ordered by altitude. | CREATE TABLE flight (vehicle_flight_number VARCHAR, date VARCHAR, pilot VARCHAR, altitude VARCHAR) | SELECT vehicle_flight_number, date, pilot FROM flight ORDER BY altitude |
What is the percentage for Brown when the lead margin is 26? | CREATE TABLE table_name_35 (republican VARCHAR, lead_margin VARCHAR) | SELECT republican AS :_roy_brown FROM table_name_35 WHERE lead_margin = 26 |
What is the protein identity with a length of 5304bp/377aa? | CREATE TABLE table_16849531_2 (protein_identity VARCHAR, length__bp_aa_ VARCHAR) | SELECT protein_identity FROM table_16849531_2 WHERE length__bp_aa_ = "5304bp/377aa" |
What are the investors of entrepreneurs and the corresponding number of entrepreneurs invested by each investor? | CREATE TABLE entrepreneur (Investor VARCHAR) | SELECT Investor, COUNT(*) FROM entrepreneur GROUP BY Investor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.