answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT opponent FROM table_name_36 WHERE record = "22-10" | Which Opponent has a Record of 22-10? | CREATE TABLE table_name_36 (opponent VARCHAR, record VARCHAR) |
SELECT time FROM table_name_28 WHERE rank < 4 AND country = "finland" | What is the Time of the Rowers from Finland with a Rank of less than 4? | CREATE TABLE table_name_28 (time VARCHAR, rank VARCHAR, country VARCHAR) |
SELECT socialist_labor_ticket FROM table_name_28 WHERE democratic_ticket = "robert m. morgenthau" | Who ran under the Socialist Labor ticket when Robert M. Morgenthau ran for the Democratic ticket? | CREATE TABLE table_name_28 (socialist_labor_ticket VARCHAR, democratic_ticket VARCHAR) |
SELECT loss FROM table_name_83 WHERE date = "may 9" | Who did they lose to on may 9? | CREATE TABLE table_name_83 (loss VARCHAR, date VARCHAR) |
SELECT SUM(game) FROM table_name_91 WHERE score = "103–126" | What is the sum for the game with a score of 103–126? | CREATE TABLE table_name_91 (game INTEGER, score VARCHAR) |
SELECT AVG(year) FROM table_name_67 WHERE final_position___tour = 54 AND final_position___vuelta > 55 | What is the average year that has a final Tour position of 54 and a final Vuelta position over 55? | CREATE TABLE table_name_67 (year INTEGER, final_position___tour VARCHAR, final_position___vuelta VARCHAR) |
SELECT MIN(attendance) FROM table_name_40 WHERE score = "5 - 0" | What was the lowest attendance for a score of 5 - 0? | CREATE TABLE table_name_40 (attendance INTEGER, score VARCHAR) |
SELECT performed_by FROM table_191105_2 WHERE music_by = "Bob Dorough" AND episode_title = "Conjunction Junction" | When conjunction junction is the episode title and the music is by bob dorough who is the performer? | CREATE TABLE table_191105_2 (performed_by VARCHAR, music_by VARCHAR, episode_title VARCHAR) |
SELECT away_team FROM table_name_44 WHERE home_team = "leeds united" | WHAT IS THE AWAY TEAM WHEN HOME IS LEEDS UNITED? | CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR) |
SELECT AVG(played) FROM table_name_59 WHERE points = 12 AND against < 52 | What is the number of games played for the team with 12 points and an against smaller than 52? | CREATE TABLE table_name_59 (played INTEGER, points VARCHAR, against VARCHAR) |
SELECT SUM(rank) FROM table_name_23 WHERE gold < 1 AND bronze = 0 AND total > 1 | What is the rank when there was less than 1 gold, 0 bronze, and more than 1 total? | CREATE TABLE table_name_23 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR) |
SELECT laps AS Led FROM table_name_29 WHERE grid = "15" | How many laps led when the Grid was 15? | CREATE TABLE table_name_29 (laps VARCHAR, grid VARCHAR) |
SELECT time FROM table_name_3 WHERE country = "south korea" | What is the time for South Korea? | CREATE TABLE table_name_3 (time VARCHAR, country VARCHAR) |
SELECT name FROM table_name_15 WHERE status = "final cast" AND last_performance = "13 june 2009" | What is the name of the actor who played Billy Elliot in the Final Cast with a Last Performance of 13 June 2009? | CREATE TABLE table_name_15 (name VARCHAR, status VARCHAR, last_performance VARCHAR) |
SELECT 1983 FROM table_name_44 WHERE 1975 = "career statistics" | What 1983 has a 1975 of career statistics? | CREATE TABLE table_name_44 (Id VARCHAR) |
SELECT COUNT(against) FROM table_name_94 WHERE team = "sant'anna" AND position > 10 | What is the Total againsts for the Sant'Anna team with a position number greater than 10? | CREATE TABLE table_name_94 (against VARCHAR, team VARCHAR, position VARCHAR) |
SELECT 1997 FROM table_name_57 WHERE 1991 = "a" AND tournament = "australian open" | Which 1997's accompanying 1991 was a when the tournament was the australian open? | CREATE TABLE table_name_57 (tournament VARCHAR) |
SELECT a330 FROM table_name_62 WHERE a310 = "b10" | What is the A330 for A310 B10? | CREATE TABLE table_name_62 (a330 VARCHAR, a310 VARCHAR) |
SELECT transfer_fee FROM table_name_34 WHERE type = "career end" AND name = "willy sagnol" | Willy Sagnol with a type as career end had what has the transfer fee? | CREATE TABLE table_name_34 (transfer_fee VARCHAR, type VARCHAR, name VARCHAR) |
SELECT MIN(guns) FROM table_name_32 WHERE class = "frigate" AND year = "1815" | What were the fewest amount of guns possessed by a frigate that served in 1815? | CREATE TABLE table_name_32 (guns INTEGER, class VARCHAR, year VARCHAR) |
SELECT COUNT(attendance) FROM table_14945112_1 WHERE date = "October 1, 1978" | What is the total number of values for attendance for the date October 1, 1978? | CREATE TABLE table_14945112_1 (attendance VARCHAR, date VARCHAR) |
SELECT accreditation_status FROM table_name_83 WHERE product_name = "lg rcs-e client" | What is the Accreditation Status, when the Product Name is LG RCS-e Client? | CREATE TABLE table_name_83 (accreditation_status VARCHAR, product_name VARCHAR) |
SELECT date FROM table_name_36 WHERE opponent = "milwaukee bucks" | On which date was the game played against the Milwaukee Bucks? | CREATE TABLE table_name_36 (date VARCHAR, opponent VARCHAR) |
SELECT height FROM table_name_2 WHERE date_of_birth = "1976-12-27" | How tall is the person born on 1976-12-27? | CREATE TABLE table_name_2 (height VARCHAR, date_of_birth VARCHAR) |
SELECT vietnamese FROM table_name_25 WHERE chinese = "不如密多 / bùrúmìduō" | Which VIETNAMESE has a CHINESE of 不如密多 / bùrúmìduō? | CREATE TABLE table_name_25 (vietnamese VARCHAR, chinese VARCHAR) |
SELECT event FROM table_name_94 WHERE opponent = "bill parker" | What event did tedd williams fight bill parker? | CREATE TABLE table_name_94 (event VARCHAR, opponent VARCHAR) |
SELECT player FROM table_name_28 WHERE place = "t4" AND score = 70 - 68 - 69 - 73 = 280 | Which player has a score of 70-68-69-73=280 and a place of t4? | CREATE TABLE table_name_28 (player VARCHAR, place VARCHAR, score VARCHAR) |
SELECT player FROM table_name_8 WHERE nationality = "united states" AND years_in_toronto = "2003-06" | Who is the player from United States who play in year 2003-06 in Toronto? | CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR, years_in_toronto VARCHAR) |
SELECT AVG(points_for_higher) FROM table_name_25 WHERE points_for_ordinary = 0 AND grade = "ng" AND points_for_foundation < 0 | What average points for highers has 0 has points for ordinary, and Ng as the grade, and less than 0 as points for foundation? | CREATE TABLE table_name_25 (points_for_higher INTEGER, points_for_foundation VARCHAR, points_for_ordinary VARCHAR, grade VARCHAR) |
SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Regular' INTERSECT SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Initial Application' | For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date. | CREATE TABLE Grants (grant_start_date VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, document_type_code VARCHAR) |
SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Stella Malone" | What seasons does stella malone appear? | CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR) |
SELECT MAX(stumpings) FROM table_27771406_1 | What is the most amount of stumpings any player had? | CREATE TABLE table_27771406_1 (stumpings INTEGER) |
SELECT finish FROM table_name_22 WHERE league = "nl" AND percentage < 0.726 AND year > 1897 AND franchise = "pittsburgh pirates" | What was the Finish when NL was the League, the Percentage was under 0.726, the Year was larger than 1897, and the Franchies was the Pittsburgh Pirates? | CREATE TABLE table_name_22 (finish VARCHAR, franchise VARCHAR, year VARCHAR, league VARCHAR, percentage VARCHAR) |
SELECT date FROM table_name_59 WHERE venue = "moorabbin oval" | When was the game played at Moorabbin Oval? | CREATE TABLE table_name_59 (date VARCHAR, venue VARCHAR) |
SELECT school_club_team FROM table_name_24 WHERE player = "gerald wilkins" | What school/club did gerald wilkins attend? | CREATE TABLE table_name_24 (school_club_team VARCHAR, player VARCHAR) |
SELECT MAX(enrollment) FROM table_1974443_1 WHERE institution = "Concordia University" | What is the maximum enrollment for Concordia University? | CREATE TABLE table_1974443_1 (enrollment INTEGER, institution VARCHAR) |
SELECT round FROM table_name_39 WHERE competition = "uefa cup" AND club = "kolkheti-1913 poti" | Which round is the UEFA Cup Compeition and the Kolkheti-1913 Poti Cub? | CREATE TABLE table_name_39 (round VARCHAR, competition VARCHAR, club VARCHAR) |
SELECT incumbent FROM table_1341598_44 WHERE district = "Texas 22" | What incumbent won the district of texas 22? | CREATE TABLE table_1341598_44 (incumbent VARCHAR, district VARCHAR) |
SELECT venue FROM table_name_50 WHERE away_team = "south melbourne" | Which venue hosted South Melbourne? | CREATE TABLE table_name_50 (venue VARCHAR, away_team VARCHAR) |
SELECT speed_rank FROM table_name_11 WHERE year = "1963" | What's the speed rank in 1963? | CREATE TABLE table_name_11 (speed_rank VARCHAR, year VARCHAR) |
SELECT T1.region_name, COUNT(*) FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id | Show the name for regions and the number of storms for each region. | CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR) |
SELECT player FROM table_18862490_2 WHERE score = 64 - 71 - 67 - 67 = 269 | What players had teh score of 64-71-67-67=269? | CREATE TABLE table_18862490_2 (player VARCHAR, score VARCHAR) |
SELECT MIN(population) FROM table_171236_2 WHERE official_name = "Cardwell" | What is the population of Cardwell? | CREATE TABLE table_171236_2 (population INTEGER, official_name VARCHAR) |
SELECT player FROM table_name_60 WHERE total = "152" | Which player had a total of 152? | CREATE TABLE table_name_60 (player VARCHAR, total VARCHAR) |
SELECT 2011 FROM table_name_63 WHERE tournament = "grand slam tournaments" | What is the 2011 when the Tournament was the grand slam tournaments? | CREATE TABLE table_name_63 (tournament VARCHAR) |
SELECT MAX(l) FROM table_29565601_2 | What is the largest number in L? | CREATE TABLE table_29565601_2 (l INTEGER) |
SELECT date_of_death FROM table_name_76 WHERE date_of_inauguration = "date of inauguration" | What was the date of death entry in the row that has a date of inauguration entry of date of inauguration? | CREATE TABLE table_name_76 (date_of_death VARCHAR, date_of_inauguration VARCHAR) |
SELECT MIN(points) FROM table_14889048_2 WHERE scored = 15 | How many points when 15 is scored is considered the minimum? | CREATE TABLE table_14889048_2 (points INTEGER, scored VARCHAR) |
SELECT score FROM table_name_48 WHERE winning_team = "san antonio spurs" | What is the Score with a Winning team that is san antonio spurs? | CREATE TABLE table_name_48 (score VARCHAR, winning_team VARCHAR) |
SELECT to_par FROM table_name_60 WHERE place = "4" | What was the To par when the place was 4? | CREATE TABLE table_name_60 (to_par VARCHAR, place VARCHAR) |
SELECT virtual_channel FROM table_name_25 WHERE station_ownership = "eicb tv" AND call_sign = "ktcj-ld" | Station Ownership of eicb tv, and a Call sign of ktcj-ld is what virtual network? | CREATE TABLE table_name_25 (virtual_channel VARCHAR, station_ownership VARCHAR, call_sign VARCHAR) |
SELECT name FROM table_22810095_8 WHERE n = 28 | What is the name of the player when n is 28? | CREATE TABLE table_22810095_8 (name VARCHAR, n VARCHAR) |
SELECT type FROM table_22180353_1 WHERE registration = "HB-OPU" | What are all types where registration is HB-OPU? | CREATE TABLE table_22180353_1 (type VARCHAR, registration VARCHAR) |
SELECT league FROM table_name_64 WHERE team = "ordabasy-2" | What league is ordabasy-2 in? | CREATE TABLE table_name_64 (league VARCHAR, team VARCHAR) |
SELECT high_rebounds FROM table_22654073_13 WHERE date = "May 11" | List all high rebound entries from May 11. | CREATE TABLE table_22654073_13 (high_rebounds VARCHAR, date VARCHAR) |
SELECT british FROM table_name_83 WHERE australian = "i, ɪ, ə" AND examples = "œsophagus" | What is British, when Australian is "i, ɪ, ə", and when Examples is "œsophagus"? | CREATE TABLE table_name_83 (british VARCHAR, australian VARCHAR, examples VARCHAR) |
SELECT class AS pos FROM table_name_79 WHERE laps < 304 AND year > 2001 | Which Class Pos have Laps smaller than 304, and a Year after 2001? | CREATE TABLE table_name_79 (class VARCHAR, laps VARCHAR, year VARCHAR) |
SELECT surface FROM table_name_67 WHERE date = "june 11, 2006" | What is the Surface of the Tournament on June 11, 2006? | CREATE TABLE table_name_67 (surface VARCHAR, date VARCHAR) |
SELECT sport FROM table_name_69 WHERE name = "wolfgang schattauer" | what is the sport for wolfgang schattauer? | CREATE TABLE table_name_69 (sport VARCHAR, name VARCHAR) |
SELECT date FROM table_name_40 WHERE result = "8-0" | What date had a result of 8-0? | CREATE TABLE table_name_40 (date VARCHAR, result VARCHAR) |
SELECT MAX(poles) FROM table_24466191_1 WHERE series = "Macau Grand Prix" | Name th most poles for macau grand prix | CREATE TABLE table_24466191_1 (poles INTEGER, series VARCHAR) |
SELECT date FROM table_name_39 WHERE tournament = "nike colorado classic" | On what date was the Nike Colorado Classic held? | CREATE TABLE table_name_39 (date VARCHAR, tournament VARCHAR) |
SELECT reverse FROM table_298883_5 WHERE value = "₩100" | What is on the reverse side of the ₩100 coin? | CREATE TABLE table_298883_5 (reverse VARCHAR, value VARCHAR) |
SELECT international_tourism_expenditure__2011_ FROM table_name_4 WHERE country = "china" | What is China's International tourism expenditure (2011)? | CREATE TABLE table_name_4 (international_tourism_expenditure__2011_ VARCHAR, country VARCHAR) |
SELECT MIN(attendance) FROM table_24786958_2 WHERE game_site = "Jahn-Sportpark" | How many people attended the game at Jahn-sportpark? | CREATE TABLE table_24786958_2 (attendance INTEGER, game_site VARCHAR) |
SELECT college FROM table_name_19 WHERE round = "round 7" AND player = "tony leiker" | Which college had Tony Leiker in round 7? | CREATE TABLE table_name_19 (college VARCHAR, round VARCHAR, player VARCHAR) |
SELECT call_sign FROM table_name_34 WHERE format = "country" AND frequency = "fm 93.1" | What is the call sign for country station fm 93.1? | CREATE TABLE table_name_34 (call_sign VARCHAR, format VARCHAR, frequency VARCHAR) |
SELECT MAX(grid) FROM table_name_22 WHERE manufacturer = "aprilia" AND time_retired = "+1.660" | What was the highest grid value for riders with manufacturer of Aprilia and time of +1.660? | CREATE TABLE table_name_22 (grid INTEGER, manufacturer VARCHAR, time_retired VARCHAR) |
SELECT losing_bonus FROM table_name_9 WHERE played = "22" AND points_against = "428" | What is the losing bonus of the team with 22 pays and 428 points against? | CREATE TABLE table_name_9 (losing_bonus VARCHAR, played VARCHAR, points_against VARCHAR) |
SELECT team FROM table_23284271_10 WHERE high_rebounds = "Dirk Nowitski (13)" | Which team has dirk nowitski (13) as high rebounds? | CREATE TABLE table_23284271_10 (team VARCHAR, high_rebounds VARCHAR) |
SELECT COUNT(rank) FROM table_name_62 WHERE time = "7:31.90" | What rank did the time of 7:31.90 receive? | CREATE TABLE table_name_62 (rank VARCHAR, time VARCHAR) |
SELECT country FROM table_name_20 WHERE to_par = 1 AND player = "seve ballesteros" | What is Country, when To par is "1", and when Player is "Seve Ballesteros"? | CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR, player VARCHAR) |
SELECT COUNT(main_contestant) FROM table_18278508_4 WHERE position = "Safe" AND co_contestant__yaar_vs_pyaar_ = "Tina Parekh" | Name the total number of main contestants for safe position for tina parekh | CREATE TABLE table_18278508_4 (main_contestant VARCHAR, position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR) |
SELECT result FROM table_name_44 WHERE date = "january 26, 2006" | What is the result of the match on January 26, 2006? | CREATE TABLE table_name_44 (result VARCHAR, date VARCHAR) |
SELECT MAX(round) FROM table_name_70 WHERE position = "defensive tackle" | What's the highest round for a defensive tackle position? | CREATE TABLE table_name_70 (round INTEGER, position VARCHAR) |
SELECT COUNT(opponent) FROM table_23308178_4 WHERE record = "3-2-2" | How many opponents were there with the record of 3-2-2? | CREATE TABLE table_23308178_4 (opponent VARCHAR, record VARCHAR) |
SELECT notes FROM table_name_86 WHERE capacity__mw_ = 343 | What special notes are included for the windfarm with a capacity (MW) of 343? | CREATE TABLE table_name_86 (notes VARCHAR, capacity__mw_ VARCHAR) |
SELECT sub_parish__sogn_ FROM table_name_30 WHERE parish__prestegjeld_ = "hafslo parish" AND church_name = "hafslo kyrkje" | Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and has a church called Hafslo Kyrkje? | CREATE TABLE table_name_30 (sub_parish__sogn_ VARCHAR, parish__prestegjeld_ VARCHAR, church_name VARCHAR) |
SELECT MAX(pts) FROM table_name_9 WHERE coach = "bruce arena" AND loss > 11 | What is the highest percent of Bruce Arena when he loses more than 11 games? | CREATE TABLE table_name_9 (pts INTEGER, coach VARCHAR, loss VARCHAR) |
SELECT MIN(partial_failures) FROM table_name_64 WHERE failures > 0 AND successes = 1 | Failures larger than 0, and a Successes of 1 has what lowest partial failures? | CREATE TABLE table_name_64 (partial_failures INTEGER, failures VARCHAR, successes VARCHAR) |
SELECT venue FROM table_name_19 WHERE notes = "2:04.22" | Which venue has 2:04.22 notes? | CREATE TABLE table_name_19 (venue VARCHAR, notes VARCHAR) |
SELECT population_area FROM table_11336756_6 WHERE remarks = "Replaced by US 83" | Which population areas have "replaced by us 83" listed in their remarks section? | CREATE TABLE table_11336756_6 (population_area VARCHAR, remarks VARCHAR) |
SELECT record FROM table_name_72 WHERE time = "2:06" AND event = "njkf magnam 16" | What was the record after the NJKF Magnam 16 event that lasted 2:06? | CREATE TABLE table_name_72 (record VARCHAR, time VARCHAR, event VARCHAR) |
SELECT opponent FROM table_name_98 WHERE result = "0-3" | Which Opponent has a Result of 0-3? | CREATE TABLE table_name_98 (opponent VARCHAR, result VARCHAR) |
SELECT AVG(nets_points) FROM table_name_62 WHERE game < 9 AND opponents < 95 | What was the average point total for the nets in games before game 9 where the opponents scored less than 95? | CREATE TABLE table_name_62 (nets_points INTEGER, game VARCHAR, opponents VARCHAR) |
SELECT notes FROM table_name_31 WHERE rank > 4 AND country = "south korea" | What shows for notes when rank is more than 4, and country is South Korea? | CREATE TABLE table_name_31 (notes VARCHAR, rank VARCHAR, country VARCHAR) |
SELECT us_viewers__in_millions_ FROM table_19188562_2 WHERE season = 1 | How many million u.s. Viewers watched season 1? | CREATE TABLE table_19188562_2 (us_viewers__in_millions_ VARCHAR, season VARCHAR) |
SELECT MAX(league_goals) FROM table_name_46 WHERE name = "barry endean" AND fa_cup_apps > 0 | What is the highest league goals that have barry endean as the name, wirh FA cup apps greater than 0? | CREATE TABLE table_name_46 (league_goals INTEGER, name VARCHAR, fa_cup_apps VARCHAR) |
SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName JOIN player AS T3 ON T2.pID = T3.pID WHERE T3.pName = 'Charles' | Find the state of the college which player Charles is attending. | CREATE TABLE tryout (cName VARCHAR, pID VARCHAR); CREATE TABLE player (pID VARCHAR, pName VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) |
SELECT game FROM table_13480122_5 WHERE record = "29–3" | what's the game with record being 29–3 | CREATE TABLE table_13480122_5 (game VARCHAR, record VARCHAR) |
SELECT date FROM table_name_72 WHERE leading_scorer = "leo mainoldi (24)" | What date was Leo Mainoldi (24) the leading scorer? | CREATE TABLE table_name_72 (date VARCHAR, leading_scorer VARCHAR) |
SELECT AVG(round) FROM table_name_93 WHERE college = "florida" AND overall < 166 | In what Round was the draft pick from Florida with an Overall less than 166? | CREATE TABLE table_name_93 (round INTEGER, college VARCHAR, overall VARCHAR) |
SELECT productions FROM table_name_53 WHERE rose = "angela lansbury" AND herbie = "barrie ingham" | What production had Angela Lansbury as Rose and Barrie Ingham as Herbie? | CREATE TABLE table_name_53 (productions VARCHAR, rose VARCHAR, herbie VARCHAR) |
SELECT MIN(no_in_season) FROM table_11058032_1 WHERE directed_by = "Jeff Melman" | What episode in the season was directed by Jeff Melman? | CREATE TABLE table_11058032_1 (no_in_season INTEGER, directed_by VARCHAR) |
SELECT writtenby FROM table_20726262_4 WHERE production_code = "3WAB03" | what is the written by and production code is 3wab03? | CREATE TABLE table_20726262_4 (writtenby VARCHAR, production_code VARCHAR) |
SELECT games FROM table_name_19 WHERE sport = "field hockey" AND medal = "gold" | When did Pakistan win a Gold Medal in Field Hockey? | CREATE TABLE table_name_19 (games VARCHAR, sport VARCHAR, medal VARCHAR) |
SELECT player FROM table_name_68 WHERE pick > 44 AND position = "offensive guard" AND college = "mississippi state" | What is the Offensive Guard Player from Mississippi State College with a Pick number larter than 44? | CREATE TABLE table_name_68 (player VARCHAR, college VARCHAR, pick VARCHAR, position VARCHAR) |
SELECT cfl_team FROM table_name_32 WHERE player = "will grant" | What is the CFL Team with Will Grant? | CREATE TABLE table_name_32 (cfl_team VARCHAR, player VARCHAR) |
SELECT wins FROM table_name_34 WHERE losses = "ipl" | Which win has a loss of IPL? | CREATE TABLE table_name_34 (wins VARCHAR, losses VARCHAR) |
SELECT total_fat FROM table_name_60 WHERE polyunsaturated_fat = "11g" AND monounsaturated_fat = "45g" | Name the total fat which has a polyunsaturated fat of 11g and monounsaturated fat of 45g | CREATE TABLE table_name_60 (total_fat VARCHAR, polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.