question
stringlengths
14
216
context
stringlengths
45
458
answer
stringlengths
18
463
What percent of the parliamentary election did the pensioners party receive
create table table_203802_2 (english_party_name varchar, PRIMARY KEY (english_party_name))
select 2013 as _parliamentary_election from table_203802_2 where english_party_name = "pensioners party"
Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports?
create table table_26638600_3 (lites_2_race_two_winning_team varchar, lites_1_race_one_winning_team varchar, PRIMARY KEY (lites_2_race_two_winning_team))
select lites_2_race_two_winning_team from table_26638600_3 where lites_1_race_one_winning_team = "#13 inspire motorsports"
What is the air date of the episode written by Itamar Moses?
create table table_25356350_3 (original_air_date varchar, written_by varchar, PRIMARY KEY (original_air_date))
select original_air_date from table_25356350_3 where written_by = "itamar moses"
what's the current country of location with operational period  of summer of 1941 to 28 june 1944
create table table_10335_1 (current_country_of_location varchar, operational varchar, PRIMARY KEY (current_country_of_location))
select current_country_of_location from table_10335_1 where operational = "summer of 1941 to 28 june 1944"
What was the title for the Undercard of Stevenson/Bellew?
create table table_25840200_1 (titles varchar, notes varchar, PRIMARY KEY (titles))
select titles from table_25840200_1 where notes = "undercard of stevenson/bellew"
Name the mountains classification for team columbia
create table table_19115414_4 (mountains_classification varchar, team_classification varchar, PRIMARY KEY (mountains_classification))
select mountains_classification from table_19115414_4 where team_classification = "team columbia"
What team had an average fencer rank of 1.33?
create table table_28372291_1 (team varchar, average_fencers_rank varchar, PRIMARY KEY (team))
select team from table_28372291_1 where average_fencers_rank = "1.33"
what is the y = 2008 when the expression is easter day (julian calendar)?
create table table_214479_8 (y_ varchar, _2008 varchar, expression varchar, PRIMARY KEY (y_))
select y_ = _2008 from table_214479_8 where expression = "easter day (julian calendar)"
What is the largest 1st prize( $ ) at the South Carolina location?
create table table_11622896_1 (location varchar, PRIMARY KEY (location))
select max(1 as st_prize__) as $__ from table_11622896_1 where location = "south carolina"
How many CSU campuses are there?
create table campuses (id varchar, PRIMARY KEY (id))
select count(*) from campuses
What is the minimum number of total placings?
create table table_20823568_3 (total_placings_s_ integer, PRIMARY KEY (total_placings_s_))
select min(total_placings_s_) from table_20823568_3
How many were the US viewers (in millions) of the episode that was written by Gordon C. Lonsdale?
create table table_26826304_1 (us_viewers__millions_ varchar, directed_by varchar, PRIMARY KEY (us_viewers__millions_))
select us_viewers__millions_ from table_26826304_1 where directed_by = "gordon c. lonsdale"
What year did Thorleif Haug win the Winter Olympics?
create table table_174491_1 (winter_olympics varchar, winner varchar, PRIMARY KEY (winter_olympics))
select winter_olympics from table_174491_1 where winner = "thorleif haug"
What is every entry for Friday August 26 when the entry for Wednesday August 24 is 23' 52.67 94.807mph?
create table table_30058355_7 (fri_26_aug varchar, wed_24_aug varchar, PRIMARY KEY (fri_26_aug))
select fri_26_aug from table_30058355_7 where wed_24_aug = "23' 52.67 94.807mph"
If the number of barangays is 19, what is the population density?
create table table_232458_1 (pop_density__per_km²_ varchar, no_of_barangays varchar, PRIMARY KEY (pop_density__per_km²_))
select pop_density__per_km²_ from table_232458_1 where no_of_barangays = 19
Who is every young rider classification if combativity award is Yannick Talabardon?
create table table_25999087_2 (young_rider_classification varchar, combativity_award varchar, PRIMARY KEY (young_rider_classification))
select young_rider_classification from table_25999087_2 where combativity_award = "yannick talabardon"
Please show the name of the conductor that has conducted orchestras founded after 2008.
create table orchestra (conductor_id varchar, PRIMARY KEY (conductor_id)); create table conductor (name varchar, conductor_id varchar, PRIMARY KEY (name))
select t1.name from conductor as t1 join orchestra as t2 on t1.conductor_id = t2.conductor_id where year_of_founded > 2008
Show all advisors and corresponding number of students.
create table student (advisor varchar, PRIMARY KEY (advisor))
select advisor, count(*) from student group by advisor
What is the r (ω/km) when the frequency is 10k?
create table table_261642_3 (r__ω_km_ varchar, frequency__hz_ varchar, PRIMARY KEY (r__ω_km_))
select r__ω_km_ from table_261642_3 where frequency__hz_ = "10k"
Who was the driver for the winning team Lawson Team Impul?
create table table_22379931_2 (winning_driver varchar, winning_team varchar, PRIMARY KEY (winning_driver))
select winning_driver from table_22379931_2 where winning_team = "lawson team impul"
When peter kox roman rusinov is the gt1 of the winning team how many lmp1 winning teams are there?
create table table_19722436_2 (lmp1_winning_team varchar, gt1_winning_team varchar, PRIMARY KEY (lmp1_winning_team))
select count(lmp1_winning_team) from table_19722436_2 where gt1_winning_team = "peter kox roman rusinov"
Name the number of location for 22-1
create table table_22875369_3 (location varchar, record varchar, PRIMARY KEY (location))
select count(location) from table_22875369_3 where record = "22-1"
How many schools won their last occ championship in 2006?
create table table_17429402_7 (school varchar, last_occ_championship varchar, PRIMARY KEY (school))
select count(school) from table_17429402_7 where last_occ_championship = "2006"
Name the most withdrawn for 37 lstr no.
create table table_20391799_1 (withdrawn integer, ltsr_no varchar, PRIMARY KEY (withdrawn))
select max(withdrawn) from table_20391799_1 where ltsr_no = 37
What was the date of the series finale for Peru?
create table table_29799700_2 (series_finale varchar, country varchar, PRIMARY KEY (series_finale))
select series_finale from table_29799700_2 where country = "peru"
who is the the president with date of inauguration being 4june1979
create table table_12134383_1 (president varchar, date_of_inauguration varchar, PRIMARY KEY (president))
select president from table_12134383_1 where date_of_inauguration = "4june1979"
On which circuit was the lites 1 race one winning team #66 Gunnar Racing?
create table table_26638600_3 (circuit varchar, lites_1_race_one_winning_team varchar, PRIMARY KEY (circuit))
select circuit from table_26638600_3 where lites_1_race_one_winning_team = "#66 gunnar racing"
What are the drivers' first, last names and id who had more than 8 pit stops or participated in more than 5 race results?
create table drivers (forename varchar, surname varchar, driverid varchar, PRIMARY KEY (forename)); create table results (driverid varchar, PRIMARY KEY (driverid)); create table pitstops (driverid varchar, PRIMARY KEY (driverid))
select t1.forename, t1.surname, t1.driverid from drivers as t1 join pitstops as t2 on t1.driverid = t2.driverid group by t1.driverid having count(*) > 8 union select t1.forename, t1.surname, t1.driverid from drivers as t1 join results as t2 on t1.driverid = t2.driverid group by t1.driverid having count(*) > 5
Name the index weighting % for 17 januaary 2013 for rno
create table table_168274_1 (index_weighting___percentage__at_17_january_2013 varchar, ticker_symbol varchar, PRIMARY KEY (index_weighting___percentage__at_17_january_2013))
select index_weighting___percentage__at_17_january_2013 from table_168274_1 where ticker_symbol = "rno"
Name the number of administrative county for area 1961 and 176694
create table table_14925084_1 (administrative_county varchar, area_1961__statute_acres_ varchar, PRIMARY KEY (administrative_county))
select count(administrative_county) from table_14925084_1 where area_1961__statute_acres_ = 176694
What is the car number driven by Darren Manning?
create table table_17256857_1 (car_no varchar, driver varchar, PRIMARY KEY (car_no))
select car_no from table_17256857_1 where driver = "darren manning"
When david o'doherty and katherine parkinson are both on the davids team when is the first broadcast?
create table table_23575917_6 (first_broadcast varchar, davids_team varchar, PRIMARY KEY (first_broadcast))
select first_broadcast from table_23575917_6 where davids_team = "david o'doherty and katherine parkinson"
Who was the challenger when winner was kimio nonaga?
create table table_23982399_12 (challenger varchar, winner varchar, PRIMARY KEY (challenger))
select challenger from table_23982399_12 where winner = "kimio nonaga"
What type of glazing will stop a .44 magnum?
create table table_21538523_1 (type varchar, caliber varchar, PRIMARY KEY (type))
select type from table_21538523_1 where caliber = ".44 magnum"
Name the base 10 for shortscale comparison for billion
create table table_260938_1 (base_10 varchar, shortscale_comparison varchar, PRIMARY KEY (base_10))
select base_10 from table_260938_1 where shortscale_comparison = "billion"
What year was taxidermia nominated?
create table table_14975415_1 (year__ceremony_ varchar, hungarian_title varchar, PRIMARY KEY (year__ceremony_))
select year__ceremony_ from table_14975415_1 where hungarian_title = "taxidermia"
How many distinct types of accounts are there?
create table customer (acc_type varchar, PRIMARY KEY (acc_type))
select count(distinct acc_type) from customer
Who was the mens doubles when womens singles is mette sørensen?
create table table_12171145_1 (mens_doubles varchar, womens_singles varchar, PRIMARY KEY (mens_doubles))
select mens_doubles from table_12171145_1 where womens_singles = "mette sørensen"
Who's the writer of the episode seen by 3.25 million people in the US?
create table table_18268826_1 (written_by varchar, us_viewers__million_ varchar, PRIMARY KEY (written_by))
select written_by from table_18268826_1 where us_viewers__million_ = "3.25"
Show the station name and number of trains in each station.
create table station (name varchar, station_id varchar, PRIMARY KEY (name)); create table train_station (station_id varchar, PRIMARY KEY (station_id))
select t2.name, count(*) from train_station as t1 join station as t2 on t1.station_id = t2.station_id group by t1.station_id
What is the name of the country where moving from is listed as bristol city?
create table table_17634290_7 (country varchar, moving_from varchar, PRIMARY KEY (country))
select country from table_17634290_7 where moving_from = "bristol city"
What was the home team score against Collingwood?
create table table_16387653_1 (home_team varchar, away_team varchar, PRIMARY KEY (home_team))
select home_team as score from table_16387653_1 where away_team = "collingwood"
What was the original air date of the episode that had 5.42 million viewers?
create table table_27790959_1 (original_air_date varchar, us_viewers__million_ varchar, PRIMARY KEY (original_air_date))
select original_air_date from table_27790959_1 where us_viewers__million_ = "5.42"
What was the regular season standings for the year when the playoffs reached the conference semifinals and the team did not qualify for the US Open Cup?
create table table_14225409_1 (reg_season varchar, playoffs varchar, us_open_cup varchar, PRIMARY KEY (reg_season))
select reg_season from table_14225409_1 where playoffs = "conference semifinals" and us_open_cup = "did not qualify"
Who was the replacement manager for the vacancy of 12 Dec 2009?
create table table_22297198_3 (replaced_by varchar, date_of_vacancy varchar, PRIMARY KEY (replaced_by))
select replaced_by from table_22297198_3 where date_of_vacancy = "12 dec 2009"
Find the distinct majors of students who have treasurer votes.
create table voting_record (treasurer_vote varchar, PRIMARY KEY (treasurer_vote)); create table student (major varchar, stuid varchar, PRIMARY KEY (major))
select distinct t1.major from student as t1 join voting_record as t2 on t1.stuid = t2.treasurer_vote
Who is the director of kon-tiki original title?
create table table_21655290_1 (director varchar, original_title varchar, PRIMARY KEY (director))
select director from table_21655290_1 where original_title = "kon-tiki"
What states have at least two representatives?
create table representative (state varchar, PRIMARY KEY (state))
select state from representative group by state having count(*) >= 2
How many races are in College Station, Texas and won by Johnny Rutherford?
create table table_22673872_1 (race_name varchar, location varchar, winning_driver varchar, PRIMARY KEY (race_name))
select count(race_name) from table_22673872_1 where location = "college station, texas" and winning_driver = "johnny rutherford"
Who's the player with 2:05.63 (1296 pts) swimming score?
create table table_12407546_1 (athlete__noc_ varchar, swimming varchar, PRIMARY KEY (athlete__noc_))
select athlete__noc_ from table_12407546_1 where swimming = "2:05.63 (1296 pts)"
List all airline names and their abbreviations in "USA".
create table airlines (airline varchar, abbreviation varchar, country varchar, PRIMARY KEY (airline))
select airline, abbreviation from airlines where country = "usa"
Find the number of checking accounts for each account name.
create table checking (custid varchar, PRIMARY KEY (custid)); create table accounts (name varchar, custid varchar, PRIMARY KEY (name))
select count(*), t1.name from accounts as t1 join checking as t2 on t1.custid = t2.custid group by t1.name
Show first name and last name for all students.
create table student (fname varchar, lname varchar, PRIMARY KEY (fname))
select fname, lname from student
How many different lead margins were stated in the poll administered on September 11, 2008?
create table table_17538810_10 (lead_margin varchar, dates_administered varchar, PRIMARY KEY (lead_margin))
select count(lead_margin) from table_17538810_10 where dates_administered = "september 11, 2008"
How many ministers are there when the cabinet (nickname) is Steingrímur Hermannsson III?
create table table_21422977_2 (ministers varchar, cabinet__nickname_ varchar, PRIMARY KEY (ministers))
select ministers from table_21422977_2 where cabinet__nickname_ = "steingrímur hermannsson iii"
What was the outcome in the championship where the final score was 6–7(1), 2–6, 6–4, 7–5, 6–7(2)?
create table table_2362486_1 (outcome varchar, score_in_the_final varchar, PRIMARY KEY (outcome))
select outcome from table_2362486_1 where score_in_the_final = "6–7(1), 2–6, 6–4, 7–5, 6–7(2)"
what was the ACC home game record for the team who's ACC winning percentage was .813?
create table table_16372911_1 (acc_home varchar, acc__percentage varchar, PRIMARY KEY (acc_home))
select acc_home from table_16372911_1 where acc__percentage = ".813"
What was the team's position in table when Danny OST was the outgoing manager?
create table table_27374004_4 (position_in_table varchar, outgoing_manager varchar, PRIMARY KEY (position_in_table))
select position_in_table from table_27374004_4 where outgoing_manager = "danny ost"
What was the violent crime rate in the city where the robbery rate was 201.4?
create table table_1818254_1 (violent_crime varchar, robbery varchar, PRIMARY KEY (violent_crime))
select violent_crime from table_1818254_1 where robbery = "201.4"
How many regions had a life expectancy at birth in 2001-2002 of 75.9?
create table table_25042332_33 (hdi varchar, life_expectancy_at_birth__2001_2002_ varchar, PRIMARY KEY (hdi))
select count(hdi) from table_25042332_33 where life_expectancy_at_birth__2001_2002_ = "75.9"
Name the vacator for took seat being january 29, 1813
create table table_15572443_1 (vacator varchar, took_seat varchar, PRIMARY KEY (vacator))
select vacator from table_15572443_1 where took_seat = "january 29, 1813"
What is the theme when the printing process is litho in 3 cols and intaglio?
create table table_25468520_1 (theme varchar, printing_process varchar, PRIMARY KEY (theme))
select theme from table_25468520_1 where printing_process = "litho in 3 cols and intaglio"
Name the cyrillic name for melenci
create table table_2562572_35 (cyrillic_name_other_names varchar, settlement varchar, PRIMARY KEY (cyrillic_name_other_names))
select cyrillic_name_other_names from table_2562572_35 where settlement = "melenci"
List all the distinct product names ordered by product id?
create table product (product_name varchar, product_id varchar, PRIMARY KEY (product_name))
select distinct product_name from product order by product_id
what's the s mestizo with asians being 0.2% and whites being 74.8%
create table table_1333612_1 (s_mestizo varchar, asians varchar, whites varchar, PRIMARY KEY (s_mestizo))
select s_mestizo from table_1333612_1 where asians = "0.2%" and whites = "74.8%"
How many bands are there?
create table band (id varchar, PRIMARY KEY (id))
select count(*) from band
What title was watched by 3.8 million US viewers?
create table table_26448179_3 (title varchar, us_viewers__millions_ varchar, PRIMARY KEY (title))
select title from table_26448179_3 where us_viewers__millions_ = "3.8"
What is the Cuchumela Municipality minimum?
create table table_2509112_3 (cuchumuela_municipality integer, PRIMARY KEY (cuchumuela_municipality))
select min(cuchumuela_municipality) from table_2509112_3
Who was the CM winning team when the FM winning team was #17 Elva - Ford?
create table table_29225103_2 (cm_winning_team varchar, fm_winning_team varchar, PRIMARY KEY (cm_winning_team))
select cm_winning_team from table_29225103_2 where fm_winning_team = "#17 elva - ford"
How many television station listing have a radio station as lao national radio?
create table table_2879165_1 (television_station varchar, radio_station varchar, PRIMARY KEY (television_station))
select count(television_station) from table_2879165_1 where radio_station = "lao national radio"
Who is the winning team when max busnelli is the winning driver?
create table table_23315271_2 (winning_team varchar, winning_driver varchar, PRIMARY KEY (winning_team))
select winning_team from table_23315271_2 where winning_driver = "max busnelli"
How many instruments does the song "Le Pop" use?
create table instruments (songid varchar, PRIMARY KEY (songid)); create table songs (songid varchar, PRIMARY KEY (songid))
select count(distinct instrument) from instruments as t1 join songs as t2 on t1.songid = t2.songid where title = "le pop"
Old Mo's Second Spring was the film title used in nomination in what year?
create table table_17350255_1 (year__ceremony_ varchar, film_title_used_in_nomination varchar, PRIMARY KEY (year__ceremony_))
select year__ceremony_ from table_17350255_1 where film_title_used_in_nomination = "old mo's second spring"
Find the names of states that have some college students playing in the mid position but not in the goalie position.
create table tryout (cname varchar, ppos varchar, PRIMARY KEY (cname)); create table college (state varchar, cname varchar, PRIMARY KEY (state))
select t1.state from college as t1 join tryout as t2 on t1.cname = t2.cname where t2.ppos = 'mid' except select t1.state from college as t1 join tryout as t2 on t1.cname = t2.cname where t2.ppos = 'goalie'
What is the epa highway fuel economy for an electric suv?
create table table_20549371_3 (epa_rated_highway_fuel_economy varchar, type_of_powertrain varchar, PRIMARY KEY (epa_rated_highway_fuel_economy))
select epa_rated_highway_fuel_economy from table_20549371_3 where type_of_powertrain = "electric suv"
which chapter was Transmitted on wednesday if the episode of "363 the hangover part ii" was transmitted on monday?
create table table_18173916_8 (wednesday varchar, monday varchar, PRIMARY KEY (wednesday))
select wednesday from table_18173916_8 where monday = "363 the hangover part ii"
List the name of ships whose nationality is not "United States".
create table ship (name varchar, nationality varchar, PRIMARY KEY (name))
select name from ship where nationality <> "united states"
What's the Wednesday, June 1 practice time for the rider that did 21' 05.87 107.300mph on Thursday, June 2?
create table table_29218221_3 (wed_1_june varchar, thurs_2_june varchar, PRIMARY KEY (wed_1_june))
select wed_1_june from table_29218221_3 where thurs_2_june = "21' 05.87 107.300mph"
What type of processor does the Intel Centrino Wireless-N 105 wireless LAN have?
create table table_199666_1 (processor varchar, wireless_lan varchar, PRIMARY KEY (processor))
select processor from table_199666_1 where wireless_lan = "intel centrino wireless-n 105"
Name the total number of written by for original air date for may 8, 2005
create table table_1876825_7 (written_by varchar, original_air_date varchar, PRIMARY KEY (written_by))
select count(written_by) from table_1876825_7 where original_air_date = "may 8, 2005"
Of all the claims, what was the earliest date when any claim was made?
create table claims (date_claim_made varchar, PRIMARY KEY (date_claim_made))
select date_claim_made from claims order by date_claim_made limit 1
Name the team for kirk hinrich , derrick rose , john salmons (6)
create table table_22669044_9 (team varchar, high_assists varchar, PRIMARY KEY (team))
select team from table_22669044_9 where high_assists = "kirk hinrich , derrick rose , john salmons (6)"
Who was the outgoing manager for the team of târgu mureş?
create table table_26976615_3 (outgoing_manager varchar, team varchar, PRIMARY KEY (outgoing_manager))
select outgoing_manager from table_26976615_3 where team = "târgu mureş"
List the names of people that have not been on the affirmative side of debates.
create table debate_people (name varchar, people_id varchar, affirmative varchar, PRIMARY KEY (name)); create table people (name varchar, people_id varchar, affirmative varchar, PRIMARY KEY (name))
select name from people where not people_id in (select affirmative from debate_people)
Name the party for spencer bachus
create table table_25030512_4 (party varchar, incumbent varchar, PRIMARY KEY (party))
select party from table_25030512_4 where incumbent = "spencer bachus"
what's the success where date of completion is september 28, 2007
create table table_12078626_1 (success varchar, date_of_completion varchar, PRIMARY KEY (success))
select success from table_12078626_1 where date_of_completion = "september 28, 2007"
Who was the winner when the iron chef is hiroyuki sakai?
create table table_23982399_12 (winner varchar, iron_chef varchar, PRIMARY KEY (winner))
select winner from table_23982399_12 where iron_chef = "hiroyuki sakai"
Name the batting team at Durham
create table table_11303072_5 (batting_team varchar, fielding_team varchar, PRIMARY KEY (batting_team))
select batting_team from table_11303072_5 where fielding_team = "durham"
What was the GDP for 2002-2005 for the construction center?
create table table_25282151_1 (supply_sector___percentage_of_gdp_in_current_prices_ varchar, PRIMARY KEY (supply_sector___percentage_of_gdp_in_current_prices_))
select 2002 as _2005 from table_25282151_1 where supply_sector___percentage_of_gdp_in_current_prices_ = "construction"
What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)?
create table table_14948647_1 (bhofen_number1__rk_ varchar, bhofen_number2__rk_ varchar, PRIMARY KEY (bhofen_number1__rk_))
select bhofen_number1__rk_ from table_14948647_1 where bhofen_number2__rk_ = "231.2 (8)"
what type of institution is alvernia university
create table table_1974632_1 (type varchar, institution varchar, PRIMARY KEY (type))
select type from table_1974632_1 where institution = "alvernia university"
Who were the pictorials when the centerfold model was Ava Fabian?
create table table_1566848_7 (pictorials varchar, centerfold_model varchar, PRIMARY KEY (pictorials))
select pictorials from table_1566848_7 where centerfold_model = "ava fabian"
Name the species when petal width is 2.0 and petal length is 4.9
create table table_10477224_1 (species varchar, petal_width varchar, petal_length varchar, PRIMARY KEY (species))
select species from table_10477224_1 where petal_width = "2.0" and petal_length = "4.9"
What is the coverage when power kw is 25kw?
create table table_23915973_1 (coverage varchar, power_kw varchar, PRIMARY KEY (coverage))
select coverage from table_23915973_1 where power_kw = "25kw"
Find the names of all the catalog entries.
create table catalog_contents (catalog_entry_name varchar, PRIMARY KEY (catalog_entry_name))
select distinct (catalog_entry_name) from catalog_contents
What CFL team got their draft pick from North Dakota?
create table table_25085059_1 (cfl_team varchar, college varchar, PRIMARY KEY (cfl_team))
select cfl_team from table_25085059_1 where college = "north dakota"
WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?
create table table_14903627_1 (mixed_doubles varchar, womens_singles varchar, PRIMARY KEY (mixed_doubles))
select mixed_doubles from table_14903627_1 where womens_singles = "kairi viilup"
Find the last names of the members of the club "Bootup Baltimore".
create table club (clubid varchar, clubname varchar, PRIMARY KEY (clubid)); create table student (lname varchar, stuid varchar, PRIMARY KEY (lname)); create table member_of_club (clubid varchar, stuid varchar, PRIMARY KEY (clubid))
select t3.lname from club as t1 join member_of_club as t2 on t1.clubid = t2.clubid join student as t3 on t2.stuid = t3.stuid where t1.clubname = "bootup baltimore"
How many seasons in Tamil occur when the season in Sanskrit is Grishma?
create table table_1740431_3 (season_in_tamil varchar, season_in_sanskrit varchar, PRIMARY KEY (season_in_tamil))
select count(season_in_tamil) from table_1740431_3 where season_in_sanskrit = "grishma"
Who vacated his post when his successor was formally installed on May 11, 1966?
create table table_1847180_3 (vacator varchar, date_of_successors_formal_installation varchar, PRIMARY KEY (vacator))
select vacator from table_1847180_3 where date_of_successors_formal_installation = "may 11, 1966"