answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT T1.staff_name, T3.first_name, T3.last_name FROM Staff AS T1 JOIN Engineer_Visits AS T2 ON T1.staff_id = T2.contact_staff_id JOIN Maintenance_Engineers AS T3 ON T2.engineer_id = T3.engineer_id
Which staff have contacted which engineers? List the staff name and the engineer first name and last name.
CREATE TABLE Engineer_Visits (contact_staff_id VARCHAR, engineer_id VARCHAR); CREATE TABLE Staff (staff_name VARCHAR, staff_id VARCHAR); CREATE TABLE Maintenance_Engineers (first_name VARCHAR, last_name VARCHAR, engineer_id VARCHAR)
SELECT torque FROM table_20007413_6 WHERE applications = 346
What are the torque characteristics of the model with 346 applications?
CREATE TABLE table_20007413_6 (torque VARCHAR, applications VARCHAR)
SELECT position FROM table_name_87 WHERE pick__number = 12
What position does pick number 12 play?
CREATE TABLE table_name_87 (position VARCHAR, pick__number VARCHAR)
SELECT date FROM table_name_81 WHERE home_team = "wimbledon"
On what date was Wimbledon the home team?
CREATE TABLE table_name_81 (date VARCHAR, home_team VARCHAR)
SELECT points_for FROM table_name_64 WHERE club = "tycroes rfc"
What is Points For, when Club is "Tycroes RFC"?
CREATE TABLE table_name_64 (points_for VARCHAR, club VARCHAR)
SELECT MIN(against) FROM table_name_29 WHERE points < 9 AND lost > 6
What is the lowest against value with less than 9 points and more than 6 lost?
CREATE TABLE table_name_29 (against INTEGER, points VARCHAR, lost VARCHAR)
SELECT MAX(f_laps) FROM table_25561038_1
List the highest number of laps.
CREATE TABLE table_25561038_1 (f_laps INTEGER)
SELECT SUM(attendance) FROM table_name_34 WHERE opponent = "rockies" AND record = "32-30"
How much Attendance has an Opponent of rockies, and a Record of 32-30?
CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
SELECT loss FROM table_name_54 WHERE record = "48-37"
Name the loss for 48-37
CREATE TABLE table_name_54 (loss VARCHAR, record VARCHAR)
SELECT COUNT(*) FROM head WHERE age > 56
How many heads of the departments are older than 56 ?
CREATE TABLE head (age INTEGER)
SELECT house FROM table_name_24 WHERE what = "ano" AND three = "tulo"
What is "house", when "what" is "ano", and when "three" is "tulo"?
CREATE TABLE table_name_24 (house VARCHAR, what VARCHAR, three VARCHAR)
SELECT MIN(production_code) FROM table_12226390_3 WHERE written_by = "Jay Sommers & Dick Chevillat and Al Schwartz"
what's the minimum production code written by jay sommers & dick chevillat and al schwartz
CREATE TABLE table_12226390_3 (production_code INTEGER, written_by VARCHAR)
SELECT year FROM table_name_24 WHERE third = "kati klinzing"
In which year did Kati Klinzing finish 3rd?
CREATE TABLE table_name_24 (year VARCHAR, third VARCHAR)
SELECT youth_classification FROM table_23157997_13 WHERE mountains_classification = "Kenneth Hanson" AND winner = "Lucas Sebastian Haedo"
Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner?
CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR)
SELECT MIN(founded) FROM table_name_9 WHERE nickname = "cardinals"
What school has the nickname of Cardinals?
CREATE TABLE table_name_9 (founded INTEGER, nickname VARCHAR)
SELECT Destruction_Authorised_by_Employee_ID, COUNT(*) FROM Documents_to_be_destroyed GROUP BY Destruction_Authorised_by_Employee_ID
Show the id of each employee and the number of document destruction authorised by that employee.
CREATE TABLE Documents_to_be_destroyed (Destruction_Authorised_by_Employee_ID VARCHAR)
SELECT assembled FROM table_name_30 WHERE elected = "1562/63"
What Assembled has Elected of 1562/63?
CREATE TABLE table_name_30 (assembled VARCHAR, elected VARCHAR)
SELECT COUNT(poles) FROM table_name_92 WHERE bike = "honda rc212v" AND podiums < 0
How many Poles have a Bike of honda rc212v, and Podiums smaller than 0?
CREATE TABLE table_name_92 (poles VARCHAR, bike VARCHAR, podiums VARCHAR)
SELECT leading_scorer FROM table_name_98 WHERE score = "80–112"
What Leading scorer had a Score of 80–112?
CREATE TABLE table_name_98 (leading_scorer VARCHAR, score VARCHAR)
SELECT wheel_arrangement FROM table_name_95 WHERE number = "6 or 4"
What is the wheel arrangement of the locomotive with number 6 or 4?
CREATE TABLE table_name_95 (wheel_arrangement VARCHAR, number VARCHAR)
SELECT time FROM table_name_32 WHERE composer_s_ = "kyriakos papadopoulos"
What is Time, when Composer(s) is "Kyriakos Papadopoulos"?
CREATE TABLE table_name_32 (time VARCHAR, composer_s_ VARCHAR)
SELECT title FROM table_2409041_9 WHERE written_by = "Gary M. Goodrich"
What was the name of the epiode written by Gary M. Goodrich?
CREATE TABLE table_2409041_9 (title VARCHAR, written_by VARCHAR)
SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0
What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0?
CREATE TABLE table_name_90 (cultural_and_educational_panel INTEGER, industrial_and_commercial_panel VARCHAR, agricultural_panel VARCHAR)
SELECT just_ratio FROM table_18955077_1 WHERE just__cents_ = "84.46"
If the just cents is 84.46, what is the just ratio?
CREATE TABLE table_18955077_1 (just_ratio VARCHAR, just__cents_ VARCHAR)
SELECT 2011 FROM table_name_64 WHERE 2010 = "olympic games"
Name the 2011 for 2010 of olympic games
CREATE TABLE table_name_64 (Id VARCHAR)
SELECT years_for_grizzlies FROM table_name_71 WHERE school_club_team = "ucla"
What are the years when the grizzles had a player who attended UCLA?
CREATE TABLE table_name_71 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)
SELECT MAX(points) FROM table_name_86 WHERE opponent = "@ pittsburgh penguins"
Which Points have an Opponent of @ pittsburgh penguins?
CREATE TABLE table_name_86 (points INTEGER, opponent VARCHAR)
SELECT T1.Actual_Delivery_Date FROM Customer_Orders AS T1 JOIN ORDER_ITEMS AS T2 ON T1.Order_ID = T2.Order_ID WHERE T2.Order_Quantity = 1
What are the actual delivery dates of orders with quantity 1?
CREATE TABLE Customer_Orders (Actual_Delivery_Date VARCHAR, Order_ID VARCHAR); CREATE TABLE ORDER_ITEMS (Order_ID VARCHAR, Order_Quantity VARCHAR)
SELECT MAX(season) FROM table_29434211_1 WHERE podiums = 2
What is the maximum season that has exactly 2 podiums?
CREATE TABLE table_29434211_1 (season INTEGER, podiums VARCHAR)
SELECT lower_index_kcal__nm_3 FROM table_1868929_1 WHERE upper_index_mj__nm_3 = "61.32"
Name the lower index kcal/ nm3 for 61.32
CREATE TABLE table_1868929_1 (lower_index_kcal__nm_3 VARCHAR, upper_index_mj__nm_3 VARCHAR)
SELECT name FROM table_name_9 WHERE opened__closing_date_if_defunct_ = "1995" AND length = "miles (m)" AND state = "illinois"
What is the Name with an Opened (closing date if defunct) of 1995 and has a Length of miles (m), in Illinois?
CREATE TABLE table_name_9 (name VARCHAR, state VARCHAR, opened__closing_date_if_defunct_ VARCHAR, length VARCHAR)
SELECT opponent FROM table_name_54 WHERE type_of_game = "euro '84 qualifying" AND city = "split"
What opponent has euro '84 qualifying as the type and split as the city?
CREATE TABLE table_name_54 (opponent VARCHAR, type_of_game VARCHAR, city VARCHAR)
SELECT MAX(loss) FROM table_1672976_2 WHERE institution = "Michigan State Spartans"
How many losses did the Michigan State Spartans have?
CREATE TABLE table_1672976_2 (loss INTEGER, institution VARCHAR)
SELECT city FROM table_name_42 WHERE name = "estonian university of life sciences"
In what city is the Estonian University of Life Sciences located?
CREATE TABLE table_name_42 (city VARCHAR, name VARCHAR)
SELECT height_in_ft FROM table_name_70 WHERE no_s_ = "24"
What is the height in feet of player number 24?
CREATE TABLE table_name_70 (height_in_ft VARCHAR, no_s_ VARCHAR)
SELECT first_elected FROM table_name_56 WHERE district = "south carolina 1"
When was the incumbent from the south carolina 1 district first elected?
CREATE TABLE table_name_56 (first_elected VARCHAR, district VARCHAR)
SELECT player_name FROM table_name_23 WHERE matches = "51"
Name the player name with matches of 51
CREATE TABLE table_name_23 (player_name VARCHAR, matches VARCHAR)
SELECT COUNT(year) FROM table_name_87 WHERE weight_class = "lightweight" AND date = "february 28, 2009"
How many years were lightweight class on february 28, 2009?
CREATE TABLE table_name_87 (year VARCHAR, weight_class VARCHAR, date VARCHAR)
SELECT title FROM table_28760804_1 WHERE directed_by = "Alex Reid"
What is the title of the episode Alex Reid directed?
CREATE TABLE table_28760804_1 (title VARCHAR, directed_by VARCHAR)
SELECT COUNT(highest) FROM table_14003108_1 WHERE team = "Forfar Athletic"
how many highest with team being forfar athletic
CREATE TABLE table_14003108_1 (highest VARCHAR, team VARCHAR)
SELECT song FROM table_name_76 WHERE status = "nominated" AND name = "tan dun"
Which song named Tan Dun was nominated?
CREATE TABLE table_name_76 (song VARCHAR, status VARCHAR, name VARCHAR)
SELECT MAX(wins) FROM table_name_82 WHERE cuts_made = 1 AND top_25 < 1 AND events < 2
What is the highest number of wins a tournament with 1 cuts made, a top-25 less than 1, and less than 2 events has?
CREATE TABLE table_name_82 (wins INTEGER, events VARCHAR, cuts_made VARCHAR, top_25 VARCHAR)
SELECT 2011 FROM table_name_56 WHERE 2010 = "8–4"
What is the 2011 when the 2010 is 8–4?
CREATE TABLE table_name_56 (Id VARCHAR)
SELECT MIN(pick__number) FROM table_name_44 WHERE nationality = "canada" AND team_from = "sudbury wolves"
Which Pick # has a Nationality of canada, and a Team from of sudbury wolves?
CREATE TABLE table_name_44 (pick__number INTEGER, nationality VARCHAR, team_from VARCHAR)
SELECT iata FROM table_name_88 WHERE airport = "san francisco airport"
What is the IATA for San Francisco airport?
CREATE TABLE table_name_88 (iata VARCHAR, airport VARCHAR)
SELECT average FROM table_name_63 WHERE player = "matthew elliott (vic)"
What is the average of player Matthew Elliott (vic)?
CREATE TABLE table_name_63 (average VARCHAR, player VARCHAR)
SELECT us_viewers__million_ FROM table_25668962_1 WHERE production_code = "1ARC12"
How many million U.S. viewers watched the epiode with a production code of 1arc12?
CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT competition FROM table_name_17 WHERE opponents = "motherwell"
Name the competition for motherwell opponents
CREATE TABLE table_name_17 (competition VARCHAR, opponents VARCHAR)
SELECT location_attendance FROM table_name_9 WHERE game = "4"
What Location Attendance has a Game of 4?
CREATE TABLE table_name_9 (location_attendance VARCHAR, game VARCHAR)
SELECT Name FROM conductor ORDER BY Year_of_Work DESC
List names of conductors in descending order of years of work.
CREATE TABLE conductor (Name VARCHAR, Year_of_Work VARCHAR)
SELECT class FROM table_name_16 WHERE quantity_made = "1" AND type = "0-6-0t"
What is the class of the locomotive with a quantity made of 1 and a 0-6-0t type?
CREATE TABLE table_name_16 (class VARCHAR, quantity_made VARCHAR, type VARCHAR)
SELECT unit FROM table_11793221_2 WHERE commander = "Lieutenant Colonel Francis Hepburn"
Which units are commanded by Lieutenant Colonel Francis Hepburn?
CREATE TABLE table_11793221_2 (unit VARCHAR, commander VARCHAR)
SELECT result FROM table_name_34 WHERE city = "halifax"
What was the result of the game in halifax?
CREATE TABLE table_name_34 (result VARCHAR, city VARCHAR)
SELECT mate FROM table_name_48 WHERE tv_seasons > 1 AND last_appearance = "bully, bully, bully (3x13)" AND animal_name = "hollow/holly"
What is the mate for Last Appearance of bully, bully, bully (3x13) for the animal named hollow/holly later than season 1?
CREATE TABLE table_name_48 (mate VARCHAR, animal_name VARCHAR, tv_seasons VARCHAR, last_appearance VARCHAR)
SELECT player FROM table_name_74 WHERE caps > 12 AND club_province = "toulouse"
Which player has a cap larger than 12 and Clubs of Toulouse?
CREATE TABLE table_name_74 (player VARCHAR, caps VARCHAR, club_province VARCHAR)
SELECT hometown FROM table_1825751_14 WHERE pageant = "Miss Global Teen"
Where is the miss global teen?
CREATE TABLE table_1825751_14 (hometown VARCHAR, pageant VARCHAR)
SELECT MIN(share) FROM table_name_8 WHERE air_date = "march 21, 2008" AND viewers > 5.15
What is the lowest share with an air date of March 21, 2008 and had viewers larger than 5.15?
CREATE TABLE table_name_8 (share INTEGER, air_date VARCHAR, viewers VARCHAR)
SELECT champion FROM table_name_96 WHERE runner_up = "florian mayer" AND score = "7–6(6), 4–6, 7–5"
Which Champion has a Runner-up of florian mayer, and a Score of 7–6(6), 4–6, 7–5?
CREATE TABLE table_name_96 (champion VARCHAR, runner_up VARCHAR, score VARCHAR)
SELECT date FROM table_name_78 WHERE winner = "scott hoch (2)"
When did Scott Hoch (2) win?
CREATE TABLE table_name_78 (date VARCHAR, winner VARCHAR)
SELECT AVG(played) FROM table_name_83 WHERE drawn < 1 AND points > 4
Which average Played has a Drawn smaller than 1, and Points larger than 4?
CREATE TABLE table_name_83 (played INTEGER, drawn VARCHAR, points VARCHAR)
SELECT COUNT(leading_scorer) FROM table_11964047_8 WHERE date = "February 21"
What is the number of leading scorer of february 21?
CREATE TABLE table_11964047_8 (leading_scorer VARCHAR, date VARCHAR)
SELECT new_zealand_kennel_club_toy_group FROM table_name_26 WHERE australian_national_kennel_council_toy_dogs_group = "papillon"
What is the New Zealand Kennel Club Toy Group with papillon as the Australian National Kennel Council Toy Dogs Group breed?
CREATE TABLE table_name_26 (new_zealand_kennel_club_toy_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)
SELECT outcome FROM table_name_94 WHERE partner = "jürgen melzer" AND date = "february 7, 2010"
What's the Outcome for the Partner of Jürgen Melzer on the Date of February 7, 2010?
CREATE TABLE table_name_94 (outcome VARCHAR, partner VARCHAR, date VARCHAR)
SELECT director FROM table_15277629_1 WHERE original_title = "Pecado Mortal"
Who was the director of Pecado Mortal
CREATE TABLE table_15277629_1 (director VARCHAR, original_title VARCHAR)
SELECT kanji FROM table_name_84 WHERE name = "ayanami dd-45"
What is the Kanji for the Ayanami dd-45?
CREATE TABLE table_name_84 (kanji VARCHAR, name VARCHAR)
SELECT billing_state, COUNT(*), SUM(total) FROM invoices WHERE billing_state = "CA"
List the number of invoices and the invoice total from California.
CREATE TABLE invoices (billing_state VARCHAR, total INTEGER)
SELECT COUNT(*) FROM architect WHERE gender = 'female'
How many architects are female?
CREATE TABLE architect (gender VARCHAR)
SELECT team FROM table_name_18 WHERE make = "dodge" AND year > 2008
what is the team when the make is dodge and the year is after 2008?
CREATE TABLE table_name_18 (team VARCHAR, make VARCHAR, year VARCHAR)
SELECT enrollment FROM table_262481_2 WHERE left = "2012" AND nickname = "Panthers"
What is the enrollment for the institution nicknamed the panthers that left in 2012?
CREATE TABLE table_262481_2 (enrollment VARCHAR, left VARCHAR, nickname VARCHAR)
SELECT record FROM table_name_42 WHERE game = 67
What's the record of game 67?
CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR)
SELECT rank FROM table_name_44 WHERE actor_actress = "aaron pedersen"
What rank did actor Aaron Pedersen's character have?
CREATE TABLE table_name_44 (rank VARCHAR, actor_actress VARCHAR)
SELECT shuttle_run__sec_ FROM table_name_36 WHERE grade = "c"
Tell me the shuttle run with grade c
CREATE TABLE table_name_36 (shuttle_run__sec_ VARCHAR, grade VARCHAR)
SELECT fsb FROM table_11602313_4 WHERE part_number_s_ = "LF80537GF0411M"
What is the FSB of the model with part number lf80537gf0411m?
CREATE TABLE table_11602313_4 (fsb VARCHAR, part_number_s_ VARCHAR)
SELECT womens_singles FROM table_28138035_15 WHERE mens_singles = "Ma Lin"
Who won Womens Singles in the year that Ma Lin won Mens Singles?
CREATE TABLE table_28138035_15 (womens_singles VARCHAR, mens_singles VARCHAR)
SELECT result FROM table_1859855_2 WHERE candidate = "Stacy Schneider"
When stacy schneider is the candidate what are the results?
CREATE TABLE table_1859855_2 (result VARCHAR, candidate VARCHAR)
SELECT player FROM table_name_29 WHERE to_par = "–1" AND year_s__won = "1952"
Which Player has a To par of –1, and a Year(s) won of 1952?
CREATE TABLE table_name_29 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
SELECT to_par FROM table_name_89 WHERE winner = "gary player"
What did winner Gary Player par?
CREATE TABLE table_name_89 (to_par VARCHAR, winner VARCHAR)
SELECT visitor FROM table_name_6 WHERE venue = "axa sports center" AND round = 20
Who is the visitor at the axa sports center in round 20?
CREATE TABLE table_name_6 (visitor VARCHAR, venue VARCHAR, round VARCHAR)
SELECT week FROM table_name_3 WHERE date = "december 13"
What week of the season was December 13?
CREATE TABLE table_name_3 (week VARCHAR, date VARCHAR)
SELECT up_down FROM table_1161065_28 WHERE hosted = 7
What is the up/down at the venue that hosted 7 games?
CREATE TABLE table_1161065_28 (up_down VARCHAR, hosted VARCHAR)
SELECT catalog FROM table_name_89 WHERE date = "december 19, 2001"
Which catalog was published on December 19, 2001?
CREATE TABLE table_name_89 (catalog VARCHAR, date VARCHAR)
SELECT home_record FROM table_22993636_2 WHERE percentage = ".168"
What's the home record of the team with percentage of .168?
CREATE TABLE table_22993636_2 (home_record VARCHAR, percentage VARCHAR)
SELECT COUNT(DISTINCT StuID) FROM ENROLLED_IN WHERE Grade = "B"
Find the number of students that have at least one grade "B".
CREATE TABLE ENROLLED_IN (StuID VARCHAR, Grade VARCHAR)
SELECT visitor FROM table_name_22 WHERE home = "seattle"
Who was the visiting team when the home team was Seattle?
CREATE TABLE table_name_22 (visitor VARCHAR, home VARCHAR)
SELECT musical_guest__song_performed_ FROM table_name_2 WHERE air_date = "13 july 2008"
What is the Musical Guest (Song performed) for the episode aired on 13 july 2008?
CREATE TABLE table_name_2 (musical_guest__song_performed_ VARCHAR, air_date VARCHAR)
SELECT township FROM table_18600760_15 WHERE land___sqmi__ = "35.766"
Which township is 35.766 sqmi?
CREATE TABLE table_18600760_15 (township VARCHAR, land___sqmi__ VARCHAR)
SELECT condition FROM table_20592988_1 WHERE platelet_count = "Unaffected" AND prothrombin_time = "Unaffected"
In what conditions are both the platelet count and prothrombin time unaffected?
CREATE TABLE table_20592988_1 (condition VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR)
SELECT team FROM table_name_9 WHERE record = "50–28"
What team has a Record of 50–28?
CREATE TABLE table_name_9 (team VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_10 WHERE game = 33
Which Opponent has a Game of 33?
CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR)
SELECT engine FROM table_name_8 WHERE start = "3" AND year = 2007
What is the Engine with 3 as the start in the year of 2007?
CREATE TABLE table_name_8 (engine VARCHAR, start VARCHAR, year VARCHAR)
SELECT location FROM table_name_5 WHERE notes = "eisstadion" AND date = "1930-01-11"
Which Location has Notes of eisstadion, and a Date of 1930-01-11?
CREATE TABLE table_name_5 (location VARCHAR, notes VARCHAR, date VARCHAR)
SELECT nihon_shiki FROM table_26263954_1 WHERE english = "tea"
when english is tea how many nihon-shiki
CREATE TABLE table_26263954_1 (nihon_shiki VARCHAR, english VARCHAR)
SELECT t1.first_name FROM students AS t1 JOIN addresses AS t2 ON t1.permanent_address_id = t2.address_id WHERE t2.country = 'haiti' OR t1.cell_mobile_number = '09700166582'
Find the first name of the students who permanently live in the country Haiti or have the cell phone number 09700166582 .
CREATE TABLE students (first_name VARCHAR, permanent_address_id VARCHAR, cell_mobile_number VARCHAR); CREATE TABLE addresses (address_id VARCHAR, country VARCHAR)
SELECT SUM(sequence_length__aa_) FROM table_name_67 WHERE common_name = "purple sea urchin" AND divergence_from_human_lineage__mya_ < 742.9
What is the sequence length (aa) of the protein with the common name Purple Sea Urchin and a divergence from human lineage less than 742.9?
CREATE TABLE table_name_67 (sequence_length__aa_ INTEGER, common_name VARCHAR, divergence_from_human_lineage__mya_ VARCHAR)
SELECT party FROM table_name_47 WHERE elected = 2003 AND incumbent = "mark obenshain"
Which party was elected in 2003 with incumbent Mark Obenshain?
CREATE TABLE table_name_47 (party VARCHAR, elected VARCHAR, incumbent VARCHAR)
SELECT MAX(year) FROM table_12002388_1 WHERE reg_season = "1st, Southern"
What year did they finish 1st, southern?
CREATE TABLE table_12002388_1 (year INTEGER, reg_season VARCHAR)
SELECT challenge_leader FROM table_29535057_4 WHERE winner = "Boston College (88-76)"
Who were the challenge leaders of the games won by boston college (88-76)?
CREATE TABLE table_29535057_4 (challenge_leader VARCHAR, winner VARCHAR)
SELECT miss_maja_pilipinas FROM table_name_30 WHERE binibining_pilipinas_tourism = "not awarded" AND binibining_pilipinas_universe = "anjanette abayari"
What Miss Maja Pilipinas has a Binibining Pilipinas-Tourism of not awarded, and a Binibining Pilipinas-Universe of anjanette abayari?
CREATE TABLE table_name_30 (miss_maja_pilipinas VARCHAR, binibining_pilipinas_tourism VARCHAR, binibining_pilipinas_universe VARCHAR)
SELECT AVG(rank) FROM table_name_1 WHERE time = "1:00.61"
What is the rank of the team with a time of 1:00.61?
CREATE TABLE table_name_1 (rank INTEGER, time VARCHAR)
SELECT COUNT(round) FROM table_name_95 WHERE position = "c"
How many rounds have a position of C?
CREATE TABLE table_name_95 (round VARCHAR, position VARCHAR)