question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
I want the lowest Grid for Rolf Stommelen
CREATE TABLE table_name_48 (grid INTEGER, driver VARCHAR)
{ "SQL_Query": "SELECT MIN(grid) FROM table_name_48 WHERE driver = \"rolf stommelen\"" }
I want the constructor for grid less than 20 and Laps of 6
CREATE TABLE table_name_68 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_name_68 WHERE grid < 20 AND laps = 6" }
What is the german total population after 1910 with an other total of 143 and 32 hungarians?
CREATE TABLE table_name_59 (german VARCHAR, hungarian VARCHAR, year VARCHAR, other VARCHAR)
{ "SQL_Query": "SELECT german FROM table_name_59 WHERE year > 1910 AND other = \"143\" AND hungarian = \"32\"" }
What year did Naoki Tsukahara finish 3rd in the 200 m race?
CREATE TABLE table_name_4 (year VARCHAR, notes VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_4 WHERE notes = \"200 m\" AND position = \"3rd\"" }
What is the attendance at the Dallas home game on may 12?
CREATE TABLE table_name_67 (attendance VARCHAR, home VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(attendance) FROM table_name_67 WHERE home = \"dallas\" AND date = \"may 12\"" }
What nationality is the player ranked 2?
CREATE TABLE table_name_83 (country VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_83 WHERE rank = 2" }
How many wins for mike hill ranked below 4?
CREATE TABLE table_name_49 (wins VARCHAR, player VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_name_49 WHERE player = \"mike hill\" AND rank < 4" }
What is Trevor Cann's nationality?
CREATE TABLE table_name_10 (nationality VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_10 WHERE player = \"trevor cann\"" }
What is Kent Patterson's nationality?
CREATE TABLE table_name_60 (nationality VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_60 WHERE player = \"kent patterson\"" }
Which unit has a Pennant Number of 82?
CREATE TABLE table_name_27 (unit VARCHAR, pennant_number VARCHAR)
{ "SQL_Query": "SELECT unit FROM table_name_27 WHERE pennant_number = 82" }
What is the highest pennant number with ships in raahe class?
CREATE TABLE table_name_54 (pennant_number INTEGER, ships_in_class VARCHAR)
{ "SQL_Query": "SELECT MAX(pennant_number) FROM table_name_54 WHERE ships_in_class = \"raahe\"" }
What is the highest pennant number with ships in pori class?
CREATE TABLE table_name_61 (pennant_number INTEGER, ships_in_class VARCHAR)
{ "SQL_Query": "SELECT MAX(pennant_number) FROM table_name_61 WHERE ships_in_class = \"pori\"" }
What is the name of the competition that ended with a score of 2-1?
CREATE TABLE table_name_90 (competition VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_90 WHERE score = \"2-1\"" }
What is the name of the competition that ended with a score of 1-3?
CREATE TABLE table_name_63 (competition VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_63 WHERE score = \"1-3\"" }
At which venue did the game on 28 october 2013 take place?
CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_5 WHERE date = \"28 october 2013\"" }
What is the Competition name of the competition that ended with a score of 2-1?
CREATE TABLE table_name_74 (competition VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_74 WHERE score = \"2-1\"" }
In what year did a car have a yamaha v12 engine and a brabham bt60y chassis
CREATE TABLE table_name_70 (year VARCHAR, engine VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_70 WHERE engine = \"yamaha v12\" AND chassis = \"brabham bt60y\"" }
waht is the last year with a mclaren mp4/10b chassis
CREATE TABLE table_name_31 (year INTEGER, chassis VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_31 WHERE chassis = \"mclaren mp4/10b\"" }
before 1995 waht is the aveage pts for a mclaren mp4/10b chassis
CREATE TABLE table_name_58 (pts INTEGER, chassis VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT AVG(pts) FROM table_name_58 WHERE chassis = \"mclaren mp4/10b\" AND year < 1995" }
what is the most recent year for a ligier gitanes blondes
CREATE TABLE table_name_84 (year INTEGER, entrant VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_84 WHERE entrant = \"ligier gitanes blondes\"" }
What is the total number of averages with an interview of 8.75 when the evening gown number was bigger than 8.75?
CREATE TABLE table_name_62 (average INTEGER, interview VARCHAR, evening_gown VARCHAR)
{ "SQL_Query": "SELECT SUM(average) FROM table_name_62 WHERE interview = 8.75 AND evening_gown > 8.75" }
What is the total number of interviews where the evening gown number is less than 8.82, the state is Kentucky, and the average is more than 8.85?
CREATE TABLE table_name_64 (interview INTEGER, average VARCHAR, evening_gown VARCHAR, state VARCHAR)
{ "SQL_Query": "SELECT SUM(interview) FROM table_name_64 WHERE evening_gown < 8.82 AND state = \"kentucky\" AND average > 8.85" }
How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71?
CREATE TABLE table_name_96 (average INTEGER, swimsuit VARCHAR, evening_gown VARCHAR)
{ "SQL_Query": "SELECT SUM(average) FROM table_name_96 WHERE swimsuit = 8.42 AND evening_gown < 8.71" }
Which state had an average of less than 8.67, a swimsuit score of 8.27, an evening gown score of 8.78, and an interview number of 8.52?
CREATE TABLE table_name_70 (state VARCHAR, interview VARCHAR, evening_gown VARCHAR, average VARCHAR, swimsuit VARCHAR)
{ "SQL_Query": "SELECT state FROM table_name_70 WHERE average < 8.67 AND swimsuit = 8.27 AND evening_gown = 8.78 AND interview = 8.52" }
What is the record when the visitor was Nashville?
CREATE TABLE table_name_82 (record VARCHAR, visitor VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_82 WHERE visitor = \"nashville\"" }
When was a competition held at Pietermaritzburg?
CREATE TABLE table_name_83 (date VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_83 WHERE venue = \"pietermaritzburg\"" }
What were the bowling figures for the competition at Pietermaritzburg?
CREATE TABLE table_name_19 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT bowling_figures_wickets_runs__overs_ FROM table_name_19 WHERE venue = \"pietermaritzburg\"" }
Who was the opponent during the competition in which the bowling figures were 5-33 (10)?
CREATE TABLE table_name_82 (versus VARCHAR, bowling_figures_wickets_runs__overs_ VARCHAR)
{ "SQL_Query": "SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = \"5-33 (10)\"" }
What were GD Mcgrath's bowling figures?
CREATE TABLE table_name_42 (bowling_figures_wickets_runs__overs_ VARCHAR, bowler VARCHAR)
{ "SQL_Query": "SELECT bowling_figures_wickets_runs__overs_ FROM table_name_42 WHERE bowler = \"gd mcgrath\"" }
During the competition at Port Elizabeth, where the opponent was Australia, what were the bowling figures?
CREATE TABLE table_name_43 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR, versus VARCHAR)
{ "SQL_Query": "SELECT bowling_figures_wickets_runs__overs_ FROM table_name_43 WHERE venue = \"port elizabeth\" AND versus = \"australia\"" }
What is the lowest amount of floors after rank 1 in the Trillium (residential) building?
CREATE TABLE table_name_33 (floors INTEGER, rank VARCHAR, building VARCHAR)
{ "SQL_Query": "SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = \"the trillium (residential)\"" }
What is the lowest amount of floors in the building completed before 1970 ranked more than 14?
CREATE TABLE table_name_4 (floors INTEGER, completed VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT MIN(floors) FROM table_name_4 WHERE completed < 1970 AND rank > 14" }
What is the largest amount of floors in the 70m (233ft) Tupper building (educational)?
CREATE TABLE table_name_11 (floors INTEGER, height VARCHAR, building VARCHAR)
{ "SQL_Query": "SELECT MAX(floors) FROM table_name_11 WHERE height = \"70m (233ft)\" AND building = \"tupper building (educational)\"" }
Which manufacturer has 23 laps and a time of +45.195?
CREATE TABLE table_name_52 (manufacturer VARCHAR, laps VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT manufacturer FROM table_name_52 WHERE laps = 23 AND time_retired = \"+45.195\"" }
What is the sum of Sylvain Guintoli's laps?
CREATE TABLE table_name_8 (laps INTEGER, rider VARCHAR)
{ "SQL_Query": "SELECT SUM(laps) FROM table_name_8 WHERE rider = \"sylvain guintoli\"" }
How many runs were scored when the strike rate was 101.42?
CREATE TABLE table_name_75 (runs VARCHAR, strike_rate VARCHAR)
{ "SQL_Query": "SELECT runs FROM table_name_75 WHERE strike_rate = \"101.42\"" }
What was the amount of grain in 2001?
CREATE TABLE table_name_4 (product VARCHAR)
{ "SQL_Query": "SELECT 2001 FROM table_name_4 WHERE product = \"grain\"" }
What is the amount of oil terminal in 2004?
CREATE TABLE table_name_51 (product VARCHAR)
{ "SQL_Query": "SELECT 2004 FROM table_name_51 WHERE product = \"oil terminal\"" }
What is the 2003 statistic for the product that had 514,000 tonnes in 2001?
CREATE TABLE table_name_34 (Id VARCHAR)
{ "SQL_Query": "SELECT 2003 FROM table_name_34 WHERE 2001 = \"514,000 tonnes\"" }
What is the 2002 statistic for the product that had 452,000 tonnes in 2001?
CREATE TABLE table_name_7 (Id VARCHAR)
{ "SQL_Query": "SELECT 2002 FROM table_name_7 WHERE 2001 = \"452,000 tonnes\"" }
What is the 2001 statistic for the product that had 2,360,000 tonnes in 2002?
CREATE TABLE table_name_91 (Id VARCHAR)
{ "SQL_Query": "SELECT 2001 FROM table_name_91 WHERE 2002 = \"2,360,000 tonnes\"" }
What is the 2003 statistic for general cargo?
CREATE TABLE table_name_94 (product VARCHAR)
{ "SQL_Query": "SELECT 2003 FROM table_name_94 WHERE product = \"general cargo\"" }
What did the home team score at MCG?
CREATE TABLE table_name_30 (home_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_30 WHERE venue = \"mcg\"" }
What did the away team score when playing South Melbourne?
CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT away_team AS score FROM table_name_44 WHERE home_team = \"south melbourne\"" }
When did the game with North Melbourne as the away team take place?
CREATE TABLE table_name_89 (date VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_89 WHERE away_team = \"north melbourne\"" }
If the Away team was south melbourne what Date did they play?
CREATE TABLE table_name_57 (date VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_57 WHERE away_team = \"south melbourne\"" }
When the Home team of essendon is playing what is the Away team score?
CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT away_team AS score FROM table_name_67 WHERE home_team = \"essendon\"" }
I wan the date of vacancy for departure of resigned and outgoing manager of gordon wylde
CREATE TABLE table_name_22 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)
{ "SQL_Query": "SELECT date_of_vacancy FROM table_name_22 WHERE manner_of_departure = \"resigned\" AND outgoing_manager = \"gordon wylde\"" }
I want the replaced for date of appointment being 12 october 2007
CREATE TABLE table_name_73 (replaced_by VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT replaced_by FROM table_name_73 WHERE date_of_appointment = \"12 october 2007\"" }
I want the team for date of vacancy being 28 february
CREATE TABLE table_name_52 (team VARCHAR, date_of_vacancy VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_52 WHERE date_of_vacancy = \"28 february\"" }
I want the manner of departure for date of appointment being 12 october 2007
CREATE TABLE table_name_87 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT manner_of_departure FROM table_name_87 WHERE date_of_appointment = \"12 october 2007\"" }
Which date was the syracuse circuit?
CREATE TABLE table_name_67 (date VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_67 WHERE circuit = \"syracuse\"" }
Which date was the x gran premio di napoli?
CREATE TABLE table_name_7 (date VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_7 WHERE race_name = \"x gran premio di napoli\"" }
What report happened on 22 september?
CREATE TABLE table_name_25 (report VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT report FROM table_name_25 WHERE date = \"22 september\"" }
Which report has a Winning driver of peter collins, and a Circuit of syracuse?
CREATE TABLE table_name_33 (report VARCHAR, winning_driver VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT report FROM table_name_33 WHERE winning_driver = \"peter collins\" AND circuit = \"syracuse\"" }
Who appointed Judge Edward E. Cushman?
CREATE TABLE table_name_73 (appointed_by VARCHAR, judge VARCHAR)
{ "SQL_Query": "SELECT appointed_by FROM table_name_73 WHERE judge = \"edward e. cushman\"" }
Who was Judge Jack Edward Tanner's chief judge?
CREATE TABLE table_name_37 (Chief VARCHAR, judge VARCHAR)
{ "SQL_Query": "SELECT Chief AS judge FROM table_name_37 WHERE judge = \"jack edward tanner\"" }
What is the date of birth of the player that has 11 caps and plays the prop position?
CREATE TABLE table_name_41 (date_of_birth__age_ VARCHAR, caps VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT date_of_birth__age_ FROM table_name_41 WHERE caps = 11 AND position = \"prop\"" }
What club or province is the player with 12 caps from?
CREATE TABLE table_name_49 (club_province VARCHAR, caps VARCHAR)
{ "SQL_Query": "SELECT club_province FROM table_name_49 WHERE caps = 12" }
What position does Toby Flood, who is from Newcastle and has fewer than 24 caps, play?
CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_47 WHERE club_province = \"newcastle\" AND caps < 24 AND player = \"toby flood\"" }
Which team beat the Newcastle Breakers?
CREATE TABLE table_name_76 (winningteam VARCHAR, losingteam VARCHAR)
{ "SQL_Query": "SELECT winningteam FROM table_name_76 WHERE losingteam = \"newcastle breakers\"" }
What team lost on 20 August 1989?
CREATE TABLE table_name_82 (losingteam VARCHAR, cup_finaldate VARCHAR)
{ "SQL_Query": "SELECT losingteam FROM table_name_82 WHERE cup_finaldate = \"20 august 1989\"" }
On what date did the Brisbane Lions (1) win?
CREATE TABLE table_name_44 (cup_finaldate VARCHAR, winningteam VARCHAR)
{ "SQL_Query": "SELECT cup_finaldate FROM table_name_44 WHERE winningteam = \"brisbane lions (1)\"" }
What was the winning team with the 8,132 final attendance?
CREATE TABLE table_name_20 (winningteam VARCHAR, cup_final_attendance VARCHAR)
{ "SQL_Query": "SELECT winningteam FROM table_name_20 WHERE cup_final_attendance = \"8,132\"" }
What was the attendance on August 2?
CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_48 WHERE date = \"august 2\"" }
What is the date where the attendance was 31,220?
CREATE TABLE table_name_62 (date VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_62 WHERE attendance = \"31,220\"" }
What was the team's record on August 4?
CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_8 WHERE date = \"august 4\"" }
What was the date when the attendance was 48,041?
CREATE TABLE table_name_84 (date VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_84 WHERE attendance = \"48,041\"" }
Who are the finals opponents for the match with partner Ricardo Hocevar?
CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, partnering VARCHAR)
{ "SQL_Query": "SELECT opponents_in_the_final FROM table_name_44 WHERE partnering = \"ricardo hocevar\"" }
Who were the opponents of the final on June 23, 2003?
CREATE TABLE table_name_4 (opponents_in_the_final VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponents_in_the_final FROM table_name_4 WHERE date = \"june 23, 2003\"" }
Who was the home side at glenferrie oval?
CREATE TABLE table_name_37 (home_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_37 WHERE venue = \"glenferrie oval\"" }
Who is the author of Episode 38 (16)?
CREATE TABLE table_name_2 (written_by VARCHAR, episode__number VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_name_2 WHERE episode__number = \"38 (16)\"" }
When did Episode 29 (7) originally air?
CREATE TABLE table_name_65 (original_airdate VARCHAR, episode__number VARCHAR)
{ "SQL_Query": "SELECT original_airdate FROM table_name_65 WHERE episode__number = \"29 (7)\"" }
What is the episode # of the episode that aired on April 5, 1998?
CREATE TABLE table_name_23 (episode__number VARCHAR, original_airdate VARCHAR)
{ "SQL_Query": "SELECT episode__number FROM table_name_23 WHERE original_airdate = \"april 5, 1998\"" }
Who wrote the episode that originally aired on March 1, 1998?
CREATE TABLE table_name_42 (written_by VARCHAR, original_airdate VARCHAR)
{ "SQL_Query": "SELECT written_by FROM table_name_42 WHERE original_airdate = \"march 1, 1998\"" }
what tournament has 2000 of 3r?
CREATE TABLE table_name_35 (tournament VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_35 WHERE 2000 = \"3r\"" }
what 2001 has 1991 of 4r?
CREATE TABLE table_name_42 (Id VARCHAR)
{ "SQL_Query": "SELECT 2001 FROM table_name_42 WHERE 1991 = \"4r\"" }
what 1989 has 2002 of 4r and 2005 of 4r?
CREATE TABLE table_name_22 (Id VARCHAR)
{ "SQL_Query": "SELECT 1989 FROM table_name_22 WHERE 2002 = \"4r\" AND 2005 = \"4r\"" }
What team played in front of 28,536 at an away stadium?
CREATE TABLE table_name_34 (away_team VARCHAR, crowd INTEGER)
{ "SQL_Query": "SELECT away_team AS score FROM table_name_34 WHERE crowd > 28 OFFSET 536" }
What was Fitzroy score at their home stadium?
CREATE TABLE table_name_25 (home_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_25 WHERE home_team = \"fitzroy\"" }
Who faced off against St Kilda at their home?
CREATE TABLE table_name_43 (away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT away_team AS score FROM table_name_43 WHERE home_team = \"st kilda\"" }
What is the low number of top 25s in an event with over 15 appearances?
CREATE TABLE table_name_42 (top_25 INTEGER, events INTEGER)
{ "SQL_Query": "SELECT MIN(top_25) FROM table_name_42 WHERE events > 15" }
What is the average rank of the Reliance Entertainment movie with an opening day on Wednesday before 2012?
CREATE TABLE table_name_8 (rank INTEGER, studio_s_ VARCHAR, day_of_week VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT AVG(rank) FROM table_name_8 WHERE day_of_week = \"wednesday\" AND year < 2012 AND studio_s_ = \"reliance entertainment\"" }
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)
{ "SQL_Query": "SELECT SUM(opening_day_net_gross) FROM table_name_90 WHERE studio_s_ = \"reliance entertainment\" AND year < 2011" }
What is the studio of ra.one?
CREATE TABLE table_name_89 (studio_s_ VARCHAR, movie VARCHAR)
{ "SQL_Query": "SELECT studio_s_ FROM table_name_89 WHERE movie = \"ra.one\"" }
What is the year of the movie with an opening day on Friday with a rank 10?
CREATE TABLE table_name_78 (year VARCHAR, day_of_week VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_78 WHERE day_of_week = \"friday\" AND rank = 10" }
What is the lowest Sack with a Solo of 24, with Tackles larger than 25.5, with Yards larger than 0?
CREATE TABLE table_name_1 (sack INTEGER, yards VARCHAR, solo VARCHAR, tackles VARCHAR)
{ "SQL_Query": "SELECT MIN(sack) FROM table_name_1 WHERE solo = 24 AND tackles > 25.5 AND yards > 0" }
What is the total number of Solo with a Player with sean mcinerney, and Yards larger than 0?
CREATE TABLE table_name_33 (solo VARCHAR, player VARCHAR, yards VARCHAR)
{ "SQL_Query": "SELECT COUNT(solo) FROM table_name_33 WHERE player = \"sean mcinerney\" AND yards > 0" }
At the power plant located in ramakkalmedu, what is the sum of the total capacity (MWe)?
CREATE TABLE table_name_86 (total_capacity__mwe_ INTEGER, power_plant VARCHAR)
{ "SQL_Query": "SELECT SUM(total_capacity__mwe_) FROM table_name_86 WHERE power_plant = \"ramakkalmedu\"" }
What company is the producer in the chennai mohan power plant?
CREATE TABLE table_name_79 (producer VARCHAR, power_plant VARCHAR)
{ "SQL_Query": "SELECT producer FROM table_name_79 WHERE power_plant = \"chennai mohan\"" }
What company is the producer at the poolavadi location
CREATE TABLE table_name_99 (producer VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT producer FROM table_name_99 WHERE location = \"poolavadi\"" }
What company is known as the producer at the kethanur location?
CREATE TABLE table_name_64 (producer VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT producer FROM table_name_64 WHERE location = \"kethanur\"" }
When the duration was 11 min, 34 sec, what was the feathered (Fxx)?
CREATE TABLE table_name_37 (feathered__fxx_ VARCHAR, duration VARCHAR)
{ "SQL_Query": "SELECT feathered__fxx_ FROM table_name_37 WHERE duration = \"11 min, 34 sec\"" }
I want to know the city for guelferbytanus b and the 5th
CREATE TABLE table_name_6 (city VARCHAR, date VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_6 WHERE date = \"5th\" AND name = \"guelferbytanus b\"" }
Name the country for the 9th and sign of g e
CREATE TABLE table_name_51 (country VARCHAR, date VARCHAR, sign VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_51 WHERE date = \"9th\" AND sign = \"g e\"" }
Name the content for sign of g e
CREATE TABLE table_name_54 (content VARCHAR, sign VARCHAR)
{ "SQL_Query": "SELECT content FROM table_name_54 WHERE sign = \"g e\"" }
Name the city for athous lavrensis
CREATE TABLE table_name_22 (city VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_22 WHERE name = \"athous lavrensis\"" }
Which race had a distance of 4 miles where the runner-up was not known?
CREATE TABLE table_name_22 (race_name VARCHAR, dist__miles_ VARCHAR, runner_up VARCHAR)
{ "SQL_Query": "SELECT race_name FROM table_name_22 WHERE dist__miles_ = \"4\" AND runner_up = \"not known\"" }
What date did the Jazz play the Bulls at home?
CREATE TABLE table_name_91 (date VARCHAR, home VARCHAR, visitor VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_91 WHERE home = \"jazz\" AND visitor = \"bulls\"" }
On February 26, who was the leading scorer?
CREATE TABLE table_name_30 (leading_scorer VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT leading_scorer FROM table_name_30 WHERE date = \"february 26\"" }