question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
From which region is the album with release date of 19 June 2007? | CREATE TABLE table_name_7 (region VARCHAR, date VARCHAR) | SELECT region FROM table_name_7 WHERE date = "19 june 2007" |
Which client had no GNU/Linux? | CREATE TABLE table_name_36 (client VARCHAR, gnu_linux VARCHAR) | SELECT client FROM table_name_36 WHERE gnu_linux = "no" |
WHAT IS THE STUDIO WITH A GROSS $81,198,894? | CREATE TABLE table_name_49 (studio VARCHAR, gross VARCHAR) | SELECT studio FROM table_name_49 WHERE gross = "$81,198,894" |
Which average Points have a Position of 7, and a Lost smaller than 4? | CREATE TABLE table_name_34 (points INTEGER, position VARCHAR, lost VARCHAR) | SELECT AVG(points) FROM table_name_34 WHERE position = 7 AND lost < 4 |
In which round did Roy Salvadori won Class D and Alan Hutcheson won Class B? | CREATE TABLE table_24853015_1 (round VARCHAR, class_d_winner VARCHAR, class_b_winner VARCHAR) | SELECT round FROM table_24853015_1 WHERE class_d_winner = "Roy Salvadori" AND class_b_winner = "Alan Hutcheson" |
Which team plays home in western oval venue? | CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_16 WHERE venue = "western oval" |
What is the smoke point when the polyunsaturated fat is 69g (4g in high oleic variety)? | CREATE TABLE table_name_24 (smoke_point VARCHAR, polyunsaturated_fat VARCHAR) | SELECT smoke_point FROM table_name_24 WHERE polyunsaturated_fat = "69g (4g in high oleic variety)" |
with api level 3, what is the code name? | CREATE TABLE table_name_12 (code_name VARCHAR, api_level VARCHAR) | SELECT code_name FROM table_name_12 WHERE api_level = 3 |
What did the away team score when playing North Melbourne? | CREATE TABLE table_name_79 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_79 WHERE home_team = "north melbourne" |
Which language is spoken by the largest number of countries? | CREATE TABLE countrylanguage (LANGUAGE VARCHAR) | SELECT LANGUAGE FROM countrylanguage GROUP BY LANGUAGE ORDER BY COUNT(*) DESC LIMIT 1 |
What is the Average of Men in Pain with a Finale of less than 33? | CREATE TABLE table_name_70 (average INTEGER, english_title VARCHAR, finale VARCHAR) | SELECT AVG(average) FROM table_name_70 WHERE english_title = "men in pain" AND finale < 33 |
What were the remarks for a destination under 19 and rank less than 5? | CREATE TABLE table_name_83 (remarks VARCHAR, destination_number VARCHAR, rank VARCHAR) | SELECT remarks FROM table_name_83 WHERE destination_number < 19 AND rank < 5 |
What is the weight of the player from pvk jadran club? | CREATE TABLE table_name_96 (weight VARCHAR, club VARCHAR) | SELECT weight FROM table_name_96 WHERE club = "pvk jadran" |
How many RolePlay actors played the same role as FlatSpin's Tracy Taylor? | CREATE TABLE table_17827271_1 (roleplay VARCHAR, flatspin VARCHAR) | SELECT COUNT(roleplay) FROM table_17827271_1 WHERE flatspin = "Tracy Taylor" |
What was the winner share (in $) in the year when Se Ri Pak (2) was the champion? | CREATE TABLE table_229059_2 (winners_share__ INTEGER, champion VARCHAR) | SELECT MIN(winners_share__) AS $_ FROM table_229059_2 WHERE champion = "Se Ri Pak (2)" |
What was the result when Dundee were the Opponent at Venue A on 6 September 1986? | CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR, opponent VARCHAR, venue VARCHAR) | SELECT result FROM table_name_9 WHERE opponent = "dundee" AND venue = "a" AND date = "6 september 1986" |
Find the cities which have exactly two airports. | CREATE TABLE airports (city VARCHAR) | SELECT city FROM airports GROUP BY city HAVING COUNT(*) = 2 |
Which player is in position center for round 2? | CREATE TABLE table_name_88 (player VARCHAR, round VARCHAR, position VARCHAR) | SELECT player FROM table_name_88 WHERE round = "2" AND position = "center" |
When goals conceded is greater than 17 with 37 points, what is the greatest played? | CREATE TABLE table_name_51 (played INTEGER, points VARCHAR, goals_conceded VARCHAR) | SELECT MAX(played) FROM table_name_51 WHERE points = 37 AND goals_conceded > 17 |
How many names are listed for the player with 50 points? | CREATE TABLE table_25401874_1 (name VARCHAR, points VARCHAR) | SELECT COUNT(name) FROM table_25401874_1 WHERE points = 50 |
What is the Japanese orthography for National Fisheries University? | CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR) | SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = "National Fisheries University" |
How many authors are present when the original was Carry On? | CREATE TABLE table_19523708_1 (authors VARCHAR, original VARCHAR) | SELECT COUNT(authors) FROM table_19523708_1 WHERE original = "Carry On" |
From which country was the player whose year(s) won was 1983? | CREATE TABLE table_name_9 (country VARCHAR, year_s__won VARCHAR) | SELECT country FROM table_name_9 WHERE year_s__won = "1983" |
How many teams that played won 0 games? | CREATE TABLE table_20760802_1 (played VARCHAR, won VARCHAR) | SELECT played FROM table_20760802_1 WHERE won = "0" |
What is the score when the tie is 8? | CREATE TABLE table_name_53 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_53 WHERE tie_no = "8" |
List the number for the operator melbourne and metropolitan tramways board. | CREATE TABLE table_22481967_1 (number VARCHAR, operator VARCHAR) | SELECT number FROM table_22481967_1 WHERE operator = "Melbourne and Metropolitan Tramways Board" |
What is the number of 2012 passengers in millions that have traveled a distance of 1075km? | CREATE TABLE table_name_56 (distance VARCHAR) | SELECT COUNT(2012 AS _passengers__in_millions_) FROM table_name_56 WHERE distance = "1075km" |
Name the lowest ERP W with a frequency mhz less than 103.1 | CREATE TABLE table_name_21 (erp_w INTEGER, frequency_mhz INTEGER) | SELECT MIN(erp_w) FROM table_name_21 WHERE frequency_mhz < 103.1 |
what's the primary payload(s) with launch date being july 8, 1994 | CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, launch_date VARCHAR) | SELECT primary_payload_s_ FROM table_14118521_1 WHERE launch_date = "July 8, 1994" |
What was the attendance on 10 november 2004? | CREATE TABLE table_name_31 (attendance INTEGER, date VARCHAR) | SELECT AVG(attendance) FROM table_name_31 WHERE date = "10 november 2004" |
How big (in km2) is the district with a code BW? | CREATE TABLE table_2801442_1 (area__km²_ INTEGER, code VARCHAR) | SELECT MIN(area__km²_) FROM table_2801442_1 WHERE code = "BW" |
What was the final score on March 26? | CREATE TABLE table_11959669_7 (score VARCHAR, date VARCHAR) | SELECT score FROM table_11959669_7 WHERE date = "March 26" |
Which Oricon has a Romaji title of nakitakunalu? | CREATE TABLE table_name_17 (oricon INTEGER, romaji_title VARCHAR) | SELECT MAX(oricon) FROM table_name_17 WHERE romaji_title = "nakitakunalu" |
List the year in which the driver was in 1st place. | CREATE TABLE table_25561038_1 (season VARCHAR, position VARCHAR) | SELECT season FROM table_25561038_1 WHERE position = "1st" |
Where was d: ~50nm, l: ~600nm geometry researched? | CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR) | SELECT researched_at FROM table_30057479_1 WHERE geometry = "D: ~50nm, L: ~600nm" |
What rank is Vaud with the lowest point is Lake Geneva? | CREATE TABLE table_name_19 (rank INTEGER, lowest_point VARCHAR, canton VARCHAR) | SELECT SUM(rank) FROM table_name_19 WHERE lowest_point = "lake geneva" AND canton = "vaud" |
What attendance has October 16, 2005 as the date? | CREATE TABLE table_name_81 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_81 WHERE date = "october 16, 2005" |
What school did the player Ethan Bennett attend? | CREATE TABLE table_11677100_16 (school VARCHAR, player VARCHAR) | SELECT school FROM table_11677100_16 WHERE player = "Ethan Bennett" |
Who is the opponent of the match with a H/A of h, Beguiristain Iceta as the referee, and a kick off at 1993-04-18 17:00? | CREATE TABLE table_name_50 (opponents VARCHAR, kick_off VARCHAR, h___a VARCHAR, referee VARCHAR) | SELECT opponents FROM table_name_50 WHERE h___a = "h" AND referee = "beguiristain iceta" AND kick_off = "1993-04-18 17:00" |
Which opponent has a Round of r5? | CREATE TABLE table_name_51 (opponent VARCHAR, round VARCHAR) | SELECT opponent FROM table_name_51 WHERE round = "r5" |
What is the name of the player in position lb and an overall of 128? | CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, overall VARCHAR) | SELECT player FROM table_name_65 WHERE position = "lb" AND overall = 128 |
what is the venue on 21 june 1987? | CREATE TABLE table_name_43 (venue VARCHAR, year VARCHAR) | SELECT venue FROM table_name_43 WHERE year = "21 june 1987" |
What is the Location when the team was seve ballesteros & manuel piñero? | CREATE TABLE table_name_61 (location VARCHAR, team VARCHAR) | SELECT location FROM table_name_61 WHERE team = "seve ballesteros & manuel piñero" |
What is the marketing region code that has the most drama workshop groups? | CREATE TABLE Drama_Workshop_Groups (Marketing_Region_Code VARCHAR) | SELECT Marketing_Region_Code FROM Drama_Workshop_Groups GROUP BY Marketing_Region_Code ORDER BY COUNT(*) DESC LIMIT 1 |
What was the career duration of the bowler who played 60 matches? | CREATE TABLE table_18914438_1 (career VARCHAR, matches VARCHAR) | SELECT career FROM table_18914438_1 WHERE matches = 60 |
Where was game number 5 played? | CREATE TABLE table_23286112_12 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_23286112_12 WHERE game = 5 |
What was North Melbourne's score as the home team? | CREATE TABLE table_name_30 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_30 WHERE home_team = "north melbourne" |
What is the title of the episode directed by Charles Beeson? | CREATE TABLE table_24649082_1 (title VARCHAR, directed_by VARCHAR) | SELECT title FROM table_24649082_1 WHERE directed_by = "Charles Beeson" |
How many stories have a height less than 138 meters with a completion date in 1971? | CREATE TABLE table_name_53 (stories VARCHAR, height__m_ VARCHAR, year_of_completion VARCHAR) | SELECT stories FROM table_name_53 WHERE height__m_ < 138 AND year_of_completion = 1971 |
Which opponent has a Time of 1:34? | CREATE TABLE table_name_46 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_46 WHERE time = "1:34" |
Show the names of phones and the districts of markets they are on. | CREATE TABLE phone (Name VARCHAR, Phone_ID VARCHAR); CREATE TABLE market (District VARCHAR, Market_ID VARCHAR); CREATE TABLE phone_market (Market_ID VARCHAR, Phone_ID VARCHAR) | SELECT T3.Name, T2.District FROM phone_market AS T1 JOIN market AS T2 ON T1.Market_ID = T2.Market_ID JOIN phone AS T3 ON T1.Phone_ID = T3.Phone_ID |
Which title had Notes of 8 episodes? | CREATE TABLE table_name_90 (title VARCHAR, notes VARCHAR) | SELECT title FROM table_name_90 WHERE notes = "8 episodes" |
What is the Callsign for the station with the branding 93dot5 home radio Cagayan De Oro? | CREATE TABLE table_name_31 (callsign VARCHAR, branding VARCHAR) | SELECT callsign FROM table_name_31 WHERE branding = "93dot5 home radio cagayan de oro" |
What is the license that is described as a tool for designing and executing workflows? | CREATE TABLE table_25474825_1 (license VARCHAR, description VARCHAR) | SELECT license FROM table_25474825_1 WHERE description = "Tool for designing and executing workflows" |
Which of the first parties has second member as Charles Robert Colvile, and a liberal second party? | CREATE TABLE table_name_50 (first_party VARCHAR, second_member VARCHAR, second_party VARCHAR) | SELECT first_party FROM table_name_50 WHERE second_member = "charles robert colvile" AND second_party = "liberal" |
Name the least finish for larry dickson | CREATE TABLE table_24004949_1 (finish INTEGER, driver VARCHAR) | SELECT MIN(finish) FROM table_24004949_1 WHERE driver = "Larry Dickson" |
Show the names of aircrafts that are associated with both an airport named "London Heathrow" and an airport named "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) | 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... |
Name The Title which has a Track number of 07, and a Record label of emi on 21 april 2006? | CREATE TABLE table_name_73 (title VARCHAR, release_date VARCHAR, track_number VARCHAR, record_label VARCHAR) | SELECT title FROM table_name_73 WHERE track_number = "07" AND record_label = "emi" AND release_date = "21 april 2006" |
What is the name of the episode written by alison cross? | CREATE TABLE table_27969432_2 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_27969432_2 WHERE written_by = "Alison Cross" |
What is the average enrollment of the Redbirds' school? | CREATE TABLE table_name_47 (enrollment INTEGER, nickname VARCHAR) | SELECT AVG(enrollment) FROM table_name_47 WHERE nickname = "redbirds" |
What is the date of creation of the locomotive of type 0-6-0 and GSR class of 441? | CREATE TABLE table_name_31 (date_made VARCHAR, type VARCHAR, gsr_class VARCHAR) | SELECT date_made FROM table_name_31 WHERE type = "0-6-0" AND gsr_class = "441" |
Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰? | CREATE TABLE table_name_14 (population__2005_ INTEGER, literacy__2003_ VARCHAR, infant_mortality__2002_ VARCHAR) | SELECT SUM(population__2005_) FROM table_name_14 WHERE literacy__2003_ = "90%" AND infant_mortality__2002_ = "18.3‰" |
Which stadium name contains the substring "Bank"? | CREATE TABLE stadium (name VARCHAR) | SELECT name FROM stadium WHERE name LIKE "%Bank%" |
Which engine did dr ing f porsche kg use with the porsche rsk (f2) chassis? | CREATE TABLE table_name_77 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR) | SELECT engine FROM table_name_77 WHERE entrant = "dr ing f porsche kg" AND chassis = "porsche rsk (f2)" |
Name the candidates for first elected being 1976 | CREATE TABLE table_25030512_24 (candidates VARCHAR, first_elected VARCHAR) | SELECT candidates FROM table_25030512_24 WHERE first_elected = "1976" |
Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009? | CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR) | SELECT nationality FROM table_name_57 WHERE player = "keith bogans" AND years_in_orlando = "2006–2009" |
What was the largest attended game? | CREATE TABLE table_23486853_5 (attendance INTEGER) | SELECT MAX(attendance) FROM table_23486853_5 |
What is the english title that has finale as 33 and peak as 42? | CREATE TABLE table_11173827_1 (english_title VARCHAR, finale VARCHAR, peak VARCHAR) | SELECT english_title FROM table_11173827_1 WHERE finale = 33 AND peak = 42 |
What was the score when the tie no was 13? | CREATE TABLE table_name_87 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_87 WHERE tie_no = "13" |
Which Album has an Artist of various artists (compilation), and a Label of laface? | CREATE TABLE table_name_53 (album VARCHAR, artist VARCHAR, label VARCHAR) | SELECT album FROM table_name_53 WHERE artist = "various artists (compilation)" AND label = "laface" |
How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0? | CREATE TABLE table_name_45 (field_goals INTEGER, extra_points VARCHAR, touchdowns VARCHAR, player VARCHAR) | SELECT SUM(field_goals) FROM table_name_45 WHERE touchdowns < 3 AND player = "willis ward" AND extra_points < 0 |
What was the incumbent for texas 19? | CREATE TABLE table_1341663_44 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_1341663_44 WHERE district = "Texas 19" |
What is the weight number when the distance was 5 ½ f? | CREATE TABLE table_name_89 (weight VARCHAR, distance VARCHAR) | SELECT COUNT(weight) FROM table_name_89 WHERE distance = "5 ½ f" |
What is the polyunsaturated fat with a smoke point of °c (), a total fat of 100g and 63g of monounsaturated fat? | CREATE TABLE table_name_28 (polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR, smoke_point VARCHAR, total_fat VARCHAR) | SELECT polyunsaturated_fat FROM table_name_28 WHERE smoke_point = "°c ()" AND total_fat = "100g" AND monounsaturated_fat = "63g" |
How many tickets were available at Halle Tony Garnier on June 15, 2009? | CREATE TABLE table_name_75 (tickets_available_since VARCHAR, venue VARCHAR, date VARCHAR) | SELECT tickets_available_since FROM table_name_75 WHERE venue = "halle tony garnier" AND date = "june 15, 2009" |
What venue is in Santa Barbara, California? | CREATE TABLE table_name_58 (venue VARCHAR, state VARCHAR, city VARCHAR) | SELECT venue FROM table_name_58 WHERE state = "california" AND city = "santa barbara" |
Record of 44–18–8 involves which score? | CREATE TABLE table_name_95 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_95 WHERE record = "44–18–8" |
What internet explorer has 1.67% as the opera, with 2012 q1 as the period? | CREATE TABLE table_name_4 (internet_explorer VARCHAR, opera VARCHAR, period VARCHAR) | SELECT internet_explorer FROM table_name_4 WHERE opera = "1.67%" AND period = "2012 q1" |
Show different ways to get to attractions and the number of attractions that can be accessed in the corresponding way. | CREATE TABLE Tourist_Attractions (How_to_Get_There VARCHAR) | SELECT How_to_Get_There, COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There |
What is tony lema's to par? | CREATE TABLE table_name_56 (to_par INTEGER, player VARCHAR) | SELECT SUM(to_par) FROM table_name_56 WHERE player = "tony lema" |
What is the venue for the Status of Five Nations and 0 againts? | CREATE TABLE table_name_38 (venue VARCHAR, status VARCHAR, against VARCHAR) | SELECT venue FROM table_name_38 WHERE status = "five nations" AND against = 0 |
Which District has a Republican of dan mansell? | CREATE TABLE table_name_25 (district INTEGER, republican VARCHAR) | SELECT AVG(district) FROM table_name_25 WHERE republican = "dan mansell" |
What is the territory with 17 screens? | CREATE TABLE table_name_91 (territory VARCHAR, screens VARCHAR) | SELECT territory FROM table_name_91 WHERE screens = 17 |
How many 'United Airlines' flights depart from Airport 'AHD'? | CREATE TABLE FLIGHTS (Airline VARCHAR, SourceAirport VARCHAR); CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR) | SELECT COUNT(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = "United Airlines" AND T2.SourceAirport = "AHD" |
How many losses did the 1943 MLB have? | CREATE TABLE table_name_61 (losses INTEGER, mlb_season VARCHAR) | SELECT AVG(losses) FROM table_name_61 WHERE mlb_season = "1943" |
Name the number of tomina for villa alcala for 176 | CREATE TABLE table_2509350_3 (tomina_municipality VARCHAR, villa_alcalá_municipality VARCHAR) | SELECT COUNT(tomina_municipality) FROM table_2509350_3 WHERE villa_alcalá_municipality = 176 |
What is the smallest Crowd number for the Venue named Princes Park? | CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_96 WHERE venue = "princes park" |
What is the Qaxmuğal village with a Malax village meşəbaş? | CREATE TABLE table_name_90 (qaxmuğal VARCHAR, malax VARCHAR) | SELECT qaxmuğal FROM table_name_90 WHERE malax = "meşəbaş" |
What is the coverage area of muzik fm station, which has a music genre? | CREATE TABLE table_name_65 (coverage_area VARCHAR, genre VARCHAR, station VARCHAR) | SELECT coverage_area FROM table_name_65 WHERE genre = "music" AND station = "muzik fm" |
Which type opened in 1982? | CREATE TABLE table_name_12 (type VARCHAR, opened VARCHAR) | SELECT type FROM table_name_12 WHERE opened = "1982" |
What is the vessel type for vessel operator Jumbo shipping? | CREATE TABLE table_26168687_3 (vessel_type VARCHAR, vessel_operator VARCHAR) | SELECT vessel_type FROM table_26168687_3 WHERE vessel_operator = "Jumbo Shipping" |
What is the upstream speed of the network that costs 39 tl? | CREATE TABLE table_17304621_14 (upstream VARCHAR, price_tl VARCHAR) | SELECT upstream FROM table_17304621_14 WHERE price_tl = "39 TL" |
Who was the winning driver in the Sachsenring circuit? | CREATE TABLE table_name_8 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_name_8 WHERE circuit = "sachsenring" |
What position is number 35 whose height is 6-6? | CREATE TABLE table_11734041_2 (position VARCHAR, height_in_ft VARCHAR, no_s_ VARCHAR) | SELECT position FROM table_11734041_2 WHERE height_in_ft = "6-6" AND no_s_ = "35" |
What is the rank for the man from China with notes of QS? | CREATE TABLE table_name_38 (rank INTEGER, notes VARCHAR, country VARCHAR) | SELECT MAX(rank) FROM table_name_38 WHERE notes = "qs" AND country = "china" |
show the train name and station name for each train. | CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train (name VARCHAR, train_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR, train_id VARCHAR) | SELECT T2.name, T3.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id |
What year has a decile more than 6, in the Waikouaiti area? | CREATE TABLE table_name_78 (years VARCHAR, decile VARCHAR, area VARCHAR) | SELECT years FROM table_name_78 WHERE decile > 6 AND area = "waikouaiti" |
Who directed the episode with a production code 3ADK-03? | CREATE TABLE table_12033013_3 (directed_by VARCHAR, production_code VARCHAR) | SELECT directed_by FROM table_12033013_3 WHERE production_code = "3ADK-03" |
Show all statement id and the number of accounts for each statement. | CREATE TABLE Accounts (STATEMENT_ID VARCHAR) | SELECT STATEMENT_ID, COUNT(*) FROM Accounts GROUP BY STATEMENT_ID |
What is the 2004 value if the 1998 value is 35? | CREATE TABLE table_name_73 (Id VARCHAR) | SELECT 2004 FROM table_name_73 WHERE 1998 = "35" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.