question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What was the winning score in the mazda senior tournament players championship?
CREATE TABLE table_name_5 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_5 WHERE tournament = "mazda senior tournament players championship"
I want the score for 23 july 1992
CREATE TABLE table_name_86 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_86 WHERE date = "23 july 1992"
What player(s) drafted by the hamilton tiger-cats?
CREATE TABLE table_20170644_5 (player VARCHAR, cfl_team VARCHAR)
SELECT player FROM table_20170644_5 WHERE cfl_team = "Hamilton Tiger-Cats"
When is an Opponent of evie dominikovic?
CREATE TABLE table_name_72 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_72 WHERE opponent = "evie dominikovic"
What episode title had a production code of 3x6306?
CREATE TABLE table_28116528_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_28116528_1 WHERE production_code = "3X6306"
What is the time of Max Biaggi with more than 2 grids, 20 laps?
CREATE TABLE table_name_40 (time VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT time FROM table_name_40 WHERE grid > 2 AND laps = 20 AND rider = "max biaggi"
Who were the umpires when Paul Vines (S) won the Simpson Medal?
CREATE TABLE table_13514348_7 (umpires VARCHAR, simpson_medal VARCHAR)
SELECT umpires FROM table_13514348_7 WHERE simpson_medal = "Paul Vines (S)"
Who is everyone on the men's doubles when men's singles is Ma Wenge?
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Ma Wenge"
Name the least game for record of 5-1-3
CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_name_93 WHERE record = "5-1-3"
Which hard has a Clay of 0–0, Grass of 0–0, Carpet of 0–0, and a Record of 1–0?
CREATE TABLE table_name_10 (hard VARCHAR, record VARCHAR, carpet VARCHAR, clay VARCHAR, grass VARCHAR)
SELECT hard FROM table_name_10 WHERE clay = "0–0" AND grass = "0–0" AND carpet = "0–0" AND record = "1–0"
What is the lowest Gold, when Silver is 0, and when Bronze is 2?
CREATE TABLE table_name_52 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
SELECT MIN(gold) FROM table_name_52 WHERE silver = 0 AND bronze = 2
How many points have 75 laps?
CREATE TABLE table_name_6 (points VARCHAR, laps VARCHAR)
SELECT points FROM table_name_6 WHERE laps = "75"
What was Barry Jamieson's pick number?
CREATE TABLE table_26996293_1 (pick__number INTEGER, player VARCHAR)
SELECT MAX(pick__number) FROM table_26996293_1 WHERE player = "Barry Jamieson"
What Label was Released on December 7, 2012?
CREATE TABLE table_name_27 (label VARCHAR, release_date VARCHAR)
SELECT label FROM table_name_27 WHERE release_date = "december 7, 2012"
Find the product names that are colored 'white' but do not have unit of measurement "Handful".
CREATE TABLE products (product_name VARCHAR, product_category_code VARCHAR, color_code VARCHAR); CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE ref_product_categories (product_category_code VARCHAR, unit_of_measure VARCHAR)
SELECT t1.product_name FROM products AS t1 JOIN ref_product_categories AS t2 ON t1.product_category_code = t2.product_category_code JOIN ref_colors AS t3 ON t1.color_code = t3.color_code WHERE t3.color_description = "white" AND t2.unit_of_measure <> "Handful"
For a total of 1 and the sport of softball what were the years?
CREATE TABLE table_name_93 (years VARCHAR, total VARCHAR, sport VARCHAR)
SELECT years FROM table_name_93 WHERE total = "1" AND sport = "softball"
What was Datsun Twin 200's fastest lap?
CREATE TABLE table_10527215_3 (fastest_lap VARCHAR, name VARCHAR)
SELECT fastest_lap FROM table_10527215_3 WHERE name = "Datsun Twin 200"
Which Player has Goals larger than 10, and a Debut year smaller than 1993, and Years at club of 1990–1993?
CREATE TABLE table_name_71 (player VARCHAR, years_at_club VARCHAR, goals VARCHAR, debut_year VARCHAR)
SELECT player FROM table_name_71 WHERE goals > 10 AND debut_year < 1993 AND years_at_club = "1990–1993"
How many people attended the Away team of middlesbrough?
CREATE TABLE table_name_67 (attendance VARCHAR, away_team VARCHAR)
SELECT COUNT(attendance) FROM table_name_67 WHERE away_team = "middlesbrough"
Which Race that Jockey of d. nikolic is in?
CREATE TABLE table_name_78 (race VARCHAR, jockey VARCHAR)
SELECT race FROM table_name_78 WHERE jockey = "d. nikolic"
What is Matches, when Draws is "Did Not Qualify", and when Year is "1995"?
CREATE TABLE table_name_75 (matches VARCHAR, draws VARCHAR, year VARCHAR)
SELECT matches FROM table_name_75 WHERE draws = "did not qualify" AND year = "1995"
What is the Team when the match was in buenos aires , argentina?
CREATE TABLE table_name_60 (team VARCHAR, location VARCHAR)
SELECT team FROM table_name_60 WHERE location = "buenos aires , argentina"
List the names of aircrafts and that did not win any match.
CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR, Winning_Aircraft VARCHAR); CREATE TABLE MATCH (Aircraft VARCHAR, Aircraft_ID VARCHAR, Winning_Aircraft VARCHAR)
SELECT Aircraft FROM aircraft WHERE NOT Aircraft_ID IN (SELECT Winning_Aircraft FROM MATCH)
Name the award name for black ocean current
CREATE TABLE table_15584199_3 (award_name VARCHAR, team_name VARCHAR)
SELECT award_name FROM table_15584199_3 WHERE team_name = "BLACK OCEAN CURRENT"
What is the L2 cache with ec number of slbmm(c2)slbsr(k0)?
CREATE TABLE table_name_92 (l2_cache VARCHAR, sspec_number VARCHAR)
SELECT l2_cache FROM table_name_92 WHERE sspec_number = "slbmm(c2)slbsr(k0)"
Which college had an overall number more than 180?
CREATE TABLE table_name_39 (college VARCHAR, overall INTEGER)
SELECT college FROM table_name_39 WHERE overall > 180
In heat rank 7, what is the sum of lanes?
CREATE TABLE table_name_48 (lane INTEGER, heat_rank VARCHAR)
SELECT SUM(lane) FROM table_name_48 WHERE heat_rank = 7
What is the total amount of money that has a t2 place, is from the United States for player Leo Diegel?
CREATE TABLE table_name_49 (money___ VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
SELECT COUNT(money___) AS $__ FROM table_name_49 WHERE place = "t2" AND country = "united states" AND player = "leo diegel"
What is the last name of the musician that have produced the most number of songs?
CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR)
SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1
What was the score of cook 3/6?
CREATE TABLE table_name_40 (result VARCHAR, goals VARCHAR)
SELECT result FROM table_name_40 WHERE goals = "cook 3/6"
Which skip's lead is Gordon McDougall?
CREATE TABLE table_name_17 (skip VARCHAR, lead VARCHAR)
SELECT skip FROM table_name_17 WHERE lead = "gordon mcdougall"
Who directed the film 'The Chapel'?
CREATE TABLE table_name_22 (director_s_ VARCHAR, film VARCHAR)
SELECT director_s_ FROM table_name_22 WHERE film = "the chapel"
What are the name and phone of the customer with the most ordered product quantity?
CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR)
SELECT T1.customer_name, T1.customer_phone FROM customers AS T1 JOIN customer_orders AS T2 ON T1.customer_id = T2.customer_id JOIN order_items AS T3 ON T3.order_id = T2.order_id GROUP BY T1.customer_id ORDER BY SUM(T3.order_quantity) DESC LIMIT 1
What serial format was issued in 1972?
CREATE TABLE table_name_71 (serial_format VARCHAR, issued VARCHAR)
SELECT serial_format FROM table_name_71 WHERE issued = 1972
Name the area served for on-air ID of abc canberra
CREATE TABLE table_name_46 (area_served VARCHAR, on_air_id VARCHAR)
SELECT area_served FROM table_name_46 WHERE on_air_id = "abc canberra"
What is the total number of picks from the PBA team of purefoods tender juicy hotdogs?
CREATE TABLE table_name_62 (pick VARCHAR, pba_team VARCHAR)
SELECT COUNT(pick) FROM table_name_62 WHERE pba_team = "purefoods tender juicy hotdogs"
How many tries for were scored by the team that had exactly 396 points for?
CREATE TABLE table_27293285_6 (tries_for VARCHAR, points_for VARCHAR)
SELECT tries_for FROM table_27293285_6 WHERE points_for = "396"
What is the result of the match on 3 March 2004?
CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_60 WHERE date = "3 march 2004"
What is the average crowd size at Princes Park?
CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_84 WHERE venue = "princes park"
Which name has an overall number of more than 164, when the pick number is more than 2, the position is running back, and the round is 16?
CREATE TABLE table_name_9 (name VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR, pick__number VARCHAR)
SELECT name FROM table_name_9 WHERE overall > 164 AND pick__number > 2 AND position = "running back" AND round = 16
What is the Venue, when the Score is 56-4?
CREATE TABLE table_name_68 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_name_68 WHERE score = "56-4"
What is the Score of 2007 afc asian cup qualification with a Result of 8–0?
CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR, result VARCHAR)
SELECT score FROM table_name_81 WHERE competition = "2007 afc asian cup qualification" AND result = "8–0"
What was the result of the game when the record was 5-1?
CREATE TABLE table_name_21 (result VARCHAR, record VARCHAR)
SELECT result FROM table_name_21 WHERE record = "5-1"
What was the venue for runs 325/6?
CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR)
SELECT venue FROM table_name_12 WHERE runs = "325/6"
How many seasons was clay regazzoni the driver?
CREATE TABLE table_10753917_1 (season VARCHAR, driver VARCHAR)
SELECT COUNT(season) FROM table_10753917_1 WHERE driver = "Clay Regazzoni"
What is the highest Laps Led with a grid of less than 4 and a finishing position of 15?
CREATE TABLE table_name_26 (laps INTEGER, grid VARCHAR, fin_pos VARCHAR)
SELECT MAX(laps) AS Led FROM table_name_26 WHERE grid < 4 AND fin_pos = 15
Name the population 1891 for area being 175836
CREATE TABLE table_14925084_1 (population_1891 VARCHAR, area_1891__statute_acres_ VARCHAR)
SELECT COUNT(population_1891) FROM table_14925084_1 WHERE area_1891__statute_acres_ = 175836
what is the name when the lane is less than 4 and mark is 52.64?
CREATE TABLE table_name_37 (name VARCHAR, lane VARCHAR, mark VARCHAR)
SELECT name FROM table_name_37 WHERE lane < 4 AND mark = "52.64"
What is the total score for a location of san francisco, california, and a year after 1987, and a to pa [a] of +1?
CREATE TABLE table_name_68 (total_score VARCHAR, location VARCHAR, year VARCHAR, to_par_ VARCHAR, a_ VARCHAR)
SELECT total_score FROM table_name_68 WHERE location = "san francisco, california" AND year > 1987 AND to_par_[a_] = "+1"
Name the first elected for alabama 3
CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR)
SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = "Alabama 3"
what are the title in japanese where the reference is kids-430?
CREATE TABLE table_10979230_5 (japanese_title VARCHAR, reference VARCHAR)
SELECT japanese_title FROM table_10979230_5 WHERE reference = "KIDS-430"
Which winner has a P stage?
CREATE TABLE table_name_48 (winner VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_48 WHERE stage = "p"
What day is st kilda the home side?
CREATE TABLE table_name_87 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_87 WHERE home_team = "st kilda"
Who made the decision when detroit was the home team and boston was the visitor?
CREATE TABLE table_name_81 (decision VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_81 WHERE home = "detroit" AND visitor = "boston"
What was the time when the method was TKO?
CREATE TABLE table_name_61 (time VARCHAR, method VARCHAR)
SELECT time FROM table_name_61 WHERE method = "tko"
Which model had a power of 66kw (90 ps) @ 6250 rpm?
CREATE TABLE table_name_94 (model VARCHAR, power VARCHAR)
SELECT model FROM table_name_94 WHERE power = "66kw (90 ps) @ 6250 rpm"
What role was nominated at the Sydney Film Festival?
CREATE TABLE table_name_56 (role VARCHAR, festival_organization VARCHAR)
SELECT role FROM table_name_56 WHERE festival_organization = "sydney film festival"
How many episodes aired in Sydney in Week 3?
CREATE TABLE table_24291077_4 (sydney VARCHAR, week VARCHAR)
SELECT COUNT(sydney) FROM table_24291077_4 WHERE week = 3
What is the smallest no result when the year was 2012 and there were more than 10 wins?
CREATE TABLE table_name_57 (no_result INTEGER, year VARCHAR, wins VARCHAR)
SELECT MIN(no_result) FROM table_name_57 WHERE year = "2012" AND wins > 10
What is the lowest average of the contestant with an interview of 8.275 and an evening gown bigger than 8.7?
CREATE TABLE table_name_31 (average INTEGER, interview VARCHAR, evening_gown VARCHAR)
SELECT MIN(average) FROM table_name_31 WHERE interview = 8.275 AND evening_gown > 8.7
What is the nationality of the player from Buffalo Sabres?
CREATE TABLE table_1213511_2 (nationality VARCHAR, nhl_team VARCHAR)
SELECT nationality FROM table_1213511_2 WHERE nhl_team = "Buffalo Sabres"
Tell me the circuit for alfa romeo swedish ice race
CREATE TABLE table_name_5 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR)
SELECT circuit FROM table_name_5 WHERE winning_constructor = "alfa romeo" AND name = "swedish ice race"
How many types of valves were used on this engine that was built on 1902-05?
CREATE TABLE table_25695027_1 (valves VARCHAR, years_built VARCHAR)
SELECT COUNT(valves) FROM table_25695027_1 WHERE years_built = "1902-05"
Which venue did collingsworth play essendon in when they had the 3rd position on the ladder?
CREATE TABLE table_29033869_3 (venue VARCHAR, opponent VARCHAR, position_on_ladder VARCHAR)
SELECT venue FROM table_29033869_3 WHERE opponent = "Essendon" AND position_on_ladder = "3rd"
What number episode was Week 4, Part 2?
CREATE TABLE table_25391981_20 (episode_number VARCHAR, episode VARCHAR)
SELECT episode_number FROM table_25391981_20 WHERE episode = "Week 4, Part 2"
Who did the Mariners play when they had a record of 33-45?
CREATE TABLE table_name_30 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_30 WHERE record = "33-45"
What school/club team did the center Rafael Araújo play for?
CREATE TABLE table_name_78 (school_club_team VARCHAR, position VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_78 WHERE position = "center" AND player = "rafael araújo"
Which Event has the Opponent, Bernard Ackah?
CREATE TABLE table_name_15 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_15 WHERE opponent = "bernard ackah"
When the Surface was Carpet (i), what was the Outcome?
CREATE TABLE table_name_11 (outcome VARCHAR, surface VARCHAR)
SELECT outcome FROM table_name_11 WHERE surface = "carpet (i)"
Which country has a score of 73-74-69=216?
CREATE TABLE table_name_95 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_95 WHERE score = 73 - 74 - 69 = 216
What was the surface when the opponent was judith wiesner, and the outcome was winner?
CREATE TABLE table_name_51 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_51 WHERE outcome = "winner" AND opponent = "judith wiesner"
What is the average episode that has September 11, 2007 as a region 1?
CREATE TABLE table_name_70 (episodes INTEGER, region_1_release VARCHAR)
SELECT AVG(episodes) FROM table_name_70 WHERE region_1_release = "september 11, 2007"
What is Rank, when Run 2 is 2:06.62?
CREATE TABLE table_name_74 (rank VARCHAR, run_2 VARCHAR)
SELECT rank FROM table_name_74 WHERE run_2 = "2:06.62"
What is the least rank with more than 16 sets won and less than 1 loss?
CREATE TABLE table_name_47 (rank INTEGER, sets_won VARCHAR, loss VARCHAR)
SELECT MIN(rank) FROM table_name_47 WHERE sets_won > 16 AND loss < 1
WHAT IS THE IN MALAYALAM WITH kartika–agrahayana?
CREATE TABLE table_name_61 (in_malayalam VARCHAR, saka_era VARCHAR)
SELECT in_malayalam FROM table_name_61 WHERE saka_era = "kartika–agrahayana"
Who is the Original west end performer for the character Martha?
CREATE TABLE table_1901751_1 (original_west_end_performer VARCHAR, character VARCHAR)
SELECT original_west_end_performer FROM table_1901751_1 WHERE character = "Martha"
What is listed as the Away team for the Home team of the Bristol Rovers?
CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_8 WHERE home_team = "bristol rovers"
Name the least spirou
CREATE TABLE table_15163938_1 (spirou INTEGER)
SELECT MIN(spirou) FROM table_15163938_1
Which college did the player picked number 136 go to?
CREATE TABLE table_name_54 (college VARCHAR, pick VARCHAR)
SELECT college FROM table_name_54 WHERE pick = 136
What is the emissions CO2 with a max speed of km/h (mph) of the car model Panamera 4s?
CREATE TABLE table_name_76 (emissions_co2 VARCHAR, max_speed VARCHAR, car_model VARCHAR)
SELECT emissions_co2 FROM table_name_76 WHERE max_speed = "km/h (mph)" AND car_model = "panamera 4s"
Who directed the episode watched by 2.01 million US viewers?
CREATE TABLE table_28466323_2 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_28466323_2 WHERE us_viewers__million_ = "2.01"
List the names and decor of rooms that have a king bed. Sort the list by their price.
CREATE TABLE Rooms (roomName VARCHAR, decor VARCHAR, bedtype VARCHAR, basePrice VARCHAR)
SELECT roomName, decor FROM Rooms WHERE bedtype = 'King' ORDER BY basePrice
What is the smallest Result with a Location of birmingham, and Rank larger than 5?
CREATE TABLE table_name_73 (result INTEGER, location VARCHAR, rank VARCHAR)
SELECT MIN(result) FROM table_name_73 WHERE location = "birmingham" AND rank > 5
What is the record of wins/losses that were played at opponents venue (uf, 1-0)
CREATE TABLE table_16201038_5 (overall_record VARCHAR, at_opponents_venue VARCHAR)
SELECT overall_record FROM table_16201038_5 WHERE at_opponents_venue = "UF, 1-0"
If the episode was written by Tim Balme, what was the original air date?
CREATE TABLE table_23114705_3 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_23114705_3 WHERE written_by = "Tim Balme"
Name the score for december 27
CREATE TABLE table_23284271_6 (score VARCHAR, date VARCHAR)
SELECT COUNT(score) FROM table_23284271_6 WHERE date = "December 27"
Which rank has 0 bronze and 2 silver?
CREATE TABLE table_name_7 (gold INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT MIN(gold) FROM table_name_7 WHERE bronze = 0 AND silver < 2
What is Robert Dirk's nationality?
CREATE TABLE table_2850912_3 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_2850912_3 WHERE player = "Robert Dirk"
With the score of 6–3, 2–6, [10–8] and played on clay who was the opponent?
CREATE TABLE table_name_69 (opponent VARCHAR, surface VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_69 WHERE surface = "clay" AND score = "6–3, 2–6, [10–8]"
Show the region name with at least two storms.
CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR)
SELECT T1.region_name FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id HAVING COUNT(*) >= 2
What Race has a Purse of $300,000?
CREATE TABLE table_name_43 (race VARCHAR, purse VARCHAR)
SELECT race FROM table_name_43 WHERE purse = "$300,000"
That is the year founded for the institution location of Nashville, Tennessee?
CREATE TABLE table_10577579_2 (founded INTEGER, location VARCHAR)
SELECT MIN(founded) FROM table_10577579_2 WHERE location = "Nashville, Tennessee"
What was the result on 1990-11-04?
CREATE TABLE table_name_55 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_55 WHERE date = "1990-11-04"
What was the stage when the winner was luis león sánchez?
CREATE TABLE table_25580292_13 (stage VARCHAR, winner VARCHAR)
SELECT stage FROM table_25580292_13 WHERE winner = "Luis León Sánchez"
What is the round number for the date 19/06/2009?
CREATE TABLE table_21311525_1 (round VARCHAR, date VARCHAR)
SELECT round FROM table_21311525_1 WHERE date = "19/06/2009"
What is the lowest pick with fewer than 3 rounds and more than 4 overall?
CREATE TABLE table_name_15 (pick INTEGER, round VARCHAR, overall VARCHAR)
SELECT MIN(pick) FROM table_name_15 WHERE round < 3 AND overall > 4
What is the name of the away team that played Geelong?
CREATE TABLE table_name_37 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_37 WHERE home_team = "geelong"
Which nation had a time of 48.38?
CREATE TABLE table_name_9 (nation VARCHAR, time__sec_ VARCHAR)
SELECT nation FROM table_name_9 WHERE time__sec_ = 48.38
Name the name of award for marathi
CREATE TABLE table_24446718_3 (name_of_award VARCHAR, language VARCHAR)
SELECT name_of_award FROM table_24446718_3 WHERE language = "Marathi"
What is Score, when Tie No is 17?
CREATE TABLE table_name_81 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_81 WHERE tie_no = "17"