question
stringlengths
19
162
table_info
stringlengths
39
951
sql_query
stringlengths
24
181
How many u.s. viewers (millions) have 5 as the season #?
CREATE TABLE table_22570439_1 ( us_viewers__millions_ VARCHAR, season__number VARCHAR )
SELECT us_viewers__millions_ FROM table_22570439_1 WHERE season__number LIKE '%5%'
What was the date for the Champs Sports Bowl?
CREATE TABLE table_20996923_20 ( date VARCHAR, bowl_game VARCHAR )
SELECT date FROM table_20996923_20 WHERE bowl_game LIKE "%champs sports bowl%"
What is the record for the date november 19?
CREATE TABLE table_27712180_6 ( record VARCHAR, date VARCHAR )
SELECT record FROM table_27712180_6 WHERE date LIKE "%november 19%"
What is the sum of the final for finland, who placed greater than 2 and had an all around larger than 18.9?
CREATE TABLE table_name_26 ( final INTEGER, all_around VARCHAR, place VARCHAR, nation VARCHAR )
SELECT SUM(final) FROM table_name_26 WHERE place > 2 AND nation LIKE "%finland%" AND all_around > 18.9
What is the nationality of player corey fienhage, who has a pick less than 104?
CREATE TABLE table_name_2 ( nationality VARCHAR, pick VARCHAR, player VARCHAR )
SELECT nationality FROM table_name_2 WHERE pick < 104 AND player LIKE "%corey fienhage%"
How many feet per second does a shell move where the height range is 23500?
CREATE TABLE table_16439764_1 ( m_v_ft_s INTEGER, max_height__ft_ VARCHAR )
SELECT MIN(m_v_ft_s) FROM table_16439764_1 WHERE max_height__ft_ LIKE '%23500%'
Name the Venue which has a Score of 8 1?
CREATE TABLE table_43864 ( "Match No." real, "Date" text, "Time" text, "Score" text, "Venue" text, "Match Report" text )
SELECT "Venue" FROM table_43864 WHERE "Score" LIKE '%8 – 1%'
What is Score, when Set 3 is 17-25?
CREATE TABLE table_name_67 ( score VARCHAR, set_3 VARCHAR )
SELECT score FROM table_name_67 WHERE set_3 LIKE "%17-25%"
What is the Track in Louisville, Kentucky?
CREATE TABLE table_59683 ( "Date" text, "Race" text, "Track" text, "Location" text, "Distance" text, "Surface" text, "Purse" text, "Finish" text )
SELECT "Track" FROM table_59683 WHERE "Location" LIKE '%louisville, kentucky%'
When it is season 10 who are the writers?
CREATE TABLE table_24035 ( "Ep." real, "Season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Prod. Code" text )
SELECT "Written by" FROM table_24035 WHERE "Season" = 10
Name the french actor with javier romano
CREATE TABLE table_19722 ( "Character" text, "French voice actor" text, "Italian voice actor" text, "German voice actor" text, "Spanish voice actor" text )
SELECT COUNT("French voice actor") FROM table_19722 WHERE "Spanish voice actor" LIKE '%javier romano%'
Tell me the origin for mi-2
CREATE TABLE table_74501 ( "Aircraft" text, "Origin" text, "Type" text, "Versions" text, "In service" text )
SELECT "Origin" FROM table_74501 WHERE "Versions" LIKE '%mi-2%'
What is the venue of the competition with a result of 1st before 2009?
CREATE TABLE table_14063 ( "Year" real, "Tournament" text, "Venue" text, "Result" text, "Event" text )
SELECT "Venue" FROM table_14063 WHERE "Year" < 2009 AND "Result" LIKE '%1st%'
what is the unemployment rate for wayne county?
CREATE TABLE table_22815568_13 ( unemployment_rate VARCHAR, county VARCHAR )
SELECT unemployment_rate FROM table_22815568_13 WHERE county LIKE "%wayne%"
What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65?
CREATE TABLE table_name_25 ( share INTEGER, rank__overall_ VARCHAR, timeslot VARCHAR, air_date VARCHAR )
SELECT SUM(share) FROM table_name_25 WHERE timeslot LIKE "%8:30 p.m.%" AND air_date LIKE "%march 27, 2008%" AND rank__overall_ > 65
What is the total interview score a contestant from Indiana with an average smaller than 8.3 has?
CREATE TABLE table_52657 ( "State" text, "Interview" real, "Swimsuit" real, "Evening gown" real, "Average" real )
SELECT COUNT("Interview") FROM table_52657 WHERE "State" LIKE '%indiana%' AND "Average" < 8.3
When did the match take place that had an away team score of 12.12 (84)?
CREATE TABLE table_33112 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Date" FROM table_33112 WHERE "Away team score" LIKE '%12.12 (84)%'
Which Effic is the highest one that has an Avg/G smaller than 305.6, and a GP-GS of 13-13?
CREATE TABLE table_name_56 ( effic INTEGER, avg_g VARCHAR, gp_gs VARCHAR )
SELECT MAX(effic) FROM table_name_56 WHERE avg_g < 305.6 AND gp_gs LIKE "%13-13%"
On what circuit was the City of Ipswich 400 race held?
CREATE TABLE table_14016079_1 ( circuit VARCHAR, race_title VARCHAR )
SELECT circuit FROM table_14016079_1 WHERE race_title LIKE "%city of ipswich 400%"
who was the next record holder after emma george won held it in 1999 ?
CREATE TABLE table_204_678 ( id number, "record" text, "athlete" text, "nation" text, "venue" text, "date" text, "#" number )
SELECT "athlete" FROM table_204_678 WHERE "date" > (SELECT "date" FROM table_204_678 WHERE "athlete" LIKE '%emma george%' AND "date" = '1999') ORDER BY "date" LIMIT 1
How many episodes have the production code ip04004?
CREATE TABLE table_29273243_1 ( title VARCHAR, production_code VARCHAR )
SELECT COUNT(title) FROM table_29273243_1 WHERE production_code LIKE '%ip04004%'
What was the distance on 24 May?
CREATE TABLE table_6231 ( "Date" text, "Course" text, "Distance" text, "Type" text, "Winner" text )
SELECT "Distance" FROM table_6231 WHERE "Date" LIKE '%24 may%'
what other film is in malayalam besides koothara ?
CREATE TABLE table_204_57 ( id number, "year" number, "film" text, "role" text, "language" text, "notes" text )
SELECT "film" FROM table_204_57 WHERE "language" LIKE '%malayalam%' AND "film" NOT LIKE '%koothara%'
When Rocco Mediate of the United States has a To par of +2, what was his score?
CREATE TABLE table_name_43 ( score VARCHAR, player VARCHAR, to_par VARCHAR, country VARCHAR )
SELECT score FROM table_name_43 WHERE to_par LIKE '%+2%' AND country LIKE '%united states%' AND player LIKE '%rocco mediate%'
How many different original air dates does the episode with series number 13 have?
CREATE TABLE table_19236587_4 ( original_air_date VARCHAR, series_no VARCHAR )
SELECT COUNT(original_air_date) FROM table_19236587_4 WHERE series_no LIKE '%13%'
In what category was Herself nominated?
CREATE TABLE table_name_21 ( category VARCHAR, nominated VARCHAR )
SELECT category FROM table_name_21 WHERE nominated LIKE "%herself%"
Who was the home team on 27 march 2008?
CREATE TABLE table_name_83 ( home VARCHAR, date VARCHAR )
SELECT home FROM table_name_83 WHERE date LIKE "%27 march 2008%"
What is the lowest grid number for Yamaha?
CREATE TABLE table_name_3 ( grid INTEGER, manufacturer VARCHAR )
SELECT MIN(grid) FROM table_name_3 WHERE manufacturer LIKE '%yamaha%'
What is the average start for the season with $7,220 in winnings?
CREATE TABLE table_1637041_6 ( avg_start VARCHAR, winnings VARCHAR )
SELECT avg_start FROM table_1637041_6 WHERE winnings LIKE '%$7,220%'
Where the away team is Bradford City, who is the home team?
CREATE TABLE table_name_83 ( home_team VARCHAR, away_team VARCHAR )
SELECT home_team FROM table_name_83 WHERE away_team LIKE "%bradford city%"
Which Opponent has a Date of november 17, 1963?
CREATE TABLE table_name_30 ( opponent VARCHAR, date VARCHAR )
SELECT opponent FROM table_name_30 WHERE date LIKE "%november 17, 1963%"
What is the weight of the player from club panionios g.c. and was born on 1975-05-21?
CREATE TABLE table_name_70 ( weight VARCHAR, club VARCHAR, date_of_birth VARCHAR )
SELECT weight FROM table_name_70 WHERE club LIKE "%panionios g.c.%" AND date_of_birth LIKE "%1975-05-21%"
Who directed the episode that had 5.92 million viewers?
CREATE TABLE table_25341765_1 ( directed_by VARCHAR, us_viewers__million_ VARCHAR )
SELECT directed_by FROM table_25341765_1 WHERE us_viewers__million_ LIKE "%5.92%"
List all the cities in a decreasing order of each city's stations' highest latitude.
CREATE TABLE station ( city VARCHAR, lat INTEGER )
SELECT city FROM station GROUP BY city ORDER BY MAX(lat) DESC
If the total is 17, what was the maximum rank amount?
CREATE TABLE table_19744915_17 ( rank INTEGER, total VARCHAR )
SELECT MAX(rank) FROM table_19744915_17 WHERE total LIKE '%17%'
WHAT IS THE TOTAL NUMBER WITH A ROUND BIGGER THAN 7 AND PICK OF 21?
CREATE TABLE table_name_73 ( overall VARCHAR, round VARCHAR, pick VARCHAR )
SELECT COUNT(overall) FROM table_name_73 WHERE round > '7' AND pick LIKE '%21%'
What team does Bill Walker play for?
CREATE TABLE table_7157 ( "Pos." text, "Player" text, "Team" text, "Height" text, "Weight" real )
SELECT "Team" FROM table_7157 WHERE "Player" LIKE '%bill walker%'
What is total number of wins for England?
CREATE TABLE table_name_59 ( total INTEGER, nation VARCHAR )
SELECT SUM(total) FROM table_name_59 WHERE nation LIKE "%england%"
What is the location of South Adelaide?
CREATE TABLE table_name_46 ( location VARCHAR, team VARCHAR )
SELECT location FROM table_name_46 WHERE team LIKE "%south adelaide%"
Who was the Away team at Arden Street Oval?
CREATE TABLE table_name_98 ( away_team VARCHAR, venue VARCHAR )
SELECT away_team FROM table_name_98 WHERE venue LIKE "%arden street oval%"
Tell me the total number of grid for rider of james toseland
CREATE TABLE table_31981 ( "Rider" text, "Bike" text, "Laps" real, "Time" text, "Grid" real )
SELECT COUNT("Grid") FROM table_31981 WHERE "Rider" LIKE '%james toseland%'
Which away team had a home team that scored 12.19 (91)?
CREATE TABLE table_57248 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Away team" FROM table_57248 WHERE "Home team score" LIKE '%12.19 (91)%'
What is the Round of 16 value for the nation with a value of 5 for Ranking Round Rank?
CREATE TABLE table_40736 ( "Final Rank" real, "Ranking Round Rank" real, "Nation" text, "Ranking Score" real, "Round of 16" text )
SELECT "Round of 16" FROM table_40736 WHERE "Ranking Round Rank" = 5
What is the torque of the xdrive20d model, which has a power of ps (kw; hp)@4000?
CREATE TABLE table_79390 ( "Model" text, "Years" text, "Engine code" text, "Power" text, "Torque" text )
SELECT "Torque" FROM table_79390 WHERE "Power" LIKE '%ps (kw; hp)@4000%' AND "Model" LIKE '%xdrive20d%'
Tell me the tournament of 2009 of atp masters series
CREATE TABLE table_name_26 ( tournament VARCHAR )
SELECT tournament FROM table_name_26 WHERE tournament LIKE '%atp masters series%'
How many years have a Result of nominated?
CREATE TABLE table_61025 ( "Year" real, "Award" text, "Category" text, "Role" text, "Result" text )
SELECT COUNT("Year") FROM table_61025 WHERE "Result" LIKE '%nominated%'
What is the smallest top 10 figure?
CREATE TABLE table_26609690_1 ( top_10 INTEGER )
SELECT MIN(top_10) FROM table_26609690_1
What is the greatest lost where played is less than 9?
CREATE TABLE table_name_51 ( lost INTEGER, played INTEGER )
SELECT MAX(lost) FROM table_name_51 WHERE played < 9
When portsmouth is the city of license who is the licensee?
CREATE TABLE table_23016 ( "Call sign" text, "Frequency" text, "City of License" text, "Licensee" text, "Format" text )
SELECT "Licensee" FROM table_23016 WHERE "City of License" LIKE '%portsmouth%'
What is the total number for Capacity at city stadium, borisov?
CREATE TABLE table_name_28 ( capacity VARCHAR, venue VARCHAR )
SELECT COUNT(capacity) FROM table_name_28 WHERE venue LIKE "%city stadium, borisov%"
What is the highest rank that has fao as a source and an out greater than 50, with dietary calorie intake as the name?
CREATE TABLE table_name_98 ( rank INTEGER, name VARCHAR, source VARCHAR, out_of VARCHAR )
SELECT MAX(rank) FROM table_name_98 WHERE source LIKE "%fao%" AND out_of > 50 AND name LIKE "%dietary calorie intake%"
Which Event has the Opponent, Bernard Ackah?
CREATE TABLE table_name_15 ( event VARCHAR, opponent VARCHAR )
SELECT event FROM table_name_15 WHERE opponent LIKE "%bernard ackah%"
who is the actor of the character ariadne oliver?
CREATE TABLE table_55532 ( "Actor" text, "Character" text, "Title/Rank" text, "Series" text, "Years" text )
SELECT "Actor" FROM table_55532 WHERE "Character" LIKE '%ariadne oliver%'
Which Draws have a Club of burgos cf, and a Position larger than 8?
CREATE TABLE table_name_98 ( draws INTEGER, club VARCHAR, position VARCHAR )
SELECT MIN(draws) FROM table_name_98 WHERE club LIKE "%burgos cf%" AND position > 8
Can you tell me the lowest Rank that has the Nationality of australia, and the Name of leisel jones, and the Lane larger than 4?
CREATE TABLE table_name_49 ( rank INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR )
SELECT MIN(rank) FROM table_name_49 WHERE nationality LIKE '%australia%' AND name LIKE '%leisel jones%' AND lane > 4
What is the show on Tuesday when the time is 01:00 AM?
CREATE TABLE table_6829 ( "Time" text, "00:00 AM" text, "01:00 AM" text, "02:00 AM" text, "05:00 AM" text )
SELECT "01:00 AM" FROM table_6829 WHERE "Time" LIKE '%tuesday%'
Which college had a pick of under 5?
CREATE TABLE table_name_92 ( college VARCHAR, pick INTEGER )
SELECT college FROM table_name_92 WHERE pick < 5
What is the African Spoonbill when the Hadeda Ibis is Flernecked Nightjar?
CREATE TABLE table_23494 ( "Ostrich" text, "Hamerkop" text, "Hadeda Ibis" text, "African Spoonbill" text, "Whitefaced Duck" text, "Knobbilled Duck" text )
SELECT "African Spoonbill" FROM table_23494 WHERE "Hadeda Ibis" LIKE '%flernecked nightjar%'
What is the number of region 4 for the series of the complete seventh series?
CREATE TABLE table_18079 ( "Complete Series" text, "Region 1" text, "Region 2" text, "Region 4" text, "DVD Extras and Bonus Features" text, "Number Of Discs" real )
SELECT COUNT("Region 4") FROM table_18079 WHERE "Complete Series" LIKE '%the complete seventh series%'
Round 3 with less than 54 for Round 4?
CREATE TABLE table_9258 ( "City" text, "Round 1" real, "Round 2" text, "Round 3" text, "Round 4" text )
SELECT "Round 3" FROM table_9258 WHERE "Round 4" LIKE '%54%'
Which player was transferred to Reggina?
CREATE TABLE table_49989 ( "Exit Date" text, "Pos." text, "Player" text, "To club" text, "Transfer fee" text )
SELECT "Player" FROM table_49989 WHERE "To club" LIKE '%reggina%'
what is the date of the tournament in michalovce
CREATE TABLE table_name_74 ( date VARCHAR, tournament VARCHAR )
SELECT date FROM table_name_74 WHERE tournament LIKE '%michalovce%'
What are the carries of the player Jeremiah Pope?
CREATE TABLE table_name_83 ( car INTEGER, player VARCHAR )
SELECT SUM(car) FROM table_name_83 WHERE player LIKE "%jeremiah pope%"
Who was the opponent before week 6 at cleveland municipal stadium?
CREATE TABLE table_name_19 ( opponent VARCHAR, week VARCHAR, game_site VARCHAR )
SELECT opponent FROM table_name_19 WHERE week < '6' AND game_site LIKE '%cleveland municipal stadium%'
How many silvers are there with a total of 11?
CREATE TABLE table_65055 ( "Rank" text, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT SUM("Silver") FROM table_65055 WHERE "Total" = 11
I want the score for 28 march 1979
CREATE TABLE table_31872 ( "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text )
SELECT "Score" FROM table_31872 WHERE "Date" LIKE '%28 march 1979%'
What was the result of the game before week 3 with an attendance of 53,658?
CREATE TABLE table_name_32 ( result VARCHAR, week VARCHAR, attendance VARCHAR )
SELECT result FROM table_name_32 WHERE CAST(week AS INTEGER) < 3 AND attendance LIKE '%53,658%'
When a race had less than 18 laps and time/retired of accident, what was the smallest grid?
CREATE TABLE table_name_16 ( grid INTEGER, time_retired VARCHAR, laps VARCHAR )
SELECT MIN(grid) FROM table_name_16 WHERE time_retired LIKE '%accident%' AND laps < '18'
with 6 rounds, and a 52 51/52 chassis, who is the driver?
CREATE TABLE table_name_79 ( driver VARCHAR, rounds VARCHAR, chassis VARCHAR )
SELECT driver FROM table_name_79 WHERE rounds LIKE "%6%" AND chassis LIKE "%52 51/52%"
What Year had a Runner(s)-up of flory van donck?
CREATE TABLE table_name_64 ( year VARCHAR, runner_s__up VARCHAR )
SELECT year FROM table_name_64 WHERE runner_s__up LIKE "%flory van donck%"
For the player that scored 27 goals, what years did he score them?
CREATE TABLE table_name_62 ( years VARCHAR, goals VARCHAR )
SELECT years FROM table_name_62 WHERE goals LIKE '%27%'
Which Games had a Name of manuel felix diaz?
CREATE TABLE table_name_64 ( games VARCHAR, name VARCHAR )
SELECT games FROM table_name_64 WHERE name LIKE "%manuel felix diaz%"
Which Country has a Year(s) won of 1963?
CREATE TABLE table_name_62 ( country VARCHAR, year_s__won VARCHAR )
SELECT country FROM table_name_62 WHERE year_s__won LIKE "%1963%"
What is the tyres for the JBW type 2 chassis?
CREATE TABLE table_name_70 ( tyres VARCHAR, chassis VARCHAR )
SELECT tyres FROM table_name_70 WHERE chassis LIKE "%jbw type 2%"
What was the results of the game at Doha?
CREATE TABLE table_name_51 ( result VARCHAR, venue VARCHAR )
SELECT result FROM table_name_51 WHERE venue LIKE "%doha%"
Name the loss for may 1
CREATE TABLE table_name_4 ( loss VARCHAR, date VARCHAR )
SELECT loss FROM table_name_4 WHERE date LIKE '%may 1%'
On what date did a streak start on November 14?
CREATE TABLE table_43985 ( "Game" real, "Date" text, "Team" text, "Score" text, "Record" text, "Streak" text )
SELECT "Streak" FROM table_43985 WHERE "Date" LIKE '%november 14%'
under belles, which is the most possible created?
CREATE TABLE table_261895_1 ( founded INTEGER, nickname VARCHAR )
SELECT MAX(founded) FROM table_261895_1 WHERE nickname LIKE "%belles%"
when was g42 , 1898 or 1894 ?
CREATE TABLE table_204_737 ( id number, "year" number, "order" text, "quantity" number, "ger nos." text )
SELECT "year" FROM table_204_737 WHERE "order" LIKE '%g42%'
What years did Troy Hudson play for the Jazz?
CREATE TABLE table_52823 ( "Player" text, "Nationality" text, "Position" text, "Years for Jazz" text, "School/Club Team" text )
SELECT "Years for Jazz" FROM table_52823 WHERE "Player" LIKE '%troy hudson%'
In 1970, what entrant had a cosworth v8 engine?
CREATE TABLE table_name_82 ( entrant VARCHAR, engine VARCHAR, year VARCHAR )
SELECT entrant FROM table_name_82 WHERE engine LIKE "%cosworth v8%" AND year LIKE "%1970%"
Whice race ended with a DNF?
CREATE TABLE table_14537 ( "Race" text, "Position" text, "Time" text, "Speed" text, "Replica" text )
SELECT "Race" FROM table_14537 WHERE "Position" LIKE '%dnf%'
Who won the mens singles when lau sui fei won the womens singles?
CREATE TABLE table_28138035_26 ( mens_singles VARCHAR, womens_singles VARCHAR )
SELECT mens_singles FROM table_28138035_26 WHERE womens_singles LIKE "%lau sui fei%"
How many wins for the Caramut team with fewer than 11 losses and fewer than 2 byes?
CREATE TABLE table_name_48 ( wins INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR )
SELECT MAX(wins) FROM table_name_48 WHERE losses < 11 AND mininera_dfl LIKE '%caramut%' AND byes < '2'
Which Goal Difference has Drawn larger than 10, and a Team of lancaster city?
CREATE TABLE table_name_21 ( goal_difference VARCHAR, drawn VARCHAR, team VARCHAR )
SELECT goal_difference FROM table_name_21 WHERE drawn > 10 AND team LIKE '%lancaster city%'
Who is the Winner on June 2, 2007?
CREATE TABLE table_name_44 ( winner VARCHAR, date VARCHAR )
SELECT winner FROM table_name_44 WHERE date LIKE "%june 2, 2007%"
What language was Taken in?
CREATE TABLE table_39679 ( "Year" text, "Title" text, "Role" text, "Language" text, "Notes" text )
SELECT "Language" FROM table_39679 WHERE "Title" LIKE '%taken%'
What date has elke clijsters as the partner?
CREATE TABLE table_name_43 ( date VARCHAR, partner VARCHAR )
SELECT date FROM table_name_43 WHERE partner LIKE "%elke clijsters%"
What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points?
CREATE TABLE table_name_99 ( draw INTEGER, language VARCHAR, points VARCHAR )
SELECT AVG(draw) FROM table_name_99 WHERE language LIKE "%swedish%" AND points < 10
What is the high grid with 27 laps?
CREATE TABLE table_52192 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT MAX("Grid") FROM table_52192 WHERE "Laps" = 27
What is the away team at glenferrie oval?
CREATE TABLE table_name_33 ( away_team VARCHAR, venue VARCHAR )
SELECT away_team FROM table_name_33 WHERE venue LIKE "%glenferrie oval%"
What is the location when the status is in service as coaching stock?
CREATE TABLE table_1090916_2 ( location VARCHAR, status VARCHAR )
SELECT location FROM table_1090916_2 WHERE status LIKE '%in service as coaching stock%'
What is the to par for Bart Bryant?
CREATE TABLE table_name_9 ( to_par VARCHAR, player VARCHAR )
SELECT to_par FROM table_name_9 WHERE player LIKE "%bart bryant%"
What is the status when livery is blue?
CREATE TABLE table_119 ( "Vehicle Numbers" text, "Vehicle Types" text, "Livery" text, "Location" text, "Status" text )
SELECT "Status" FROM table_119 WHERE "Livery" LIKE '%blue%'
WHen joaqui mendoza is the name how long is the duration?
CREATE TABLE table_19061741_3 ( duration VARCHAR, name VARCHAR )
SELECT duration FROM table_19061741_3 WHERE name LIKE "%joaqui mendoza%"
who was the opponent where the game is 14?
CREATE TABLE table_27539272_5 ( opponent VARCHAR, game VARCHAR )
SELECT opponent FROM table_27539272_5 WHERE CAST(game AS TEXT) LIKE '%14%'
When did the Visiting San Antonio Spurs score 97-113?
CREATE TABLE table_name_22 ( date VARCHAR, visitor VARCHAR, score VARCHAR )
SELECT date FROM table_name_22 WHERE visitor LIKE "%san antonio spurs%" AND score LIKE "%97-113%"
How much was the prize money for rwe-sporthalle, m lheim ?
CREATE TABLE table_18828487_1 ( prize_fund VARCHAR, venue VARCHAR )
SELECT prize_fund FROM table_18828487_1 WHERE venue LIKE "%rwe-sporthalle, mülheim%"
Name the least ends won for pf being 78
CREATE TABLE table_25107064_2 ( Ends INTEGER, pf VARCHAR )
SELECT MIN(Ends) AS won FROM table_25107064_2 WHERE pf LIKE '%78%'
Who was the winner in 1973 with an amateur rider status?
CREATE TABLE table_name_74 ( winner VARCHAR, rider_status VARCHAR, year VARCHAR )
SELECT winner FROM table_name_74 WHERE rider_status LIKE "%amateur%" AND year = '1973'