question
stringlengths 14
216
| context
stringlengths 45
458
| answer
stringlengths 18
463
|
---|---|---|
When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors? | create table table_12496904_1 (_2012 varchar, rank_in_nyagatare_sectors integer, population_change_2002_2012___percentage_ varchar, PRIMARY KEY (_2012)) | select max(rank_in_nyagatare_sectors), _2012 from table_12496904_1 where population_change_2002_2012___percentage_ = "35.5" |
What was the choice of song where the original artist was Stevie Wonder? | create table table_26250189_1 (song_choice varchar, original_artist varchar, PRIMARY KEY (song_choice)) | select song_choice from table_26250189_1 where original_artist = "stevie wonder" |
What is the smallest population recorded back in 2002? | create table table_13764346_1 (id varchar, PRIMARY KEY (id)) | select min(2002 as _population) from table_13764346_1 |
How many times did Fiji win r1? | create table table_18812411_3 (r1 varchar, country varchar, PRIMARY KEY (r1)) | select count(r1) from table_18812411_3 where country = "fiji" |
How many people lived in the voivodenship whose capital is Siedlce in the year of 1980? | create table table_11656578_2 (population__1980_ varchar, capital varchar, PRIMARY KEY (population__1980_)) | select population__1980_ from table_11656578_2 where capital = "siedlce" |
Name the number of tn seshan values for kr values is 478608 | create table table_22897453_1 (tn_seshan__values_ varchar, kr_narayanan__values_ varchar, PRIMARY KEY (tn_seshan__values_)) | select count(tn_seshan__values_) from table_22897453_1 where kr_narayanan__values_ = 478608 |
What's the zodiac sing for the month abbreviated as มี.ค.? | create table table_180802_2 (zodiac_sign varchar, abbr varchar, PRIMARY KEY (zodiac_sign)) | select zodiac_sign from table_180802_2 where abbr = "มี.ค." |
How many nicknames were associated with Milton, Massachusetts? | create table table_1973729_1 (nickname varchar, location varchar, PRIMARY KEY (nickname)) | select count(nickname) from table_1973729_1 where location = "milton, massachusetts" |
Name the institution for yellowjackets | create table table_1974482_1 (institution varchar, nickname varchar, PRIMARY KEY (institution)) | select institution from table_1974482_1 where nickname = "yellowjackets" |
What is the coast guard cross when you recieve the navy distinguished service medal? | create table table_2104176_1 (coast_guard_cross varchar, distinguished_service_cross varchar, PRIMARY KEY (coast_guard_cross)) | select coast_guard_cross from table_2104176_1 where distinguished_service_cross = "navy distinguished service medal" |
how many million u.s. viewers watched the episode directed by dan lerner? | create table table_25997153_1 (us_viewers__million_ varchar, directed_by varchar, PRIMARY KEY (us_viewers__million_)) | select us_viewers__million_ from table_25997153_1 where directed_by = "dan lerner" |
who is the the club (city/town) with goals for/against being 14-2 | create table table_14181578_1 (club__city_town_ varchar, goals_for_against varchar, PRIMARY KEY (club__city_town_)) | select club__city_town_ from table_14181578_1 where goals_for_against = "14-2" |
Name the team #2 for river plate | create table table_23812628_1 (team__number2 varchar, team__number1 varchar, PRIMARY KEY (team__number2)) | select team__number2 from table_23812628_1 where team__number1 = "river plate" |
Who is in group c when wisconsin is in group d? | create table table_15290638_1 (group_c varchar, group_d varchar, PRIMARY KEY (group_c)) | select group_c from table_15290638_1 where group_d = "wisconsin" |
What is the name of the episode originally aired on September 29, 1999? | create table table_18646432_4 (title varchar, original_air_date varchar, PRIMARY KEY (title)) | select title from table_18646432_4 where original_air_date = "september 29, 1999" |
What is the placement date of the order whose invoice number is 10? | create table orders (date_order_placed varchar, order_id varchar, PRIMARY KEY (date_order_placed)); create table shipments (order_id varchar, invoice_number varchar, PRIMARY KEY (order_id)) | select t1.date_order_placed from orders as t1 join shipments as t2 on t1.order_id = t2.order_id where t2.invoice_number = 10 |
What are the names of all campuses located at Chico? | create table campuses (campus varchar, location varchar, PRIMARY KEY (campus)) | select campus from campuses where location = "chico" |
What is the greatest number of valves? | create table table_21021796_1 (valves integer, PRIMARY KEY (valves)) | select min(valves) from table_21021796_1 |
Name the malayalam name for leo | create table table_20354_7 (malayalam_name varchar, zodiac_sign varchar, PRIMARY KEY (malayalam_name)) | select malayalam_name from table_20354_7 where zodiac_sign = "leo" |
who directed the episode james clavell wrote? | create table table_2626495_1 (directed_by varchar, written_by varchar, PRIMARY KEY (directed_by)) | select directed_by from table_2626495_1 where written_by = "james clavell" |
What is the poverty rate in the county that has a market income per capita of $16,420? | create table table_22815568_1 (poverty_rate varchar, market_income_per_capita varchar, PRIMARY KEY (poverty_rate)) | select poverty_rate from table_22815568_1 where market_income_per_capita = "$16,420" |
What home team played the West Coast away team? | create table table_16388230_1 (home_team varchar, away_team varchar, PRIMARY KEY (home_team)) | select home_team from table_16388230_1 where away_team = "west coast" |
what is the length where the time is 2009 | create table table_2846320_4 (streak varchar, last_meeting varchar, PRIMARY KEY (streak)) | select streak from table_2846320_4 where last_meeting = 2009 |
How many persons had immunity in the episode when Wanda was eliminated? | create table table_1272844_2 (immunity varchar, eliminated varchar, PRIMARY KEY (immunity)) | select count(immunity) from table_1272844_2 where eliminated = "wanda" |
How many millions of Blackberry OS smartphones were shipped when 10.4 million Symbian smartphones were shipped? | create table table_14260687_3 (blackberry_os varchar, symbian varchar, PRIMARY KEY (blackberry_os)) | select blackberry_os from table_14260687_3 where symbian = "10.4" |
Which payment method is used by most customers? | create table customers (payment_method varchar, PRIMARY KEY (payment_method)) | select payment_method from customers group by payment_method order by count(*) desc limit 1 |
List the names of wrestlers that have not been eliminated. | create table elimination (name varchar, wrestler_id varchar, PRIMARY KEY (name)); create table wrestler (name varchar, wrestler_id varchar, PRIMARY KEY (name)) | select name from wrestler where not wrestler_id in (select wrestler_id from elimination) |
When steve holland is the writer what is the air date? | create table table_27657925_1 (original_air_date varchar, written_by varchar, PRIMARY KEY (original_air_date)) | select original_air_date from table_27657925_1 where written_by = "steve holland" |
What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting? | create table table_14700336_1 (presidential_majority_2000_2004 varchar, presidential_majority_2012 varchar, PRIMARY KEY (presidential_majority_2000_2004)) | select presidential_majority_2000_2004 from table_14700336_1 where presidential_majority_2012 = "non-voting" |
How many directed by entries have UK viewership over 6.16 million? | create table table_29063233_1 (directed_by varchar, uk_viewers__million_ varchar, PRIMARY KEY (directed_by)) | select count(directed_by) from table_29063233_1 where uk_viewers__million_ = "6.16" |
How many of the schools are designated private/Presbyterian? | create table table_10082596_1 (location varchar, affiliation varchar, PRIMARY KEY (location)) | select count(location) from table_10082596_1 where affiliation = "private/presbyterian" |
what are all the type where location is st ives, cambridgeshire | create table table_11934032_1 (type varchar, location varchar, PRIMARY KEY (type)) | select type from table_11934032_1 where location = "st ives, cambridgeshire" |
name the school located at Milton, ma. | create table table_2439728_1 (school varchar, location varchar, PRIMARY KEY (school)) | select school from table_2439728_1 where location = "milton, ma" |
Name the production for alpina model being b10 4,6 | create table table_2477085_1 (production varchar, alpina_model varchar, PRIMARY KEY (production)) | select production from table_2477085_1 where alpina_model = "b10 4,6" |
Who as the candidate when the result - % was 2.9%? | create table table_25818630_2 (candidate varchar, result____percentage varchar, PRIMARY KEY (candidate)) | select candidate from table_25818630_2 where result____percentage = "2.9%" |
What is the verb meaning for *bundun? | create table table_1745843_2 (verb_meaning varchar, part_3 varchar, PRIMARY KEY (verb_meaning)) | select verb_meaning from table_1745843_2 where part_3 = "*bundun" |
what's the party with candidates being silvio conte (r) unopposed | create table table_1341604_22 (party varchar, candidates varchar, PRIMARY KEY (party)) | select party from table_1341604_22 where candidates = "silvio conte (r) unopposed" |
There were 68 worcs f-c matches played on Chester Road North Ground. | create table table_1156428_2 (worcs_f_c_matches varchar, name_of_ground varchar, PRIMARY KEY (worcs_f_c_matches)) | select worcs_f_c_matches from table_1156428_2 where name_of_ground = "chester road north ground" |
Name the teleplay for david simon & eric overmyer and tom piazza | create table table_26914076_2 (teleplay_by varchar, story_by varchar, PRIMARY KEY (teleplay_by)) | select teleplay_by from table_26914076_2 where story_by = "david simon & eric overmyer and tom piazza" |
what's the the mole with airdate being 5 january 2012 | create table table_13036251_1 (the_mole varchar, airdate varchar, PRIMARY KEY (the_mole)) | select count(the_mole) from table_13036251_1 where airdate = "5 january 2012" |
Who was Class AAAAA during the school year of 1995-96? | create table table_10399701_2 (class_aaaaa varchar, school_year varchar, PRIMARY KEY (class_aaaaa)) | select class_aaaaa from table_10399701_2 where school_year = "1995-96" |
For the competition Mithras Cup 2nd Rd (2nd Leg), what is the date and time? | create table table_1233808_2 (date_and_time varchar, competition varchar, PRIMARY KEY (date_and_time)) | select date_and_time from table_1233808_2 where competition = "mithras cup 2nd rd (2nd leg)" |
List the medicine name and trade name which can both interact as 'inhibitor' and 'activitor' with enzymes. | create table medicine (name varchar, trade_name varchar, id varchar, PRIMARY KEY (name)); create table medicine_enzyme_interaction (medicine_id varchar, PRIMARY KEY (medicine_id)) | select t1.name, t1.trade_name from medicine as t1 join medicine_enzyme_interaction as t2 on t2.medicine_id = t1.id where interaction_type = 'inhibitor' intersect select t1.name, t1.trade_name from medicine as t1 join medicine_enzyme_interaction as t2 on t2.medicine_id = t1.id where interaction_type = 'activitor' |
What are the booking start and end dates of the apartments with type code "Duplex"? | create table apartments (apt_id varchar, apt_type_code varchar, PRIMARY KEY (apt_id)); create table apartment_bookings (booking_start_date varchar, apt_id varchar, PRIMARY KEY (booking_start_date)) | select t1.booking_start_date, t1.booking_start_date from apartment_bookings as t1 join apartments as t2 on t1.apt_id = t2.apt_id where t2.apt_type_code = "duplex" |
How many teams did Farhad Kazemi leave? | create table table_22297198_3 (team varchar, outgoing_manager varchar, PRIMARY KEY (team)) | select count(team) from table_22297198_3 where outgoing_manager = "farhad kazemi" |
what is the total number of playoffs where regular season is 6th, southwest | create table table_1046454_1 (playoffs varchar, regular_season varchar, PRIMARY KEY (playoffs)) | select count(playoffs) from table_1046454_1 where regular_season = "6th, southwest" |
What date did Jatin Shah and Shalini Chandran perform? | create table table_18278508_2 (date_performed varchar, main_contestant varchar, co_contestant__yaar_vs_pyaar_ varchar, PRIMARY KEY (date_performed)) | select date_performed from table_18278508_2 where main_contestant = "jatin shah" and co_contestant__yaar_vs_pyaar_ = "shalini chandran" |
With order number 7 and the theme is Motown, who were the original artists? | create table table_21501565_1 (original_artist varchar, order__number varchar, theme varchar, PRIMARY KEY (original_artist)) | select original_artist from table_21501565_1 where order__number = "7" and theme = "motown" |
Where is the school whose students are nicknamed Panthers located? | create table table_1971074_1 (location varchar, nickname varchar, PRIMARY KEY (location)) | select location from table_1971074_1 where nickname = "panthers" |
How many viewers (millions) were there for rank (week) 20? | create table table_11253290_2 (viewers__millions_ varchar, rank__week_ varchar, PRIMARY KEY (viewers__millions_)) | select count(viewers__millions_) from table_11253290_2 where rank__week_ = "20" |
What is the title of the first episode of the season that begin on february 27, 1954? | create table table_15824796_3 (title varchar, original_air_date varchar, PRIMARY KEY (title)) | select title from table_15824796_3 where original_air_date = "february 27, 1954" |
what's the currency name with highest monthly inflation rate being 29,500% | create table table_13681_2 (currency_name varchar, highest_monthly_inflation_rate varchar, PRIMARY KEY (currency_name)) | select currency_name from table_13681_2 where highest_monthly_inflation_rate = "29,500%" |
Name the team for copa conmebol 1992 is round of 16 | create table table_15013825_8 (team varchar, copa_conmebol_1992 varchar, PRIMARY KEY (team)) | select team from table_15013825_8 where copa_conmebol_1992 = "round of 16" |
What college club team did the Dallas Stars choose their draft pick from? | create table table_2886617_9 (college_junior_club_team varchar, nhl_team varchar, PRIMARY KEY (college_junior_club_team)) | select college_junior_club_team from table_2886617_9 where nhl_team = "dallas stars" |
Name the market value for rhb capital | create table table_19112_3 (market_value__billion_$_ varchar, company varchar, PRIMARY KEY (market_value__billion_$_)) | select market_value__billion_$_ from table_19112_3 where company = "rhb capital" |
During the year when Lansing's fare is $433.59, what is the fare to Kalamazoo? | create table table_1637981_7 (kalamazoo__azo_ varchar, lansing__lan_ varchar, PRIMARY KEY (kalamazoo__azo_)) | select kalamazoo__azo_ from table_1637981_7 where lansing__lan_ = "$433.59" |
When was the Australian open? | create table table_197638_7 (australian_open integer, PRIMARY KEY (australian_open)) | select max(australian_open) from table_197638_7 |
If the team is união de leiria, what is the date of appointment? | create table table_27133147_3 (date_of_appointment varchar, team varchar, PRIMARY KEY (date_of_appointment)) | select date_of_appointment from table_27133147_3 where team = "união de leiria" |
Show invoice dates and order id and details for all invoices. | create table invoices (invoice_date varchar, order_id varchar, PRIMARY KEY (invoice_date)); create table orders (order_details varchar, order_id varchar, PRIMARY KEY (order_details)) | select t1.invoice_date, t1.order_id, t2.order_details from invoices as t1 join orders as t2 on t1.order_id = t2.order_id |
What is the average ticket sales gross in dollars of films? | create table film (gross_in_dollar integer, PRIMARY KEY (gross_in_dollar)) | select avg(gross_in_dollar) from film |
What was the little league team from Ohio when the little league team from Kentucky was Warren County South LL Bowling Green? | create table table_18461045_1 (ohio varchar, kentucky varchar, PRIMARY KEY (ohio)) | select ohio from table_18461045_1 where kentucky = "warren county south ll bowling green" |
How many directors got 6.79 million U.S. viewers from their episodes? | create table table_28760804_1 (directed_by varchar, us_viewers__million_ varchar, PRIMARY KEY (directed_by)) | select count(directed_by) from table_28760804_1 where us_viewers__million_ = "6.79" |
what was the achievement for the rival at scottish claymores | create table table_27893892_2 (team_record varchar, opponent varchar, PRIMARY KEY (team_record)) | select team_record from table_27893892_2 where opponent = "at scottish claymores" |
What was Obama's percentage in those places where McCain's percentage was 55.46%? | create table table_20524090_1 (obama_percentage varchar, mccain_percentage varchar, PRIMARY KEY (obama_percentage)) | select obama_percentage from table_20524090_1 where mccain_percentage = "55.46%" |
Please show the most common type of ships. | create table ship (type varchar, PRIMARY KEY (type)) | select type from ship group by type order by count(*) desc limit 1 |
What team did the Wizards play against when their record was 2-5? | create table table_23274514_4 (team varchar, record varchar, PRIMARY KEY (team)) | select team from table_23274514_4 where record = "2-5" |
who are all the visitor with a record of 25–18 | create table table_11964047_7 (visitor varchar, record varchar, PRIMARY KEY (visitor)) | select visitor from table_11964047_7 where record = "25–18" |
Who did the High Assists when Kevin Durant (28) took the High Points? | create table table_17355628_7 (high_assists varchar, high_points varchar, PRIMARY KEY (high_assists)) | select high_assists from table_17355628_7 where high_points = "kevin durant (28)" |
When five is the new channel what is the date of original removal? | create table table_19114172_11 (date_s__of_original_removal varchar, new_channel_s_ varchar, PRIMARY KEY (date_s__of_original_removal)) | select date_s__of_original_removal from table_19114172_11 where new_channel_s_ = "five" |
How many million viewers watched the episode that aired on March 28, 2010? | create table table_23397386_2 (viewers__millions_ varchar, airdate varchar, PRIMARY KEY (viewers__millions_)) | select viewers__millions_ from table_23397386_2 where airdate = "march 28, 2010" |
Find the emails of parties with the most popular party form. | create table party_forms (form_id varchar, PRIMARY KEY (form_id)); create table parties (party_email varchar, party_id varchar, PRIMARY KEY (party_email)); create table party_forms (party_id varchar, form_id varchar, PRIMARY KEY (party_id)) | select t1.party_email from parties as t1 join party_forms as t2 on t1.party_id = t2.party_id where t2.form_id = (select form_id from party_forms group by form_id order by count(*) desc limit 1) |
List of high assists with high rebounds for k. mchale (10) | create table table_17344582_11 (high_assists varchar, high_rebounds varchar, PRIMARY KEY (high_assists)) | select high_assists from table_17344582_11 where high_rebounds = "k. mchale (10)" |
How many release prices are there for the Pentium iii 550? | create table table_16400024_1 (release_price___usd__ varchar, model_number varchar, PRIMARY KEY (release_price___usd__)) | select count(release_price___usd__) from table_16400024_1 where model_number = "pentium iii 550" |
Find the count and code of the job has most employees. | create table employee (emp_jobcode varchar, PRIMARY KEY (emp_jobcode)) | select emp_jobcode, count(*) from employee group by emp_jobcode order by count(*) desc limit 1 |
How many times was Mike McIntyre elected? | create table table_1805191_34 (results varchar, incumbent varchar, PRIMARY KEY (results)) | select count(results) from table_1805191_34 where incumbent = "mike mcintyre" |
What is the ISO for South Sudan? | create table table_222771_1 (iso_3166_2_codes varchar, english_short_name__upper_lower_case_ varchar, PRIMARY KEY (iso_3166_2_codes)) | select iso_3166_2_codes from table_222771_1 where english_short_name__upper_lower_case_ = "south sudan" |
What is the location of the church when the church name is Ortnevik Kyrkje? | create table table_178389_1 (location_of_the_church varchar, church_name varchar, PRIMARY KEY (location_of_the_church)) | select location_of_the_church from table_178389_1 where church_name = "ortnevik kyrkje" |
What is the group a winner for modena? | create table table_1137142_1 (group_a_winner varchar, group_b_winner varchar, PRIMARY KEY (group_a_winner)) | select group_a_winner from table_1137142_1 where group_b_winner = "modena" |
Show the account id and the number of transactions for each account | create table financial_transactions (account_id varchar, PRIMARY KEY (account_id)) | select account_id, count(*) from financial_transactions group by account_id |
Who is the driver of the entry constructed by Mercedes-Benz? | create table table_18893428_1 (driver varchar, constructor varchar, PRIMARY KEY (driver)) | select driver from table_18893428_1 where constructor = "mercedes-benz" |
How many air dates does the episode with 15.50 million viewers have? | create table table_26198709_1 (original_air_date varchar, us_viewers__million_ varchar, PRIMARY KEY (original_air_date)) | select count(original_air_date) from table_26198709_1 where us_viewers__million_ = "15.50" |
What farm has a capacity of 70 and is operational? | create table table_26387382_1 (name varchar, capacity__mw_ varchar, status varchar, PRIMARY KEY (name)) | select name from table_26387382_1 where capacity__mw_ = "70" and status = "operational" |
What is the slovenian name for the village that in german is known as st.margarethen? | create table table_10797463_1 (village__slovenian_ varchar, village__german_ varchar, PRIMARY KEY (village__slovenian_)) | select village__slovenian_ from table_10797463_1 where village__german_ = "st.margarethen" |
Who is the coach of the team in Leicester? | create table table_18461635_1 (coach varchar, location varchar, PRIMARY KEY (coach)) | select coach from table_18461635_1 where location = "leicester" |
If the Cuatro Cañadas municipality percentage is 252, what are all the San Antonio de Lomerío municipality percentage? | create table table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ varchar, cuatro_cañadas_municipality___percentage_ varchar, PRIMARY KEY (san_antonio_de_lomerío_municipality___percentage_)) | select san_antonio_de_lomerío_municipality___percentage_ from table_19998428_3 where cuatro_cañadas_municipality___percentage_ = "252" |
What are all info of students who registered courses but not attended courses? | create table student_course_attendance (student_id varchar, PRIMARY KEY (student_id)); create table student_course_registrations (student_id varchar, PRIMARY KEY (student_id)) | select * from student_course_registrations where not student_id in (select student_id from student_course_attendance) |
What are all the labels? | create table albums (label varchar, PRIMARY KEY (label)) | select distinct label from albums |
What is every media type for the Dub genre? | create table table_23829490_1 (media_type varchar, genre varchar, PRIMARY KEY (media_type)) | select media_type from table_23829490_1 where genre = "dub" |
Name the republican steve sauerberg for august 12, 2008 | create table table_16751596_2 (republican varchar, dates_administered varchar, PRIMARY KEY (republican)) | select republican as :_steve_sauerberg from table_16751596_2 where dates_administered = "august 12, 2008" |
What is the number for the moment of intertia in torsion (j) (cm 4) for the 4.7 web thickness (mm)? | create table table_2071644_1 (moment_of_inertia_in_torsion__j___cm_4__ varchar, web_thickness__mm_ varchar, PRIMARY KEY (moment_of_inertia_in_torsion__j___cm_4__)) | select count(moment_of_inertia_in_torsion__j___cm_4__) from table_2071644_1 where web_thickness__mm_ = "4.7" |
Name the number of captains for barcelona | create table table_29398373_2 (captain varchar, team varchar, PRIMARY KEY (captain)) | select count(captain) from table_29398373_2 where team = "barcelona" |
Who had the high point total against cleveland? | create table table_17311783_9 (high_points varchar, team varchar, PRIMARY KEY (high_points)) | select high_points from table_17311783_9 where team = "cleveland" |
How many members gained university status in 1900? | create table table_142950_1 (research_funding__ varchar, gained_university_status varchar, PRIMARY KEY (research_funding__)) | select count(research_funding__) as £, 000 as _ from table_142950_1 where gained_university_status = 1900 |
What is the willow canyon of Stallion? | create table table_11340432_1 (willow_canyon varchar, shadow_ridge varchar, PRIMARY KEY (willow_canyon)) | select willow_canyon from table_11340432_1 where shadow_ridge = "stallion" |
What was the departure time when the arrival was 14.40? | create table table_18332845_2 (departure varchar, arrival varchar, PRIMARY KEY (departure)) | select departure from table_18332845_2 where arrival = "14.40" |
Which engineers have never visited to maintain the assets? List the engineer first name and last name. | create table engineer_visits (first_name varchar, last_name varchar, engineer_id varchar, PRIMARY KEY (first_name)); create table maintenance_engineers (first_name varchar, last_name varchar, engineer_id varchar, PRIMARY KEY (first_name)) | select first_name, last_name from maintenance_engineers where not engineer_id in (select engineer_id from engineer_visits) |
Which first names are used for professionals or owners but are not used as dog names? | create table owners (first_name varchar, name varchar, PRIMARY KEY (first_name)); create table dogs (first_name varchar, name varchar, PRIMARY KEY (first_name)); create table professionals (first_name varchar, name varchar, PRIMARY KEY (first_name)) | select first_name from professionals union select first_name from owners except select name from dogs |
How many students does LORIA ONDERSMA teaches? | create table list (classroom varchar, PRIMARY KEY (classroom)); create table teachers (classroom varchar, firstname varchar, lastname varchar, PRIMARY KEY (classroom)) | select count(*) from list as t1 join teachers as t2 on t1.classroom = t2.classroom where t2.firstname = "loria" and t2.lastname = "ondersma" |
What is the driver for the team whose primary sponsor is Quicken Loans / Haas Automation? | create table table_1266602_1 (driver_s_ varchar, primary_sponsor_s_ varchar, PRIMARY KEY (driver_s_)) | select driver_s_ from table_1266602_1 where primary_sponsor_s_ = "quicken loans / haas automation" |
Name the common name for chironius multiventris septentrionalis | create table table_1850282_7 (common_name varchar, species varchar, PRIMARY KEY (common_name)) | select common_name from table_1850282_7 where species = "chironius multiventris septentrionalis" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.