question
stringlengths 17
201
| answer
stringlengths 21
400
| context
stringlengths 32
286
|
---|---|---|
What is the sum of the total apps of player benayoun, who has a PL G greater than 0 and more than 9 CL apps?
|
SELECT SUM(total_apps) FROM table_name_28 WHERE pl_g > 0 AND player = "benayoun" AND cl_apps > 9
|
CREATE TABLE table_name_28 (total_apps INTEGER, cl_apps VARCHAR, pl_g VARCHAR, player VARCHAR)
|
Nationality of england, and a Matches smaller than 510, and a Lost of 4, and a Win % smaller than 28.6 had what lowest drawn?
|
SELECT MIN(drawn) FROM table_name_5 WHERE nationality = "england" AND matches < 510 AND lost = 4 AND win__percentage < 28.6
|
CREATE TABLE table_name_5 (drawn INTEGER, win__percentage VARCHAR, lost VARCHAR, nationality VARCHAR, matches VARCHAR)
|
What school does the Blue Raiders belong to?
|
SELECT school FROM table_name_16 WHERE team = "blue raiders"
|
CREATE TABLE table_name_16 (school VARCHAR, team VARCHAR)
|
What is every reason for change for the Washington 3rd District?
|
SELECT reason_for_change FROM table_2159571_2 WHERE district = "Washington 3rd"
|
CREATE TABLE table_2159571_2 (reason_for_change VARCHAR, district VARCHAR)
|
What's the total Rank that has a Gold that's smaller than 0?
|
SELECT SUM(rank) FROM table_name_2 WHERE gold < 0
|
CREATE TABLE table_name_2 (rank INTEGER, gold INTEGER)
|
What was the Score on February 18, 2008?
|
SELECT score FROM table_name_32 WHERE date = "february 18, 2008"
|
CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)
|
What is the name of the country when the ioc code is mas?
|
SELECT country FROM table_2879165_1 WHERE ioc_code = "MAS"
|
CREATE TABLE table_2879165_1 (country VARCHAR, ioc_code VARCHAR)
|
What is Winner, when Year is 2013?
|
SELECT winner FROM table_name_11 WHERE year = 2013
|
CREATE TABLE table_name_11 (winner VARCHAR, year VARCHAR)
|
what is the virtual callsign if is wnet
|
SELECT _virtual_ FROM table_1979203_1 WHERE callsign = "WNET"
|
CREATE TABLE table_1979203_1 (_virtual_ VARCHAR, callsign VARCHAR)
|
What is Opponent, when Date is 8 April 1999?
|
SELECT opponent FROM table_name_18 WHERE date = "8 april 1999"
|
CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR)
|
Name the 1997 for atp masters series 1992
|
SELECT 1997 FROM table_name_65 WHERE 1992 = "atp masters series"
|
CREATE TABLE table_name_65 (Id VARCHAR)
|
Show the names of aircrafts that are associated with both an airport named "London Heathrow" and an airport named "London Gatwick"
|
SELECT T1.Aircraft FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T3.Airport_Name = "London Heathrow" INTERSECT SELECT T1.Aircraft FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T3.Airport_Name = "London Gatwick"
|
CREATE TABLE airport (Airport_ID VARCHAR, Airport_Name VARCHAR); CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR); CREATE TABLE airport_aircraft (Aircraft_ID VARCHAR, Airport_ID VARCHAR)
|
What is the total of the 3-0 score with a set 2 of 25-12 and a set 3 of 25-18?
|
SELECT total FROM table_name_16 WHERE score = "3-0" AND set_3 = "25-18" AND set_2 = "25-12"
|
CREATE TABLE table_name_16 (total VARCHAR, set_2 VARCHAR, score VARCHAR, set_3 VARCHAR)
|
Which Nation has a Gold larger than 0, and a Total larger than 4, and a Rank of 6?
|
SELECT nation FROM table_name_74 WHERE gold > 0 AND total > 4 AND rank = "6"
|
CREATE TABLE table_name_74 (nation VARCHAR, rank VARCHAR, gold VARCHAR, total VARCHAR)
|
What is the total of port adelaide
|
SELECT MAX(total) FROM table_1161065_27 WHERE team = "Port Adelaide"
|
CREATE TABLE table_1161065_27 (total INTEGER, team VARCHAR)
|
Which Laps have a Time/Retired of + 4 laps, and a Grid larger than 18?
|
SELECT AVG(laps) FROM table_name_72 WHERE time_retired = "+ 4 laps" AND grid > 18
|
CREATE TABLE table_name_72 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
|
What is the home team score when played at mcg?
|
SELECT home_team AS score FROM table_name_24 WHERE venue = "mcg"
|
CREATE TABLE table_name_24 (home_team VARCHAR, venue VARCHAR)
|
WHAT IS THE BUDGET FOR THE INCREDIBLES?
|
SELECT budget FROM table_name_28 WHERE film = "the incredibles"
|
CREATE TABLE table_name_28 (budget VARCHAR, film VARCHAR)
|
What is the highest Money ( $ ), when Score is "69-71-70-74=284"?
|
SELECT MAX(money___) AS $__ FROM table_name_65 WHERE score = 69 - 71 - 70 - 74 = 284
|
CREATE TABLE table_name_65 (money___ INTEGER, score VARCHAR)
|
what is the record when the opponent is akiko inoue?
|
SELECT record FROM table_name_37 WHERE opponent = "akiko inoue"
|
CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR)
|
Show origins of all flights with destination Honolulu.
|
SELECT origin FROM Flight WHERE destination = "Honolulu"
|
CREATE TABLE Flight (origin VARCHAR, destination VARCHAR)
|
For the race called by Marshall Cassidy, who was the host?
|
SELECT s_host FROM table_22583466_5 WHERE race_caller = "Marshall Cassidy"
|
CREATE TABLE table_22583466_5 (s_host VARCHAR, race_caller VARCHAR)
|
Which class has a peak named fountains fell south top?
|
SELECT class FROM table_name_31 WHERE peak = "fountains fell south top"
|
CREATE TABLE table_name_31 (class VARCHAR, peak VARCHAR)
|
What is the transfer fee when summer is the transfer window, the type is transfer and the country is Hun?
|
SELECT transfer_fee FROM table_name_9 WHERE transfer_window = "summer" AND type = "transfer" AND country = "hun"
|
CREATE TABLE table_name_9 (transfer_fee VARCHAR, country VARCHAR, transfer_window VARCHAR, type VARCHAR)
|
What is the number of floors for the Citic Square?
|
SELECT AVG(floors) FROM table_name_10 WHERE name = "citic square"
|
CREATE TABLE table_name_10 (floors INTEGER, name VARCHAR)
|
What are the original names of the districts where the population in the 2010 census was 210450?
|
SELECT original_name FROM table_1104312_5 WHERE population_at_2010_census = 210450
|
CREATE TABLE table_1104312_5 (original_name VARCHAR, population_at_2010_census VARCHAR)
|
Which highest 'goals against' number had wins of 19 and a 'goals for' number that was bigger than 53?
|
SELECT MAX(goals_against) FROM table_name_79 WHERE wins = 19 AND goals_for > 53
|
CREATE TABLE table_name_79 (goals_against INTEGER, wins VARCHAR, goals_for VARCHAR)
|
What is Apparatus, when Rank-Final is greater than 6, and when Competition Description is "U.S. Championships"?
|
SELECT apparatus FROM table_name_9 WHERE rank_final > 6 AND competition_description = "u.s. championships"
|
CREATE TABLE table_name_9 (apparatus VARCHAR, rank_final VARCHAR, competition_description VARCHAR)
|
On what day did the team play the Indianapolis Colts?
|
SELECT date FROM table_name_26 WHERE opponent = "indianapolis colts"
|
CREATE TABLE table_name_26 (date VARCHAR, opponent VARCHAR)
|
What is the mascot for the school founded in 1923 with the school colors of blue, red & white?
|
SELECT mascot FROM table_12434380_1 WHERE founded = 1923 AND school_colors = "Blue, Red & White"
|
CREATE TABLE table_12434380_1 (mascot VARCHAR, founded VARCHAR, school_colors VARCHAR)
|
What is the largest Attendance with a Loss of darling (0–1)?
|
SELECT MAX(attendance) FROM table_name_35 WHERE loss = "darling (0–1)"
|
CREATE TABLE table_name_35 (attendance INTEGER, loss VARCHAR)
|
When 0 is the top 10's what is the highest amount of cuts made?
|
SELECT MAX(cuts_made) FROM table_24330912_1 WHERE top_10s = 0
|
CREATE TABLE table_24330912_1 (cuts_made INTEGER, top_10s VARCHAR)
|
What did vijay singh score with a +5 to par?
|
SELECT score FROM table_name_92 WHERE to_par = "+5" AND player = "vijay singh"
|
CREATE TABLE table_name_92 (score VARCHAR, to_par VARCHAR, player VARCHAR)
|
Where is channel 83 broadcasted?
|
SELECT territory FROM table_name_86 WHERE channel = 83
|
CREATE TABLE table_name_86 (territory VARCHAR, channel VARCHAR)
|
Who is performer 4 on episode 3, where Jim Sweeney was performer 1?
|
SELECT performer_4 FROM table_name_86 WHERE performer_1 = "jim sweeney" AND episode = 3
|
CREATE TABLE table_name_86 (performer_4 VARCHAR, performer_1 VARCHAR, episode VARCHAR)
|
What municipality has 719 people and is larger than 108.46 km2?
|
SELECT regional_county_municipality FROM table_name_30 WHERE area__km_2__ > 108.46 AND population = 719
|
CREATE TABLE table_name_30 (regional_county_municipality VARCHAR, area__km_2__ VARCHAR, population VARCHAR)
|
What is the maximum number of games when the season is more recent than 2001 and the average is less than 10,838?
|
SELECT MAX(games) FROM table_name_90 WHERE season > 2001 AND average < 10 OFFSET 838
|
CREATE TABLE table_name_90 (games INTEGER, season VARCHAR, average VARCHAR)
|
What is the package/option for Italy when the language is italian?
|
SELECT package_option FROM table_name_24 WHERE country = "italy" AND language = "italian"
|
CREATE TABLE table_name_24 (package_option VARCHAR, country VARCHAR, language VARCHAR)
|
When was the first cap associated with 39 caps and under 33 goals?
|
SELECT first_cap FROM table_name_29 WHERE goals < 33 AND caps = 39
|
CREATE TABLE table_name_29 (first_cap VARCHAR, goals VARCHAR, caps VARCHAR)
|
What Nation has more than 4 silver, more than 3 gold and 18 total medals?
|
SELECT nation FROM table_name_76 WHERE silver > 4 AND gold > 3 AND total = 18
|
CREATE TABLE table_name_76 (nation VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR)
|
What is Mass, when Launch Date/Time ( GMT ) is 25 November 1976, 03:59?
|
SELECT mass FROM table_name_29 WHERE launch_date_time___gmt__ = "25 november 1976, 03:59"
|
CREATE TABLE table_name_29 (mass VARCHAR, launch_date_time___gmt__ VARCHAR)
|
Which crystal structures has a Tc(K) of 110 and the number of Cu-O planes in the unit cell is 3?
|
SELECT crystal_structure FROM table_name_67 WHERE no_of_cu_o_planes_in_unit_cell = 3 AND t_c__k_ = 110
|
CREATE TABLE table_name_67 (crystal_structure VARCHAR, no_of_cu_o_planes_in_unit_cell VARCHAR, t_c__k_ VARCHAR)
|
How many gold medals for bellbrook HS with less than 1 silver?
|
SELECT COUNT(gold_medals) FROM table_name_73 WHERE ensemble = "bellbrook hs" AND silver_medals < 1
|
CREATE TABLE table_name_73 (gold_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR)
|
Find the names of nurses who are nursing an undergoing treatment.
|
SELECT DISTINCT T2.name FROM undergoes AS T1 JOIN nurse AS T2 ON T1.AssistingNurse = T2.EmployeeID
|
CREATE TABLE undergoes (AssistingNurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR)
|
What position did the kr team player play?
|
SELECT position FROM table_name_15 WHERE team = "kr"
|
CREATE TABLE table_name_15 (position VARCHAR, team VARCHAR)
|
Which team played at home for the second leg and has an aggregate score of 2-4?
|
SELECT home__2nd_leg_ FROM table_name_39 WHERE aggregate = "2-4"
|
CREATE TABLE table_name_39 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)
|
Name the record for february 27
|
SELECT record FROM table_name_67 WHERE date = "february 27"
|
CREATE TABLE table_name_67 (record VARCHAR, date VARCHAR)
|
Name the casualities for kabul area
|
SELECT casualties FROM table_name_74 WHERE location = "kabul area"
|
CREATE TABLE table_name_74 (casualties VARCHAR, location VARCHAR)
|
What is the highest round that has an overall of 143 and a pick greater than 6?
|
SELECT MAX(round) FROM table_name_36 WHERE overall = 143 AND pick > 6
|
CREATE TABLE table_name_36 (round INTEGER, overall VARCHAR, pick VARCHAR)
|
List all the image name and URLs in the order of their names.
|
SELECT image_name, image_url FROM images ORDER BY image_name
|
CREATE TABLE images (image_name VARCHAR, image_url VARCHAR)
|
What is the outcome on March 20, 1994?
|
SELECT outcome FROM table_name_89 WHERE date = "march 20, 1994"
|
CREATE TABLE table_name_89 (outcome VARCHAR, date VARCHAR)
|
Which competition before 1982 had a score of 2:3?
|
SELECT competition FROM table_name_96 WHERE year < 1982 AND score = "2:3"
|
CREATE TABLE table_name_96 (competition VARCHAR, year VARCHAR, score VARCHAR)
|
Show ids, customer ids, names for all accounts.
|
SELECT account_id, customer_id, account_name FROM Accounts
|
CREATE TABLE Accounts (account_id VARCHAR, customer_id VARCHAR, account_name VARCHAR)
|
What is the average year for Faces?
|
SELECT AVG(year) FROM table_name_61 WHERE title = "faces"
|
CREATE TABLE table_name_61 (year INTEGER, title VARCHAR)
|
What is Score, when Player is "Jeff Maggert"?
|
SELECT score FROM table_name_76 WHERE player = "jeff maggert"
|
CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)
|
Which game had a record of 6-9-7?
|
SELECT game FROM table_17360840_5 WHERE record = "6-9-7"
|
CREATE TABLE table_17360840_5 (game VARCHAR, record VARCHAR)
|
What is the average age for each gender?
|
SELECT AVG(age), gender FROM Person GROUP BY gender
|
CREATE TABLE Person (gender VARCHAR, age INTEGER)
|
What is the score when november 15 is the date?
|
SELECT score FROM table_name_86 WHERE date = "november 15"
|
CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR)
|
How many averages were listed for the couple who had 12 dances?
|
SELECT COUNT(average) FROM table_23662356_3 WHERE number_of_dances = 12
|
CREATE TABLE table_23662356_3 (average VARCHAR, number_of_dances VARCHAR)
|
What is the Parts-per example of 2×10 −6?
|
SELECT parts_per_example FROM table_name_75 WHERE value_of_quantity = "2×10 −6"
|
CREATE TABLE table_name_75 (parts_per_example VARCHAR, value_of_quantity VARCHAR)
|
Who got the pole position if the supporting is USAC National Midget Series?
|
SELECT pole_position FROM table_25459168_2 WHERE supporting = "USAC National Midget Series"
|
CREATE TABLE table_25459168_2 (pole_position VARCHAR, supporting VARCHAR)
|
Who had the most assists and how many did they have on October 7?
|
SELECT high_assists FROM table_27722408_2 WHERE date = "October 7"
|
CREATE TABLE table_27722408_2 (high_assists VARCHAR, date VARCHAR)
|
What time is listed against Elimination number 2?
|
SELECT time FROM table_name_21 WHERE elimination = "2"
|
CREATE TABLE table_name_21 (time VARCHAR, elimination VARCHAR)
|
What is the shipping agent code of shipping agent UPS?
|
SELECT shipping_agent_code FROM Ref_Shipping_Agents WHERE shipping_agent_name = "UPS"
|
CREATE TABLE Ref_Shipping_Agents (shipping_agent_code VARCHAR, shipping_agent_name VARCHAR)
|
How many attended game(s) against the boston patriots?
|
SELECT attendance FROM table_17779448_1 WHERE opponent = "Boston Patriots"
|
CREATE TABLE table_17779448_1 (attendance VARCHAR, opponent VARCHAR)
|
What is the value of D 43 √ when the value of D 42 √ is d 42 √?
|
SELECT d_43_√ FROM table_name_58 WHERE d_42_√ = "d 42 √"
|
CREATE TABLE table_name_58 (d_43_√ VARCHAR, d_42_√ VARCHAR)
|
What is the average draw that has a lost less than 4, gwardia bydgoszcz as the team, with a match greater than 5?
|
SELECT AVG(draw) FROM table_name_14 WHERE lost < 4 AND team = "gwardia bydgoszcz" AND match > 5
|
CREATE TABLE table_name_14 (draw INTEGER, match VARCHAR, lost VARCHAR, team VARCHAR)
|
Which highest pick number's name was Adam Podlesh, when the overall was less than 101?
|
SELECT MAX(pick__number) FROM table_name_2 WHERE name = "adam podlesh" AND overall < 101
|
CREATE TABLE table_name_2 (pick__number INTEGER, name VARCHAR, overall VARCHAR)
|
What was the total number for the Bulls when they were at Old Trafford?
|
SELECT COUNT(bulls) FROM table_name_27 WHERE venue = "old trafford"
|
CREATE TABLE table_name_27 (bulls VARCHAR, venue VARCHAR)
|
What is the average Total with a Rank greater than 1, and a Bronze larger than 8?
|
SELECT AVG(total) FROM table_name_3 WHERE rank > 1 AND bronze > 8
|
CREATE TABLE table_name_3 (total INTEGER, rank VARCHAR, bronze VARCHAR)
|
What was the number of "The Word" segments for episode number 727?
|
SELECT COUNT(the_wørd) FROM table_25691838_6 WHERE episode__number = 727
|
CREATE TABLE table_25691838_6 (the_wørd VARCHAR, episode__number VARCHAR)
|
What was the score on may 19?
|
SELECT score FROM table_name_77 WHERE date = "may 19"
|
CREATE TABLE table_name_77 (score VARCHAR, date VARCHAR)
|
What is the largest number of races when there are less than 6 podiums, the series is the formula renault 2.0 eurocup, and there are more than 0 wins?
|
SELECT MAX(races) FROM table_name_5 WHERE podiums < 6 AND series = "formula renault 2.0 eurocup" AND wins > 0
|
CREATE TABLE table_name_5 (races INTEGER, wins VARCHAR, podiums VARCHAR, series VARCHAR)
|
Name the total number of EBIT (US $m) in 2011 and a Earnings per share (¢) larger than 47?
|
SELECT COUNT(ebit__us_) AS $m_ FROM table_name_46 WHERE year_to_april = 2011 AND earnings_per_share__¢_ > 47
|
CREATE TABLE table_name_46 (ebit__us_ VARCHAR, year_to_april VARCHAR, earnings_per_share__¢_ VARCHAR)
|
What is the average Frequency MHz that is on farwell, texas?
|
SELECT AVG(frequency_mhz) FROM table_name_72 WHERE city_of_license = "farwell, texas"
|
CREATE TABLE table_name_72 (frequency_mhz INTEGER, city_of_license VARCHAR)
|
When phonetic realisation is [[[|u]]], what is the variant with niqqud?
|
SELECT variant__with_niqqud__ FROM table_name_84 WHERE phonetic_realisation = "[[[|u]]]"
|
CREATE TABLE table_name_84 (variant__with_niqqud__ VARCHAR, phonetic_realisation VARCHAR)
|
Who were the performance liaisons for the dramaturge Chrisena Ricci?
|
SELECT performance_liaison FROM table_22410780_1 WHERE dramaturge = "Chrisena Ricci"
|
CREATE TABLE table_22410780_1 (performance_liaison VARCHAR, dramaturge VARCHAR)
|
Which regions are owned by estado de tabasco?
|
SELECT region FROM table_2899987_2 WHERE owner = "Estado de Tabasco"
|
CREATE TABLE table_2899987_2 (region VARCHAR, owner VARCHAR)
|
what is the number of smallpox when typhoid fever is 293
|
SELECT MAX(smallpox) FROM table_1007688_1 WHERE typhoid_fever = 293
|
CREATE TABLE table_1007688_1 (smallpox INTEGER, typhoid_fever VARCHAR)
|
What are the names of countries that have both players with position forward and players with position defender?
|
SELECT T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Forward" INTERSECT SELECT T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Defender"
|
CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, Position VARCHAR)
|
What year was the BBC two total viewing 7,530,000?
|
SELECT MIN(year) FROM table_103084_4 WHERE bbc_two_total_viewing = "7,530,000"
|
CREATE TABLE table_103084_4 (year INTEGER, bbc_two_total_viewing VARCHAR)
|
How much Voltage (kV) has a Country of argentina, and a Power (MW) larger than 30, and a Supply point of yacyretá?
|
SELECT COUNT(voltage__kv_) FROM table_name_44 WHERE country = "argentina" AND power__mw_ > 30 AND supply_point = "yacyretá"
|
CREATE TABLE table_name_44 (voltage__kv_ VARCHAR, supply_point VARCHAR, country VARCHAR, power__mw_ VARCHAR)
|
For the game with team of @ Chicago, what was the final score?
|
SELECT score FROM table_name_19 WHERE team = "@ chicago"
|
CREATE TABLE table_name_19 (score VARCHAR, team VARCHAR)
|
When the communities name is Balmoral and the area is over 43.51 kilometers squared, what's the total population amount?
|
SELECT COUNT(population) FROM table_name_56 WHERE official_name = "balmoral" AND area_km_2 > 43.51
|
CREATE TABLE table_name_56 (population VARCHAR, official_name VARCHAR, area_km_2 VARCHAR)
|
What is the average goals less than 41 that goalkeeper Claudio Bravo had?
|
SELECT COUNT(average) FROM table_name_85 WHERE goals < 41 AND goalkeeper = "claudio bravo"
|
CREATE TABLE table_name_85 (average VARCHAR, goals VARCHAR, goalkeeper VARCHAR)
|
What is the average number of wins for the Terang Club, when there are less than 0 draws?
|
SELECT AVG(wins) FROM table_name_43 WHERE club = "terang" AND draws < 0
|
CREATE TABLE table_name_43 (wins INTEGER, club VARCHAR, draws VARCHAR)
|
Which Spoofed title had Mort Drucker as the artist in issue 88?
|
SELECT spoofed_title FROM table_name_97 WHERE artist = "mort drucker" AND issue = 88
|
CREATE TABLE table_name_97 (spoofed_title VARCHAR, artist VARCHAR, issue VARCHAR)
|
What Week 4 has a Week 2 of samantha speer?
|
SELECT week_4 FROM table_name_62 WHERE week_2 = "samantha speer"
|
CREATE TABLE table_name_62 (week_4 VARCHAR, week_2 VARCHAR)
|
What was the winning score of the Valero Texas Open?
|
SELECT winning_score FROM table_name_99 WHERE tournament = "valero texas open"
|
CREATE TABLE table_name_99 (winning_score VARCHAR, tournament VARCHAR)
|
What is the official name of the land with an area of 276.84 km2?
|
SELECT official_name FROM table_170958_2 WHERE area_km_2 = "276.84"
|
CREATE TABLE table_170958_2 (official_name VARCHAR, area_km_2 VARCHAR)
|
What is the average number of laps for grid 8?
|
SELECT AVG(laps) FROM table_name_69 WHERE grid = 8
|
CREATE TABLE table_name_69 (laps INTEGER, grid VARCHAR)
|
Which Electricity Grid started its Commercial Operation of 24.03.1973?
|
SELECT electricity_grid FROM table_name_17 WHERE commercial_operation = "24.03.1973"
|
CREATE TABLE table_name_17 (electricity_grid VARCHAR, commercial_operation VARCHAR)
|
What school did the player that is 6-6 go to?
|
SELECT school FROM table_name_69 WHERE height = "6-6"
|
CREATE TABLE table_name_69 (school VARCHAR, height VARCHAR)
|
Name the production code for november 08, 1985
|
SELECT prod_code FROM table_20967430_2 WHERE original_air_date = "November 08, 1985"
|
CREATE TABLE table_20967430_2 (prod_code VARCHAR, original_air_date VARCHAR)
|
How many values for attendance on the date of August 26?
|
SELECT COUNT(attendance) FROM table_23916462_3 WHERE date = "August 26"
|
CREATE TABLE table_23916462_3 (attendance VARCHAR, date VARCHAR)
|
What is the highest W of the 0 L?
|
SELECT MAX(w) FROM table_29542147_2 WHERE l = 0
|
CREATE TABLE table_29542147_2 (w INTEGER, l VARCHAR)
|
Which language has Programming from India, general genre, a network of ptc punjabi and bell fibe tv service?
|
SELECT language FROM table_name_80 WHERE origin_of_programming = "india" AND genre = "general" AND network = "ptc punjabi" AND service = "bell fibe tv"
|
CREATE TABLE table_name_80 (language VARCHAR, service VARCHAR, network VARCHAR, origin_of_programming VARCHAR, genre VARCHAR)
|
What is the playoffs 1 result of season 2004-05?
|
SELECT playoffs_1 FROM table_name_41 WHERE season = "2004-05"
|
CREATE TABLE table_name_41 (playoffs_1 VARCHAR, season VARCHAR)
|
What is the highest channel number?
|
SELECT MAX(channel_number) FROM table_27871460_2
|
CREATE TABLE table_27871460_2 (channel_number INTEGER)
|
What manner of departure is listed with an appointment date of 13 march 2008
|
SELECT manner_of_departure FROM table_11206916_2 WHERE date_of_appointment = "13 March 2008"
|
CREATE TABLE table_11206916_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.