question
stringlengths 14
216
| context
stringlengths 45
458
| answer
stringlengths 18
463
|
---|---|---|
What team does the player who went to Nebraska play for? | create table table_21321804_3 (cfl_team varchar, college varchar, PRIMARY KEY (cfl_team)) | select cfl_team from table_21321804_3 where college = "nebraska" |
Name the incumbent for candidates Joseph Hiester (dr) 83.2% Roswell Wells (f) 16.8%. | create table table_2668401_12 (incumbent varchar, candidates varchar, PRIMARY KEY (incumbent)) | select incumbent from table_2668401_12 where candidates = "joseph hiester (dr) 83.2% roswell wells (f) 16.8%" |
how many high assists with record being 15-11 | create table table_13762472_4 (high_assists varchar, record varchar, PRIMARY KEY (high_assists)) | select count(high_assists) from table_13762472_4 where record = "15-11" |
Who had the play-by-play on espn with sideline reporter monica gonzalez? | create table table_17516922_1 (play_by_play varchar, network varchar, sideline_reporters varchar, PRIMARY KEY (play_by_play)) | select play_by_play from table_17516922_1 where network = "espn" and sideline_reporters = "monica gonzalez" |
What is the tournament location when Vicky Hurst in the champion? | create table table_12243817_1 (tournament_location varchar, champion varchar, PRIMARY KEY (tournament_location)) | select tournament_location from table_12243817_1 where champion = "vicky hurst" |
What is the abbreviation of Airline "JetBlue Airways"? | create table airlines (abbreviation varchar, airline varchar, PRIMARY KEY (abbreviation)) | select abbreviation from airlines where airline = "jetblue airways" |
Name the total number of material collected for justice league of america by george pérez, vol. 2 | create table table_19534677_1 (material_collected varchar, volume_title varchar, PRIMARY KEY (material_collected)) | select count(material_collected) from table_19534677_1 where volume_title = "justice league of america by george pérez, vol. 2" |
Show the ids and names of festivals that have at least two nominations for artworks. | create table nomination (festival_id varchar, artwork_id varchar, PRIMARY KEY (festival_id)); create table festival_detail (festival_name varchar, festival_id varchar, PRIMARY KEY (festival_name)); create table artwork (artwork_id varchar, PRIMARY KEY (artwork_id)) | select t1.festival_id, t3.festival_name from nomination as t1 join artwork as t2 on t1.artwork_id = t2.artwork_id join festival_detail as t3 on t1.festival_id = t3.festival_id group by t1.festival_id having count(*) >= 2 |
How many fault status codes are recorded in the fault log parts table? | create table fault_log_parts (fault_status varchar, PRIMARY KEY (fault_status)) | select distinct fault_status from fault_log_parts |
Name the profits for market value of 11.8 | create table table_19112_3 (profits__billion_$_ varchar, market_value__billion_$_ varchar, PRIMARY KEY (profits__billion_$_)) | select profits__billion_$_ from table_19112_3 where market_value__billion_$_ = "11.8" |
Find the first names of students studying in room 108. | create table list (firstname varchar, classroom varchar, PRIMARY KEY (firstname)) | select firstname from list where classroom = 108 |
What year was Ontario's first LLCR? | create table table_28457809_3 (first_llcr varchar, province varchar, PRIMARY KEY (first_llcr)) | select first_llcr from table_28457809_3 where province = "ontario" |
What is the title for episode number 30? | create table table_26952212_1 (title varchar, no_in_total varchar, PRIMARY KEY (title)) | select title from table_26952212_1 where no_in_total = "30" |
what are all the gtc winners for pole position no. 21 team modena | create table table_13079788_3 (gtc_winner varchar, pole_position varchar, PRIMARY KEY (gtc_winner)) | select gtc_winner from table_13079788_3 where pole_position = "no. 21 team modena" |
Who was the writer for the episode with 2.15 million u.s.viewers? | create table table_22380270_1 (written_by varchar, us_viewers__millions_ varchar, PRIMARY KEY (written_by)) | select written_by from table_22380270_1 where us_viewers__millions_ = "2.15" |
which institutes gave the democratic renewal 18.0% – 22.0% on a poll from October 6, 1985? | create table table_1919538_1 (institute varchar, democratic_renewal varchar, PRIMARY KEY (institute)) | select institute from table_1919538_1 where democratic_renewal = "18.0% – 22.0%" |
What spacecraft was launched from the LC34 launch complex? | create table table_179174_2 (spacecraft varchar, launch_complex varchar, PRIMARY KEY (spacecraft)) | select spacecraft from table_179174_2 where launch_complex = "lc34" |
When was the original air date written by michael s. chernuchin & joe morgenstern? | create table table_2618072_1 (original_air_date varchar, written_by varchar, PRIMARY KEY (original_air_date)) | select original_air_date from table_2618072_1 where written_by = "michael s. chernuchin & joe morgenstern" |
Who directed the episode that was watched by 2.97 million U.S. viewers? | create table table_29920800_1 (directed_by varchar, us_viewers__million_ varchar, PRIMARY KEY (directed_by)) | select directed_by from table_29920800_1 where us_viewers__million_ = "2.97" |
Who was the turbine manufacturer of the wind farm that started service on 2005? | create table table_24837750_1 (turbine_manufacturer varchar, date_in_service varchar, PRIMARY KEY (turbine_manufacturer)) | select turbine_manufacturer from table_24837750_1 where date_in_service = "2005" |
Which archive has a run time of 23:48? | create table table_2114238_1 (archive varchar, run_time varchar, PRIMARY KEY (archive)) | select archive from table_2114238_1 where run_time = "23:48" |
What is the name and description for document type code RV? | create table ref_document_types (document_type_name varchar, document_type_description varchar, document_type_code varchar, PRIMARY KEY (document_type_name)) | select document_type_name, document_type_description from ref_document_types where document_type_code = "rv" |
What is the first and last name of the student participating in the most activities? | create table student (fname varchar, lname varchar, stuid varchar, PRIMARY KEY (fname)); create table participates_in (stuid varchar, PRIMARY KEY (stuid)) | select t1.fname, t1.lname from student as t1 join participates_in as t2 on t1.stuid = t2.stuid group by t1.stuid order by count(*) desc limit 1 |
What is the flange thickness when the weight is 19.9? | create table table_2071644_2 (flange_thickness__mm_ varchar, weight__kg_m_ varchar, PRIMARY KEY (flange_thickness__mm_)) | select flange_thickness__mm_ from table_2071644_2 where weight__kg_m_ = "19.9" |
Name the yarn type for standard yarn weight system for 3 or light | create table table_20297668_1 (yarn_type__us_ varchar, standard_yarn_weight_system varchar, PRIMARY KEY (yarn_type__us_)) | select yarn_type__us_ from table_20297668_1 where standard_yarn_weight_system = "3 or light" |
Show different carriers of phones together with the number of phones with each carrier. | create table phone (carrier varchar, PRIMARY KEY (carrier)) | select carrier, count(*) from phone group by carrier |
Find the organisation type description of the organisation detailed as 'quo'. | create table organisations (organisation_type varchar, organisation_details varchar, PRIMARY KEY (organisation_type)); create table organisation_types (organisation_type_description varchar, organisation_type varchar, PRIMARY KEY (organisation_type_description)) | select t1.organisation_type_description from organisation_types as t1 join organisations as t2 on t1.organisation_type = t2.organisation_type where t2.organisation_details = 'quo' |
What party is incumbent virgil chapman from? | create table table_1342233_17 (party varchar, incumbent varchar, PRIMARY KEY (party)) | select party from table_1342233_17 where incumbent = "virgil chapman" |
Name the name for san beda | create table table_15463188_7 (name varchar, school_club_team varchar, PRIMARY KEY (name)) | select name from table_15463188_7 where school_club_team = "san beda" |
What is the sigma (with 1.5σ shift) when there are 69% defective? | create table table_222448_1 (sigma__with_15σ_shift_ varchar, percent_defective varchar, PRIMARY KEY (sigma__with_15σ_shift_)) | select sigma__with_15σ_shift_ from table_222448_1 where percent_defective = "69%" |
Who had the pole position when matt davies had the fastest lap? | create table table_29162856_1 (pole_position varchar, fastest_lap varchar, PRIMARY KEY (pole_position)) | select pole_position from table_29162856_1 where fastest_lap = "matt davies" |
What is the stadium for alloa athletic? | create table table_11206787_5 (stadium varchar, team varchar, PRIMARY KEY (stadium)) | select stadium from table_11206787_5 where team = "alloa athletic" |
How many themes are there where the order # is 9? | create table table_26250253_1 (theme varchar, order__number varchar, PRIMARY KEY (theme)) | select count(theme) from table_26250253_1 where order__number = "9" |
When the winner was Alessandro Ballan, how many total team classifications were there? | create table table_15294880_2 (team_classification varchar, winner varchar, PRIMARY KEY (team_classification)) | select count(team_classification) from table_15294880_2 where winner = "alessandro ballan" |
timothy truman worked on what dates | create table table_1420954_1 (publication_dates varchar, artist_s_ varchar, PRIMARY KEY (publication_dates)) | select publication_dates from table_1420954_1 where artist_s_ = "timothy truman" |
Show the name of colleges that have at least two players. | create table match_season (college varchar, PRIMARY KEY (college)) | select college from match_season group by college having count(*) >= 2 |
What is the U.S. air date when the U.S. viewers are 7.5 million? | create table table_2866503_1 (us_air_date varchar, us_viewers__million_ varchar, PRIMARY KEY (us_air_date)) | select us_air_date from table_2866503_1 where us_viewers__million_ = "7.5" |
Who did the fastest lap in the race won by Paul Tracy, with Emerson Fittipaldi at the pole position? | create table table_19908651_3 (fastest_lap varchar, pole_position varchar, winning_driver varchar, PRIMARY KEY (fastest_lap)) | select fastest_lap from table_19908651_3 where pole_position = "emerson fittipaldi" and winning_driver = "paul tracy" |
What is the first appearance of the character played by Obdul Reid? | create table table_26240046_1 (first_appearance varchar, played_by varchar, PRIMARY KEY (first_appearance)) | select first_appearance from table_26240046_1 where played_by = "obdul reid" |
Which winning team beat the New York Yankees? | create table table_10548224_1 (winning_team varchar, losing_team varchar, PRIMARY KEY (winning_team)) | select winning_team from table_10548224_1 where losing_team = "new york yankees" |
Show the names of members and names of colleges they go to. | create table member (name varchar, college_id varchar, PRIMARY KEY (name)); create table college (name varchar, college_id varchar, PRIMARY KEY (name)) | select t2.name, t1.name from college as t1 join member as t2 on t1.college_id = t2.college_id |
What is the barony for the Ballintaggart townland? | create table table_30120619_1 (barony varchar, townland varchar, PRIMARY KEY (barony)) | select barony from table_30120619_1 where townland = "ballintaggart" |
Who won the Mens Singles when the Mixed doubles went to Stellan Mohlin Kerstin Ståhl , Aik? | create table table_12266757_1 (mens_singles varchar, mixed_doubles varchar, PRIMARY KEY (mens_singles)) | select mens_singles from table_12266757_1 where mixed_doubles = "stellan mohlin kerstin ståhl , aik" |
Who is the incoming manager when the date of vacancy was 21 march 2011? | create table table_26914854_3 (incoming_manager varchar, date_of_vacancy varchar, PRIMARY KEY (incoming_manager)) | select incoming_manager from table_26914854_3 where date_of_vacancy = "21 march 2011" |
How many distinct artists do the volumes associate to? | create table volume (artist_id varchar, PRIMARY KEY (artist_id)) | select count(distinct artist_id) from volume |
What is the phone number and postal code of the address 1031 Daugavpils Parkway? | create table address (phone varchar, postal_code varchar, address varchar, PRIMARY KEY (phone)) | select phone, postal_code from address where address = '1031 daugavpils parkway' |
What are the id and address of the shops which have a happy hour in May? | create table shop (address varchar, shop_id varchar, PRIMARY KEY (address)); create table happy_hour (shop_id varchar, PRIMARY KEY (shop_id)) | select t1.address, t1.shop_id from shop as t1 join happy_hour as t2 on t1.shop_id = t2.shop_id where month = 'may' |
What is the total number of goals on the debut date of 14-04-1907? | create table table_11585313_1 (number_of_goals varchar, date_of_debut varchar, PRIMARY KEY (number_of_goals)) | select count(number_of_goals) from table_11585313_1 where date_of_debut = "14-04-1907" |
What are the attributes when the type is "DOMNodeRemoved"? | create table table_1507852_1 (attribute varchar, type varchar, PRIMARY KEY (attribute)) | select attribute from table_1507852_1 where type = "domnoderemoved" |
What is the English word for the French word cheval? | create table table_15040_8 (english varchar, french varchar, PRIMARY KEY (english)) | select english from table_15040_8 where french = "cheval" |
What is the number of nicknames for the meaning of god knows my journey. | create table table_11908801_1 (nickname varchar, meaning varchar, PRIMARY KEY (nickname)) | select count(nickname) from table_11908801_1 where meaning = "god knows my journey" |
Name the james e. holmes for duane hensley | create table table_25330991_3 (james_e_holmes varchar, western_rockingham_middle_school varchar, PRIMARY KEY (james_e_holmes)) | select james_e_holmes from table_25330991_3 where western_rockingham_middle_school = "duane hensley" |
What was the country in which the agricultural use (m 3 /p/yr)(in %) was 794(86%)? | create table table_15909409_2 (country varchar, agricultural_use__m_3__p_yr__in__percentage_ varchar, PRIMARY KEY (country)) | select country from table_15909409_2 where agricultural_use__m_3__p_yr__in__percentage_ = "794(86%)" |
Name the total number of golden tickets being rosen shingle creek resort | create table table_22897967_1 (golden_tickets varchar, callback_venue varchar, PRIMARY KEY (golden_tickets)) | select count(golden_tickets) from table_22897967_1 where callback_venue = "rosen shingle creek resort" |
How many parks is Zippin Pippin located in | create table table_2665085_1 (park varchar, name varchar, PRIMARY KEY (park)) | select count(park) from table_2665085_1 where name = "zippin pippin" |
What is the others# when bush% is 57.0%? | create table table_1302886_1 (others_number integer, bush_percentage varchar, PRIMARY KEY (others_number)) | select max(others_number) from table_1302886_1 where bush_percentage = "57.0%" |
What episode titles have 17.93 million U.S. viewers? | create table table_16617025_1 (title varchar, us_viewers__millions_ varchar, PRIMARY KEY (title)) | select title from table_16617025_1 where us_viewers__millions_ = "17.93" |
In which location is aci vallelunga circuit? | create table table_23315271_2 (location varchar, circuit varchar, PRIMARY KEY (location)) | select location from table_23315271_2 where circuit = "aci vallelunga circuit" |
How many of 3:26.00 when hicham el guerrouj ( mar ) is hudson de souza ( bra )? | create table table_23987362_2 (hicham_el_guerrouj___mar__ varchar, PRIMARY KEY (hicham_el_guerrouj___mar__)) | select count(3) as :2600 from table_23987362_2 where hicham_el_guerrouj___mar__ = "hudson de souza ( bra )" |
what's the monday time with tuesday being 9:00-6:00 | create table table_11019212_1 (monday varchar, tuesday varchar, PRIMARY KEY (monday)) | select monday from table_11019212_1 where tuesday = "9:00-6:00" |
What is the highest number of episodes? | create table table_1467951_4 (ep_no integer, PRIMARY KEY (ep_no)) | select max(ep_no) from table_1467951_4 |
What are the task details, task id and project id for the projects which are detailed as 'omnis' or have more than 2 outcomes? | create table projects (project_id varchar, project_details varchar, PRIMARY KEY (project_id)); create table project_outcomes (project_id varchar, PRIMARY KEY (project_id)); create table tasks (task_details varchar, task_id varchar, project_id varchar, PRIMARY KEY (task_details)) | select t1.task_details, t1.task_id, t2.project_id from tasks as t1 join projects as t2 on t1.project_id = t2.project_id where t2.project_details = 'omnis' union select t1.task_details, t1.task_id, t2.project_id from tasks as t1 join projects as t2 on t1.project_id = t2.project_id join project_outcomes as t3 on t2.project_id = t3.project_id group by t2.project_id having count(*) > 2 |
Show the most common nationality of pilots. | create table pilot (nationality varchar, PRIMARY KEY (nationality)) | select nationality from pilot group by nationality order by count(*) desc limit 1 |
Who had the high point total when the team was 24-17? | create table table_13762472_5 (high_points varchar, record varchar, PRIMARY KEY (high_points)) | select high_points from table_13762472_5 where record = "24-17" |
Who had the high points while Dirk Nowitzki (13) had the high rebounds? | create table table_17288869_7 (high_points varchar, high_rebounds varchar, PRIMARY KEY (high_points)) | select high_points from table_17288869_7 where high_rebounds = "dirk nowitzki (13)" |
how many ↓ function / genus → with escherichia being espd | create table table_10321124_1 (count varchar, escherichia varchar, PRIMARY KEY (count)) | select count as ↓_function___genus_→ from table_10321124_1 where escherichia = "espd" |
What party does incumbent edwin reinecke represent? | create table table_1341738_6 (party varchar, incumbent varchar, PRIMARY KEY (party)) | select party from table_1341738_6 where incumbent = "edwin reinecke" |
What alumni were in rw: cancun as their original season? | create table table_26419467_1 (alumni varchar, original_season varchar, PRIMARY KEY (alumni)) | select alumni from table_26419467_1 where original_season = "rw: cancun" |
What was the dominant religion in 2002 of the settlement with the cyrillic and other name of војводинци (romanian: voivodinţ)? | create table table_2562572_46 (dominant_religion__2002_ varchar, cyrillic_name_other_names varchar, PRIMARY KEY (dominant_religion__2002_)) | select dominant_religion__2002_ from table_2562572_46 where cyrillic_name_other_names = "војводинци (romanian: voivodinţ)" |
which countries have more than 2 airports? | create table airport (country varchar, PRIMARY KEY (country)) | select country from airport group by country having count(*) > 2 |
Name who wrote the episode that aired april 9, 1989 | create table table_2226817_4 (written_by varchar, original_air_date varchar, PRIMARY KEY (written_by)) | select written_by from table_2226817_4 where original_air_date = "april 9, 1989" |
In womens doubles and mens singles, what years did Arvind Bhat or Valiyaveetil Diju Jwala Gutta win? | create table table_12194021_1 (womens_doubles varchar, mens_singles varchar, mixed_doubles varchar, PRIMARY KEY (womens_doubles)) | select womens_doubles from table_12194021_1 where mens_singles = "arvind bhat" and mixed_doubles = "valiyaveetil diju jwala gutta" |
what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100? | create table table_13114949_3 (qualifying_rank integer, qualifying_score varchar, competition varchar, final_rank varchar, PRIMARY KEY (qualifying_rank)) | select max(qualifying_rank) from table_13114949_3 where competition = "olympic trials" and final_rank = "4" and qualifying_score = "15.100" |
How many entries are listed under "current status" for the WJW-TV ++ Station? | create table table_1353096_2 (current_status varchar, station varchar, PRIMARY KEY (current_status)) | select count(current_status) from table_1353096_2 where station = "wjw-tv ++" |
What is every value for points per game if passing yards per game is 179.6? | create table table_27487336_1 (points_per_game varchar, passing_yards_per_game varchar, PRIMARY KEY (points_per_game)) | select points_per_game from table_27487336_1 where passing_yards_per_game = "179.6" |
What is the sub-parish for the church names Høyanger Kyrkje? | create table table_178389_1 (sub_parish__sogn_ varchar, church_name varchar, PRIMARY KEY (sub_parish__sogn_)) | select sub_parish__sogn_ from table_178389_1 where church_name = "høyanger kyrkje" |
Who is every main presenter for the Estonia region/country? | create table table_24224647_2 (main_presenter varchar, region_country varchar, PRIMARY KEY (main_presenter)) | select main_presenter from table_24224647_2 where region_country = "estonia" |
what are the u.s. air dates with a Canadian air date of may 4, 2009 | create table table_12294557_3 (us_airdate varchar, canadian_airdate varchar, PRIMARY KEY (us_airdate)) | select us_airdate from table_12294557_3 where canadian_airdate = "may 4, 2009" |
Show all cities along with the number of drama workshop groups in each city. | create table addresses (city_town varchar, address_id varchar, PRIMARY KEY (city_town)); create table drama_workshop_groups (address_id varchar, PRIMARY KEY (address_id)) | select t1.city_town, count(*) from addresses as t1 join drama_workshop_groups as t2 on t1.address_id = t2.address_id group by t1.city_town |
What state/country was the yacht from that had 15.79 LOA (metres)? | create table table_25595107_1 (state_country varchar, loa__metres_ varchar, PRIMARY KEY (state_country)) | select state_country from table_25595107_1 where loa__metres_ = "15.79" |
How many weights are there when the flange with is 304? | create table table_2071644_2 (weight__kg_m_ varchar, flange_width__mm_ varchar, PRIMARY KEY (weight__kg_m_)) | select count(weight__kg_m_) from table_2071644_2 where flange_width__mm_ = 304 |
What is the hometown of Plutonic? | create table table_27529608_21 (hometown varchar, name_name_of_act varchar, PRIMARY KEY (hometown)) | select hometown from table_27529608_21 where name_name_of_act = "plutonic" |
How many journalists are there? | create table journalist (id varchar, PRIMARY KEY (id)) | select count(*) from journalist |
What was the 2002 dominant religion when the largest ethnic group (2002) was slovaks and type is village? | create table table_2562572_43 (dominant_religion__2002_ varchar, largest_ethnic_group__2002_ varchar, type varchar, PRIMARY KEY (dominant_religion__2002_)) | select dominant_religion__2002_ from table_2562572_43 where largest_ethnic_group__2002_ = "slovaks" and type = "village" |
Name the total number of air dates for 05 cycle | create table table_16976547_2 (air_dates varchar, cycle_no varchar, PRIMARY KEY (air_dates)) | select count(air_dates) from table_16976547_2 where cycle_no = "05" |
What's the total power of the unit whose construction finished on 14.06.1963? | create table table_12983929_1 (total_power varchar, construction_finish varchar, PRIMARY KEY (total_power)) | select total_power from table_12983929_1 where construction_finish = "14.06.1963" |
Show different locations and the number of performances at each location. | create table performance (location varchar, PRIMARY KEY (location)) | select location, count(*) from performance group by location |
who directed the episode with the original air date of November 22, 1989? | create table table_18367694_2 (directed_by varchar, original_air_date varchar, PRIMARY KEY (directed_by)) | select directed_by from table_18367694_2 where original_air_date = "november 22, 1989" |
What was the max demand charge for the user with a tariff of 8.85? | create table table_25479607_3 (max_demand_charge___rs__kva_ varchar, tariff___rs__kwh_ varchar, PRIMARY KEY (max_demand_charge___rs__kva_)) | select max_demand_charge___rs__kva_ from table_25479607_3 where tariff___rs__kwh_ = "8.85" |
The hanja 朔州 is for what province? | create table table_160510_1 (province varchar, hanja varchar, PRIMARY KEY (province)) | select province from table_160510_1 where hanja = "朔州" |
whare are al of the launche dates where th carrier is orange and the up is 5.76 mbit/s | create table table_19246_2 (launch_date__ddmmyyyy_ varchar, _up_ varchar, carrier varchar, PRIMARY KEY (launch_date__ddmmyyyy_)) | select launch_date__ddmmyyyy_ from table_19246_2 where _up_ = "5.76 mbit/s" and carrier = "orange" |
Show the names of high schoolers who have likes, and numbers of likes for each. | create table likes (student_id varchar, PRIMARY KEY (student_id)); create table highschooler (name varchar, id varchar, PRIMARY KEY (name)) | select t2.name, count(*) from likes as t1 join highschooler as t2 on t1.student_id = t2.id group by t1.student_id |
Who had high points when high rebound is gray (8)? | create table table_11960610_10 (high_points varchar, high_rebounds varchar, PRIMARY KEY (high_points)) | select high_points from table_11960610_10 where high_rebounds = "gray (8)" |
What yacht type is involved where Bob Oatley is the skipper? | create table table_25594888_1 (yacht varchar, skipper varchar, PRIMARY KEY (yacht)) | select yacht as type from table_25594888_1 where skipper = "bob oatley" |
What is every value for cores if TDP is 17 W? | create table table_2467150_2 (cores varchar, tdp varchar, PRIMARY KEY (cores)) | select cores from table_2467150_2 where tdp = "17 w" |
Find the origins from which more than 1 train starts. | create table train (origin varchar, PRIMARY KEY (origin)) | select origin from train group by origin having count(*) > 1 |
Name the zodiac for കന്നി | create table table_20354_7 (zodiac_sign varchar, malayalam_name varchar, PRIMARY KEY (zodiac_sign)) | select zodiac_sign from table_20354_7 where malayalam_name = "കന്നി" |
Name the yankton yanktonai for wičháša | create table table_1499791_2 (yankton_yanktonai varchar, southern_lakota varchar, PRIMARY KEY (yankton_yanktonai)) | select yankton_yanktonai from table_1499791_2 where southern_lakota = "wičháša" |
What was the location for the team name of patriots? | create table table_24195232_1 (location varchar, team_name varchar, PRIMARY KEY (location)) | select location from table_24195232_1 where team_name = "patriots" |
How many final scores were there on the game at Amsterdam arena? | create table table_24786958_2 (final_score varchar, game_site varchar, PRIMARY KEY (final_score)) | select count(final_score) from table_24786958_2 where game_site = "amsterdam arena" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.