question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the Clubs when there are 4 for the number of fixtures? | CREATE TABLE table_name_3 (clubs VARCHAR, number_of_fixtures VARCHAR) | SELECT clubs FROM table_name_3 WHERE number_of_fixtures = 4 |
Which Away team has a Home team of south melbourne? | CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_63 WHERE home_team = "south melbourne" |
What are all the run times with 8.2 million viewers? | CREATE TABLE table_1429629_1 (run_time VARCHAR, viewers__in_millions_ VARCHAR) | SELECT run_time FROM table_1429629_1 WHERE viewers__in_millions_ = "8.2" |
Of the games with a record of 80-81, what was the highest attendance? | CREATE TABLE table_name_89 (attendance INTEGER, record VARCHAR) | SELECT MAX(attendance) FROM table_name_89 WHERE record = "80-81" |
What is the 2011 when the 2007 is a, and the 2012 is sf? | CREATE TABLE table_name_58 (Id VARCHAR) | SELECT 2011 FROM table_name_58 WHERE 2007 = "a" AND 2012 = "sf" |
What is the earliest heat with a finisher from the Czech Republic and a rank over 41? | CREATE TABLE table_name_51 (heat INTEGER, nationality VARCHAR, rank VARCHAR) | SELECT MIN(heat) FROM table_name_51 WHERE nationality = "czech republic" AND rank > 41 |
List all characteristics of product named "sesame" with type code "Grade". | CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_id VARCHAR, characteristic_type_code VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR) | SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "sesame" AND t3.characteristic_type_code = "Grade" |
What is the average L/100km urban (cold) for engine capacities over 1910, mpg in the US (urban) under 25.3, mpg in the UK (combined) over 27.2, and mpg in the UK (urban, cold) of 22.4? | CREATE TABLE table_name_27 (l_100km_urban__cold_ INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR, engine_capacity VARCHAR, mpg_us_urban VARCHAR) | SELECT AVG(l_100km_urban__cold_) FROM table_name_27 WHERE engine_capacity > 1910 AND mpg_us_urban < 25.3 AND mpg_uk_combined > 27.2 AND mpg_uk_urban__cold_ = 22.4 |
What was St Kilda's away team score? | CREATE TABLE table_name_21 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_21 WHERE away_team = "st kilda" |
Name the represents for los alcarrizos | CREATE TABLE table_26301697_2 (represents VARCHAR, hometown VARCHAR) | SELECT represents FROM table_26301697_2 WHERE hometown = "Los Alcarrizos" |
What was the location of the game when the record was 12-4? | CREATE TABLE table_name_74 (location VARCHAR, record VARCHAR) | SELECT location FROM table_name_74 WHERE record = "12-4" |
Name the score for miami | CREATE TABLE table_27723228_7 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27723228_7 WHERE team = "Miami" |
List the states which have between 2 to 4 staffs living there. | CREATE TABLE Addresses (state_province_county VARCHAR, address_id VARCHAR); CREATE TABLE Staff (staff_address_id VARCHAR) | SELECT T1.state_province_county FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.state_province_county HAVING COUNT(*) BETWEEN 2 AND 4 |
what's the first elected with incumbent being joseph d. early | CREATE TABLE table_1341604_22 (first_elected VARCHAR, incumbent VARCHAR) | SELECT first_elected FROM table_1341604_22 WHERE incumbent = "Joseph D. Early" |
What is the total number of bronzes from the Netherlands? | CREATE TABLE table_name_44 (bronze VARCHAR, nation VARCHAR) | SELECT COUNT(bronze) FROM table_name_44 WHERE nation = "netherlands" |
What score did Australia get? | CREATE TABLE table_name_85 (score VARCHAR, country VARCHAR) | SELECT score FROM table_name_85 WHERE country = "australia" |
Name the total number of year to april for ebit being 24.5 | CREATE TABLE table_18304259_1 (year_to_april VARCHAR, ebit__£m_ VARCHAR) | SELECT COUNT(year_to_april) FROM table_18304259_1 WHERE ebit__£m_ = "24.5" |
Who was the rider with 120.953 mph speed? | CREATE TABLE table_name_79 (rider VARCHAR, speed VARCHAR) | SELECT rider FROM table_name_79 WHERE speed = "120.953 mph" |
If a country has 1008 points what's their reaction time? | CREATE TABLE table_name_84 (react INTEGER, points VARCHAR) | SELECT MAX(react) FROM table_name_84 WHERE points = 1008 |
What are id and name of the products whose price is lower than 600 or higher than 900? | CREATE TABLE products (product_id VARCHAR, product_name VARCHAR, product_price VARCHAR) | SELECT product_id, product_name FROM products WHERE product_price < 600 OR product_price > 900 |
What year did she place 8th in the junior race? | CREATE TABLE table_name_9 (year VARCHAR, event VARCHAR, position VARCHAR) | SELECT year FROM table_name_9 WHERE event = "junior race" AND position = "8th" |
Show the customer name, customer address city, date from, and date to for each customer address history. | CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customer_address_history (date_from VARCHAR, date_to VARCHAR, customer_id VARCHAR, address_id VARCHAR) | SELECT T2.customer_name, T3.city, T1.date_from, T1.date_to FROM customer_address_history AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id JOIN addresses AS T3 ON T1.address_id = T3.address_id |
Which district had first elected earlier than 2006 for representation of Broken Arrow, Tulsa? | CREATE TABLE table_name_7 (district VARCHAR, first_elected VARCHAR, towns_represented VARCHAR) | SELECT district FROM table_name_7 WHERE first_elected < 2006 AND towns_represented = "broken arrow, tulsa" |
Name the least transfers out when transfers is 21 | CREATE TABLE table_17650725_1 (transfers_out INTEGER, total_transfers VARCHAR) | SELECT MIN(transfers_out) FROM table_17650725_1 WHERE total_transfers = 21 |
Name the least rank | CREATE TABLE table_2527063_3 (rank INTEGER) | SELECT MIN(rank) FROM table_2527063_3 |
What Area (km 2) is lowest with a type being Apostolic Administration? | CREATE TABLE table_name_47 (area__km_2__ INTEGER, type VARCHAR) | SELECT MIN(area__km_2__) FROM table_name_47 WHERE type = "apostolic administration" |
What is Event, when Method is "Submission (Armbar)", and when Opponent is "Jason St. Louis"? | CREATE TABLE table_name_54 (event VARCHAR, method VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_54 WHERE method = "submission (armbar)" AND opponent = "jason st. louis" |
What is Player, when MLB Team is "Florida Marlins", and when Round is less than 15? | CREATE TABLE table_name_58 (player VARCHAR, mlb_team VARCHAR, round VARCHAR) | SELECT player FROM table_name_58 WHERE mlb_team = "florida marlins" AND round < 15 |
What coach had 15 wins? | CREATE TABLE table_14594528_6 (name__alma_mater_ VARCHAR, wins VARCHAR) | SELECT name__alma_mater_ FROM table_14594528_6 WHERE wins = 15 |
Who were the opposition in the quarter-final? | CREATE TABLE table_name_50 (opposition VARCHAR, round VARCHAR) | SELECT opposition FROM table_name_50 WHERE round = "quarter-final" |
What is the name of the winner when the sprints classification is no award? | CREATE TABLE table_22941863_19 (winner VARCHAR, sprints_classification VARCHAR) | SELECT winner FROM table_22941863_19 WHERE sprints_classification = "no award" |
What nation has the most bronze medals with over 11 total medals? | CREATE TABLE table_name_75 (bronze INTEGER, total INTEGER) | SELECT MAX(bronze) FROM table_name_75 WHERE total > 11 |
What is the highest Played that's for the Team of Cerro Porteño, with a Position that's larger than 1? | CREATE TABLE table_name_59 (played INTEGER, team VARCHAR, position VARCHAR) | SELECT MAX(played) FROM table_name_59 WHERE team = "cerro porteño" AND position > 1 |
Which Captain 2 has a Result of ireland by 8 runs? | CREATE TABLE table_name_87 (captain_2 VARCHAR, result VARCHAR) | SELECT captain_2 FROM table_name_87 WHERE result = "ireland by 8 runs" |
Which Round is the highest one that has an Overall of 32, and a Pick # smaller than 4? | CREATE TABLE table_name_85 (round INTEGER, overall VARCHAR, pick__number VARCHAR) | SELECT MAX(round) FROM table_name_85 WHERE overall = 32 AND pick__number < 4 |
What is the sum of all laps with rank 3? | CREATE TABLE table_name_99 (laps VARCHAR, rank VARCHAR) | SELECT COUNT(laps) FROM table_name_99 WHERE rank = "3" |
WHAT IS THE START THAT HAS A FINISH BIGGER THAN 3, FROM FORD, AFTER 1969? | CREATE TABLE table_name_83 (start INTEGER, year VARCHAR, finish VARCHAR, manufacturer VARCHAR) | SELECT MAX(start) FROM table_name_83 WHERE finish > 3 AND manufacturer = "ford" AND year > 1969 |
What games have more than 1 draw? | CREATE TABLE table_name_22 (games INTEGER, drawn INTEGER) | SELECT AVG(games) FROM table_name_22 WHERE drawn > 1 |
What is the year won by Australia with a to par bigger than 16? | CREATE TABLE table_name_22 (year_won VARCHAR, country VARCHAR, to_par VARCHAR) | SELECT COUNT(year_won) FROM table_name_22 WHERE country = "australia" AND to_par > 16 |
What school did bo jackson attend? | CREATE TABLE table_name_96 (school VARCHAR, player VARCHAR) | SELECT school FROM table_name_96 WHERE player = "bo jackson" |
What is the lowest Wins, when Season is 2011, when Podiums is 1, and when Poles is less than 0? | CREATE TABLE table_name_37 (wins INTEGER, poles VARCHAR, season VARCHAR, podiums VARCHAR) | SELECT MIN(wins) FROM table_name_37 WHERE season = "2011" AND podiums = 1 AND poles < 0 |
What was the time for Peter Berwick of Team Suzuki? | CREATE TABLE table_name_75 (time VARCHAR, team VARCHAR, rider VARCHAR) | SELECT time FROM table_name_75 WHERE team = "suzuki" AND rider = "peter berwick" |
Find the number of patients who are not using the medication of Procrastin-X. | CREATE TABLE Prescribes (patient VARCHAR, Medication VARCHAR); CREATE TABLE patient (SSN VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR) | SELECT COUNT(*) FROM patient WHERE NOT SSN IN (SELECT T1.patient FROM Prescribes AS T1 JOIN Medication AS T2 ON T1.Medication = T2.Code WHERE T2.name = 'Procrastin-X') |
Which Year(s) won has a Total larger than 148, and a To par smaller than 17, and a Country of new zealand? | CREATE TABLE table_name_61 (year_s__won VARCHAR, country VARCHAR, total VARCHAR, to_par VARCHAR) | SELECT year_s__won FROM table_name_61 WHERE total > 148 AND to_par < 17 AND country = "new zealand" |
What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft? | CREATE TABLE table_name_63 (season VARCHAR, second VARCHAR, lead VARCHAR, third VARCHAR) | SELECT season FROM table_name_63 WHERE lead = "don bartlett" AND third = "don walchuk" AND second = "carter rycroft" |
Which position from the Cherkassy Monkeys' club was born after 1978? | CREATE TABLE table_name_10 (position VARCHAR, year_born VARCHAR, current_club VARCHAR) | SELECT position FROM table_name_10 WHERE year_born > 1978 AND current_club = "cherkassy monkeys" |
Which driver had a grid of 22? | CREATE TABLE table_name_43 (driver VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_43 WHERE grid = "22" |
What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier? | CREATE TABLE table_name_67 (district INTEGER, took_office VARCHAR, senator VARCHAR) | SELECT SUM(district) FROM table_name_67 WHERE took_office > 1981 AND senator = "cyndi taylor krier" |
what is the team when sacks is 0 and the season is earlier than 1998? | CREATE TABLE table_name_90 (team VARCHAR, sacks VARCHAR, season VARCHAR) | SELECT team FROM table_name_90 WHERE sacks = "0" AND season < 1998 |
What reverse has a color of green? | CREATE TABLE table_name_33 (reverse VARCHAR, color VARCHAR) | SELECT reverse FROM table_name_33 WHERE color = "green" |
Which local board does the Clendon Teen Parent Unit belong to? | CREATE TABLE table_name_98 (local_board VARCHAR, name VARCHAR) | SELECT local_board FROM table_name_98 WHERE name = "clendon teen parent unit" |
Please show the categories of the music festivals with count more than 1. | CREATE TABLE music_festival (Category VARCHAR) | SELECT Category FROM music_festival GROUP BY Category HAVING COUNT(*) > 1 |
What is the average total medals Egypt, who has less than 2 gold, has? | CREATE TABLE table_name_67 (total INTEGER, nation VARCHAR, gold VARCHAR) | SELECT AVG(total) FROM table_name_67 WHERE nation = "egypt" AND gold < 2 |
What was the 2nd leg score in the matchup with a team 2 of KK Borac? | CREATE TABLE table_name_77 (team__number2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_77 WHERE team__number2 = "kk borac" |
What is the Team of the Fullback Player? | CREATE TABLE table_name_77 (team VARCHAR, position VARCHAR) | SELECT team FROM table_name_77 WHERE position = "fullback" |
What is the length of the film with Burleigh Sullivan as the character? | CREATE TABLE table_name_30 (length VARCHAR, character_name VARCHAR) | SELECT length FROM table_name_30 WHERE character_name = "burleigh sullivan" |
What was Freddie Starr, who entered on Day 1, known for? | CREATE TABLE table_name_34 (known_for VARCHAR, entered VARCHAR, celebrity VARCHAR) | SELECT known_for FROM table_name_34 WHERE entered = "day 1" AND celebrity = "freddie starr" |
what is the declination (j2000) that has a constellation of hydra and a right ascension (j2000) of 10h46m44.9s? | CREATE TABLE table_name_77 (declination___j2000__ VARCHAR, constellation VARCHAR, right_ascension___j2000__ VARCHAR) | SELECT declination___j2000__ FROM table_name_77 WHERE constellation = "hydra" AND right_ascension___j2000__ = "10h46m44.9s" |
What college did the Cincinnati Bengals' player come from? | CREATE TABLE table_12165999_1 (college VARCHAR, afl_team VARCHAR) | SELECT college FROM table_12165999_1 WHERE afl_team = "Cincinnati Bengals" |
What is the sum of the game with the boston bruins as the opponent? | CREATE TABLE table_name_84 (game INTEGER, opponent VARCHAR) | SELECT SUM(game) FROM table_name_84 WHERE opponent = "boston bruins" |
What's Brazil's lane with a time less than 21.15? | CREATE TABLE table_name_55 (lane INTEGER, nationality VARCHAR, time VARCHAR) | SELECT MIN(lane) FROM table_name_55 WHERE nationality = "brazil" AND time < 21.15 |
On what Date was the Venue at Exhibition Stadium? | CREATE TABLE table_name_73 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_73 WHERE venue = "exhibition stadium" |
How many states are there? | CREATE TABLE area_code_state (Id VARCHAR) | SELECT COUNT(*) FROM area_code_state |
Which To par has a Player of johanna head? | CREATE TABLE table_name_87 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_87 WHERE player = "johanna head" |
What is the smallest overall for Oregon State? | CREATE TABLE table_name_7 (overall INTEGER, college VARCHAR) | SELECT MIN(overall) FROM table_name_7 WHERE college = "oregon state" |
Which Visitor has a Home of vancouver, and a Decision of cloutier? | CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR, decision VARCHAR) | SELECT visitor FROM table_name_30 WHERE home = "vancouver" AND decision = "cloutier" |
What was the date of the game with a loss of Wakefield (5-2)? | CREATE TABLE table_name_26 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_26 WHERE loss = "wakefield (5-2)" |
What date was Joakim Bonnier in the pole position? | CREATE TABLE table_name_21 (date VARCHAR, pole_position VARCHAR) | SELECT date FROM table_name_21 WHERE pole_position = "joakim bonnier" |
What is the highest attendance rate at Milwaukee County Stadium? | CREATE TABLE table_name_61 (attendance INTEGER, game_site VARCHAR) | SELECT MAX(attendance) FROM table_name_61 WHERE game_site = "milwaukee county stadium" |
When 42.903° n is the latitude how many measurements of longitude are there? | CREATE TABLE table_24192190_1 (longitude VARCHAR, latitude VARCHAR) | SELECT COUNT(longitude) FROM table_24192190_1 WHERE latitude = "42.903° N" |
Mike Forshaw had 0 goals and 28 points. What is his position? | CREATE TABLE table_name_74 (position VARCHAR, player VARCHAR, goals VARCHAR, points VARCHAR) | SELECT position FROM table_name_74 WHERE goals = 0 AND points = 28 AND player = "mike forshaw" |
How many distinct students are enrolled in courses? | CREATE TABLE Student_Course_Enrolment (student_id VARCHAR) | SELECT COUNT(DISTINCT student_id) FROM Student_Course_Enrolment |
In week 9 who were the opponent? | CREATE TABLE table_14608759_1 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_14608759_1 WHERE week = 9 |
What is the overall number for a pick of #10, from Louisiana Tech, and a round bigger than 3? | CREATE TABLE table_name_99 (overall INTEGER, round VARCHAR, pick__number VARCHAR, college VARCHAR) | SELECT SUM(overall) FROM table_name_99 WHERE pick__number = 10 AND college = "louisiana tech" AND round > 3 |
Name the casualities for kabul area | CREATE TABLE table_name_74 (casualties VARCHAR, location VARCHAR) | SELECT casualties FROM table_name_74 WHERE location = "kabul area" |
How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del? | CREATE TABLE table_name_68 (year_joined VARCHAR, school VARCHAR, size VARCHAR, ihsaa_class VARCHAR) | SELECT COUNT(year_joined) FROM table_name_68 WHERE size < 417 AND ihsaa_class = "a" AND school = "jac-cen-del" |
What was the venue when the runner up was Tennis Borussia Berlin, and the score was 4 – 2 *? | CREATE TABLE table_name_65 (venue VARCHAR, runners_up VARCHAR, score VARCHAR) | SELECT venue FROM table_name_65 WHERE runners_up = "tennis borussia berlin" AND score = "4 – 2 *" |
List the forename and surname of all distinct drivers who once had laptime less than 93000 milliseconds? | CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE laptimes (driverid VARCHAR, milliseconds INTEGER) | SELECT DISTINCT T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds < 93000 |
What city is fuhlsbüttel airport in? | CREATE TABLE table_name_1 (city VARCHAR, airport VARCHAR) | SELECT city FROM table_name_1 WHERE airport = "fuhlsbüttel airport" |
How high did Arnold Palmer score in 1962? | CREATE TABLE table_name_69 (score INTEGER, player VARCHAR) | SELECT MAX(score) FROM table_name_69 WHERE player = "arnold palmer" |
What is the gold total for lithuania with under 2 silvers? | CREATE TABLE table_name_5 (gold INTEGER, nation VARCHAR, silver VARCHAR) | SELECT SUM(gold) FROM table_name_5 WHERE nation = "lithuania" AND silver < 2 |
what are all the percent (1990) where state is united states | CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR) | SELECT percent__1990_ FROM table_1182314_5 WHERE state = "United states" |
How many people attended the Edmonton Oilers game? | CREATE TABLE table_16864968_8 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_16864968_8 WHERE opponent = "Edmonton Oilers" |
what is the attendance in 2011 records | CREATE TABLE table_21436373_12 (attendance VARCHAR, date_year VARCHAR) | SELECT attendance FROM table_21436373_12 WHERE date_year = "2011" |
On what date was the match against the St. George Illawarra Dragons? | CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_37 WHERE opponent = "st. george illawarra dragons" |
What is the largest numbered? | CREATE TABLE table_14723382_1 (division INTEGER) | SELECT MAX(division) FROM table_14723382_1 |
What are the names of entrepreneurs? | CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE entrepreneur (People_ID VARCHAR) | SELECT T2.Name FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID |
Who was the director of Pecado Mortal | CREATE TABLE table_15277629_1 (director VARCHAR, original_title VARCHAR) | SELECT director FROM table_15277629_1 WHERE original_title = "Pecado Mortal" |
What was the Regionalliga Nord-Ost for the team that had a Regionalliga Sud of SpVgg Unterhaching? | CREATE TABLE table_name_61 (regionalliga_nord VARCHAR, Ost VARCHAR, regionalliga_süd VARCHAR) | SELECT regionalliga_nord - Ost FROM table_name_61 WHERE regionalliga_süd = "spvgg unterhaching" |
What is SECOND, when SIXTH is Victoria? | CREATE TABLE table_name_18 (second VARCHAR, sixth VARCHAR) | SELECT second FROM table_name_18 WHERE sixth = "victoria" |
What is the Margin in 1953 when Patty Berg was Runner(s)-up? | CREATE TABLE table_name_29 (margin VARCHAR, runner_s__up VARCHAR, year VARCHAR) | SELECT margin FROM table_name_29 WHERE runner_s__up = "patty berg" AND year = 1953 |
What was the opponent when the score was 3 - 2, and the decision was Raycroft, with a record of 25-29-1? | CREATE TABLE table_name_13 (opponent VARCHAR, record VARCHAR, score VARCHAR, decision VARCHAR) | SELECT opponent FROM table_name_13 WHERE score = "3 - 2" AND decision = "raycroft" AND record = "25-29-1" |
What is the infinitive stem that has a subjunctive present of ou? | CREATE TABLE table_name_10 (inf_stem VARCHAR, subj_pres VARCHAR) | SELECT inf_stem FROM table_name_10 WHERE subj_pres = "ou" |
What is the power at the cebu station? | CREATE TABLE table_19215259_1 (power__kw_ VARCHAR, location VARCHAR) | SELECT power__kw_ FROM table_19215259_1 WHERE location = "Cebu" |
How many Norwegian Americans have Norwegian Americans (2000) of 109,744? | CREATE TABLE table_name_72 (norwegian_americans__2009_ VARCHAR, norwegian_americans__2000_ VARCHAR) | SELECT COUNT(norwegian_americans__2009_) FROM table_name_72 WHERE norwegian_americans__2000_ = 109 OFFSET 744 |
Who was the opponent during week 8? | CREATE TABLE table_name_67 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_67 WHERE week = 8 |
Which Floors have a Pinnacle height ft (m) of 1,136 (346), and a Pinn Rank larger than 4? | CREATE TABLE table_name_9 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, pinn_rank VARCHAR) | SELECT AVG(floors) FROM table_name_9 WHERE pinnacle_height_ft__m_ = "1,136 (346)" AND pinn_rank > 4 |
What was the startup year for the Jackpine Mine (ph 2) project with an albian sands operator? | CREATE TABLE table_name_18 (year_startup VARCHAR, operator VARCHAR, project_name VARCHAR) | SELECT year_startup FROM table_name_18 WHERE operator = "albian sands" AND project_name = "jackpine mine (ph 2)" |
Name the name for san beda | CREATE TABLE table_15463188_7 (name VARCHAR, school_club_team VARCHAR) | SELECT name FROM table_15463188_7 WHERE school_club_team = "San Beda" |
What is the number of clubs before 2003 with a 4th place winner of Shenzhen Jianlibao? | CREATE TABLE table_name_66 (number_of_clubs INTEGER, fourth_placed VARCHAR, season VARCHAR) | SELECT AVG(number_of_clubs) FROM table_name_66 WHERE fourth_placed = "shenzhen jianlibao" AND season < 2003 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.