question
stringlengths 14
216
| context
stringlengths 45
458
| answer
stringlengths 18
463
|
---|---|---|
Name the language for el villar 1264 | create table table_2509350_3 (language varchar, el_villar_municipality varchar, PRIMARY KEY (language)) | select language from table_2509350_3 where el_villar_municipality = 1264 |
How many villages had 21.7% of slovenes in 1991? | create table table_10797463_1 (village__german_ varchar, percent_of_slovenes_1991 varchar, PRIMARY KEY (village__german_)) | select count(village__german_) from table_10797463_1 where percent_of_slovenes_1991 = "21.7%" |
Name the broadcast network for saitama prefecture | create table table_21076286_2 (broadcast_network varchar, broadcast_scope varchar, PRIMARY KEY (broadcast_network)) | select broadcast_network from table_21076286_2 where broadcast_scope = "saitama prefecture" |
What was the departure time of the train that arrived at 21.26? | create table table_18365784_3 (departure varchar, arrival varchar, PRIMARY KEY (departure)) | select departure from table_18365784_3 where arrival = "21.26" |
How many episodes had 9.90 million viewers? | create table table_12146637_1 (episode_title varchar, us_viewers__millions_ varchar, PRIMARY KEY (episode_title)) | select count(episode_title) from table_12146637_1 where us_viewers__millions_ = "9.90" |
What is the chinese name of the province whose capital is hangzhou? | create table table_254234_1 (chinese_name varchar, capital varchar, PRIMARY KEY (chinese_name)) | select chinese_name from table_254234_1 where capital = "hangzhou" |
What is the period total number if the name is Geraldão? | create table table_24565004_8 (period varchar, name varchar, PRIMARY KEY (period)) | select count(period) from table_24565004_8 where name = "geraldão" |
What is the GDP (nominal) for Uzbekistan? | create table table_11780179_1 (gdp__nominal_ varchar, country varchar, PRIMARY KEY (gdp__nominal_)) | select gdp__nominal_ from table_11780179_1 where country = "uzbekistan" |
What was the margin of victory when runner-up was K. J. Choi? | create table table_247955_2 (margin_of_victory varchar, runner_s__up varchar, PRIMARY KEY (margin_of_victory)) | select margin_of_victory from table_247955_2 where runner_s__up = "k. j. choi" |
how many different meanings does Wednesday have? | create table table_2624098_1 (english_day_name_meaning varchar, modern_english_day_name varchar, PRIMARY KEY (english_day_name_meaning)) | select count(english_day_name_meaning) from table_2624098_1 where modern_english_day_name = "wednesday" |
how many millions of North American people saw the episode whose director was Ed Sherin? | create table table_2791668_1 (us_viewers__millions_ varchar, directed_by varchar, PRIMARY KEY (us_viewers__millions_)) | select us_viewers__millions_ from table_2791668_1 where directed_by = "ed sherin" |
when notes are prima italica:raised for aborted caucasus war, when was that founded? | create table table_242785_1 (date_founded__founder varchar, notes varchar, PRIMARY KEY (date_founded__founder)) | select date_founded__founder from table_242785_1 where notes = "prima italica:raised for aborted caucasus war" |
How much does the champion get for stadthalle dinslaken, dinslaken? | create table table_18828487_1 (champion varchar, venue varchar, PRIMARY KEY (champion)) | select champion from table_18828487_1 where venue = "stadthalle dinslaken, dinslaken" |
what is the maximum number of pinorinol in wheat bran? | create table table_1831262_2 (pinoresinol integer, foodstuff varchar, PRIMARY KEY (pinoresinol)) | select max(pinoresinol) from table_1831262_2 where foodstuff = "wheat bran" |
What movie did Vijayalaxmi Co-star in and Shakeel Badayuni write the lyrics? | create table table_2528382_5 (movie_album varchar, co_stars varchar, lyricist varchar, PRIMARY KEY (movie_album)) | select movie_album from table_2528382_5 where co_stars = "vijayalaxmi" and lyricist = "shakeel badayuni" |
Who wrote the episode that had 12.15 million viewers? | create table table_24961421_1 (written_by varchar, us_viewers__millions_ varchar, PRIMARY KEY (written_by)) | select written_by from table_24961421_1 where us_viewers__millions_ = "12.15" |
What party did Frank J. Becker represent? | create table table_1342013_31 (party varchar, incumbent varchar, PRIMARY KEY (party)) | select party from table_1342013_31 where incumbent = "frank j. becker" |
What is every entry for Tuesday August 23 if the entry for Wednesday August 24 is 22' 23.29 101.116mph? | create table table_30058355_7 (tues_23_aug varchar, wed_24_aug varchar, PRIMARY KEY (tues_23_aug)) | select tues_23_aug from table_30058355_7 where wed_24_aug = "22' 23.29 101.116mph" |
Name the most numbers dam and gnis query link for borough or census area for fairbanks north star | create table table_18760137_2 (_number_s_dam_and_gnis_query_link integer, borough_or_census_area varchar, PRIMARY KEY (_number_s_dam_and_gnis_query_link)) | select max(_number_s_dam_and_gnis_query_link) from table_18760137_2 where borough_or_census_area = "fairbanks north star" |
What are all values for the male population in 2001 with a growth rate in 1991-01 of 36.16? | create table table_19589113_5 (male_population_2001 varchar, growth_rate_1991_01 varchar, PRIMARY KEY (male_population_2001)) | select male_population_2001 from table_19589113_5 where growth_rate_1991_01 = "36.16" |
Which vacancy happened on 4 November 2008? | create table table_18788823_5 (position_in_table varchar, date_of_vacancy varchar, PRIMARY KEY (position_in_table)) | select position_in_table from table_18788823_5 where date_of_vacancy = "4 november 2008" |
Find the names of all swimmers, sorted by their 100 meter scores in ascending order. | create table swimmer (name varchar, meter_100 varchar, PRIMARY KEY (name)) | select name from swimmer order by meter_100 |
How many teachers are there? | create table teacher (id varchar, PRIMARY KEY (id)) | select count(*) from teacher |
What was the record at the game where Deron Williams (6) did the high assists? | create table table_23286223_8 (record varchar, high_assists varchar, PRIMARY KEY (record)) | select record from table_23286223_8 where high_assists = "deron williams (6)" |
How many times was the date of vacancy 14 february 2011? | create table table_24231638_3 (position_in_table varchar, date_of_vacancy varchar, PRIMARY KEY (position_in_table)) | select count(position_in_table) from table_24231638_3 where date_of_vacancy = "14 february 2011" |
Show the employee ids for all employees with role name "Human Resource" or "Manager". | create table employees (employee_id varchar, role_code varchar, PRIMARY KEY (employee_id)); create table roles (role_code varchar, role_name varchar, PRIMARY KEY (role_code)) | select t1.employee_id from employees as t1 join roles as t2 on t1.role_code = t2.role_code where t2.role_name = "human resource" or t2.role_name = "manager" |
How many cast members had sydney walker as their fresh meat partner? | create table table_26419467_1 (hometown varchar, fresh_meat_partner varchar, PRIMARY KEY (hometown)) | select count(hometown) from table_26419467_1 where fresh_meat_partner = "sydney walker" |
What batting partners batted for pakistan? | create table table_1670921_2 (batting_partners varchar, batting_team varchar, PRIMARY KEY (batting_partners)) | select batting_partners from table_1670921_2 where batting_team = "pakistan" |
Who was the supporting actress in a film with Diane Keaton as the leading actress? | create table table_24225238_1 (supporting_actress varchar, leading_actress varchar, PRIMARY KEY (supporting_actress)) | select supporting_actress from table_24225238_1 where leading_actress = "diane keaton" |
What is the most common participant type? | create table participants (participant_type_code varchar, PRIMARY KEY (participant_type_code)) | select participant_type_code from participants group by participant_type_code order by count(*) desc limit 1 |
What is the college of the afl team of buffalo bills? | create table table_12165135_1 (college varchar, afl_team varchar, PRIMARY KEY (college)) | select college from table_12165135_1 where afl_team = "buffalo bills" |
who directed the episode written by Shonda Rhimes? | create table table_23492454_1 (directed_by varchar, written_by varchar, PRIMARY KEY (directed_by)) | select directed_by from table_23492454_1 where written_by = "shonda rhimes" |
In which city was the berlin marathon? | create table table_26166836_1 (location varchar, road_race varchar, PRIMARY KEY (location)) | select location from table_26166836_1 where road_race = "berlin marathon" |
When were ships laid down that were commissioned on october 29, 1965? | create table table_1014206_2 (laid_down varchar, commissioned varchar, PRIMARY KEY (laid_down)) | select laid_down from table_1014206_2 where commissioned = "october 29, 1965" |
How many male (sex is M) students have class senator votes in the fall election cycle? | create table voting_record (election_cycle varchar, PRIMARY KEY (election_cycle)); create table student (stuid varchar, sex varchar, PRIMARY KEY (stuid)) | select count(*) from student as t1 join voting_record as t2 on t1.stuid = class_senator_vote where t1.sex = "m" and t2.election_cycle = "fall" |
How many clubs does "Linda Smith" belong to? | create table student (stuid varchar, fname varchar, lname varchar, PRIMARY KEY (stuid)); create table member_of_club (clubid varchar, stuid varchar, PRIMARY KEY (clubid)); create table club (clubid varchar, PRIMARY KEY (clubid)) | select count(*) from club as t1 join member_of_club as t2 on t1.clubid = t2.clubid join student as t3 on t2.stuid = t3.stuid where t3.fname = "linda" and t3.lname = "smith" |
If the round of 16 was yulius fernando ( ina ) l pts 5-6, what was the semifinals? | create table table_26335424_86 (semifinals varchar, round_of_16 varchar, PRIMARY KEY (semifinals)) | select semifinals from table_26335424_86 where round_of_16 = "yulius fernando ( ina ) l pts 5-6" |
Name the delay when scientific linux release is 5.10 | create table table_1500146_1 (delay varchar, scientific_linux_release varchar, PRIMARY KEY (delay)) | select delay from table_1500146_1 where scientific_linux_release = "5.10" |
Who were the children of Benjamin Harrison? | create table table_24143253_5 (children_together varchar, name varchar, PRIMARY KEY (children_together)) | select children_together from table_24143253_5 where name = "benjamin harrison" |
Who is the captain of the team in Southampton? | create table table_18461635_1 (captain varchar, location varchar, PRIMARY KEY (captain)) | select captain from table_18461635_1 where location = "southampton" |
Show different hometown of teachers and the number of teachers from each hometown. | create table teacher (hometown varchar, PRIMARY KEY (hometown)) | select hometown, count(*) from teacher group by hometown |
What is the feature type name of feature AirCon? | create table other_available_features (feature_type_code varchar, feature_name varchar, PRIMARY KEY (feature_type_code)); create table ref_feature_types (feature_type_name varchar, feature_type_code varchar, PRIMARY KEY (feature_type_name)) | select t2.feature_type_name from other_available_features as t1 join ref_feature_types as t2 on t1.feature_type_code = t2.feature_type_code where t1.feature_name = "aircon" |
What was the race time for Jeff Gordon? | create table table_2196127_1 (race_time varchar, driver varchar, PRIMARY KEY (race_time)) | select race_time from table_2196127_1 where driver = "jeff gordon" |
What is the barony of mountcotton? | create table table_30120605_1 (barony varchar, townland varchar, PRIMARY KEY (barony)) | select barony from table_30120605_1 where townland = "mountcotton" |
List all OS's with a webkit version of 525.29.1. | create table table_24257833_4 (operating_system varchar, webkit_version varchar, PRIMARY KEY (operating_system)) | select operating_system from table_24257833_4 where webkit_version = "525.29.1" |
What was the host city of the 8th edition in the the host country of Croatia? | create table table_26669939_1 (host_city varchar, host_country varchar, edition varchar, PRIMARY KEY (host_city)) | select host_city from table_26669939_1 where host_country = "croatia" and edition = "8th" |
how many notes were read by reader varma, idria indira varma? | create table table_20174050_23 (notes varchar, reader varchar, PRIMARY KEY (notes)) | select count(notes) from table_20174050_23 where reader = "varma, idria indira varma" |
which electorate is 54787 of the constituency | create table table_15082102_3 (constituency varchar, electorate varchar, PRIMARY KEY (constituency)) | select constituency from table_15082102_3 where electorate = 54787 |
Who are shown as candidates when George Darden is the incumbent? | create table table_1341598_11 (candidates varchar, incumbent varchar, PRIMARY KEY (candidates)) | select candidates from table_1341598_11 where incumbent = "george darden" |
What was segment C when segment B was package printing? | create table table_15187735_1 (segment_c varchar, segment_b varchar, PRIMARY KEY (segment_c)) | select segment_c from table_15187735_1 where segment_b = "package printing" |
Name the performance order for 2.15% | create table table_26267849_11 (performance_order varchar, percentage_of_votes varchar, PRIMARY KEY (performance_order)) | select performance_order from table_26267849_11 where percentage_of_votes = "2.15%" |
Find id of the candidate whose email is [email protected]? | create table candidates (candidate_id varchar, PRIMARY KEY (candidate_id)); create table people (person_id varchar, email_address varchar, PRIMARY KEY (person_id)) | select t2.candidate_id from people as t1 join candidates as t2 on t1.person_id = t2.candidate_id where t1.email_address = "[email protected]" |
how many formats of books authored by day, martin martin day | create table table_20174050_24 (format varchar, author varchar, PRIMARY KEY (format)) | select count(format) from table_20174050_24 where author = "day, martin martin day" |
Where is the real estate agent from? | create table table_1289860_2 (hometown varchar, background varchar, PRIMARY KEY (hometown)) | select hometown from table_1289860_2 where background = "real estate agent" |
Show names of teachers that teach at least two courses. | create table teacher (name varchar, teacher_id varchar, PRIMARY KEY (name)); create table course_arrange (teacher_id varchar, PRIMARY KEY (teacher_id)) | select t2.name from course_arrange as t1 join teacher as t2 on t1.teacher_id = t2.teacher_id group by t2.name having count(*) >= 2 |
Find the department name that is in Building "Mergenthaler". | create table department (dname varchar, building varchar, PRIMARY KEY (dname)) | select dname from department where building = "mergenthaler" |
How many wins are listed when the first title is 2004? | create table table_27864661_6 (total_wins varchar, first_title varchar, PRIMARY KEY (total_wins)) | select total_wins from table_27864661_6 where first_title = 2004 |
Which country had a production (bbl/day) of 2,494,000 (10th)? | create table table_166346_1 (country varchar, production___bbl__day_ varchar, PRIMARY KEY (country)) | select country from table_166346_1 where production___bbl__day_ = "2,494,000 (10th)" |
How many places have as their cyrillic name and other names његошево? | create table table_2562572_27 (settlement varchar, cyrillic_name_other_names varchar, PRIMARY KEY (settlement)) | select count(settlement) from table_2562572_27 where cyrillic_name_other_names = "његошево" |
Name the traditional for 屏南县 | create table table_2013618_1 (traditional varchar, simplified varchar, PRIMARY KEY (traditional)) | select traditional from table_2013618_1 where simplified = "屏南县" |
What was the archive for episode with 6.6 million viewers? | create table table_1601935_1 (archive varchar, viewers__in_millions_ varchar, PRIMARY KEY (archive)) | select archive from table_1601935_1 where viewers__in_millions_ = "6.6" |
Name the number of nat for total g of 6 | create table table_22542179_3 (nat varchar, total_g varchar, PRIMARY KEY (nat)) | select count(nat) from table_22542179_3 where total_g = 6 |
Name the director for coup de torchon | create table table_18987377_1 (director varchar, film_title_used_in_nomination varchar, PRIMARY KEY (director)) | select director from table_18987377_1 where film_title_used_in_nomination = "coup de torchon" |
Name the school that is private | create table table_2293402_2 (institution varchar, type varchar, PRIMARY KEY (institution)) | select institution from table_2293402_2 where type = "private" |
What was the emission rating in Mid-Atlantic South for the vehicle that was rated 90 g/mi (56 g/km) in Alaska and 110 g/mi (68 g/km) in California? | create table table_16105186_2 (mid_atlantic_south__washington varchar, _dc_ varchar, alaska___juneau__ varchar, california__san_francisco_ varchar, PRIMARY KEY (mid_atlantic_south__washington)) | select mid_atlantic_south__washington, _dc_ from table_16105186_2 where alaska___juneau__ = "90 g/mi (56 g/km)" and california__san_francisco_ = "110 g/mi (68 g/km)" |
What's Eli Bremer's fencing score? | create table table_12407546_1 (fencing varchar, athlete__noc_ varchar, PRIMARY KEY (fencing)) | select fencing from table_12407546_1 where athlete__noc_ = "eli bremer" |
Show different citizenship of singers and the number of singers of each citizenship. | create table singer (citizenship varchar, PRIMARY KEY (citizenship)) | select citizenship, count(*) from singer group by citizenship |
How many qualifying start dates for the Concacaf confederation? | create table table_23995075_2 (qualifying_start_date varchar, confederation varchar, PRIMARY KEY (qualifying_start_date)) | select count(qualifying_start_date) from table_23995075_2 where confederation = "concacaf" |
Who was the rider with a Fri 3 June time of 18' 19.68 123.516mph? | create table table_29218221_2 (rider varchar, fri_3_june varchar, PRIMARY KEY (rider)) | select rider from table_29218221_2 where fri_3_june = "18' 19.68 123.516mph" |
What is the distinct service types that are provided by the organization which has detail 'Denesik and Sons Party'? | create table services (service_type_code varchar, organization_id varchar, PRIMARY KEY (service_type_code)); create table organizations (organization_id varchar, organization_details varchar, PRIMARY KEY (organization_id)) | select distinct t1.service_type_code from services as t1 join organizations as t2 on t1.organization_id = t2.organization_id where t2.organization_details = 'denesik and sons party' |
If the founding university is in Washington, D.C., what was the founding date? | create table table_2538117_7 (founding_date varchar, founding_university varchar, PRIMARY KEY (founding_date)) | select founding_date from table_2538117_7 where founding_university = "washington, d.c." |
What is the percentage of females where in India and are maharashtra? | create table table_14598_9 (females___percentage_ varchar, india_state_ut varchar, PRIMARY KEY (females___percentage_)) | select females___percentage_ from table_14598_9 where india_state_ut = "maharashtra" |
What Wireless LAN had a process technology of 90nm and a Carmel centrino? | create table table_199666_1 (wireless_lan varchar, process_technology varchar, centrino varchar, PRIMARY KEY (wireless_lan)) | select wireless_lan from table_199666_1 where process_technology = "90nm" and centrino = "carmel" |
What is the smallest quantity displayed under the title "first runner-up"? | create table table_29942205_1 (id varchar, PRIMARY KEY (id)) | select min(1 as st_runner_up) from table_29942205_1 |
When is the first broadcast for episodes where Rufus's guest is Jack Whitehall? | create table table_19930660_3 (first_broadcast varchar, rufus_guest varchar, PRIMARY KEY (first_broadcast)) | select first_broadcast from table_19930660_3 where rufus_guest = "jack whitehall" |
What percentage did Obama get when McCain got 52.8%? | create table table_20799905_1 (obama_percentage varchar, mccain_percentage varchar, PRIMARY KEY (obama_percentage)) | select obama_percentage from table_20799905_1 where mccain_percentage = "52.8%" |
What is the setting for the hard difficulty? | create table table_24463470_1 (setting varchar, difficulty varchar, PRIMARY KEY (setting)) | select setting from table_24463470_1 where difficulty = "hard" |
What to Footscray score at home? | create table table_16387653_1 (home_team varchar, PRIMARY KEY (home_team)) | select home_team as score from table_16387653_1 where home_team = "footscray" |
What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861? | create table table_27592654_2 (province varchar, election_date varchar, PRIMARY KEY (province)) | select province from table_27592654_2 where election_date = "5 cannot handle non-empty timestamp argument! 1861" |
How many Class AAAA winners where in 2002-03? | create table table_14603057_2 (class_aaaa varchar, school_year varchar, PRIMARY KEY (class_aaaa)) | select count(class_aaaa) from table_14603057_2 where school_year = "2002-03" |
What is the total number of music genre/style in which the lyrics are a detective story? | create table table_10416547_1 (music_genre_style varchar, lyrics_theme_style varchar, PRIMARY KEY (music_genre_style)) | select count(music_genre_style) from table_10416547_1 where lyrics_theme_style = "detective story" |
How many times is the candidates charles f. mercer (f) 100%? | create table table_2668336_24 (incumbent varchar, candidates varchar, PRIMARY KEY (incumbent)) | select count(incumbent) from table_2668336_24 where candidates = "charles f. mercer (f) 100%" |
Name the california where alaska tennessee | create table table_17425749_1 (california varchar, alaska varchar, PRIMARY KEY (california)) | select california from table_17425749_1 where alaska = "tennessee" |
What are the names and descriptions of the products that are of 'Cutlery' type and have daily hire cost lower than 20? | create table products_for_hire (product_name varchar, product_description varchar, product_type_code varchar, daily_hire_cost varchar, PRIMARY KEY (product_name)) | select product_name, product_description from products_for_hire where product_type_code = 'cutlery' and daily_hire_cost < 20 |
who is the the voice actor (englbeingh 1998 / pioneer) with voice actor (englbeingh 1997 / saban) being alec willows and voice actor (englbeingh 2006 / funimation) being andy mcavin | create table table_1410384_1 (voice_actor__english_1998___pioneer_ varchar, voice_actor__english_1997___saban_ varchar, voice_actor__english_2006___funimation_ varchar, PRIMARY KEY (voice_actor__english_1998___pioneer_)) | select voice_actor__english_1998___pioneer_ from table_1410384_1 where voice_actor__english_1997___saban_ = "alec willows" and voice_actor__english_2006___funimation_ = "andy mcavin" |
Name the winner for jason byrne | create table table_19930660_1 (winner varchar, marcus_guest varchar, PRIMARY KEY (winner)) | select winner from table_19930660_1 where marcus_guest = "jason byrne" |
what is march 27-29 when november 3 is 133? | create table table_25355392_2 (march_27_29 varchar, november_3 varchar, PRIMARY KEY (march_27_29)) | select march_27_29 from table_25355392_2 where november_3 = "133" |
Which city had the charleston area convention center as its callback location | create table table_11129123_1 (audition_city varchar, callback_venue varchar, PRIMARY KEY (audition_city)) | select audition_city from table_11129123_1 where callback_venue = "charleston area convention center" |
If the name is Patrick Grappin, what is the nationality? | create table table_24565004_8 (nationality² varchar, name varchar, PRIMARY KEY (nationality²)) | select nationality² from table_24565004_8 where name = "patrick grappin" |
what was the number of candidates when Leon Sacks was incumbent? | create table table_1342256_38 (candidates varchar, incumbent varchar, PRIMARY KEY (candidates)) | select count(candidates) from table_1342256_38 where incumbent = "leon sacks" |
Name the points classification for mark renshaw and team csc | create table table_14856023_18 (points_classification varchar, general_classification varchar, team_classification varchar, PRIMARY KEY (points_classification)) | select points_classification from table_14856023_18 where general_classification = "mark renshaw" and team_classification = "team csc" |
What is the population density of the Capital Region of Denmark? | create table table_16278602_1 (pop_density__per_km²_ varchar, english_name varchar, PRIMARY KEY (pop_density__per_km²_)) | select pop_density__per_km²_ from table_16278602_1 where english_name = "capital region of denmark" |
Display the first name, and department number for all employees whose last name is "McEwen". | create table employees (first_name varchar, department_id varchar, last_name varchar, PRIMARY KEY (first_name)) | select first_name, department_id from employees where last_name = 'mcewen' |
When thomas löfkvist is the young rider classification and alessandro petacchi is the points classification who are the general classifications? | create table table_18733814_2 (general_classification varchar, points_classification varchar, young_rider_classification varchar, PRIMARY KEY (general_classification)) | select general_classification from table_18733814_2 where points_classification = "alessandro petacchi" and young_rider_classification = "thomas löfkvist" |
what's the transmbeingsion with trim being xe (2009) | create table table_1373768_1 (transmission varchar, trim varchar, PRIMARY KEY (transmission)) | select transmission from table_1373768_1 where trim = "xe (2009)" |
What are all the conjugated forms of the verb moler where the vosotros / vosotras is moláis for the yo tense? | create table table_1977630_2 (yo varchar, vosotros___vosotras varchar, PRIMARY KEY (yo)) | select yo from table_1977630_2 where vosotros___vosotras = "moláis" |
Who directed the film Gomorra? | create table table_18994724_1 (director_s_ varchar, film_title_used_in_nomination varchar, PRIMARY KEY (director_s_)) | select director_s_ from table_18994724_1 where film_title_used_in_nomination = "gomorra" |
What is the ε (m −1 cm −1 ) of the orange flourescent dye? | create table table_26428602_1 (ε__m_−1_cm_−1__ varchar, color varchar, PRIMARY KEY (ε__m_−1_cm_−1__)) | select ε__m_−1_cm_−1__ from table_26428602_1 where color = "orange" |
How many years were recorded when world ranking was 21st? | create table table_19948664_2 (index__year_ varchar, world_ranking__1_ varchar, PRIMARY KEY (index__year_)) | select count(index__year_) from table_19948664_2 where world_ranking__1_ = "21st" |
Show the top 3 most common colleges of players in match seasons. | create table match_season (college varchar, PRIMARY KEY (college)) | select college from match_season group by college order by count(*) desc limit 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.