question
stringlengths
14
216
context
stringlengths
45
458
answer
stringlengths
18
463
What is the conserved in mus musculus listing for sequence aagtact?
create table table_26708105_2 (conserved_in_mus_musculus varchar, sequence varchar, PRIMARY KEY (conserved_in_mus_musculus))
select conserved_in_mus_musculus from table_26708105_2 where sequence = "aagtact"
Who did Walter B. Jones, Sr. (d) succeeded in office?
create table table_1847180_4 (vacator varchar, successor varchar, PRIMARY KEY (vacator))
select vacator from table_1847180_4 where successor = "walter b. jones, sr. (d)"
Which week is the theme n/a
create table table_21501518_1 (week__number varchar, theme varchar, PRIMARY KEY (week__number))
select week__number from table_21501518_1 where theme = "n/a"
How many French heads of state have a head of mission of Xavier Daufresne de la Chevalerie?
create table table_29474481_4 (french_head_of_state varchar, head_of_mission varchar, PRIMARY KEY (french_head_of_state))
select count(french_head_of_state) from table_29474481_4 where head_of_mission = "xavier daufresne de la chevalerie"
When 5.5 is the l-band what is the v-band?
create table table_186468_1 (v_band varchar, k_band varchar, PRIMARY KEY (v_band))
select v_band from table_186468_1 where k_band = "5.5"
Who was the director for the episode originally airing September 29, 2003?
create table table_23916272_6 (directed_by varchar, original_air_date varchar, PRIMARY KEY (directed_by))
select directed_by from table_23916272_6 where original_air_date = "september 29, 2003"
What was the country with a population density per km² of 3.5/km² (/sqmi)?
create table table_26769_1 (country_or_territory_with_flag varchar, population_density_per_km² varchar, PRIMARY KEY (country_or_territory_with_flag))
select country_or_territory_with_flag from table_26769_1 where population_density_per_km² = "3.5/km² (/sqmi)"
What is Segment A where Segment D is luxury sports cars?
create table table_15187735_15 (segment_a varchar, segment_d varchar, PRIMARY KEY (segment_a))
select segment_a from table_15187735_15 where segment_d = "luxury sports cars"
What was the players position in 2013 who had 29 seasons in the second tier
create table table_1560673_1 (position_in_2013 varchar, number_of_seasons_in_second_tier varchar, PRIMARY KEY (position_in_2013))
select position_in_2013 from table_1560673_1 where number_of_seasons_in_second_tier = "29"
When belarus is the country what is the hometown?
create table table_18626383_2 (hometown varchar, country varchar, PRIMARY KEY (hometown))
select hometown from table_18626383_2 where country = "belarus"
The displacement(s) 466 cubic inches (7.6L), has what engine family?
create table table_26352332_4 (engine_family varchar, displacement_s_ varchar, PRIMARY KEY (engine_family))
select engine_family from table_26352332_4 where displacement_s_ = "466 cubic inches (7.6l)"
Show the names of journalists and the number of events they reported.
create table journalist (name varchar, journalist_id varchar, PRIMARY KEY (name)); create table news_report (event_id varchar, journalist_id varchar, PRIMARY KEY (event_id)); create table event (event_id varchar, PRIMARY KEY (event_id))
select t3.name, count(*) from news_report as t1 join event as t2 on t1.event_id = t2.event_id join journalist as t3 on t1.journalist_id = t3.journalist_id group by t3.name
What college/junior/club teams do the players from the St. Louis Blues come from?
create table table_1013129_11 (college_junior_club_team varchar, nhl_team varchar, PRIMARY KEY (college_junior_club_team))
select college_junior_club_team from table_1013129_11 where nhl_team = "st. louis blues"
Show the names of members and the location of performances they attended in ascending alphabetical order of their names.
create table performance (location varchar, performance_id varchar, PRIMARY KEY (location)); create table member (name varchar, member_id varchar, PRIMARY KEY (name)); create table member_attendance (member_id varchar, performance_id varchar, PRIMARY KEY (member_id))
select t2.name, t3.location from member_attendance as t1 join member as t2 on t1.member_id = t2.member_id join performance as t3 on t1.performance_id = t3.performance_id order by t2.name
What location was the congressional service of which the term ended in January 3, 2011?
create table table_197446_1 (location varchar, term_ended varchar, PRIMARY KEY (location))
select location from table_197446_1 where term_ended = "january 3, 2011"
In what year did the winner of the FIS championship in 1982 win the Winter Olympics?
create table table_174491_1 (winter_olympics varchar, fis_nordic_world_ski_championships varchar, PRIMARY KEY (winter_olympics))
select winter_olympics from table_174491_1 where fis_nordic_world_ski_championships = "1982"
Which team had $15,785 in winnings?
create table table_26609690_1 (team_s_ varchar, winnings varchar, PRIMARY KEY (team_s_))
select team_s_ from table_26609690_1 where winnings = "$15,785"
Find the first names of the teachers that teach first grade.
create table list (classroom varchar, PRIMARY KEY (classroom)); create table teachers (firstname varchar, classroom varchar, PRIMARY KEY (firstname))
select distinct t2.firstname from list as t1 join teachers as t2 on t1.classroom = t2.classroom where grade = 1
How many millions of viewers did the episode directed by Jeffrey Blitz have?
create table table_25341765_1 (us_viewers__million_ varchar, directed_by varchar, PRIMARY KEY (us_viewers__million_))
select us_viewers__million_ from table_25341765_1 where directed_by = "jeffrey blitz"
Find the address line 1 and 2 of the customer with email "[email protected]".
create table customers (address_line_1 varchar, address_line_2 varchar, email_address varchar, PRIMARY KEY (address_line_1))
select address_line_1, address_line_2 from customers where email_address = "[email protected]"
What is the maximum population size in the town of Stanthorpe?
create table table_12584173_1 (population__stanthorpe_ integer, PRIMARY KEY (population__stanthorpe_))
select max(population__stanthorpe_) from table_12584173_1
Show director with the largest number of show times in total.
create table schedule (film_id varchar, show_times_per_day integer, PRIMARY KEY (film_id)); create table film (directed_by varchar, film_id varchar, PRIMARY KEY (directed_by))
select t2.directed_by from schedule as t1 join film as t2 on t1.film_id = t2.film_id group by t2.directed_by order by sum(t1.show_times_per_day) desc limit 1
What is Segment B for series episode 12-02?
create table table_15187735_12 (segment_b varchar, series_ep varchar, PRIMARY KEY (segment_b))
select segment_b from table_15187735_12 where series_ep = "12-02"
Show the number of documents with document type code CV or BK.
create table all_documents (document_type_code varchar, PRIMARY KEY (document_type_code))
select count(*) from all_documents where document_type_code = "cv" or document_type_code = "bk"
How many percentage yield figures are there when 6.7% are defective?
create table table_222448_1 (percentage_yield varchar, percent_defective varchar, PRIMARY KEY (percentage_yield))
select count(percentage_yield) from table_222448_1 where percent_defective = "6.7%"
How many call signs does the location masinloc, zambales have?
create table table_27588823_2 (callsign varchar, location varchar, PRIMARY KEY (callsign))
select count(callsign) from table_27588823_2 where location = "masinloc, zambales"
What is the market for KLRJ?
create table table_2709_4 (target_city__market varchar, call_sign varchar, PRIMARY KEY (target_city__market))
select target_city__market from table_2709_4 where call_sign = "klrj"
Is the drawing tablet support part of the DDM class?
create table table_1153898_1 (ddm_class varchar, comparisons varchar, PRIMARY KEY (ddm_class))
select ddm_class from table_1153898_1 where comparisons = "drawing tablet support"
How many members were in the group that sold 65 million albums and singles?
create table table_19439814_1 (members varchar, sold__albums_and_singles_ varchar, PRIMARY KEY (members))
select members from table_19439814_1 where sold__albums_and_singles_ = "65 million"
who won tennis when ashland won softball and wooster won volleybal
create table table_16423070_4 (tennis varchar, softball varchar, volleyball varchar, PRIMARY KEY (tennis))
select tennis from table_16423070_4 where softball = "ashland" and volleyball = "wooster"
What is the migration rating when trade is 5.7?
create table table_13677808_1 (migration varchar, trade varchar, PRIMARY KEY (migration))
select migration from table_13677808_1 where trade = "5.7"
How many PPV values are listed for when television service Sky Cinema 1?
create table table_15887683_5 (ppv varchar, television_service varchar, PRIMARY KEY (ppv))
select count(ppv) from table_15887683_5 where television_service = "sky cinema 1"
List the names of journalists who have not reported any event.
create table journalist (name varchar, journalist_id varchar, PRIMARY KEY (name)); create table news_report (name varchar, journalist_id varchar, PRIMARY KEY (name))
select name from journalist where not journalist_id in (select journalist_id from news_report)
when was the next coach appointed after niger tornadoes fired their coach?
create table table_28164986_4 (date_of_appointment varchar, manner_of_departure varchar, team varchar, PRIMARY KEY (date_of_appointment))
select date_of_appointment from table_28164986_4 where manner_of_departure = "fired" and team = "niger tornadoes"
Who wrote the episodes watched by 1.575 million people in Canada?
create table table_18424435_3 (written_by varchar, canadian_viewers__million_ varchar, PRIMARY KEY (written_by))
select written_by from table_18424435_3 where canadian_viewers__million_ = "1.575"
What was round of 64 of the singles event when the result of round 16 was did not advance and the athlete was Iveta Benešová?
create table table_17289604_38 (round_of_64 varchar, athlete varchar, event varchar, round_of_16 varchar, PRIMARY KEY (round_of_64))
select round_of_64 from table_17289604_38 where event = "singles" and round_of_16 = "did not advance" and athlete = "iveta benešová"
What is the election date for those politicians who left office on 1850-11-15?
create table table_26362472_1 (election_date varchar, left_office varchar, PRIMARY KEY (election_date))
select count(election_date) from table_26362472_1 where left_office = "1850-11-15"
What was the Obama% when McCain% was 61.2%?
create table table_20750731_1 (obama_percentage varchar, mccain_percentage varchar, PRIMARY KEY (obama_percentage))
select obama_percentage from table_20750731_1 where mccain_percentage = "61.2%"
Who was the winning driver in the grand prix at Pacific Grand Prix?
create table table_1137702_3 (winning_driver varchar, grand_prix varchar, PRIMARY KEY (winning_driver))
select winning_driver from table_1137702_3 where grand_prix = "pacific grand_prix"
what is а а [a] when гь гь [ɡʲ] is л л [l]?
create table table_202365_2 (а_а_ varchar, a varchar, гь_гь_ varchar, ɡʲ varchar, PRIMARY KEY (а_а_))
select а_а_[a] from table_202365_2 where гь_гь_[ɡʲ] = "л л [l]"
Rockets height was 6-6 in feet, list the time frame where this was true?
create table table_11734041_10 (years_for_rockets varchar, height_in_ft varchar, PRIMARY KEY (years_for_rockets))
select years_for_rockets from table_11734041_10 where height_in_ft = "6-6"
What ethnic group had the largest population in сурдук in 2002?
create table table_2562572_53 (largest_ethnic_group__2002_ varchar, cyrillic_name varchar, PRIMARY KEY (largest_ethnic_group__2002_))
select largest_ethnic_group__2002_ from table_2562572_53 where cyrillic_name = "сурдук"
If the nepalese is 37.1%, what is the working force of HK?
create table table_27257896_2 (working_force_of_hk varchar, nepalese varchar, PRIMARY KEY (working_force_of_hk))
select working_force_of_hk from table_27257896_2 where nepalese = "37.1%"
What grand prixs did Daijiro Hiura win?
create table table_18303274_1 (grand_prix varchar, race_winner varchar, PRIMARY KEY (grand_prix))
select grand_prix from table_18303274_1 where race_winner = "daijiro hiura"
What is the total number of 3rd place entries that have exactly 8 total placings?
create table table_20823568_2 (third_place_s_ varchar, total_placing_s_ varchar, PRIMARY KEY (third_place_s_))
select count(third_place_s_) from table_20823568_2 where total_placing_s_ = 8
Who trained the representative whose presentation of credentials happened on February 24, 1950?
create table table_20065425_1 (training varchar, presentation_of_credentials varchar, PRIMARY KEY (training))
select training from table_20065425_1 where presentation_of_credentials = "february 24, 1950"
Show the names of editors that are on at least two journal committees.
create table editor (name varchar, editor_id varchar, PRIMARY KEY (name)); create table journal_committee (editor_id varchar, PRIMARY KEY (editor_id))
select t1.name from editor as t1 join journal_committee as t2 on t1.editor_id = t2.editor_id group by t1.name having count(*) >= 2
List the states where both the secretary of 'Treasury' department and the secretary of 'Homeland Security' were born.
create table management (department_id varchar, head_id varchar, PRIMARY KEY (department_id)); create table head (born_state varchar, head_id varchar, PRIMARY KEY (born_state)); create table department (department_id varchar, name varchar, PRIMARY KEY (department_id))
select t3.born_state from department as t1 join management as t2 on t1.department_id = t2.department_id join head as t3 on t2.head_id = t3.head_id where t1.name = 'treasury' intersect select t3.born_state from department as t1 join management as t2 on t1.department_id = t2.department_id join head as t3 on t2.head_id = t3.head_id where t1.name = 'homeland security'
What are the names of the contestants whose names are not 'Jessie Alloway'
create table contestants (contestant_name varchar, PRIMARY KEY (contestant_name))
select contestant_name from contestants where contestant_name <> 'jessie alloway'
How many date of appointment entries are there when the team is khazar lankaran?
create table table_27057070_3 (date_of_appointment varchar, team varchar, PRIMARY KEY (date_of_appointment))
select count(date_of_appointment) from table_27057070_3 where team = "khazar lankaran"
What is the team when the economy is 5.73?
create table table_27268238_5 (team varchar, economy varchar, PRIMARY KEY (team))
select team from table_27268238_5 where economy = "5.73"
Which documents have more than 1 draft copies? List document id and number of draft copies.
create table draft_copies (document_id varchar, PRIMARY KEY (document_id))
select document_id, count(*) from draft_copies group by document_id having count(*) > 1
how many times was the incumbent is john b. yates?
create table table_2668347_14 (party varchar, incumbent varchar, PRIMARY KEY (party))
select count(party) from table_2668347_14 where incumbent = "john b. yates"
Nam the opponent for prudential center
create table table_16864968_9 (opponent varchar, location varchar, PRIMARY KEY (opponent))
select opponent from table_16864968_9 where location = "prudential center"
What is the most common nationality of people?
create table people (nationality varchar, PRIMARY KEY (nationality))
select nationality from people group by nationality order by count(*) desc limit 1
What records are hit where the opponent is Aylesbury United?
create table table_1233808_2 (record varchar, opponent varchar, PRIMARY KEY (record))
select record from table_1233808_2 where opponent = "aylesbury united"
What are the comments when the implementation is software running on central processor module?
create table table_1206114_2 (comments varchar, implementation varchar, PRIMARY KEY (comments))
select comments from table_1206114_2 where implementation = "software running on central processor module"
What is the round of 16 result for Jiske Griffioen Esther Vergeer?
create table table_18602462_22 (round_of_16 varchar, athlete varchar, PRIMARY KEY (round_of_16))
select round_of_16 from table_18602462_22 where athlete = "jiske griffioen esther vergeer"
What are the phone and email for customer Harold?
create table customers (customer_phone varchar, customer_email_address varchar, customer_name varchar, PRIMARY KEY (customer_phone))
select customer_phone, customer_email_address from customers where customer_name = "harold"
What is the fire control for the sporter target
create table table_12834315_2 (fire_control varchar, name varchar, PRIMARY KEY (fire_control))
select fire_control from table_12834315_2 where name = "sporter target"
Name the air date for uk17
create table table_19897294_5 (original_air_date varchar, no_overall varchar, PRIMARY KEY (original_air_date))
select original_air_date from table_19897294_5 where no_overall = "uk17"
What is the molecular target listed under the compounded name of hemiasterlin (e7974)
create table table_12715053_1 (molecular_target varchar, compound_name varchar, PRIMARY KEY (molecular_target))
select molecular_target from table_12715053_1 where compound_name = "hemiasterlin (e7974)"
What is the smallest week 3 score?
create table table_28946565_2 (week_3 integer, PRIMARY KEY (week_3))
select min(week_3) from table_28946565_2
Who is the last/current driver(s) 3 november 2013 when first driver(s) is marlon stöckinger , kotaro sakurai ( 2011 )?
create table table_27279050_3 (last_current_driver_s__3_november_2013 varchar, first_driver_s_ varchar, PRIMARY KEY (last_current_driver_s__3_november_2013))
select last_current_driver_s__3_november_2013 from table_27279050_3 where first_driver_s_ = "marlon stöckinger , kotaro sakurai ( 2011 )"
Who did the team play against when a record of 3-1, #16 was achieved?
create table table_21063459_1 (opponent varchar, record varchar, PRIMARY KEY (opponent))
select opponent from table_21063459_1 where record = "3-1, #16"
What team(s) had an outgoing manager of joão alves?
create table table_17933600_2 (team varchar, outgoing_manage varchar, PRIMARY KEY (team))
select team from table_17933600_2 where outgoing_manage = "joão alves"
What is the status for all the counties that have a poverty rate of 36.6%?
create table table_22815568_3 (status varchar, poverty_rate varchar, PRIMARY KEY (status))
select status from table_22815568_3 where poverty_rate = "36.6%"
Brett kimmorley, who was chosen for the clive churchill medal belonged to what team?
create table table_11236195_5 (winningteam varchar, clive_churchill_medal varchar, PRIMARY KEY (winningteam))
select winningteam from table_11236195_5 where clive_churchill_medal = "brett kimmorley"
Name the equipment for bike number being 3
create table table_16941304_4 (equipment varchar, bike_no varchar, PRIMARY KEY (equipment))
select equipment from table_16941304_4 where bike_no = 3
What are all ages for Maghreb is Maarifiense?
create table table_22860_1 (age__before_ varchar, maghreb varchar, PRIMARY KEY (age__before_))
select age__before_ from table_22860_1 where maghreb = "maarifiense"
How many actors are there?
create table actor (id varchar, PRIMARY KEY (id))
select count(*) from actor
If the median income is $57,407, what is the per capita income?
create table table_1840495_2 (per_capita_income varchar, median_house__hold_income varchar, PRIMARY KEY (per_capita_income))
select per_capita_income from table_1840495_2 where median_house__hold_income = "$57,407"
What is the name of the person whose date of death is 01-04-1954?
create table table_11585313_1 (name varchar, date_of_death† varchar, PRIMARY KEY (name))
select name from table_11585313_1 where date_of_death† = "01-04-1954"
What nominees had a net vote of 34.46%?
create table table_15162479_8 (nominee varchar, net_vote varchar, PRIMARY KEY (nominee))
select nominee from table_15162479_8 where net_vote = "34.46%"
What are the degrees conferred in "San Francisco State University" in 2001.
create table degrees (id varchar, PRIMARY KEY (id)); create table campuses (id varchar, PRIMARY KEY (id))
select degrees from campuses as t1 join degrees as t2 on t1.id = t2.campus where t1.campus = "san francisco state university" and t2.year = 2001
Where is Interlake located?
create table table_13759592_2 (location varchar, institution varchar, PRIMARY KEY (location))
select location from table_13759592_2 where institution = "interlake"
How many % same-sex marriages are marriages between men for 923?
create table table_19614212_1 (_percentage_same_sex_marriages varchar, marriages_between_men varchar, PRIMARY KEY (_percentage_same_sex_marriages))
select count(_percentage_same_sex_marriages) from table_19614212_1 where marriages_between_men = 923
Show the hometowns shared by at least two teachers.
create table teacher (hometown varchar, PRIMARY KEY (hometown))
select hometown from teacher group by hometown having count(*) >= 2
What is the run time for the episode with 7.9 million viewers?
create table table_2108684_1 (run_time varchar, viewers__in_millions_ varchar, PRIMARY KEY (run_time))
select run_time from table_2108684_1 where viewers__in_millions_ = "7.9"
Find the names of the channels that are broadcast in the morning.
create table channel (name varchar, channel_id varchar, PRIMARY KEY (name)); create table broadcast (channel_id varchar, time_of_day varchar, PRIMARY KEY (channel_id))
select t1.name from channel as t1 join broadcast as t2 on t1.channel_id = t2.channel_id where t2.time_of_day = 'morning'
Name the first broadcast for tina malone and joe wilkinson
create table table_23292220_17 (first_broadcast varchar, seans_team varchar, PRIMARY KEY (first_broadcast))
select first_broadcast from table_23292220_17 where seans_team = "tina malone and joe wilkinson"
Return all detention summaries.
create table detention (detention_summary varchar, PRIMARY KEY (detention_summary))
select detention_summary from detention
If the incoming head coach is Carlos Azenha, what is the date of vacancy?
create table table_27133147_3 (date_of_vacancy varchar, incoming_head_coach varchar, PRIMARY KEY (date_of_vacancy))
select date_of_vacancy from table_27133147_3 where incoming_head_coach = "carlos azenha"
What is the Pinyin transcription for "Alas for the Days Gone By"?
create table table_1805919_1 (transcription__based_on_pinyin_ varchar, english_translation varchar, PRIMARY KEY (transcription__based_on_pinyin_))
select transcription__based_on_pinyin_ from table_1805919_1 where english_translation = "alas for the days gone by"
what's the dbeingtribution with rsbac being unknown
create table table_1357052_6 (distribution varchar, rsbac varchar, PRIMARY KEY (distribution))
select distribution from table_1357052_6 where rsbac = "unknown"
How many settlements are named ђурђин (croatian: đurđin)?
create table table_2562572_26 (settlement varchar, cyrillic_name_other_names varchar, PRIMARY KEY (settlement))
select count(settlement) from table_2562572_26 where cyrillic_name_other_names = "ђурђин (croatian: đurđin)"
Name who wrote the episode by lawrence trilling
create table table_27504682_1 (written_by varchar, directed_by varchar, PRIMARY KEY (written_by))
select written_by from table_27504682_1 where directed_by = "lawrence trilling"
When were 668 units produced?
create table table_1245350_1 (production_period varchar, units_produced varchar, PRIMARY KEY (production_period))
select production_period from table_1245350_1 where units_produced = 668
How many times did Silas leave as a team manager?
create table table_29414946_3 (manner_of_departure varchar, outgoing_manager varchar, PRIMARY KEY (manner_of_departure))
select count(manner_of_departure) from table_29414946_3 where outgoing_manager = "silas"
What is saturday day seven when thursday day five is ሐሙስ hamus?
create table table_1277350_7 (saturday_day_seven varchar, thursday_day_five varchar, PRIMARY KEY (saturday_day_seven))
select saturday_day_seven from table_1277350_7 where thursday_day_five = "ሐሙስ hamus"
How many season 3 appearances by the character played by Stefan Van Ray?
create table table_26240046_1 (season_3 integer, played_by varchar, PRIMARY KEY (season_3))
select min(season_3) from table_26240046_1 where played_by = "stefan van ray"
List the names of technicians who have not been assigned to repair machines.
create table technician (name varchar, technician_id varchar, PRIMARY KEY (name)); create table repair_assignment (name varchar, technician_id varchar, PRIMARY KEY (name))
select name from technician where not technician_id in (select technician_id from repair_assignment)
List the id of students who registered course statistics in the order of registration date.
create table student_course_registrations (student_id varchar, course_id varchar, registration_date varchar, PRIMARY KEY (student_id)); create table courses (course_id varchar, course_name varchar, PRIMARY KEY (course_id))
select t2.student_id from courses as t1 join student_course_registrations as t2 on t1.course_id = t2.course_id where t1.course_name = "statistics" order by t2.registration_date
Find the names and publication dates of all catalogs that have catalog level number greater than 5.
create table catalogs (catalog_name varchar, date_of_publication varchar, catalog_id varchar, PRIMARY KEY (catalog_name)); create table catalog_structure (catalog_id varchar, PRIMARY KEY (catalog_id))
select t1.catalog_name, t1.date_of_publication from catalogs as t1 join catalog_structure as t2 on t1.catalog_id = t2.catalog_id where catalog_level_number > 5
What is the document type code with most number of documents?
create table documents (document_type_code varchar, PRIMARY KEY (document_type_code))
select document_type_code from documents group by document_type_code order by count(*) desc limit 1
which country did participated in the most number of Tournament competitions?
create table competition (country varchar, competition_type varchar, PRIMARY KEY (country))
select country from competition where competition_type = 'tournament' group by country order by count(*) desc limit 1
How many different titles are there of episodes that have been seen by 7.84 million people in the US/
create table table_23242933_2 (title varchar, us_viewers__millions_ varchar, PRIMARY KEY (title))
select count(title) from table_23242933_2 where us_viewers__millions_ = "7.84"
When 11:40:26 is the time (utc) what is the depth?
create table table_24192190_1 (depth varchar, time__utc_ varchar, PRIMARY KEY (depth))
select depth from table_24192190_1 where time__utc_ = "11:40:26"
What conference does Gonzaga University play in?
create table table_16078390_2 (primary_conference varchar, institution varchar, PRIMARY KEY (primary_conference))
select primary_conference from table_16078390_2 where institution = "gonzaga university"
What status of school is informatics international college?
create table table_2589963_1 (status varchar, institution varchar, PRIMARY KEY (status))
select status from table_2589963_1 where institution = "informatics international college"