answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT performer_3 FROM table_name_79 WHERE performer_1 = "stephen frost" AND performer_2 = "josie lawrence" AND date = "15 september 1995"
|
Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3?
|
CREATE TABLE table_name_79 (performer_3 VARCHAR, date VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)
|
SELECT away_team FROM table_name_63 WHERE home_team = "north melbourne"
|
Who was the away team at the home game of north melbourne?
|
CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)
|
SELECT home_team AS score FROM table_name_58 WHERE venue = "lake oval"
|
When the game was played at the Venue of Lake Oval, what was the home team score?
|
CREATE TABLE table_name_58 (home_team VARCHAR, venue VARCHAR)
|
SELECT others__number FROM table_name_59 WHERE bush__percentage = "63.98%"
|
What was the other number with 63.98% bush?
|
CREATE TABLE table_name_59 (others__number VARCHAR, bush__percentage VARCHAR)
|
SELECT AVG(points) FROM table_name_64 WHERE goals_conceded > 23 AND position > 12
|
What is the average number of points of the club with more than 23 goals conceded and a position larger than 12?
|
CREATE TABLE table_name_64 (points INTEGER, goals_conceded VARCHAR, position VARCHAR)
|
SELECT points_against FROM table_14058433_4 WHERE won = "11"
|
what's the points against with won being 11
|
CREATE TABLE table_14058433_4 (points_against VARCHAR, won VARCHAR)
|
SELECT AVG(attendance) FROM table_name_2 WHERE opponent = "pittsburgh steelers" AND opponents > 0
|
What is the average attendance for games against the Pittsburgh Steelers when the opponents scored more than 0 points?
|
CREATE TABLE table_name_2 (attendance INTEGER, opponent VARCHAR, opponents VARCHAR)
|
SELECT result FROM table_name_64 WHERE week > 14 AND opponent = "houston oilers"
|
Against the Houston Oilers after week 14, what was the result of the game?
|
CREATE TABLE table_name_64 (result VARCHAR, week VARCHAR, opponent VARCHAR)
|
SELECT power__kw_ FROM table_name_44 WHERE location = "davao"
|
What is the Davao's power (kW)?
|
CREATE TABLE table_name_44 (power__kw_ VARCHAR, location VARCHAR)
|
SELECT record FROM table_name_99 WHERE loss = "finley (8-7)"
|
Loss of finley (8-7) had what record?
|
CREATE TABLE table_name_99 (record VARCHAR, loss VARCHAR)
|
SELECT engine FROM table_name_71 WHERE points > 1 AND year > 1981
|
Which engine has more than 1 point after 1981?
|
CREATE TABLE table_name_71 (engine VARCHAR, points VARCHAR, year VARCHAR)
|
SELECT song FROM table_name_17 WHERE draw < 20 AND artist = "luca barbarossa"
|
What Luca Barbarossa song had a draw smaller than 20?
|
CREATE TABLE table_name_17 (song VARCHAR, draw VARCHAR, artist VARCHAR)
|
SELECT host_team FROM table_name_55 WHERE final_score = "13-10"
|
Which host team won on a final scoreline of 13-10?
|
CREATE TABLE table_name_55 (host_team VARCHAR, final_score VARCHAR)
|
SELECT MAX(laps) FROM table_name_9 WHERE grid > 9 AND driver = "jan heylen"
|
Name the most laps for grid more than 9 and the driver being jan heylen
|
CREATE TABLE table_name_9 (laps INTEGER, grid VARCHAR, driver VARCHAR)
|
SELECT location_attendance FROM table_name_69 WHERE record = "19-17"
|
What was the location and attendance when the record was 19-17?
|
CREATE TABLE table_name_69 (location_attendance VARCHAR, record VARCHAR)
|
SELECT females FROM table_name_67 WHERE language = "german"
|
How many women speak German?
|
CREATE TABLE table_name_67 (females VARCHAR, language VARCHAR)
|
SELECT gender FROM table_26615633_3 WHERE species = "Asian black bear"
|
what gender has an asian black bear?
|
CREATE TABLE table_26615633_3 (gender VARCHAR, species VARCHAR)
|
SELECT party FROM table_name_95 WHERE term_start = "5 august 1999"
|
Which party had a term start of 5 august 1999?
|
CREATE TABLE table_name_95 (party VARCHAR, term_start VARCHAR)
|
SELECT nominating_festival FROM table_name_72 WHERE country = "united kingdom"
|
Which nominating festival did United Kingdom enter?
|
CREATE TABLE table_name_72 (nominating_festival VARCHAR, country VARCHAR)
|
SELECT T2.Name FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID
|
What are the names of entrepreneurs?
|
CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE entrepreneur (People_ID VARCHAR)
|
SELECT location FROM table_1974632_1 WHERE type = "Private/Presbyterian"
|
where is the private/presbyterian institute
|
CREATE TABLE table_1974632_1 (location VARCHAR, type VARCHAR)
|
SELECT MAX(game) FROM table_13762472_3 WHERE record = "6-3"
|
What was the last game where the record was 6-3?
|
CREATE TABLE table_13762472_3 (game INTEGER, record VARCHAR)
|
SELECT date FROM table_name_37 WHERE catalog = "ha-m 2230"
|
Which date had the catalog designation of ha-m 2230?
|
CREATE TABLE table_name_37 (date VARCHAR, catalog VARCHAR)
|
SELECT away FROM table_name_22 WHERE record = "7-4" AND win__percentage = 0.637 AND season = "2010"
|
What is the away score with a record of 7-4, win% of 0.637, and 2010 season?
|
CREATE TABLE table_name_22 (away VARCHAR, season VARCHAR, record VARCHAR, win__percentage VARCHAR)
|
SELECT SUM(points) FROM table_name_87 WHERE games < 4
|
What is the sum of the points when there are fewer than 4 games?
|
CREATE TABLE table_name_87 (points INTEGER, games INTEGER)
|
SELECT MAX(points) FROM table_name_66 WHERE year = 1962 AND class = "125cc" AND wins < 0
|
What is the highest points value for 1962, in the 125cc class, and with 0 wins?
|
CREATE TABLE table_name_66 (points INTEGER, wins VARCHAR, year VARCHAR, class VARCHAR)
|
SELECT record FROM table_17765264_1 WHERE attendance = 14489
|
What was their record when the attendance at the game was 14489?
|
CREATE TABLE table_17765264_1 (record VARCHAR, attendance VARCHAR)
|
SELECT COUNT(no_in_series) FROM table_2226817_6 WHERE original_air_date = "October 28, 1990"
|
How many series numbers do the episodes originally aired on October 28, 1990?
|
CREATE TABLE table_2226817_6 (no_in_series VARCHAR, original_air_date VARCHAR)
|
SELECT _percentage_wt_2nd FROM table_name_77 WHERE bp_3rd_comp__˚c_ = "98.4"
|
Tell me the % of wt 2nd for bp 3rd comp of 98.4
|
CREATE TABLE table_name_77 (_percentage_wt_2nd VARCHAR, bp_3rd_comp__˚c_ VARCHAR)
|
SELECT MIN(founded) FROM table_name_83 WHERE type = "private" AND nickname = "mountaineers"
|
Which of the private colleges is the oldest, and whose nickname is the Mountaineers?
|
CREATE TABLE table_name_83 (founded INTEGER, type VARCHAR, nickname VARCHAR)
|
SELECT COUNT(*) FROM classroom WHERE building <> 'Lamberton'
|
Count the number of rooms that are not in the Lamberton building.
|
CREATE TABLE classroom (building VARCHAR)
|
SELECT partner FROM table_name_64 WHERE score = "6–3, 7–6 (7–3)"
|
Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)?
|
CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR)
|
SELECT visitor FROM table_name_30 WHERE home = "chicago"
|
Who was the visiting team at the Chicago home game?
|
CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR)
|
SELECT MAX(time) FROM table_name_71 WHERE name = "katrin meißner" AND rank < 5
|
Name the most time for katrin meißner and rank less than 5
|
CREATE TABLE table_name_71 (time INTEGER, name VARCHAR, rank VARCHAR)
|
SELECT SUM(word__number) FROM table_name_43 WHERE subframe__number > 3
|
What is the total word count with a subframe count greater than 3?
|
CREATE TABLE table_name_43 (word__number INTEGER, subframe__number INTEGER)
|
SELECT MAX(pick) FROM table_name_13 WHERE college = "fairmont state" AND round > 10
|
Who had the high pick of the round of 10 for Fairmont State college?
|
CREATE TABLE table_name_13 (pick INTEGER, college VARCHAR, round VARCHAR)
|
SELECT high_rebounds FROM table_27902171_9 WHERE team = "Minnesota Timberwolves"
|
Who performed the most rebounds on games against the Minnesota Timberwolves?
|
CREATE TABLE table_27902171_9 (high_rebounds VARCHAR, team VARCHAR)
|
SELECT COUNT(size__steps_) FROM table_name_26 WHERE just_ratio = "10:9" AND size__cents_ > 160
|
What is the value of the size (steps) that has just ratio 10:9 and a size (cents) more than 160
|
CREATE TABLE table_name_26 (size__steps_ VARCHAR, just_ratio VARCHAR, size__cents_ VARCHAR)
|
SELECT MIN(year) FROM table_2402864_1 WHERE regular_season = "3rd, Southeast" AND league = "USL PDL"
|
What was the earliest year where USL PDL played in 3rd, Southeast season?
|
CREATE TABLE table_2402864_1 (year INTEGER, regular_season VARCHAR, league VARCHAR)
|
SELECT MIN(product_price), MAX(product_price), AVG(product_price) FROM products
|
Show the minimum, maximum, average price for all products.
|
CREATE TABLE products (product_price INTEGER)
|
SELECT date FROM table_name_97 WHERE opponent = "andrea gámiz"
|
When was andrea gámiz the opponent?
|
CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR)
|
SELECT MIN(week) FROM table_name_40 WHERE record = "8–5"
|
What is the earliest week that shows a record of 8–5?
|
CREATE TABLE table_name_40 (week INTEGER, record VARCHAR)
|
SELECT directed_by FROM table_17641206_4 WHERE written_by = "John Sullivan"
|
Who was the director when the writer was John Sullivan?
|
CREATE TABLE table_17641206_4 (directed_by VARCHAR, written_by VARCHAR)
|
SELECT college_junior_club_team__league_ FROM table_14209245_9 WHERE pick__number = "130"
|
What is the college/junior/club team (league) of the player who was pick number 130?
|
CREATE TABLE table_14209245_9 (college_junior_club_team__league_ VARCHAR, pick__number VARCHAR)
|
SELECT bse_code FROM table_20667854_1 WHERE free_float = "0.2726"
|
What is every BSE code for a free float of 0.2726?
|
CREATE TABLE table_20667854_1 (bse_code VARCHAR, free_float VARCHAR)
|
SELECT COUNT(place) FROM table_name_40 WHERE round_1 = "beat lee janzen 3&2" AND year < 1998
|
Round 1 of beat lee janzen 3&2, and a Year smaller than 1998 has what total number of place?
|
CREATE TABLE table_name_40 (place VARCHAR, round_1 VARCHAR, year VARCHAR)
|
SELECT location FROM table_23453931_5 WHERE opponent = "Buffalo Sabres"
|
Name the location of buffalo sabres
|
CREATE TABLE table_23453931_5 (location VARCHAR, opponent VARCHAR)
|
SELECT points_for FROM table_name_91 WHERE club = "fall bay rfc"
|
How many points are for the Fall Bay RFC club?
|
CREATE TABLE table_name_91 (points_for VARCHAR, club VARCHAR)
|
SELECT s_wicket FROM table_name_68 WHERE player = "shaun young"
|
Which value for s wicket is associated with Shaun Young?
|
CREATE TABLE table_name_68 (s_wicket VARCHAR, player VARCHAR)
|
SELECT COUNT(trademark) FROM table_12715053_1 WHERE molecular_target = "Minor Groove of DNA" AND clinical_status = "Phase I"
|
How many trademarks list a molecular target of minor groove of dna and a clinical status value of phase i?
|
CREATE TABLE table_12715053_1 (trademark VARCHAR, molecular_target VARCHAR, clinical_status VARCHAR)
|
SELECT winner FROM table_name_66 WHERE location = "clemson, sc" AND date = "november 17, 2012"
|
What is the Winner, when the Location is Clemson, SC, and when the Date is November 17, 2012?
|
CREATE TABLE table_name_66 (winner VARCHAR, location VARCHAR, date VARCHAR)
|
SELECT gold_coast FROM table_name_2 WHERE melbourne = "yes" AND adelaide = "yes" AND auckland = "yes"
|
yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland?
|
CREATE TABLE table_name_2 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR)
|
SELECT COUNT(mintage) FROM table_name_88 WHERE weight = "12.61 g" AND theme = "ruby-throated hummingbird"
|
What is the Mintage of the 12.61 g Weight Ruby-Throated Hummingbird?
|
CREATE TABLE table_name_88 (mintage VARCHAR, weight VARCHAR, theme VARCHAR)
|
SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars BETWEEN 3 AND 5
|
What are the titles of all movies that have rating star is between 3 and 5?
|
CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Movie (title VARCHAR, mID VARCHAR)
|
SELECT status FROM table_1603807_2 WHERE line = "Airport line"
|
What is the status of the airport line?
|
CREATE TABLE table_1603807_2 (status VARCHAR, line VARCHAR)
|
SELECT MAX(silver) FROM table_name_62 WHERE bronze > 0 AND total > 1 AND gold > 0 AND nation = "china (chn)"
|
what is the most silver when bronze is more than 0, total is more than 1, gold is more than 0 and the nation is china (chn)?
|
CREATE TABLE table_name_62 (silver INTEGER, nation VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR)
|
SELECT story_title FROM table_name_60 WHERE letterer_s = "albers"
|
What is the Story Title that has Albers as the Letterer?
|
CREATE TABLE table_name_60 (story_title VARCHAR, letterer_s VARCHAR)
|
SELECT shooter FROM table_name_84 WHERE rank_points = "8" AND event = "wc milan"
|
Which Shooter has a Rank points of 8 and a Event of wc milan?
|
CREATE TABLE table_name_84 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR)
|
SELECT score FROM table_name_86 WHERE visitor = "minnesota"
|
What was the score when Minnesota visited?
|
CREATE TABLE table_name_86 (score VARCHAR, visitor VARCHAR)
|
SELECT giro_di_lombardia FROM table_name_38 WHERE paris_roubaix = "servais knaven ( ned )"
|
Which Giro di Lombardia has a Paris–Roubaix of servais knaven ( ned )?
|
CREATE TABLE table_name_38 (giro_di_lombardia VARCHAR, paris_roubaix VARCHAR)
|
SELECT MIN(crowd) FROM table_name_2 WHERE home_team = "carlton"
|
What was the lowest crowd size for the Carlton at home?
|
CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR)
|
SELECT MIN(total) FROM table_name_34 WHERE rank = "14" AND gold > 0
|
What is the lowest total when the rank is 14 and the gold medals is larger than 0?
|
CREATE TABLE table_name_34 (total INTEGER, rank VARCHAR, gold VARCHAR)
|
SELECT AVG(races) FROM table_name_98 WHERE final_placing = "15th" AND season = "2005"
|
In the 2005 season, how many races did the 15th place team complete?
|
CREATE TABLE table_name_98 (races INTEGER, final_placing VARCHAR, season VARCHAR)
|
SELECT date FROM table_name_52 WHERE opponent = "dender" AND tournament = "jupiler league" AND ground = "a"
|
Which date's opponent was Dender when the tournament was in the Jupiler League and the ground was a?
|
CREATE TABLE table_name_52 (date VARCHAR, ground VARCHAR, opponent VARCHAR, tournament VARCHAR)
|
SELECT built_for FROM table_28885977_1 WHERE location = "Moorabbin, Victoria"
|
What was the stadium in Moorabbin, Victoria built for?
|
CREATE TABLE table_28885977_1 (built_for VARCHAR, location VARCHAR)
|
SELECT incumbent FROM table_name_35 WHERE result = "retired democratic gain"
|
Which Incumbent has a Result of retired democratic gain?
|
CREATE TABLE table_name_35 (incumbent VARCHAR, result VARCHAR)
|
SELECT week_2_sept_7 FROM table_name_84 WHERE week_6_oct_5 = "wake forest (3-1)"
|
Which Week 2 Sept 7 has a Week 6 Oct 5 of wake forest (3-1)?
|
CREATE TABLE table_name_84 (week_2_sept_7 VARCHAR, week_6_oct_5 VARCHAR)
|
SELECT conflict FROM table_26977890_1 WHERE combatants_b = "Italian Navy"
|
In what conflicts was the Italian Navy Combatants B?
|
CREATE TABLE table_26977890_1 (conflict VARCHAR, combatants_b VARCHAR)
|
SELECT player FROM table_name_9 WHERE year = 1976
|
Who was the player in 1976?
|
CREATE TABLE table_name_9 (player VARCHAR, year VARCHAR)
|
SELECT date FROM table_name_45 WHERE place = "7th"
|
When 7th place, what is the date?
|
CREATE TABLE table_name_45 (date VARCHAR, place VARCHAR)
|
SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 2 UNION SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 1
|
What are the ids, names and genders of the architects who built two bridges or one mill?
|
CREATE TABLE mill (architect_id VARCHAR); CREATE TABLE architect (id VARCHAR, name VARCHAR, gender VARCHAR); CREATE TABLE bridge (architect_id VARCHAR)
|
SELECT competition FROM table_name_28 WHERE score = "2-1"
|
what is the competition when the score is 2-1?
|
CREATE TABLE table_name_28 (competition VARCHAR, score VARCHAR)
|
SELECT venue FROM table_24919137_2 WHERE result_margin = "WON by 70"
|
Where was the game played when the result/margin was won by 70?
|
CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR)
|
SELECT thai_name FROM table_name_75 WHERE abbr = "มี.ค."
|
What is the Thai name for the word abbreviated มี.ค.?
|
CREATE TABLE table_name_75 (thai_name VARCHAR, abbr VARCHAR)
|
SELECT name FROM table_name_11 WHERE length = "16.62km" AND time = "15:10"
|
What is the Name of the stage with a Length of 16.62km and Time of 15:10?
|
CREATE TABLE table_name_11 (name VARCHAR, length VARCHAR, time VARCHAR)
|
SELECT MIN(silver) FROM table_name_19 WHERE gold = 1 AND total < 4 AND bronze < 0
|
Gold of 1, and a Total smaller than 4, and a Bronze smaller than 0 has the lowest silver?
|
CREATE TABLE table_name_19 (silver INTEGER, bronze VARCHAR, gold VARCHAR, total VARCHAR)
|
SELECT 2004 FROM table_name_31 WHERE 2005 = "not tier i"
|
What is 2004, when 2005 is "Not Tier I"?
|
CREATE TABLE table_name_31 (Id VARCHAR)
|
SELECT MIN(played) FROM table_name_41 WHERE club = "ue figueres" AND goal_difference > 16
|
What is the lowest play with ue figueres club and a goal difference more than 16?
|
CREATE TABLE table_name_41 (played INTEGER, club VARCHAR, goal_difference VARCHAR)
|
SELECT listed_owner_s_ FROM table_24535095_2 WHERE crew_chief = "Mike Garvey"
|
Name the listed owner for mike garvey
|
CREATE TABLE table_24535095_2 (listed_owner_s_ VARCHAR, crew_chief VARCHAR)
|
SELECT game FROM table_name_80 WHERE streak = "loss 1" AND score = "110–111"
|
Which Game has a Streak of loss 1, and a Score of 110–111?
|
CREATE TABLE table_name_80 (game VARCHAR, streak VARCHAR, score VARCHAR)
|
SELECT margin_of_victory FROM table_name_28 WHERE runner_s__up = "gary player"
|
When Gary Player was the runner-up, what was the margin of victory?
|
CREATE TABLE table_name_28 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
|
SELECT opponent FROM table_name_27 WHERE result = "l 14–10"
|
Which Opponent has a Result of l 14–10?
|
CREATE TABLE table_name_27 (opponent VARCHAR, result VARCHAR)
|
SELECT COUNT(total) FROM table_name_57 WHERE silver = 6 AND bronze > 5 AND gold < 4
|
Name the total number of total with silver of 6, bronze more than 5 and gold less than 4
|
CREATE TABLE table_name_57 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)
|
SELECT tournament FROM table_name_95 WHERE outcome = "runner-up" AND surface = "hard" AND score = "6–4, 6–2"
|
Which tournament has an Outcome of runner-up, a Surface of hard, and a Score of 6–4, 6–2?
|
CREATE TABLE table_name_95 (tournament VARCHAR, score VARCHAR, outcome VARCHAR, surface VARCHAR)
|
SELECT player FROM table_name_12 WHERE position = "guard-forward" AND school_club_team = "pepperdine"
|
Which Player plays Guard-Forward Position for School/Club Team Pepperdine?
|
CREATE TABLE table_name_12 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
|
SELECT rider FROM table_name_35 WHERE laps = "28" AND manufacturer = "honda" AND grid = "1"
|
Which rider's manufacturer is Honda and has 28 laps and a grid of 1?
|
CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR)
|
SELECT COUNT(senate_seats) FROM table_158282_1 WHERE political_leader = "Emile Roemer"
|
How many categories of Senate Seats does Emile Roemer have?
|
CREATE TABLE table_158282_1 (senate_seats VARCHAR, political_leader VARCHAR)
|
SELECT away_team AS score FROM table_name_63 WHERE venue = "kardinia park"
|
What away team played at Kardinia Park?
|
CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)
|
SELECT latitude FROM table_16768245_2 WHERE diameter = "184.0"
|
What is the latitude when the diameter is 184.0?
|
CREATE TABLE table_16768245_2 (latitude VARCHAR, diameter VARCHAR)
|
SELECT time FROM table_name_99 WHERE year = "1984"
|
What was the winning time in 1984?
|
CREATE TABLE table_name_99 (time VARCHAR, year VARCHAR)
|
SELECT circuit FROM table_name_93 WHERE winning_team = "carlin motorsport" AND winning_driver = "oliver turvey" AND date = "24 march"
|
Which Circuit has the Winning Team of carlin motorsport, and the Winning Driver of oliver turvey, and a Date of 24 march?
|
CREATE TABLE table_name_93 (circuit VARCHAR, date VARCHAR, winning_team VARCHAR, winning_driver VARCHAR)
|
SELECT MAX(capacity) FROM table_name_97 WHERE location = "aslantepe" AND year = "2002-2005"
|
What is the highest capacity in Aslantepe in 2002-2005?
|
CREATE TABLE table_name_97 (capacity INTEGER, location VARCHAR, year VARCHAR)
|
SELECT manner_of_departure FROM table_name_77 WHERE outgoing_manager = "giuseppe iachini"
|
What was the manner of departure for the outgoing manager, giuseppe iachini?
|
CREATE TABLE table_name_77 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)
|
SELECT network FROM table_1404984_1 WHERE virtual_channel = "9.1"
|
What network is virtual channel 9.1 linked to?
|
CREATE TABLE table_1404984_1 (network VARCHAR, virtual_channel VARCHAR)
|
SELECT team FROM table_24765815_1 WHERE rank = "7th"
|
What team was ranked in 7th?
|
CREATE TABLE table_24765815_1 (team VARCHAR, rank VARCHAR)
|
SELECT date FROM table_name_12 WHERE score = "24-7" AND record = "4-10"
|
Which Date has a Score of 24-7, and a Record of 4-10?
|
CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR, record VARCHAR)
|
SELECT MAX(points) FROM table_name_99 WHERE year = 1966
|
What was the highest number of points in 1966?
|
CREATE TABLE table_name_99 (points INTEGER, year VARCHAR)
|
SELECT top_5 FROM table_2597876_2 WHERE avg_start = "21.9"
|
What is every value for top 5 if average start is 21.9?
|
CREATE TABLE table_2597876_2 (top_5 VARCHAR, avg_start VARCHAR)
|
SELECT venue FROM table_name_61 WHERE away_team = "south melbourne"
|
What venue did South Melbourne play as the away team?
|
CREATE TABLE table_name_61 (venue VARCHAR, away_team VARCHAR)
|
SELECT departure FROM table_name_66 WHERE station_name = "rajendranagar terminal"
|
What is the Departure time at Rajendranagar Terminal?
|
CREATE TABLE table_name_66 (departure VARCHAR, station_name VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.