answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT performer_2 FROM table_14934885_1 WHERE episode = 5 | Who is the second performer in episode 5? | CREATE TABLE table_14934885_1 (performer_2 VARCHAR, episode VARCHAR) |
SELECT AVG(year) FROM table_name_13 WHERE loser = "nerida gregory" | In which year is Nerida Gregory listed as the loser? | CREATE TABLE table_name_13 (year INTEGER, loser VARCHAR) |
SELECT high_assists FROM table_name_39 WHERE date = "march 31" | What is the High assists with a Date that is march 31? | CREATE TABLE table_name_39 (high_assists VARCHAR, date VARCHAR) |
SELECT record FROM table_name_38 WHERE leading_scorer = "maurice williams (25)" AND date = "27 january 2008" | What is the Record with a Leading scorer with maurice williams (25), and a Date with 27 january 2008? | CREATE TABLE table_name_38 (record VARCHAR, leading_scorer VARCHAR, date VARCHAR) |
SELECT team FROM table_29414946_3 WHERE replaced_by = "Renato Gaúcho" | What team hired Renato Gaúcho? | CREATE TABLE table_29414946_3 (team VARCHAR, replaced_by VARCHAR) |
SELECT city, state FROM bank WHERE bname = 'morningside' | Find the city and state of the bank branch named morningside. | CREATE TABLE bank (city VARCHAR, state VARCHAR, bname VARCHAR) |
SELECT loss FROM table_name_84 WHERE opponent = "angels" AND record = "50-31" | What loss was against the angels with a 50-31 record? | CREATE TABLE table_name_84 (loss VARCHAR, opponent VARCHAR, record VARCHAR) |
SELECT time FROM table_name_75 WHERE release_date = "8/26/69" AND track < 19 | What was the time for tracks before 19 on 8/26/69? | CREATE TABLE table_name_75 (time VARCHAR, release_date VARCHAR, track VARCHAR) |
SELECT date FROM table_name_92 WHERE time = "18:00" AND set_1 = "22–25" | When was there a Time of 18:00, and a Set 1 of 22–25? | CREATE TABLE table_name_92 (date VARCHAR, time VARCHAR, set_1 VARCHAR) |
SELECT acquired FROM table_name_18 WHERE player = "bruce graham" | In what year was player Bruce Graham acquired? | CREATE TABLE table_name_18 (acquired VARCHAR, player VARCHAR) |
SELECT home FROM table_name_61 WHERE date = "april 4" | What is the Home team on April 4? | CREATE TABLE table_name_61 (home VARCHAR, date VARCHAR) |
SELECT original_air_date FROM table_24910742_1 WHERE no_in_season = 18 | What was the airdate of episode number 18? | CREATE TABLE table_24910742_1 (original_air_date VARCHAR, no_in_season VARCHAR) |
SELECT quantity_made FROM table_name_65 WHERE year_made = "4-4-0 — oooo — american" | What is Quantity Made, when Year Made is "4-4-0 — oooo — american"? | CREATE TABLE table_name_65 (quantity_made VARCHAR, year_made VARCHAR) |
SELECT COUNT(segment_b) FROM table_15187735_10 WHERE segment_d = "s Banjo" | Name the total number of segment b for s banjo | CREATE TABLE table_15187735_10 (segment_b VARCHAR, segment_d VARCHAR) |
SELECT COUNT(played) FROM table_name_25 WHERE bp = 0 AND pts_agst < 247 | B.P. of 0, and a Pts Agst smaller than 247 has how many total number of played? | CREATE TABLE table_name_25 (played VARCHAR, bp VARCHAR, pts_agst VARCHAR) |
SELECT MAX(number_of_households) FROM table_name_30 WHERE median_household_income = "$31,176" AND population < 25 OFFSET 607 | What is the highest number of households with a median household income of $31,176, and a population of 25,607? | CREATE TABLE table_name_30 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR) |
SELECT stadium FROM table_21436373_7 WHERE attendance = 255627 | When 255627 is the attendance what is the stadium? | CREATE TABLE table_21436373_7 (stadium VARCHAR, attendance VARCHAR) |
SELECT MIN(round) FROM table_name_11 WHERE weight_class = "welterweight" AND card = "preliminary" | What is the smallest round for the welterweight class with a preliminary card? | CREATE TABLE table_name_11 (round INTEGER, weight_class VARCHAR, card VARCHAR) |
SELECT MIN(total) FROM table_name_30 WHERE year_s__won = "1978" | Name the least total for 1978 years won | CREATE TABLE table_name_30 (total INTEGER, year_s__won VARCHAR) |
SELECT COUNT(commentator) FROM table_184803_4 WHERE broadcaster = "ORF" | how many people commentated where broadcaster is orf | CREATE TABLE table_184803_4 (commentator VARCHAR, broadcaster VARCHAR) |
SELECT player FROM table_name_99 WHERE place = "t6" | Who is the player with a t6 place? | CREATE TABLE table_name_99 (player VARCHAR, place VARCHAR) |
SELECT years_produced FROM table_26352332_4 WHERE engine_family = "MaxxForce 11" | For the engine family MaxxForce 11, what is the years produced? | CREATE TABLE table_26352332_4 (years_produced VARCHAR, engine_family VARCHAR) |
SELECT SUM(bronze) FROM table_name_49 WHERE gold < 1 AND total > 1 AND rank = 10 | What is the sum of Bronze, when Gold is less than 1, when Total is greater than 1, and when Rank is 10? | CREATE TABLE table_name_49 (bronze INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR) |
SELECT charter_range FROM table_name_15 WHERE status = "inactive" AND state = "north carolina" | What years were the inactive North Carolina chapter active? | CREATE TABLE table_name_15 (charter_range VARCHAR, status VARCHAR, state VARCHAR) |
SELECT enterprise FROM table_name_1 WHERE datacenter = "yes" AND features = "memory modules: hot replacement" | What is the Enterprise for teh memory modules: hot replacement Feature that has a Datacenter of Yes? | CREATE TABLE table_name_1 (enterprise VARCHAR, datacenter VARCHAR, features VARCHAR) |
SELECT title FROM table_24938621_2 WHERE production_code = "3X5405" | What is the title of the episode with production code 3x5405? | CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) |
SELECT notes FROM table_name_47 WHERE rank = 1 | What are the notes from the rank of 1? | CREATE TABLE table_name_47 (notes VARCHAR, rank VARCHAR) |
SELECT MAX(rank) FROM table_name_60 WHERE year = 1976 AND floors < 21 | What is the highest rank of a building erected in 1976 with fewer than 21 floors? | CREATE TABLE table_name_60 (rank INTEGER, year VARCHAR, floors VARCHAR) |
SELECT MIN(wins) FROM table_19001175_1 | Name the minimum wins | CREATE TABLE table_19001175_1 (wins INTEGER) |
SELECT MAX(car__number) FROM table_name_19 WHERE make = "toyota" AND driver = "mike skinner" AND pos > 3 | Which Car # has a Make of toyota, and a Driver of mike skinner, and a Pos larger than 3? | CREATE TABLE table_name_19 (car__number INTEGER, pos VARCHAR, make VARCHAR, driver VARCHAR) |
SELECT score FROM table_17323042_11 WHERE high_points = "Andre Miller (17)" | What was the score and game outcome when High Points was andre miller (17)? | CREATE TABLE table_17323042_11 (score VARCHAR, high_points VARCHAR) |
SELECT stadium FROM table_name_43 WHERE result = "hunter mariners def. sheffield eagles" | What stadium was the game played at when the result was hunter mariners def. sheffield eagles? | CREATE TABLE table_name_43 (stadium VARCHAR, result VARCHAR) |
SELECT MAX(inaba) FROM table_18595004_7 | What is Inaba's maximum score? | CREATE TABLE table_18595004_7 (inaba INTEGER) |
SELECT SUM(opening_day_net_gross) FROM table_name_90 WHERE studio_s_ = "reliance entertainment" AND year < 2011 | What is the opening day net gross a Reliance Entertainment movie before 2011 had? | CREATE TABLE table_name_90 (opening_day_net_gross INTEGER, studio_s_ VARCHAR, year VARCHAR) |
SELECT high_rebounds FROM table_name_16 WHERE game > 76 AND team = "phoenix" | Who had the most rebounds in the game against Phoenix with a number over 76? | CREATE TABLE table_name_16 (high_rebounds VARCHAR, game VARCHAR, team VARCHAR) |
SELECT COUNT(baia_mare) FROM table_name_59 WHERE electrica_north_transylvania < 14.476 AND bistrita = 643 AND zalau < 737 | How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737? | CREATE TABLE table_name_59 (baia_mare VARCHAR, zalau VARCHAR, electrica_north_transylvania VARCHAR, bistrita VARCHAR) |
SELECT money___£__ FROM table_name_59 WHERE country = "england" AND player = "malcolm mackenzie" | Can you tell me the Money (£) that has the Country of england, and the Player of malcolm mackenzie? | CREATE TABLE table_name_59 (money___£__ VARCHAR, country VARCHAR, player VARCHAR) |
SELECT year FROM table_name_80 WHERE first_publisher = "kodansha novels" AND english_title = "tokyo nightmare" | What is the Year of Kodansha Novels' Tokyo Nightmare? | CREATE TABLE table_name_80 (year VARCHAR, first_publisher VARCHAR, english_title VARCHAR) |
SELECT score FROM table_name_45 WHERE player = "bob tway" | What was the two-round score for Bob Tway? | CREATE TABLE table_name_45 (score VARCHAR, player VARCHAR) |
SELECT tries_for FROM table_name_33 WHERE points = "35" AND try_bonus = "1" | How many tries for does the team with a try bonus of 1 and 35 points earned? | CREATE TABLE table_name_33 (tries_for VARCHAR, points VARCHAR, try_bonus VARCHAR) |
SELECT to_winning_team FROM table_13642023_2 WHERE tu_winning_team = "Joe Richardson" | Who was the TO winning team when the TU winning team was Joe Richardson? | CREATE TABLE table_13642023_2 (to_winning_team VARCHAR, tu_winning_team VARCHAR) |
SELECT year FROM table_name_80 WHERE best_film = "mystery" | Which Year has a Best Film of mystery? | CREATE TABLE table_name_80 (year VARCHAR, best_film VARCHAR) |
SELECT AVG(score) FROM table_name_39 WHERE place = "t8" AND player = "lee trevino" | What is the average score of player lee trevino, who has a t8 place? | CREATE TABLE table_name_39 (score INTEGER, place VARCHAR, player VARCHAR) |
SELECT title FROM table_1876825_3 WHERE production_code = "06-00-218" | What is the name of the episode with the production code of 06-00-218? | CREATE TABLE table_1876825_3 (title VARCHAR, production_code VARCHAR) |
SELECT tally FROM table_name_76 WHERE opposition = "westmeath" | Name the Tally of an Opposition of westmeath? | CREATE TABLE table_name_76 (tally VARCHAR, opposition VARCHAR) |
SELECT MAX(bronze) FROM table_name_17 WHERE gold < 0 | Which is the highest bronze with gold less than 0? | CREATE TABLE table_name_17 (bronze INTEGER, gold INTEGER) |
SELECT COUNT(sp) + fs FROM table_name_75 WHERE rank > 8 AND nation = "netherlands" AND points > 127.26 | Tell me the total number of SP+FS with rank more than 8 for the netherlands and points more than 127.26 | CREATE TABLE table_name_75 (fs VARCHAR, sp VARCHAR, points VARCHAR, rank VARCHAR, nation VARCHAR) |
SELECT winning_team FROM table_10706879_3 WHERE name = "Los Angeles Times 500" | The winning team of the race, los angeles times 500 is who? | CREATE TABLE table_10706879_3 (winning_team VARCHAR, name VARCHAR) |
SELECT pts FROM table_14139408_1 WHERE poles < 1.0 AND motorcycle = "Aprilia" AND class = "250cc" | what's the pts with poles being smaller than 1.0 and motorcycle being aprilia and class being 250cc | CREATE TABLE table_14139408_1 (pts VARCHAR, class VARCHAR, poles VARCHAR, motorcycle VARCHAR) |
SELECT country FROM table_name_92 WHERE to_par < 19 AND score = 75 - 79 - 77 - 73 = 304 | Which country has a to par less than 19 and a score of 75-79-77-73=304? | CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, score VARCHAR) |
SELECT score FROM table_name_74 WHERE player = "dick metz" | What is the score of player dick metz? | CREATE TABLE table_name_74 (score VARCHAR, player VARCHAR) |
SELECT case_type FROM table_name_29 WHERE base_diameter = "13.03 (.513)" AND case_length = "63.5 (2.5)" | Which Case type has a Base diameter of 13.03 (.513), and a Case length of 63.5 (2.5)? | CREATE TABLE table_name_29 (case_type VARCHAR, base_diameter VARCHAR, case_length VARCHAR) |
SELECT style FROM table_name_17 WHERE choreographer_s_ = "dave scott" | What is Style, when Choreographer(s) is Dave Scott? | CREATE TABLE table_name_17 (style VARCHAR, choreographer_s_ VARCHAR) |
SELECT number_one_single_s_ FROM table_27441210_17 WHERE artist = "Pep's" | What number-one single is performed by artist Pep's? | CREATE TABLE table_27441210_17 (number_one_single_s_ VARCHAR, artist VARCHAR) |
SELECT years FROM table_name_6 WHERE roll > 296 AND area = "murupara" | Murupara has a roll greater than 296 for what years? | CREATE TABLE table_name_6 (years VARCHAR, roll VARCHAR, area VARCHAR) |
SELECT MAX(yards) FROM table_name_48 WHERE rushes < 51 AND games > 12 | What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games? | CREATE TABLE table_name_48 (yards INTEGER, rushes VARCHAR, games VARCHAR) |
SELECT date FROM table_name_20 WHERE centerfold_model = "krista kelly" | When has a Centerfold model of krista kelly? | CREATE TABLE table_name_20 (date VARCHAR, centerfold_model VARCHAR) |
SELECT nat FROM table_name_26 WHERE estimate = "372" | Which nation was the ship from that had 372 victims? | CREATE TABLE table_name_26 (nat VARCHAR, estimate VARCHAR) |
SELECT sanskrt FROM table_name_76 WHERE chinese = "摩拏羅 / mónáluó" | Which SANSKRT has a CHINESE of 摩拏羅 / mónáluó? | CREATE TABLE table_name_76 (sanskrt VARCHAR, chinese VARCHAR) |
SELECT time FROM table_name_75 WHERE method = "tko (doctor stoppage)" AND record = "9-0" | What was the time of the match with a record of 9-0 and used the tko (doctor stoppage) method? | CREATE TABLE table_name_75 (time VARCHAR, method VARCHAR, record VARCHAR) |
SELECT location FROM table_2562113_1 WHERE nickname = "Lions" | What is the location of the institution nicknamed Lions? | CREATE TABLE table_2562113_1 (location VARCHAR, nickname VARCHAR) |
SELECT notes FROM table_name_72 WHERE method = "points" AND event = "adcc 2001 absolute" AND result = "loss" | Tell me the notes with method of points and event of adcc 2001 absolute with result of loss | CREATE TABLE table_name_72 (notes VARCHAR, result VARCHAR, method VARCHAR, event VARCHAR) |
SELECT american FROM table_name_23 WHERE british = "ɪ, ə" AND initial_syllable_open_semi_open_unstressed_vowels = "æ /ɨ/" | What is American, when British is "ɪ, ə", and when Initial-Syllable Open/Semi-Open Unstressed Vowels is "æ /ɨ/"? | CREATE TABLE table_name_23 (american VARCHAR, british VARCHAR, initial_syllable_open_semi_open_unstressed_vowels VARCHAR) |
SELECT partner FROM table_name_13 WHERE tournament = "catella swedish open" | Which Partner has a Tournament of catella swedish open? | CREATE TABLE table_name_13 (partner VARCHAR, tournament VARCHAR) |
SELECT country FROM table_name_72 WHERE rank > 4 | What country is ranked larger than 4? | CREATE TABLE table_name_72 (country VARCHAR, rank INTEGER) |
SELECT MIN(number_of_electorates__2003_) FROM table_name_85 WHERE district = "bhind" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "11" | What is the lowest number of Electorates (2003) in District bhind, Reserved for none, and Constituency Number 11? | CREATE TABLE table_name_85 (number_of_electorates__2003_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR) |
SELECT sergey_filimonov___kaz__ FROM table_name_69 WHERE "snatch" = "snatch" | What shows for Sergey Filimonov (KAZ) when the Snatch shows snatch? | CREATE TABLE table_name_69 (sergey_filimonov___kaz__ VARCHAR) |
SELECT college FROM table_name_50 WHERE pick = 93 | What college had the 93 pick? | CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR) |
SELECT road_team FROM table_name_36 WHERE result = "74-71" | What is Road Team, when Result is "74-71"? | CREATE TABLE table_name_36 (road_team VARCHAR, result VARCHAR) |
SELECT name FROM table_name_23 WHERE react < 0.149 AND lane < 6 | Who has a react smaller than 0.149 and a lane smaller than 6? | CREATE TABLE table_name_23 (name VARCHAR, react VARCHAR, lane VARCHAR) |
SELECT island FROM table_name_53 WHERE airportname = "esperadinha airport" | On which island is Esperadinha airport located? | CREATE TABLE table_name_53 (island VARCHAR, airportname VARCHAR) |
SELECT publisher FROM table_20193855_2 WHERE book_title = "Daughters of an Emerald Dusk" | Who is the publisher of the book titled daughters of an emerald dusk? | CREATE TABLE table_20193855_2 (publisher VARCHAR, book_title VARCHAR) |
SELECT l2_cache FROM table_24099916_1 WHERE tdp = "5.5-10 W" | What's the l2 cache of the model with TDP of 5.5-10 w? | CREATE TABLE table_24099916_1 (l2_cache VARCHAR, tdp VARCHAR) |
SELECT median_household_income FROM table_name_68 WHERE county = "cape girardeau" | What is the median household income for Cape Girardeau? | CREATE TABLE table_name_68 (median_household_income VARCHAR, county VARCHAR) |
SELECT to_par FROM table_name_37 WHERE place = "t7" AND player = "bill britton" | What was the To par for bill britton when he placed t7? | CREATE TABLE table_name_37 (to_par VARCHAR, place VARCHAR, player VARCHAR) |
SELECT collaboration FROM table_name_7 WHERE name = "sbi-087" AND indication = "rheumatoid arthritis" | What company collaborated in SBI-087 for rheumatoid arthritis? | CREATE TABLE table_name_7 (collaboration VARCHAR, name VARCHAR, indication VARCHAR) |
SELECT socket FROM table_name_7 WHERE frequency = "1600mhz" AND release_date = "june 22, 2005" AND voltage < 1.35 | What is the socket related to the processor released on June 22, 2005, having a frequency of 1600MHz and voltage under 1.35V? | CREATE TABLE table_name_7 (socket VARCHAR, voltage VARCHAR, frequency VARCHAR, release_date VARCHAR) |
SELECT swimsuit FROM table_16323766_3 WHERE semifinal_average = "8.759 (5)" | What was the swimsuit score for the one who had a semifinal average of 8.759 (5)? | CREATE TABLE table_16323766_3 (swimsuit VARCHAR, semifinal_average VARCHAR) |
SELECT party FROM table_22753245_1 WHERE constituency = "1. Chennai North" | What is the party when the constituency is 1. Chennai North? | CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR) |
SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = "Close a policy" OR t3.service_name = "Upgrade a policy" | Find the names of customers who have used either the service "Close a policy" or the service "Upgrade a policy". | CREATE TABLE first_notification_of_loss (customer_id VARCHAR, service_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE services (service_id VARCHAR, service_name VARCHAR) |
SELECT record FROM table_name_10 WHERE opponent = "twins" AND date = "july 25" | Which Record has an Opponent of twins, and a Date of july 25? | CREATE TABLE table_name_10 (record VARCHAR, opponent VARCHAR, date VARCHAR) |
SELECT AVG(episodes) FROM table_name_32 WHERE average_ratings = "10.3%" | When the average ratings is 10.3%, what is the average episodes? | CREATE TABLE table_name_32 (episodes INTEGER, average_ratings VARCHAR) |
SELECT name FROM table_name_21 WHERE birth = "16 august 1401" | Who has a birth of 16 august 1401? | CREATE TABLE table_name_21 (name VARCHAR, birth VARCHAR) |
SELECT SUM(year) FROM table_name_53 WHERE title = "mnet director's cut" | What is the sum of Year, when Title is "Mnet Director's Cut"? | CREATE TABLE table_name_53 (year INTEGER, title VARCHAR) |
SELECT season FROM table_name_9 WHERE name = "omar sneed" | What years did Omar Sneed play? | CREATE TABLE table_name_9 (season VARCHAR, name VARCHAR) |
SELECT MIN(area___ha__) FROM table_21302_1 WHERE no_of_villages = 18 | If there are 18 villages, what is the minimum area ? | CREATE TABLE table_21302_1 (area___ha__ INTEGER, no_of_villages VARCHAR) |
SELECT release_price___usd__ FROM table_name_76 WHERE frequency = "3.2 ghz" AND i_o_bus = "1 × 6.4 gt/s qpi" | What's the release price of a processor that has a frequency of 3.2 ghz and 1 × 6.4 gt/s qpi I/O? | CREATE TABLE table_name_76 (release_price___usd__ VARCHAR, frequency VARCHAR, i_o_bus VARCHAR) |
SELECT MIN(gnis_feature_id) FROM table_name_39 WHERE county = "sheridan" | What is the lowest GNIS Feature ID from County of sheridan? | CREATE TABLE table_name_39 (gnis_feature_id INTEGER, county VARCHAR) |
SELECT MAX(rank) FROM table_name_73 WHERE name = "tsvetelina kirilova" AND result < 55.97 | Which Rank has a Name of tsvetelina kirilova, and a Result smaller than 55.97? | CREATE TABLE table_name_73 (rank INTEGER, name VARCHAR, result VARCHAR) |
SELECT venue FROM table_name_25 WHERE home_team = "north melbourne" | Where did North Melbourne play as the home team? | CREATE TABLE table_name_25 (venue VARCHAR, home_team VARCHAR) |
SELECT MIN(bronze) FROM table_name_27 WHERE total < 1 | When the Total is less than 1, how many Bronze medals are won? | CREATE TABLE table_name_27 (bronze INTEGER, total INTEGER) |
SELECT county FROM table_name_36 WHERE listed = "1992-06-29" AND name = "republican river bridge" | what's the county name for the republican river bridge listed on 1992-06-29? | CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR) |
SELECT player FROM table_name_75 WHERE round < 2 | What is the name of the player picked before round 2? | CREATE TABLE table_name_75 (player VARCHAR, round INTEGER) |
SELECT opponents FROM table_2151643_3 WHERE outcome = "Winner" AND surface = "Grass" | Who were the opponents that led to an outcome of winner on a grass surface? | CREATE TABLE table_2151643_3 (opponents VARCHAR, outcome VARCHAR, surface VARCHAR) |
SELECT home_team AS score FROM table_name_19 WHERE venue = "junction oval" | What was the score of the home team at junction oval? | CREATE TABLE table_name_19 (home_team VARCHAR, venue VARCHAR) |
SELECT COUNT(*) FROM Other_Available_Features | How many available features are there in total? | CREATE TABLE Other_Available_Features (Id VARCHAR) |
SELECT AVG(money___) AS $__ FROM table_name_76 WHERE place = "t10" AND player = "denny shute" AND to_par > 12 | Which average money has a Place of t10, and a Player of denny shute, and a To par larger than 12? | CREATE TABLE table_name_76 (money___ INTEGER, to_par VARCHAR, place VARCHAR, player VARCHAR) |
SELECT AVG(week) FROM table_name_11 WHERE game_site = "shea stadium" AND date = "1979-12-09" | What average week has shea stadium as the game site, and 1979-12-09 as the date? | CREATE TABLE table_name_11 (week INTEGER, game_site VARCHAR, date VARCHAR) |
SELECT ihsaa_class FROM table_name_71 WHERE county < 228 | What is the IHSAA class of the county that is less than 228? | CREATE TABLE table_name_71 (ihsaa_class VARCHAR, county INTEGER) |
SELECT result FROM table_name_49 WHERE competition = "uefa cup" AND opponent = "palermo" | What is the result of the UEFA Cup, against Palermo? | CREATE TABLE table_name_49 (result VARCHAR, competition VARCHAR, opponent VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.