answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT MAX(poles) FROM table_name_81 WHERE starts > 18 AND winnings = "$125,102" AND year < 1992
What is the highest number of poles of the year before 1992 with more than 18 starts and winnings of $125,102?
CREATE TABLE table_name_81 (poles INTEGER, year VARCHAR, starts VARCHAR, winnings VARCHAR)
SELECT AVG(t3.age) 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 t1.clubname = "Hopkins Student Enterprises"
Find the average age of members of the club "Hopkins Student Enterprises".
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (age INTEGER, stuid VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)
SELECT 2012 AS _democracy_index FROM table_1604579_2 WHERE country = "Kyrgyzstan"
What type of government does Kyrgyzstan have?
CREATE TABLE table_1604579_2 (country VARCHAR)
SELECT MAX(2500 AS _3000ft) FROM table_1456056_1
Name the most of 2500-3000ft
CREATE TABLE table_1456056_1 (Id VARCHAR)
SELECT t1.email_address FROM customers AS t1 JOIN complaints AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_id ORDER BY COUNT(*) LIMIT 1
Find the emails of customers who has filed a complaints of the product with the most complaints.
CREATE TABLE customers (email_address VARCHAR, customer_id VARCHAR); CREATE TABLE complaints (customer_id VARCHAR)
SELECT MIN(swimsuit) FROM table_name_47 WHERE evening_gown > 8.794 AND state = "illinois"
What is the lowest swimsuit that has an evening gown bigger than 8.794 for illinois?
CREATE TABLE table_name_47 (swimsuit INTEGER, evening_gown VARCHAR, state VARCHAR)
SELECT player FROM table_name_31 WHERE place = "t2"
Which Player has a Place of t2?
CREATE TABLE table_name_31 (player VARCHAR, place VARCHAR)
SELECT opponent_number FROM table_name_93 WHERE attendance = "48,000"
Who was the opponent in the game that was attended by 48,000 people?
CREATE TABLE table_name_93 (opponent_number VARCHAR, attendance VARCHAR)
SELECT MIN(points) FROM table_name_9 WHERE place = "3rd" AND position > 8
Who had the smallest points in 3rd place but had a position greater than 8?
CREATE TABLE table_name_9 (points INTEGER, place VARCHAR, position VARCHAR)
SELECT record FROM table_name_72 WHERE game_site = "rich stadium"
What was the record after the game at Rich Stadium?
CREATE TABLE table_name_72 (record VARCHAR, game_site VARCHAR)
SELECT city___town FROM table_1984697_53 WHERE school = "Bloomington High school North"
Where is Bloomington High School North?
CREATE TABLE table_1984697_53 (city___town VARCHAR, school VARCHAR)
SELECT parallel_bars FROM table_18662026_10 WHERE floor = "14.200"
If the floor number is 14.200, what is the number for the parallel bars?
CREATE TABLE table_18662026_10 (parallel_bars VARCHAR, floor VARCHAR)
SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Jazz"
What is the average unit price of tracks that belong to Jazz genre?
CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)
SELECT airport FROM table_name_56 WHERE iata = "sea"
What Airport's IATA is SEA?
CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR)
SELECT MIN(total) FROM table_name_70 WHERE rank < 8 AND silver > 6 AND bronze = 20
What is the lowest total that has a rank less than 8, a silver greater than 6, and 20 as the bronze?
CREATE TABLE table_name_70 (total INTEGER, bronze VARCHAR, rank VARCHAR, silver VARCHAR)
SELECT T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District GROUP BY T1.County_id HAVING COUNT(*) >= 2
Show the names of counties that have at least two delegates.
CREATE TABLE election (District VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)
SELECT COUNT(rank) FROM table_24431264_18 WHERE withdrew_due_to = "right foot injury"
List the rank of the player that left the tournament due to right foot injury
CREATE TABLE table_24431264_18 (rank VARCHAR, withdrew_due_to VARCHAR)
SELECT season FROM table_name_81 WHERE pos = "3rd" AND pld = "36" AND div = "bbl"
What season had 3rd position, a 36 pld, and a bbl div?
CREATE TABLE table_name_81 (season VARCHAR, div VARCHAR, pos VARCHAR, pld VARCHAR)
SELECT country FROM table_name_16 WHERE olympics = "2008 summer olympics" AND name = "vadim devyatovskiy"
Which country in the 2008 summer olympics is vadim devyatovskiy from?
CREATE TABLE table_name_16 (country VARCHAR, olympics VARCHAR, name VARCHAR)
SELECT kit_manufacturer FROM table_name_63 WHERE shirt_sponsor = "walkers"
Who was the Kit manufacturer that was has shirts sponsored by Walkers?
CREATE TABLE table_name_63 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)
SELECT pick FROM table_name_76 WHERE college = "syracuse"
What is the Pick number of the Player from Syracuse?
CREATE TABLE table_name_76 (pick VARCHAR, college VARCHAR)
SELECT opponent FROM table_name_7 WHERE venue = "cua stadium"
Who is the opponent of the match at cua stadium?
CREATE TABLE table_name_7 (opponent VARCHAR, venue VARCHAR)
SELECT COUNT(losses) FROM table_name_37 WHERE wins = 12 AND goal_difference < -14
What is the total number of losses for entries that have 12 wins and a goal difference smaller than -14?
CREATE TABLE table_name_37 (losses VARCHAR, wins VARCHAR, goal_difference VARCHAR)
SELECT flno FROM Flight ORDER BY distance LIMIT 3
Show the flight number of flights with three lowest distances.
CREATE TABLE Flight (flno VARCHAR, distance VARCHAR)
SELECT country FROM table_29302711_13 WHERE name = "Mark Cox"
What country does the player named Mark Cox play for?
CREATE TABLE table_29302711_13 (country VARCHAR, name VARCHAR)
SELECT MIN(gold) FROM table_name_47 WHERE silver > 11 AND rank = "1" AND bronze < 7
What nation with Rank 1 won the fewest gold medals while winning more than 11 silver but fewer than 7 bronze medals?
CREATE TABLE table_name_47 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR)
SELECT winning_pitcher FROM table_12125069_2 WHERE attendance = 38109
Who is the winning pitcher when attendance is 38109?
CREATE TABLE table_12125069_2 (winning_pitcher VARCHAR, attendance VARCHAR)
SELECT callsign FROM table_name_52 WHERE area_served = "brisbane" AND freq_currently = "4rph"
What is the Callsign in Brisbane with a Freq currently of 4rph?
CREATE TABLE table_name_52 (callsign VARCHAR, area_served VARCHAR, freq_currently VARCHAR)
SELECT name FROM table_name_86 WHERE experience > 19 AND alma_mater = "eastern nazarene ('74)"
What person has the alma mater of Eastern Nazarene ('74), and greater than 19 experience?
CREATE TABLE table_name_86 (name VARCHAR, experience VARCHAR, alma_mater VARCHAR)
SELECT original_title FROM table_name_61 WHERE year__ceremony_ = "1992 (65th)"
What is the Original Title of the 1992 (65th) Film
CREATE TABLE table_name_61 (original_title VARCHAR, year__ceremony_ VARCHAR)
SELECT AVG(league) FROM table_name_20 WHERE name = "benito lorenzi" AND total < 143
What is average for Benito Lorenzi league when total is smaller than 143?
CREATE TABLE table_name_20 (league INTEGER, name VARCHAR, total VARCHAR)
SELECT segment_b FROM table_name_93 WHERE segment_d = "pasta"
For a segment D of pasta, what is the segment B?
CREATE TABLE table_name_93 (segment_b VARCHAR, segment_d VARCHAR)
SELECT Author FROM submission WHERE NOT Submission_ID IN (SELECT Submission_ID FROM acceptance)
List the authors who do not have submission to any workshop.
CREATE TABLE acceptance (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR)
SELECT song FROM table_2528382_1 WHERE additional_info = "Drunkard Groom"
Which song has Drunkard Groom listed as additional information?
CREATE TABLE table_2528382_1 (song VARCHAR, additional_info VARCHAR)
SELECT AVG(T1.Total) FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Height > 200
What is the average total score of body builders with height bigger than 200?
CREATE TABLE people (People_ID VARCHAR, Height INTEGER); CREATE TABLE body_builder (Total INTEGER, People_ID VARCHAR)
SELECT opponent FROM table_name_13 WHERE october < 20 AND points = 8
What opponent has october less than 20, and 8 for points?
CREATE TABLE table_name_13 (opponent VARCHAR, october VARCHAR, points VARCHAR)
SELECT name FROM Person ORDER BY age DESC
Find the names of all person sorted in the descending order using age.
CREATE TABLE Person (name VARCHAR, age VARCHAR)
SELECT COUNT(goals_for) FROM table_name_62 WHERE pct__percentage < 0.519 AND points > 65
How many Goals for were recorded when there was a percentage smaller than 0.519 and points greater than 65?
CREATE TABLE table_name_62 (goals_for VARCHAR, pct__percentage VARCHAR, points VARCHAR)
SELECT date FROM table_name_90 WHERE venue = "punt road oval"
What date did the VFL play Punt Road Oval?
CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)
SELECT incumbent FROM table_27487712_1 WHERE elected = 1978
Who was the incumbent for the election in 1978?
CREATE TABLE table_27487712_1 (incumbent VARCHAR, elected VARCHAR)
SELECT player FROM table_name_69 WHERE team = "st. louis bombers" AND position = "g"
Who plays g position for the st. louis bombers?
CREATE TABLE table_name_69 (player VARCHAR, team VARCHAR, position VARCHAR)
SELECT nfl_club FROM table_name_34 WHERE pick > 63 AND position = "cornerback"
What is the NFL club of the cornerback player with a pick greater than 63?
CREATE TABLE table_name_34 (nfl_club VARCHAR, pick VARCHAR, position VARCHAR)
SELECT Votes FROM election ORDER BY Votes DESC
List the votes of elections in descending order.
CREATE TABLE election (Votes VARCHAR)
SELECT SUM(goals) FROM table_name_36 WHERE name = "johan cruyff" AND rank < 3
How many goals were there for Johan Cruyff when the rank's less than 3?
CREATE TABLE table_name_36 (goals INTEGER, name VARCHAR, rank VARCHAR)
SELECT COUNT(DISTINCT loser_name) FROM matches
Find the number of distinct name of losers.
CREATE TABLE matches (loser_name VARCHAR)
SELECT home_city FROM driver WHERE age > 40 GROUP BY home_city HAVING COUNT(*) >= 2
Show home city where at least two drivers older than 40 are from.
CREATE TABLE driver (home_city VARCHAR, age INTEGER)
SELECT COUNT(year) FROM table_name_34 WHERE result = "champions" AND matches > 5
What is the number of Year with a Result of champions, and Matches larger than 5?
CREATE TABLE table_name_34 (year VARCHAR, result VARCHAR, matches VARCHAR)
SELECT 2001 FROM table_name_26 WHERE total > 1 AND 2009 = "8"
What is the year 2001 with a total larger than 1, and 2009 with 8?
CREATE TABLE table_name_26 (total VARCHAR)
SELECT parts_per_example FROM table_name_75 WHERE value_of_quantity = "2×10 −6"
What is the Parts-per example of 2×10 −6?
CREATE TABLE table_name_75 (parts_per_example VARCHAR, value_of_quantity VARCHAR)
SELECT T2.name FROM assignedto AS T1 JOIN scientists AS T2 ON T1.scientist = T2.ssn
Find the name of scientists who are assigned to some project.
CREATE TABLE assignedto (scientist VARCHAR); CREATE TABLE scientists (name VARCHAR, ssn VARCHAR)
SELECT MAX(first_elected) FROM table_2668347_17
Name the most first elected
CREATE TABLE table_2668347_17 (first_elected INTEGER)
SELECT AVG(losses) FROM table_name_88 WHERE goals_against > 51 AND wins > 14
What is the average loss with a goal higher than 51 and wins higher than 14?
CREATE TABLE table_name_88 (losses INTEGER, goals_against VARCHAR, wins VARCHAR)
SELECT amman FROM table_26173058_2 WHERE qadisiya = "2-1"
what is the place where the location is 2-1
CREATE TABLE table_26173058_2 (amman VARCHAR, qadisiya VARCHAR)
SELECT season FROM table_name_71 WHERE result = "6–9"
Which season has a Result of 6–9?
CREATE TABLE table_name_71 (season VARCHAR, result VARCHAR)
SELECT surface FROM table_name_23 WHERE score_in_final = "3-6, 6-3, 6-2"
What is Surface, when Score in Final is 3-6, 6-3, 6-2?
CREATE TABLE table_name_23 (surface VARCHAR, score_in_final VARCHAR)
SELECT home_team AS score FROM table_name_50 WHERE venue = "arden street oval"
What was the home teams score at Arden Street Oval?
CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR)
SELECT T1.name, T2.date_of_treatment FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id WHERE T1.breed_code = (SELECT breed_code FROM Dogs GROUP BY breed_code ORDER BY COUNT(*) LIMIT 1)
List the names of the dogs of the rarest breed and the treatment dates of them.
CREATE TABLE Dogs (name VARCHAR, dog_id VARCHAR, breed_code VARCHAR); CREATE TABLE Treatments (date_of_treatment VARCHAR, dog_id VARCHAR); CREATE TABLE Dogs (breed_code VARCHAR)
SELECT SUM(pick__number) FROM table_name_92 WHERE round < 1
Name the sum of pick # for round less than 1
CREATE TABLE table_name_92 (pick__number INTEGER, round INTEGER)
SELECT mission FROM table_name_18 WHERE location = "brasilia"
what is the mission when the location is brasilia?
CREATE TABLE table_name_18 (mission VARCHAR, location VARCHAR)
SELECT AVG(week) FROM table_name_67 WHERE date = "december 8, 1991"
Which Week has a Date of december 8, 1991?
CREATE TABLE table_name_67 (week INTEGER, date VARCHAR)
SELECT COUNT(list_entry_number) FROM table_name_95 WHERE location = "platting road, lydgate"
How many list entry numbers are located in Platting Road, Lydgate?
CREATE TABLE table_name_95 (list_entry_number VARCHAR, location VARCHAR)
SELECT SUM(season) FROM table_name_31 WHERE driver = "fernando alonso" AND percentage_of_possible_points = "64.12%" AND points < 109
How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109?
CREATE TABLE table_name_31 (season INTEGER, points VARCHAR, driver VARCHAR, percentage_of_possible_points VARCHAR)
SELECT year__ceremony_ FROM table_17025328_1 WHERE original_title = "Le Confessional"
Name the year for le confessional
CREATE TABLE table_17025328_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT written_by FROM table_16951593_1 WHERE us_viewers__millions_ = "7.56"
Name who wrote the episode that had 7.56 million viewers
CREATE TABLE table_16951593_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT MAX(model) FROM table_10528691_4 WHERE introduction = "May 1999"
What is the model number introduced May 1999?
CREATE TABLE table_10528691_4 (model INTEGER, introduction VARCHAR)
SELECT AVG(total) FROM table_name_33 WHERE player = "jim furyk"
Average total for jim furyk?
CREATE TABLE table_name_33 (total INTEGER, player VARCHAR)
SELECT displacement FROM table_21021796_1 WHERE torque = "N·m (lb·ft) @1500 rpm"
What is the displacement for torque of n·m (lb·ft) @1500 rpm?
CREATE TABLE table_21021796_1 (displacement VARCHAR, torque VARCHAR)
SELECT COUNT(conference_record) FROM table_20319085_2 WHERE season = 2006
How many different conference records are there for season 2006?
CREATE TABLE table_20319085_2 (conference_record VARCHAR, season VARCHAR)
SELECT AVG(game) FROM table_name_23 WHERE points < 84 AND march = 8
What is the average game for March 8 with less than 84 points?
CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, march VARCHAR)
SELECT overall_record FROM table_name_11 WHERE since_beginning_of_big_12 = "ou, 27-3"
What is the Overall Record when Since Beginning of Big 12 is ou, 27-3?
CREATE TABLE table_name_11 (overall_record VARCHAR, since_beginning_of_big_12 VARCHAR)
SELECT record FROM table_name_36 WHERE game = 9
What is game 9's record?
CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR)
SELECT directed_by FROM table_17355743_1 WHERE written_by = "Joe Sachs and David Zabel"
Name who directed the episode by joe sachs and david zabel
CREATE TABLE table_17355743_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT college FROM table_name_49 WHERE player = "dean caliguire"
What is the College with a Player that is dean caliguire?
CREATE TABLE table_name_49 (college VARCHAR, player VARCHAR)
SELECT nationality FROM table_2679061_4 WHERE player = "Bob Essensa"
What is the nationality of Bob Essensa?
CREATE TABLE table_2679061_4 (nationality VARCHAR, player VARCHAR)
SELECT COUNT(party) FROM table_2668243_22 WHERE district = "South Carolina 2"
how many "Party" are in district south carolina 2?
CREATE TABLE table_2668243_22 (party VARCHAR, district VARCHAR)
SELECT COUNT(population__2010_census_) FROM table_184334_2 WHERE s_barangay = 51
What is the population (2010 census) if s barangay is 51?
CREATE TABLE table_184334_2 (population__2010_census_ VARCHAR, s_barangay VARCHAR)
SELECT class FROM table_name_57 WHERE erp_w = 10 AND call_sign = "w273bl"
What is the class of the translator with 10 ERP W and a call sign of w273bl?
CREATE TABLE table_name_57 (class VARCHAR, erp_w VARCHAR, call_sign VARCHAR)
SELECT type FROM table_1507852_5 WHERE description = "Fires when the overflow state changes."
what's the type with description being fires when the overflow state changes.
CREATE TABLE table_1507852_5 (type VARCHAR, description VARCHAR)
SELECT COUNT(chinese__traditional_) FROM table_1893815_1 WHERE album_number = "6th"
Name the number of traditional chinese for album number 6th
CREATE TABLE table_1893815_1 (chinese__traditional_ VARCHAR, album_number VARCHAR)
SELECT COUNT(numer_of_jamaicans_granted_british_citizenship) FROM table_11214212_1 WHERE naturalisation_by_marriage = 1060
how many numer of jamaicans granted british citizenship with naturalisation by marriage being 1060
CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_marriage VARCHAR)
SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID
What are the names of gymnasts?
CREATE TABLE gymnast (Gymnast_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
SELECT driver FROM table_15491596_1 WHERE no = 44
Who drove car 44?
CREATE TABLE table_15491596_1 (driver VARCHAR, no VARCHAR)
SELECT date FROM table_name_39 WHERE source = "rasmussen reports"
When has a Source of rasmussen reports?
CREATE TABLE table_name_39 (date VARCHAR, source VARCHAR)
SELECT SUM(bronze) FROM table_name_63 WHERE gold = 1 AND silver < 3
What's the bronze medal count when the silver is less than 3 and the gold is 1?
CREATE TABLE table_name_63 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
SELECT l2_cache FROM table_name_10 WHERE clock_speed = "1.5 ghz"
Name the L2 Cache which has a Clock Speed of 1.5 ghz?
CREATE TABLE table_name_10 (l2_cache VARCHAR, clock_speed VARCHAR)
SELECT venue FROM table_name_58 WHERE notes = "1:23:07"
Which venue did the runner have a note of 1:23:07?
CREATE TABLE table_name_58 (venue VARCHAR, notes VARCHAR)
SELECT position FROM table_name_70 WHERE points = "test driver"
What is the position of the race with a point of test driver?
CREATE TABLE table_name_70 (position VARCHAR, points VARCHAR)
SELECT apt_number FROM Apartments ORDER BY room_count
Return all the apartment numbers sorted by the room count in ascending order.
CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)
SELECT COUNT(date) FROM table_21058823_1 WHERE record = "0-2-0"
How many games did they play when their record 0-2-0?
CREATE TABLE table_21058823_1 (date VARCHAR, record VARCHAR)
SELECT winner__number_of_titles_ FROM table_237757_3 WHERE runners_up = "Fort Lauderdale Strikers"
If the runner-up is the Fort Lauderdale Strikers, what is the winner (number of titles)?
CREATE TABLE table_237757_3 (winner__number_of_titles_ VARCHAR, runners_up VARCHAR)
SELECT place FROM table_name_7 WHERE score = 71 - 70 = 141
Which Place has a Score of 71-70=141?
CREATE TABLE table_name_7 (place VARCHAR, score VARCHAR)
SELECT Aircraft FROM aircraft WHERE NOT Aircraft_ID IN (SELECT Winning_Aircraft FROM MATCH)
List the names of aircrafts and that did not win any match.
CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR, Winning_Aircraft VARCHAR); CREATE TABLE MATCH (Aircraft VARCHAR, Aircraft_ID VARCHAR, Winning_Aircraft VARCHAR)
SELECT tournament FROM table_name_55 WHERE opponent_in_the_final = "raffaella reggi"
Which tournament has raffaella reggi listed as the opponent in the final?
CREATE TABLE table_name_55 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT host_team FROM table_name_4 WHERE date = "december 19"
Who was the host team on December 19?
CREATE TABLE table_name_4 (host_team VARCHAR, date VARCHAR)
SELECT SUM(_number_100) FROM table_name_33 WHERE season = "1990" AND against = "warwickshire"
Which sum of # 100 has a Season of 1990, and an Against of warwickshire?
CREATE TABLE table_name_33 (_number_100 INTEGER, season VARCHAR, against VARCHAR)
SELECT venue FROM table_name_35 WHERE date = "august 17, 1999"
Where did Ra'fat Ali play on August 17, 1999?
CREATE TABLE table_name_35 (venue VARCHAR, date VARCHAR)
SELECT T1.customer_name FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1
Show the name of the customer who has the most orders.
CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR)
SELECT MIN(total) FROM table_name_55 WHERE nation = "japan" AND silver > 2
Which Total has a Nation of japan, and a Silver larger than 2?
CREATE TABLE table_name_55 (total INTEGER, nation VARCHAR, silver VARCHAR)
SELECT format FROM table_name_56 WHERE calls = "wrko"
Tell me the format for calls of wrko
CREATE TABLE table_name_56 (format VARCHAR, calls VARCHAR)
SELECT MAX(crowd) FROM table_name_94 WHERE home_team = "north melbourne"
What is the largest crowd when north melbourne is the home side?
CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR)