question
stringlengths 17
201
| answer
stringlengths 21
400
| context
stringlengths 32
286
|
---|---|---|
What is the average year that the club located in enfield was founded with an unknown coach? | SELECT AVG(founded) FROM table_name_87 WHERE coach = "unknown" AND location = "enfield" | CREATE TABLE table_name_87 (founded INTEGER, coach VARCHAR, location VARCHAR) |
What was the score on 2010-07-13 when Abby wambach had the assist/pass? | SELECT score FROM table_name_56 WHERE assist_pass = "abby wambach" AND date = "2010-07-13" | CREATE TABLE table_name_56 (score VARCHAR, assist_pass VARCHAR, date VARCHAR) |
what was the score when scoville jenkins was the opponent? | SELECT score FROM table_name_59 WHERE opponent = "scoville jenkins" | CREATE TABLE table_name_59 (score VARCHAR, opponent VARCHAR) |
What is the highest Goals Against, when Points is greater than 25, when Club is "SD Indautxu", and when Position is greater than 3? | SELECT MAX(goals_against) FROM table_name_21 WHERE points > 25 AND club = "sd indautxu" AND position > 3 | CREATE TABLE table_name_21 (goals_against INTEGER, position VARCHAR, points VARCHAR, club VARCHAR) |
What were the number of laps led by the driver with a finish position of 14? | SELECT laps AS Led FROM table_name_38 WHERE fin_pos = "14" | CREATE TABLE table_name_38 (laps VARCHAR, fin_pos VARCHAR) |
What is the rank of the Nation that has fewer than 24 total medals are more than 7 Gold medals? | SELECT AVG(rank) FROM table_name_51 WHERE total < 24 AND gold > 7 | CREATE TABLE table_name_51 (rank INTEGER, total VARCHAR, gold VARCHAR) |
WHAT IS THE GERMAN NAME OF LIBERALISM? | SELECT name__german_ FROM table_name_85 WHERE ideology = "liberalism" | CREATE TABLE table_name_85 (name__german_ VARCHAR, ideology VARCHAR) |
How many position does Jim Farmer play in? | SELECT COUNT(position) FROM table_11545282_6 WHERE player = "Jim Farmer" | CREATE TABLE table_11545282_6 (position VARCHAR, player VARCHAR) |
What actor plays Marie-Rose De Putter? | SELECT actor FROM table_name_73 WHERE character = "marie-rose de putter" | CREATE TABLE table_name_73 (actor VARCHAR, character VARCHAR) |
On what date was Motherwell the opponent at Fir Park? | SELECT date FROM table_name_77 WHERE opponent = "motherwell" AND venue = "fir park" | CREATE TABLE table_name_77 (date VARCHAR, opponent VARCHAR, venue VARCHAR) |
Which producer did Daniel Cormack direct? | SELECT producer_s_ FROM table_name_50 WHERE director_s_ = "daniel cormack" | CREATE TABLE table_name_50 (producer_s_ VARCHAR, director_s_ VARCHAR) |
What is the tournament with a w/o score on November 5, 2007? | SELECT tournament FROM table_name_62 WHERE score = "w/o" AND date = "november 5, 2007" | CREATE TABLE table_name_62 (tournament VARCHAR, score VARCHAR, date VARCHAR) |
Which School is located in Winter Park, FL (Hometown)? | SELECT school FROM table_name_65 WHERE hometown = "winter park, fl" | CREATE TABLE table_name_65 (school VARCHAR, hometown VARCHAR) |
How many previous years did Maebashi Ikuei high school have a total number of 1 participation? | SELECT COUNT(year_of_previous_participation) FROM table_2518850_4 WHERE total_number_of_participation = 1 AND high_school_name = "Maebashi Ikuei" | CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, total_number_of_participation VARCHAR, high_school_name VARCHAR) |
What is the name of the competition that has a score of 2-0? | SELECT competition FROM table_name_91 WHERE score = "2-0" | CREATE TABLE table_name_91 (competition VARCHAR, score VARCHAR) |
Which name has more than 14 points with less than 1 draw? | SELECT name FROM table_name_99 WHERE points > 14 AND drawn < 1 | CREATE TABLE table_name_99 (name VARCHAR, points VARCHAR, drawn VARCHAR) |
Who's the wrestler with an elimination of 1? | SELECT wrestler FROM table_name_6 WHERE elimination = "1" | CREATE TABLE table_name_6 (wrestler VARCHAR, elimination VARCHAR) |
FOR AUGUST 13 WHAT IS THE RND ? | SELECT MAX(rnd) FROM table_16732659_2 WHERE date = "August 13" | CREATE TABLE table_16732659_2 (rnd INTEGER, date VARCHAR) |
WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO? | SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = "Piret Hamer Helen Reino" | CREATE TABLE table_14903627_1 (mens_doubles VARCHAR, womens_doubles VARCHAR) |
What is the population in 2011 for the name Beaubassin East? | SELECT population__2011_ FROM table_26321719_1 WHERE name = "Beaubassin East" | CREATE TABLE table_26321719_1 (population__2011_ VARCHAR, name VARCHAR) |
What player has 69-70-68-73=280 as the score? | SELECT player FROM table_name_52 WHERE score = 69 - 70 - 68 - 73 = 280 | CREATE TABLE table_name_52 (player VARCHAR, score VARCHAR) |
What is Score, when Country is "United States", and when To Par is "+4"? | SELECT score FROM table_name_56 WHERE country = "united states" AND to_par = "+4" | CREATE TABLE table_name_56 (score VARCHAR, country VARCHAR, to_par VARCHAR) |
What is under segment C when s cuckoo clock is under segment B? | SELECT segment_c FROM table_name_22 WHERE segment_b = "s cuckoo clock" | CREATE TABLE table_name_22 (segment_c VARCHAR, segment_b VARCHAR) |
Who is the player when the pick is 22 and the year [A] is after 1979? | SELECT player_name FROM table_name_5 WHERE pick = "22" AND year_[a_] > 1979 | CREATE TABLE table_name_5 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR) |
What is the lowest number of Golds that has Participants smaller than 14, and Rank of 1, and Total larger than 1? | SELECT MIN(gold) FROM table_name_1 WHERE participants < 14 AND rank = 1 AND total > 1 | CREATE TABLE table_name_1 (gold INTEGER, total VARCHAR, participants VARCHAR, rank VARCHAR) |
What is the seed for lyon (32) was DNQ? | SELECT MAX(seed) FROM table_20711545_1 WHERE lyon__32_ = "DNQ" | CREATE TABLE table_20711545_1 (seed INTEGER, lyon__32_ VARCHAR) |
What is Harris, when Marplan is 1.3% | SELECT harris FROM table_name_84 WHERE marplan = "1.3%" | CREATE TABLE table_name_84 (harris VARCHAR, marplan VARCHAR) |
Who directed the episode with the production code 176252? | SELECT directed_by FROM table_14889988_1 WHERE production_code = 176252 | CREATE TABLE table_14889988_1 (directed_by VARCHAR, production_code VARCHAR) |
Which player is from Marshall and played 1974-75? | SELECT player FROM table_11545282_12 WHERE years_for_jazz = "1974-75" AND school_club_team = "Marshall" | CREATE TABLE table_11545282_12 (player VARCHAR, years_for_jazz VARCHAR, school_club_team VARCHAR) |
What is the original airdate when the season number is 4? | SELECT original_air_date FROM table_15824796_5 WHERE season__number = 4 | CREATE TABLE table_15824796_5 (original_air_date VARCHAR, season__number VARCHAR) |
What name that has a DCSF number bigger than 2448 and an Ofsted number of 131319? | SELECT name FROM table_name_95 WHERE dcsf_number > 2448 AND ofsted_number = 131319 | CREATE TABLE table_name_95 (name VARCHAR, dcsf_number VARCHAR, ofsted_number VARCHAR) |
List the height and weight of people in descending order of height. | SELECT Height, Weight FROM people ORDER BY Height DESC | CREATE TABLE people (Height VARCHAR, Weight VARCHAR) |
Which ship had a tonnage over 8,782? | SELECT name_of_ship FROM table_name_8 WHERE tonnage > 8 OFFSET 782 | CREATE TABLE table_name_8 (name_of_ship VARCHAR, tonnage INTEGER) |
What is the result for 2006 of a tournament that is 107 in 2010? | SELECT 2006 FROM table_name_73 WHERE 2010 = "107" | CREATE TABLE table_name_73 (Id VARCHAR) |
Name the M809 seris with M939 series of M931/932 | SELECT m809_series FROM table_name_88 WHERE m939_series = "m931/932" | CREATE TABLE table_name_88 (m809_series VARCHAR, m939_series VARCHAR) |
What is the total number scored of the team positioned lower than 10? | SELECT COUNT(scored) FROM table_name_72 WHERE position > 10 | CREATE TABLE table_name_72 (scored VARCHAR, position INTEGER) |
How many average votes did producer carlos coelho have in a higher place than 6 and with a draw larger than 5? | SELECT AVG(votes) FROM table_name_58 WHERE place < 6 AND producer = "carlos coelho" AND draw > 5 | CREATE TABLE table_name_58 (votes INTEGER, draw VARCHAR, place VARCHAR, producer VARCHAR) |
What is the Total number of medals for the Nation with 7 or less Bronze medals and 1 Silver medal with a Rank of 9 or larger? | SELECT MIN(total) FROM table_name_90 WHERE bronze < 7 AND silver = 1 AND rank > 9 | CREATE TABLE table_name_90 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR) |
What year was the year of the pig theme? | SELECT year FROM table_name_43 WHERE theme = "year of the pig" | CREATE TABLE table_name_43 (year VARCHAR, theme VARCHAR) |
What is the GP winner with a place of genk, with race winners ben adriaenssen / ben van den bogaart? | SELECT gp_winner FROM table_name_30 WHERE place = "genk" AND race_winners = "ben adriaenssen / ben van den bogaart" | CREATE TABLE table_name_30 (gp_winner VARCHAR, place VARCHAR, race_winners VARCHAR) |
what is the race where the pole position is niki lauda and the date is 27 april? | SELECT race FROM table_1140085_2 WHERE pole_position = "Niki Lauda" AND date = "27 April" | CREATE TABLE table_1140085_2 (race VARCHAR, pole_position VARCHAR, date VARCHAR) |
What is the memory with a socket g1 and a 1/1/6/9 turbo? | SELECT memory FROM table_name_93 WHERE socket = "socket g1" AND turbo = "1/1/6/9" | CREATE TABLE table_name_93 (memory VARCHAR, socket VARCHAR, turbo VARCHAR) |
What are the numbers for GDP (nominal) per capita and USD (2012) of the area with Phnom Penh as capital? | SELECT COUNT(gdp__nominal__per_capita), _usd__2012_ FROM table_28741_1 WHERE capital = "Phnom Penh" | CREATE TABLE table_28741_1 (_usd__2012_ VARCHAR, gdp__nominal__per_capita VARCHAR, capital VARCHAR) |
Which countries has the most number of airlines whose active status is 'Y'? | SELECT country FROM airlines WHERE active = 'Y' GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1 | CREATE TABLE airlines (country VARCHAR, active VARCHAR) |
who is the the incumbent with candidates being percy e. quin (d) unopposed | SELECT incumbent FROM table_1342379_23 WHERE candidates = "Percy E. Quin (D) Unopposed" | CREATE TABLE table_1342379_23 (incumbent VARCHAR, candidates VARCHAR) |
Who is the youngest employee in the company? List employee's first and last name. | SELECT first_name, last_name FROM employees ORDER BY birth_date DESC LIMIT 1 | CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, birth_date VARCHAR) |
if the geez is libb, what is the akkadian? | SELECT akkadian FROM table_26919_7 WHERE geez = "libb" | CREATE TABLE table_26919_7 (akkadian VARCHAR, geez VARCHAR) |
How many figures are provided for December 28 for Rosario? | SELECT COUNT(december_28) FROM table_29217650_1 WHERE movies = "Rosario" | CREATE TABLE table_29217650_1 (december_28 VARCHAR, movies VARCHAR) |
Which Rider finished with a speed of 80.18mph? | SELECT rider FROM table_name_61 WHERE speed = "80.18mph" | CREATE TABLE table_name_61 (rider VARCHAR, speed VARCHAR) |
What is Rank, when Event is "LAPT3 Punta Del Este"? | SELECT rank FROM table_name_65 WHERE event = "lapt3 punta del este" | CREATE TABLE table_name_65 (rank VARCHAR, event VARCHAR) |
What digital channel corresponds to virtual channel 23.2? | SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "23.2" | CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR) |
What was Law Hiu Fung's time? | SELECT time FROM table_name_26 WHERE athlete = "law hiu fung" | CREATE TABLE table_name_26 (time VARCHAR, athlete VARCHAR) |
What is the Money of the Player in Place 5? | SELECT SUM(money___) AS $__ FROM table_name_37 WHERE place = "5" | CREATE TABLE table_name_37 (money___ INTEGER, place VARCHAR) |
List the year in which the driver was in 1st place. | SELECT season FROM table_25561038_1 WHERE position = "1st" | CREATE TABLE table_25561038_1 (season VARCHAR, position VARCHAR) |
What points for have 30 as the game, and 73 as the total points? | SELECT points_for FROM table_name_92 WHERE games = "30" AND total_points = "73" | CREATE TABLE table_name_92 (points_for VARCHAR, games VARCHAR, total_points VARCHAR) |
Who was the runner-up (a) if K. P. Ramalingam won the election? | SELECT runner_up_a FROM table_22752982_5 WHERE winner = "K. P. Ramalingam" | CREATE TABLE table_22752982_5 (runner_up_a VARCHAR, winner VARCHAR) |
Find the types of documents with more than 4 documents. | SELECT document_type_code FROM documents GROUP BY document_type_code HAVING COUNT(*) > 4 | CREATE TABLE documents (document_type_code VARCHAR) |
What is Samuel Smith's party? | SELECT party FROM table_2668329_11 WHERE incumbent = "Samuel Smith" | CREATE TABLE table_2668329_11 (party VARCHAR, incumbent VARCHAR) |
what is the english version that is buena vista edition is daisuke gouri? | SELECT english_version FROM table_25173505_13 WHERE buena_vista_edition = "Daisuke Gouri" | CREATE TABLE table_25173505_13 (english_version VARCHAR, buena_vista_edition VARCHAR) |
What player was moving from manchester united? | SELECT name FROM table_name_78 WHERE moving_from = "manchester united" | CREATE TABLE table_name_78 (name VARCHAR, moving_from VARCHAR) |
What is game 9's record? | SELECT record FROM table_name_36 WHERE game = 9 | CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR) |
What's the total number of density for the place with a population over 393,390? | SELECT COUNT(density) FROM table_name_57 WHERE population > 393 OFFSET 390 | CREATE TABLE table_name_57 (density VARCHAR, population INTEGER) |
On 11 Feb 1990, the competition is listed as what? | SELECT competition FROM table_name_23 WHERE date = "11 feb 1990" | CREATE TABLE table_name_23 (competition VARCHAR, date VARCHAR) |
what is the player who's college is listed as direct to nba, school is st. vincent – st. mary high school and the year is 2001-2002? | SELECT player FROM table_11677760_1 WHERE college = "Direct to NBA" AND school = "St. Vincent – St. Mary High school" AND year = "2001-2002" | CREATE TABLE table_11677760_1 (player VARCHAR, year VARCHAR, college VARCHAR, school VARCHAR) |
Which number was Patrick O'Bryant? | SELECT no FROM table_10015132_14 WHERE player = "Patrick O'Bryant" | CREATE TABLE table_10015132_14 (no VARCHAR, player VARCHAR) |
On what date was the player from Melrose, Massachusetts born? | SELECT birthdate FROM table_name_54 WHERE birthplace = "melrose, massachusetts" | CREATE TABLE table_name_54 (birthdate VARCHAR, birthplace VARCHAR) |
What is the constructor of driver Alexander Wurz? | SELECT constructor FROM table_name_84 WHERE driver = "alexander wurz" | CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR) |
What is Trial Phase, when Expected End Date is June 2007? | SELECT trial_phase FROM table_name_59 WHERE expected_end_date = "june 2007" | CREATE TABLE table_name_59 (trial_phase VARCHAR, expected_end_date VARCHAR) |
What was the outcome of the game that had a score of 3–6, 6–3, 6–0? | SELECT outcome FROM table_name_81 WHERE score = "3–6, 6–3, 6–0" | CREATE TABLE table_name_81 (outcome VARCHAR, score VARCHAR) |
Which Game has an Opponent of @ carolina hurricanes? | SELECT SUM(game) FROM table_name_94 WHERE opponent = "@ carolina hurricanes" | CREATE TABLE table_name_94 (game INTEGER, opponent VARCHAR) |
What is the average number of games of the player with a rank less than 1? | SELECT AVG(games) FROM table_name_55 WHERE rank < 1 | CREATE TABLE table_name_55 (games INTEGER, rank INTEGER) |
With a Tally of 0-14, what is the Rank in Kilkenny County? | SELECT COUNT(rank) FROM table_name_3 WHERE county = "kilkenny" AND tally = "0-14" | CREATE TABLE table_name_3 (rank VARCHAR, county VARCHAR, tally VARCHAR) |
What's listed for the Turnout % with a Ngilu of 30,535? | SELECT turnout__percentage FROM table_name_32 WHERE ngilu = "30,535" | CREATE TABLE table_name_32 (turnout__percentage VARCHAR, ngilu VARCHAR) |
Which Season has a Home of 0–1? | SELECT season FROM table_name_24 WHERE home = "0–1" | CREATE TABLE table_name_24 (season VARCHAR, home VARCHAR) |
Show the name of the shop that has the most kind of devices in stock. | SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID ORDER BY COUNT(*) DESC LIMIT 1 | CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR); CREATE TABLE stock (Shop_ID VARCHAR) |
What is the average number of 2nd place finishes for racers active in the year 2000 and more than 0 titles? | SELECT AVG(2 AS nd_pl) FROM table_name_16 WHERE years_active = "2000" AND titles > 0 | CREATE TABLE table_name_16 (years_active VARCHAR, titles VARCHAR) |
For which song was the score 6.5 + 6.0 + 6.0 + 5.5 = 24.0? | SELECT song FROM table_name_25 WHERE score = 6.5 + 6.0 + 6.0 + 5.5 = 24.0 | CREATE TABLE table_name_25 (song VARCHAR, score VARCHAR) |
What is the lowest image with a 20w Harrison, and less than 20 for Ashmolean? | SELECT MIN(image) FROM table_name_51 WHERE harrison = "20w" AND ashmolean < 20 | CREATE TABLE table_name_51 (image INTEGER, harrison VARCHAR, ashmolean VARCHAR) |
Show different citizenships and the maximum net worth of singers of each citizenship. | SELECT Citizenship, MAX(Net_Worth_Millions) FROM singer GROUP BY Citizenship | CREATE TABLE singer (Citizenship VARCHAR, Net_Worth_Millions INTEGER) |
What is the least amount of people that attended a game when Essendon was the away team? | SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "essendon" | CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR) |
How many stations are transmitted on frequency 7 uhf? | SELECT COUNT(transmitted) FROM table_1601792_4 WHERE frequency = "7 UHF" | CREATE TABLE table_1601792_4 (transmitted VARCHAR, frequency VARCHAR) |
Which Country has a Pinnacle height of metres (ft) and a Name of azeri tv tower? | SELECT country FROM table_name_37 WHERE pinnacle_height = "metres (ft)" AND name = "azeri tv tower" | CREATE TABLE table_name_37 (country VARCHAR, pinnacle_height VARCHAR, name VARCHAR) |
Which IHSAA Class has a Mascot of tigers? | SELECT ihsaa_class FROM table_name_32 WHERE mascot = "tigers" | CREATE TABLE table_name_32 (ihsaa_class VARCHAR, mascot VARCHAR) |
Who won the tournament when Idaho State won the regular season? | SELECT conference AS Tournament FROM table_22779004_1 WHERE regular_season_winner = "Idaho State" | CREATE TABLE table_22779004_1 (conference VARCHAR, regular_season_winner VARCHAR) |
What is the home team score for the team that has a home field of the Telstra Dome? | SELECT home_team AS score FROM table_name_98 WHERE ground = "telstra dome" | CREATE TABLE table_name_98 (home_team VARCHAR, ground VARCHAR) |
How much freedom can did the people of Guinea experience in 2013? | SELECT freedom_in_the_world_2013 FROM table_1604579_2 WHERE country = "Guinea" | CREATE TABLE table_1604579_2 (freedom_in_the_world_2013 VARCHAR, country VARCHAR) |
what's the s mestizo with asians being 0.2% and whites being 74.8% | SELECT s_mestizo FROM table_1333612_1 WHERE asians = "0.2%" AND whites = "74.8%" | CREATE TABLE table_1333612_1 (s_mestizo VARCHAR, asians VARCHAR, whites VARCHAR) |
What is the average Grid, when Time is +45.855? | SELECT AVG(grid) FROM table_name_87 WHERE time = "+45.855" | CREATE TABLE table_name_87 (grid INTEGER, time VARCHAR) |
What's China's heat for Zhang Lin in a lane after 6? | SELECT SUM(heat) FROM table_name_61 WHERE nationality = "china" AND name = "zhang lin" AND lane > 6 | CREATE TABLE table_name_61 (heat INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR) |
which grid did less than 20 laps in a time of +58.353? | SELECT MIN(grid) FROM table_name_82 WHERE time = "+58.353" AND laps < 20 | CREATE TABLE table_name_82 (grid INTEGER, time VARCHAR, laps VARCHAR) |
Name the Event of the Games of 1950 auckland and a Medal of bronze? | SELECT event FROM table_name_60 WHERE games = "1950 auckland" AND medal = "bronze" | CREATE TABLE table_name_60 (event VARCHAR, games VARCHAR, medal VARCHAR) |
what is the surface when the round is gii play-offs and the edition is 2009 fed cup europe/africa group ii? | SELECT surface FROM table_name_65 WHERE round = "gii play-offs" AND edition = "2009 fed cup europe/africa group ii" | CREATE TABLE table_name_65 (surface VARCHAR, round VARCHAR, edition VARCHAR) |
What day was the high assist Mike Taylor (5)? | SELECT date FROM table_name_95 WHERE high_assists = "mike taylor (5)" | CREATE TABLE table_name_95 (date VARCHAR, high_assists VARCHAR) |
What is th eswimming status for the school that has yes on indoor track, soccer and tennis? | SELECT swimming FROM table_name_80 WHERE indoor_track = "yes" AND soccer = "yes" AND tennis = "yes" | CREATE TABLE table_name_80 (swimming VARCHAR, tennis VARCHAR, indoor_track VARCHAR, soccer VARCHAR) |
What is the home team score when the crowd was larger than 30,100? | SELECT home_team AS score FROM table_name_11 WHERE crowd > 30 OFFSET 100 | CREATE TABLE table_name_11 (home_team VARCHAR, crowd INTEGER) |
What population (in thousands) is Lublin's seat? | SELECT population, _in_thousands, __1905__ FROM table_11614581_3 WHERE seat = "Lublin" | CREATE TABLE table_11614581_3 (population VARCHAR, _in_thousands VARCHAR, __1905__ VARCHAR, seat VARCHAR) |
What was the method of resolution when Mikhail Ilyukhin's record was 4-0? | SELECT method FROM table_name_92 WHERE record = "4-0" | CREATE TABLE table_name_92 (method VARCHAR, record VARCHAR) |
What is Headquarter, when Type is Government-Owned, and when Newspaper/Magazine is Al-Jumhuriya? | SELECT headquarter FROM table_name_11 WHERE type = "government-owned" AND newspaper_magazine = "al-jumhuriya" | CREATE TABLE table_name_11 (headquarter VARCHAR, type VARCHAR, newspaper_magazine VARCHAR) |
What is the title of the book when the publisher is black car publishing? | SELECT book_title FROM table_20193855_2 WHERE publisher = "Black Car Publishing" | CREATE TABLE table_20193855_2 (book_title VARCHAR, publisher VARCHAR) |
Who was the game attended by 60425 people played against? | SELECT opponent FROM table_18207285_2 WHERE attendance = 60425 | CREATE TABLE table_18207285_2 (opponent VARCHAR, attendance VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.