question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
How many tries for does waunarlwydd rfc have ? | CREATE TABLE table_name_2 (tries_for VARCHAR, club VARCHAR) | SELECT tries_for FROM table_name_2 WHERE club = "waunarlwydd rfc" |
Which ship had a tonnage over 8,782? | CREATE TABLE table_name_8 (name_of_ship VARCHAR, tonnage INTEGER) | SELECT name_of_ship FROM table_name_8 WHERE tonnage > 8 OFFSET 782 |
what is the position of pick #53? | CREATE TABLE table_name_37 (position VARCHAR, pick__number VARCHAR) | SELECT position FROM table_name_37 WHERE pick__number = 53 |
What's the total time for the summer universiade competition? | CREATE TABLE table_name_82 (time VARCHAR, competition VARCHAR) | SELECT COUNT(time) FROM table_name_82 WHERE competition = "summer universiade" |
What is the record in TKO 20: Champion Vs Champion? | CREATE TABLE table_name_27 (record VARCHAR, event VARCHAR) | SELECT record FROM table_name_27 WHERE event = "tko 20: champion vs champion" |
What is the British record for the fish with a Guernsey record of 32-8-0? | CREATE TABLE table_name_70 (british_record VARCHAR, guernsey_record VARCHAR) | SELECT british_record FROM table_name_70 WHERE guernsey_record = "32-8-0" |
Name the T. Wyka has a Precincts of 51/55? | CREATE TABLE table_name_1 (t_wyka VARCHAR, precincts VARCHAR) | SELECT t_wyka FROM table_name_1 WHERE precincts = "51/55" |
How many people are in the crowd in south melbourne? | CREATE TABLE table_name_66 (crowd VARCHAR, home_team VARCHAR) | SELECT COUNT(crowd) FROM table_name_66 WHERE home_team = "south melbourne" |
What is the decision when Buffalo was the visitor? | CREATE TABLE table_name_20 (decision VARCHAR, visitor VARCHAR) | SELECT decision FROM table_name_20 WHERE visitor = "buffalo" |
Find the name of customers who have loans of both Mortgages and Auto. | CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR); CREATE TABLE loan (cust_id VARCHAR) | SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Mortgages' INTERSECT SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Auto' |
What day did the play on week 6? | CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_3 WHERE week = 6 |
What are the coreceptors of the chromosomes in that location 11q22.2-q22.3? | CREATE TABLE table_29871617_1 (coreceptor VARCHAR, chromosomal_location VARCHAR) | SELECT coreceptor FROM table_29871617_1 WHERE chromosomal_location = "11q22.2-q22.3" |
What was eliminated on the air date of November 3, 2005? | CREATE TABLE table_1893276_2 (eliminated VARCHAR, air_date VARCHAR) | SELECT eliminated FROM table_1893276_2 WHERE air_date = "November 3, 2005" |
What was the streak after the game on Dec. 12? | CREATE TABLE table_name_18 (streak VARCHAR, date VARCHAR) | SELECT streak FROM table_name_18 WHERE date = "dec. 12" |
What was the score at the end of the match number 4? | CREATE TABLE table_19072602_1 (score VARCHAR, match_no VARCHAR) | SELECT score FROM table_19072602_1 WHERE match_no = 4 |
What is the attendance of the game with the NY Islanders as home team? | CREATE TABLE table_name_59 (attendance VARCHAR, home VARCHAR) | SELECT COUNT(attendance) FROM table_name_59 WHERE home = "ny islanders" |
What are the life spans of representatives from New York state or Indiana state? | CREATE TABLE representative (Lifespan VARCHAR, State VARCHAR) | SELECT Lifespan FROM representative WHERE State = "New York" OR State = "Indiana" |
When did the team play against Niagara? | CREATE TABLE table_23184448_3 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_23184448_3 WHERE opponent = "Niagara" |
What round was Bob Randall selected in? | CREATE TABLE table_name_16 (round INTEGER, name VARCHAR) | SELECT MAX(round) FROM table_name_16 WHERE name = "bob randall" |
Which Player has a Total of 3, and an Ekstraklasa smaller than 3, and a UEFA Cup of 2? | CREATE TABLE table_name_43 (player VARCHAR, uefa_cup VARCHAR, total VARCHAR, ekstraklasa VARCHAR) | SELECT player FROM table_name_43 WHERE total = 3 AND ekstraklasa < 3 AND uefa_cup = 2 |
Which opponents are on the date July 22? | CREATE TABLE table_23612439_2 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_23612439_2 WHERE date = "July 22" |
What is the number of league goals when Bill Dearden was the scorer and there was 0 league cup goals? | CREATE TABLE table_name_66 (league_goals VARCHAR, league_cup_goals VARCHAR, scorer VARCHAR) | SELECT league_goals FROM table_name_66 WHERE league_cup_goals = "0" AND scorer = "bill dearden" |
Name the most rebounds for larry smith | CREATE TABLE table_22824319_3 (rebounds INTEGER, player VARCHAR) | SELECT MAX(rebounds) FROM table_22824319_3 WHERE player = "Larry Smith" |
What is the First Branch Opened, when Branch is Belmont Library? | CREATE TABLE table_name_21 (first_branch_opened VARCHAR, branch VARCHAR) | SELECT first_branch_opened FROM table_name_21 WHERE branch = "belmont library" |
What is the played value with 51 points? | CREATE TABLE table_name_8 (played VARCHAR, points VARCHAR) | SELECT played FROM table_name_8 WHERE points = "51" |
What is the total number of Issues has a End month of oct-80? | CREATE TABLE table_name_60 (number_of_issues VARCHAR, end_month VARCHAR) | SELECT COUNT(number_of_issues) FROM table_name_60 WHERE end_month = "oct-80" |
What was the score when she was a runner-up? | CREATE TABLE table_name_38 (score VARCHAR, outcome VARCHAR) | SELECT score FROM table_name_38 WHERE outcome = "runner-up" |
Tell me the method for pride 33 | CREATE TABLE table_name_28 (method VARCHAR, event VARCHAR) | SELECT method FROM table_name_28 WHERE event = "pride 33" |
What are the statuses of the districts whose successor is Wiltshire? | CREATE TABLE table_2801185_2 (status VARCHAR, successor VARCHAR) | SELECT status FROM table_2801185_2 WHERE successor = "Wiltshire" |
What was the original airdate of the episode "The Cold Turkey", which was viewed by 3.73 million viewers? | CREATE TABLE table_17467578_1 (original_airdate VARCHAR, us_viewers__million_ VARCHAR) | SELECT original_airdate FROM table_17467578_1 WHERE us_viewers__million_ = "3.73" |
what will the population of Asia be when Latin America/Caribbean is 783 (7.5%)? | CREATE TABLE table_19017269_5 (asia VARCHAR, latin_america_caribbean VARCHAR) | SELECT asia FROM table_19017269_5 WHERE latin_america_caribbean = "783 (7.5%)" |
How many total matches with less than 1 win and a position higher than 8? | CREATE TABLE table_name_13 (matches INTEGER, wins VARCHAR, pos VARCHAR) | SELECT SUM(matches) FROM table_name_13 WHERE wins < 1 AND pos > 8 |
What county has a Median family income of $37,667? | CREATE TABLE table_name_95 (county VARCHAR, median_family_income VARCHAR) | SELECT county FROM table_name_95 WHERE median_family_income = "$37,667" |
In what region and year was Jacob the number 2 name and Ryan the number 10 name? | CREATE TABLE table_name_98 (region__year_ VARCHAR, no_2 VARCHAR, no_10 VARCHAR) | SELECT region__year_ FROM table_name_98 WHERE no_2 = "jacob" AND no_10 = "ryan" |
What is the smallest number of episodes in a season? | CREATE TABLE table_2113721_7 (episodes INTEGER) | SELECT MIN(episodes) FROM table_2113721_7 |
Which Total has a Finish of t64, and a Year won larger than 2006? | CREATE TABLE table_name_64 (total INTEGER, finish VARCHAR, year_won VARCHAR) | SELECT MAX(total) FROM table_name_64 WHERE finish = "t64" AND year_won > 2006 |
What position that has m tyres and 352 or more laps? | CREATE TABLE table_name_56 (pos VARCHAR, tyres VARCHAR, laps VARCHAR) | SELECT pos FROM table_name_56 WHERE tyres = "m" AND laps > 352 |
What was the release date of the episode titled Drip-Along Daffy? | CREATE TABLE table_name_85 (release_date VARCHAR, title VARCHAR) | SELECT release_date FROM table_name_85 WHERE title = "drip-along daffy" |
Where does the team play May 3? | CREATE TABLE table_22879262_13 (team VARCHAR, date VARCHAR) | SELECT team FROM table_22879262_13 WHERE date = "May 3" |
Who is the player with a year later than 2007 and the college/high school/club of Arizona? | CREATE TABLE table_name_58 (player VARCHAR, year VARCHAR, college_high_school_club VARCHAR) | SELECT player FROM table_name_58 WHERE year > 2007 AND college_high_school_club = "arizona" |
What is the highest earnings for the golfer who has more than 37 wins? | CREATE TABLE table_name_90 (earnings___ INTEGER, wins INTEGER) | SELECT MAX(earnings___) AS $__ FROM table_name_90 WHERE wins > 37 |
At what latitude can you find the diameter (km) of 500.0? | CREATE TABLE table_16799784_11 (latitude VARCHAR, diameter__km_ VARCHAR) | SELECT latitude FROM table_16799784_11 WHERE diameter__km_ = "500.0" |
What is the sum of Polish Cup, when Player is "Maciej Iwański", and when Ekstraklasa is less than 1? | CREATE TABLE table_name_34 (polish_cup INTEGER, player VARCHAR, ekstraklasa VARCHAR) | SELECT SUM(polish_cup) FROM table_name_34 WHERE player = "maciej iwański" AND ekstraklasa < 1 |
What is the Name of the power station with a Capacity of 25 MW? | CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR) | SELECT name FROM table_name_9 WHERE capacity__mw_ = 25 |
What is the Genre when the Artist is Prince? | CREATE TABLE table_name_7 (genre VARCHAR, artist VARCHAR) | SELECT genre FROM table_name_7 WHERE artist = "prince" |
What Opponent has a Site of razorback stadium • fayetteville, ar, and a Date of october 7, 1967? | CREATE TABLE table_name_29 (opponent VARCHAR, site VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_29 WHERE site = "razorback stadium • fayetteville, ar" AND date = "october 7, 1967" |
The plural word of following lines or pages has what plural abbreviation? | CREATE TABLE table_name_21 (plural_abbreviation VARCHAR, plural_word VARCHAR) | SELECT plural_abbreviation FROM table_name_21 WHERE plural_word = "following lines or pages" |
What was the score when the location attendance was Air Canada Centre 18,067? | CREATE TABLE table_11960407_4 (score VARCHAR, location_attendance VARCHAR) | SELECT score FROM table_11960407_4 WHERE location_attendance = "Air Canada Centre 18,067" |
Find the papers which have "Olin Shivers" as an author. | CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR) | SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Olin" AND t1.lname = "Shivers" |
Which team has coach John Kosmina? | CREATE TABLE table_name_82 (team VARCHAR, coach VARCHAR) | SELECT team FROM table_name_82 WHERE coach = "john kosmina" |
What competition has June 19, 2004 as the date? | CREATE TABLE table_name_5 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_5 WHERE date = "june 19, 2004" |
Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver. | CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR) | SELECT fastest_lap FROM table_name_32 WHERE pole_position = "david coulthard" AND winning_driver = "michael schumacher" |
Who is in December when November has Alexus Winston? | CREATE TABLE table_name_32 (december VARCHAR, november VARCHAR) | SELECT december FROM table_name_32 WHERE november = "alexus winston" |
Whose reign began in Vietnam and ended in October 1005? | CREATE TABLE table_name_79 (reign_began VARCHAR, country VARCHAR, reign_ended VARCHAR) | SELECT reign_began FROM table_name_79 WHERE country = "vietnam" AND reign_ended = "october 1005" |
Who trained the representative whose presentation of credentials happened on February 24, 1950? | CREATE TABLE table_20065425_1 (training VARCHAR, presentation_of_credentials VARCHAR) | SELECT training FROM table_20065425_1 WHERE presentation_of_credentials = "February 24, 1950" |
What is the lowest 2011 number (,000)? | CREATE TABLE table_273617_6 (Id VARCHAR) | SELECT MIN(2011 AS _number__), 000 AS _ FROM table_273617_6 |
Which college/junior/team has defence as the position with canada as the nationality and the pick # is less than 61.0? | CREATE TABLE table_2897457_3 (college_junior_club_team VARCHAR, pick__number VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT college_junior_club_team FROM table_2897457_3 WHERE position = "Defence" AND nationality = "Canada" AND pick__number < 61.0 |
Name the minumim first elected for alvin bush | CREATE TABLE table_1342013_37 (first_elected INTEGER, incumbent VARCHAR) | SELECT MIN(first_elected) FROM table_1342013_37 WHERE incumbent = "Alvin Bush" |
What was the third place of the performance in 2006 with the host Japan? | CREATE TABLE table_name_79 (third_place VARCHAR, host VARCHAR, season VARCHAR) | SELECT third_place FROM table_name_79 WHERE host = "japan" AND season < 2006 |
Name the date for the score of w 83-69 | CREATE TABLE table_17104539_9 (date VARCHAR, score VARCHAR) | SELECT date FROM table_17104539_9 WHERE score = "W 83-69" |
How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3? | CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR) | SELECT SUM(total) FROM table_name_87 WHERE rank < 10 AND silver > 3 AND gold > 3 |
How many teams did inge – 6 have the high assists with? | CREATE TABLE table_30054758_3 (team VARCHAR, high_assists VARCHAR) | SELECT COUNT(team) FROM table_30054758_3 WHERE high_assists = "Inge – 6" |
what's the wednesday time with monday being 10:00-8:00 | CREATE TABLE table_11019212_1 (wednesday VARCHAR, monday VARCHAR) | SELECT wednesday FROM table_11019212_1 WHERE monday = "10:00-8:00" |
What nominees had a net vote of 34.46%? | CREATE TABLE table_15162479_8 (nominee VARCHAR, net_vote VARCHAR) | SELECT nominee FROM table_15162479_8 WHERE net_vote = "34.46%" |
How many destinations have a weekly frequency and are named AC Express? | CREATE TABLE table_21716139_1 (destination VARCHAR, frequency VARCHAR, train_name VARCHAR) | SELECT COUNT(destination) FROM table_21716139_1 WHERE frequency = "Weekly" AND train_name = "AC Express" |
What is Pos., when Date From is "28 August 2008"? | CREATE TABLE table_name_8 (pos VARCHAR, date_from VARCHAR) | SELECT pos FROM table_name_8 WHERE date_from = "28 august 2008" |
What's the elected year of Nydia Velazquez in a district bigger than 2 and a democrat? | CREATE TABLE table_name_69 (elected INTEGER, incumbent VARCHAR, party VARCHAR, district VARCHAR) | SELECT AVG(elected) FROM table_name_69 WHERE party = "democrat" AND district > 2 AND incumbent = "nydia velazquez" |
Who is the opponent when the attendance is n/a? | CREATE TABLE table_21350934_2 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_21350934_2 WHERE attendance = "N/A" |
What is the party when the candidates were ernest istook (r) 69% garland mcwatters (d) 28%? | CREATE TABLE table_1341423_36 (party VARCHAR, candidates VARCHAR) | SELECT party FROM table_1341423_36 WHERE candidates = "Ernest Istook (R) 69% Garland McWatters (D) 28%" |
How many U.S. viewers were there for the episode written by Lazar Saric & Jed Spingarn? | CREATE TABLE table_25246990_5 (us_viewers__millions_ VARCHAR, written_by VARCHAR) | SELECT us_viewers__millions_ FROM table_25246990_5 WHERE written_by = "Lazar Saric & Jed Spingarn" |
What is the Pick # for the College/junior/club team of edmonton oil kings (wchl), and the position if defence? | CREATE TABLE table_name_49 (pick__number VARCHAR, college_junior_club_team VARCHAR, position VARCHAR) | SELECT pick__number FROM table_name_49 WHERE college_junior_club_team = "edmonton oil kings (wchl)" AND position = "defence" |
What's the Opponent with a Week that's larger than 16? | CREATE TABLE table_name_9 (opponent VARCHAR, week INTEGER) | SELECT opponent FROM table_name_9 WHERE week > 16 |
In how many different games did Roy Hibbert (16) did the most high rebounds? | CREATE TABLE table_27756164_2 (game VARCHAR, high_rebounds VARCHAR) | SELECT COUNT(game) FROM table_27756164_2 WHERE high_rebounds = "Roy Hibbert (16)" |
what is the total number of total w–l where doubles w–l is 11–11 | CREATE TABLE table_10294071_1 (total_w_l VARCHAR, doubles_w_l VARCHAR) | SELECT COUNT(total_w_l) FROM table_10294071_1 WHERE doubles_w_l = "11–11" |
What is the total amount of time for years prior to 2013 when speed option is the stage? | CREATE TABLE table_name_25 (time INTEGER, stage VARCHAR, year VARCHAR) | SELECT SUM(time) FROM table_name_25 WHERE stage = "speed option" AND year < 2013 |
What is the average number of goals scored in the FA Cup among players that have more than 20 total goals, less than 1 FA Trophy goals, and less than 25 league goals? | CREATE TABLE table_name_57 (fa_cup INTEGER, league VARCHAR, total VARCHAR, fa_trophy VARCHAR) | SELECT AVG(fa_cup) FROM table_name_57 WHERE total > 20 AND fa_trophy < 1 AND league < 25 |
What is the time of the peachtree road race in kenya? | CREATE TABLE table_name_57 (time VARCHAR, nation VARCHAR, race VARCHAR) | SELECT time FROM table_name_57 WHERE nation = "kenya" AND race = "peachtree road race" |
Which Birth has a Became Duchess of 17 april 1711 husband's ascension? | CREATE TABLE table_name_65 (birth VARCHAR, became_duchess VARCHAR) | SELECT birth FROM table_name_65 WHERE became_duchess = "17 april 1711 husband's ascension" |
What city and state are the miners located in? | CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR) | SELECT location FROM table_11044765_1 WHERE mascot = "Miners" |
which championship had helena suková tom nijssen as opponents in the final and nicole provis as partner, the surface was hard and the outcome was winner | CREATE TABLE table_1918850_2 (championship VARCHAR, opponents_in_the_final VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT championship FROM table_1918850_2 WHERE outcome = "Winner" AND surface = "Hard" AND partner = "Nicole Provis" AND opponents_in_the_final = "Helena Suková Tom Nijssen" |
What race is on aug 4 with ron fellows? | CREATE TABLE table_name_24 (race_title VARCHAR, drivers VARCHAR, date VARCHAR) | SELECT race_title FROM table_name_24 WHERE drivers = "ron fellows" AND date = "aug 4" |
Find the titles and studios of the films that are produced by some film studios that contained the word "Universal". | CREATE TABLE film (title VARCHAR, Studio VARCHAR) | SELECT title, Studio FROM film WHERE Studio LIKE "%Universal%" |
What is Domenik Hixon's average rush? | CREATE TABLE table_name_76 (avg VARCHAR, player VARCHAR) | SELECT avg FROM table_name_76 WHERE player = "domenik hixon" |
display the first and last name, department, city, and state province for each employee. | CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR) | SELECT T1.first_name, T1.last_name, T2.department_name, T3.city, T3.state_province FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id |
What is the name for the red list of 7, the artiodactyla order, and Species Authority of cervus elaphus linnaeus, 1758? | CREATE TABLE table_name_4 (name VARCHAR, species_authority VARCHAR, red_list VARCHAR, order VARCHAR) | SELECT name FROM table_name_4 WHERE red_list = 7 AND order = "artiodactyla" AND species_authority = "cervus elaphus linnaeus, 1758" |
Who had to retire due to suspension? | CREATE TABLE table_name_65 (driver VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_65 WHERE time_retired = "suspension" |
What year was the first store that had a hypermarket of 3? | CREATE TABLE table_name_2 (first_store VARCHAR, hypermarkets VARCHAR) | SELECT first_store FROM table_name_2 WHERE hypermarkets = 3 |
For the tournament ending with a margin of victory of 2 strokes, who was the runner(s)-up? | CREATE TABLE table_name_58 (runner_s__up VARCHAR, margin_of_victory VARCHAR) | SELECT runner_s__up FROM table_name_58 WHERE margin_of_victory = "2 strokes" |
When is the completed date of the destroyer with a pennant number h63? | CREATE TABLE table_name_91 (completed VARCHAR, pennant_number VARCHAR) | SELECT completed FROM table_name_91 WHERE pennant_number = "h63" |
Which colle/junior/club team did Michel Boudreau play for? | CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1473672_3 WHERE player = "Michel Boudreau" |
What is the Date, when the City is Warsaw? | CREATE TABLE table_name_39 (date VARCHAR, city VARCHAR) | SELECT date FROM table_name_39 WHERE city = "warsaw" |
What is the location/state that has adelaide international raceway as the circuit? | CREATE TABLE table_name_5 (location___state VARCHAR, circuit VARCHAR) | SELECT location___state FROM table_name_5 WHERE circuit = "adelaide international raceway" |
Which tournament had a winning score of 67-61-68-67=263? | CREATE TABLE table_name_96 (tournament VARCHAR, winning_score VARCHAR) | SELECT tournament FROM table_name_96 WHERE winning_score = 67 - 61 - 68 - 67 = 263 |
Name the most total for south korea | CREATE TABLE table_30007505_1 (total INTEGER, country_territory VARCHAR) | SELECT MAX(total) FROM table_30007505_1 WHERE country_territory = "South Korea" |
When 31901 is the population what is the county? | CREATE TABLE table_23248420_1 (county VARCHAR, population VARCHAR) | SELECT county FROM table_23248420_1 WHERE population = 31901 |
What is the total number of E edges of the polyhedra with vertices V greater than 20? | CREATE TABLE table_name_32 (edges_e VARCHAR, vertices_v INTEGER) | SELECT COUNT(edges_e) FROM table_name_32 WHERE vertices_v > 20 |
What is the highest year premiered for the TV2 network when main present is øyvind mund? | CREATE TABLE table_24224647_2 (year_premiered INTEGER, network VARCHAR, main_presenter VARCHAR) | SELECT MAX(year_premiered) FROM table_24224647_2 WHERE network = "TV2" AND main_presenter = "Øyvind Mund" |
What is livorno's average election? | CREATE TABLE table_name_69 (election INTEGER, municipality VARCHAR) | SELECT AVG(election) FROM table_name_69 WHERE municipality = "livorno" |
How many statuses are listed for Wayne county? | CREATE TABLE table_22815568_3 (status VARCHAR, county VARCHAR) | SELECT COUNT(status) FROM table_22815568_3 WHERE county = "Wayne" |
Who scored 74-70-67=211 and placed t5? | CREATE TABLE table_name_6 (player VARCHAR, place VARCHAR, score VARCHAR) | SELECT player FROM table_name_6 WHERE place = "t5" AND score = 74 - 70 - 67 = 211 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.