answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT opponent_number FROM table_name_1 WHERE result = "w24-7"
Who was the opponent when the result was w24-7?
CREATE TABLE table_name_1 (opponent_number VARCHAR, result VARCHAR)
SELECT MAX(Enrollment) FROM university
What is the maximum enrollment across all schools?
CREATE TABLE university (Enrollment INTEGER)
SELECT polyunsaturated_fat FROM table_name_39 WHERE total_fat = "100g" AND saturated_fat = "7g"
Name the polyunsaturated fat with total fat of 100g and saturated fat of 7g
CREATE TABLE table_name_39 (polyunsaturated_fat VARCHAR, total_fat VARCHAR, saturated_fat VARCHAR)
SELECT source FROM table_name_10 WHERE net_worth_us$__billions_ = 17
What's the source of wealth of the person worth $17 billion?
CREATE TABLE table_name_10 (source VARCHAR, net_worth_us$__billions_ VARCHAR)
SELECT post_season_record_[e_] FROM table_name_55 WHERE mlb_affiliate = "kansas city"
Tell me the post-season record for kansas city
CREATE TABLE table_name_55 (post_season_record_ VARCHAR, e_ VARCHAR, mlb_affiliate VARCHAR)
SELECT outcome FROM table_11326124_3 WHERE round = "2R"
What was the result of round 2r?
CREATE TABLE table_11326124_3 (outcome VARCHAR, round VARCHAR)
SELECT original_air_date FROM table_26565917_2 WHERE us_viewers__millions_ = "14.55"
when did 14.55 people watch?
CREATE TABLE table_26565917_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT nation FROM table_name_67 WHERE date = "2004-07-22"
What is Nation, when Date is "2004-07-22"?
CREATE TABLE table_name_67 (nation VARCHAR, date VARCHAR)
SELECT AVG(wins) FROM table_name_79 WHERE cuts_made < 0
How many wins of average has cuts made less than 0?
CREATE TABLE table_name_79 (wins INTEGER, cuts_made INTEGER)
SELECT home_captain FROM table_name_22 WHERE result = "aus by 218 runs"
Who was the Home captain when the Result was Aus by 218 runs?
CREATE TABLE table_name_22 (home_captain VARCHAR, result VARCHAR)
SELECT winning_team FROM table_name_77 WHERE date = "may 12"
Who was the winning team on May 12?
CREATE TABLE table_name_77 (winning_team VARCHAR, date VARCHAR)
SELECT general_classification FROM table_name_1 WHERE asian_rider_classification = "shinichi fukushima" AND winner = "jeremy hunt"
WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt?
CREATE TABLE table_name_1 (general_classification VARCHAR, asian_rider_classification VARCHAR, winner VARCHAR)
SELECT written_by FROM table_16581695_2 WHERE no_in_series = "4"
Who was the writer of the episode number in series 4?
CREATE TABLE table_16581695_2 (written_by VARCHAR, no_in_series VARCHAR)
SELECT womens_singles FROM table_12104319_1 WHERE mens_doubles = "Imam Sodikin Irawan Andi Tandaputra"
What are the womens singles of imam sodikin irawan andi tandaputra?
CREATE TABLE table_12104319_1 (womens_singles VARCHAR, mens_doubles VARCHAR)
SELECT address_line_1, address_line_2 FROM customers WHERE email_address = "vbogisich@example.org"
Find the address line 1 and 2 of the customer with email "vbogisich@example.org".
CREATE TABLE customers (address_line_1 VARCHAR, address_line_2 VARCHAR, email_address VARCHAR)
SELECT flap FROM table_name_79 WHERE pole > 0 AND podium < 44 AND race < 16
When the pole is larger than 0 and the podium is less than 44, with a race number less than 16, what is the FLap?
CREATE TABLE table_name_79 (flap VARCHAR, race VARCHAR, pole VARCHAR, podium VARCHAR)
SELECT rookie FROM table_name_70 WHERE goalkeeper = "mike gabel"
Who is the rookie goalkeeper Mike Gabel?
CREATE TABLE table_name_70 (rookie VARCHAR, goalkeeper VARCHAR)
SELECT college FROM table_14649522_1 WHERE position = "Wide Receiver" AND pick__number < 130.0
Which college was the wide receiver whose pick was less than 130.0 picked from?
CREATE TABLE table_14649522_1 (college VARCHAR, position VARCHAR, pick__number VARCHAR)
SELECT gran_hamada FROM table_name_67 WHERE block_a = "tatsuhito takaiwa"
Which Gran Hamada has a Block A of tatsuhito takaiwa?
CREATE TABLE table_name_67 (gran_hamada VARCHAR, block_a VARCHAR)
SELECT AVG(week) FROM table_name_80 WHERE result = "l 37–34"
What is the average Week, when Result is l 37–34?
CREATE TABLE table_name_80 (week INTEGER, result VARCHAR)
SELECT notes FROM table_name_41 WHERE country = "germany"
What are the Notes of the Athletes from Germany?
CREATE TABLE table_name_41 (notes VARCHAR, country VARCHAR)
SELECT no_7 FROM table_name_68 WHERE no_1 = "mason" AND no_9 = "jackson" AND no_10 = "logan" AND no_6 = "owen"
What name was number 7 when Mason was number 1, Owen was number 6, Jackson was number 9, and Logan was number 10?
CREATE TABLE table_name_68 (no_7 VARCHAR, no_6 VARCHAR, no_10 VARCHAR, no_1 VARCHAR, no_9 VARCHAR)
SELECT chassis FROM table_28190534_1 WHERE driver = "B. Bira"
Name the chassis for b. bira
CREATE TABLE table_28190534_1 (chassis VARCHAR, driver VARCHAR)
SELECT nationality FROM table_name_53 WHERE college = "southwestern oklahoma"
WHAT IS THE NATIONALITY FOR SOUTHWESTERN OKLAHOMA?
CREATE TABLE table_name_53 (nationality VARCHAR, college VARCHAR)
SELECT AVG(year) FROM table_name_60 WHERE certification = "2x platinum" AND álbum = "xuxa 3" AND sales > 750 OFFSET 000
What was the average year that Xuxa 3 earned the certification 2x platinum, and that the sales were higher than 750,000?
CREATE TABLE table_name_60 (year INTEGER, sales VARCHAR, certification VARCHAR, álbum VARCHAR)
SELECT T1.name, T1.date, T2.name FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id
Show the name and date for each race and its track name.
CREATE TABLE race (name VARCHAR, date VARCHAR, track_id VARCHAR); CREATE TABLE track (name VARCHAR, track_id VARCHAR)
SELECT course FROM table_name_98 WHERE year < 1934 AND location = "midlothian, illinois"
what is the course at midlothian, illinois for a year before 1934?
CREATE TABLE table_name_98 (course VARCHAR, year VARCHAR, location VARCHAR)
SELECT board__inches_ FROM table_name_76 WHERE release < 2004 AND start = "1941"
What are the dimensions in inches of the board released before 2004, that started in 1941?
CREATE TABLE table_name_76 (board__inches_ VARCHAR, release VARCHAR, start VARCHAR)
SELECT second_member FROM table_name_15 WHERE first_party = "tory" AND year < 1804 AND first_member = "henry isherwood"
Who is the second member ewarlier than 1804 when Tory Henry Isherwood is the first member?
CREATE TABLE table_name_15 (second_member VARCHAR, first_member VARCHAR, first_party VARCHAR, year VARCHAR)
SELECT date FROM table_name_41 WHERE score = "4-3"
What is the date of the game with a score of 4-3?
CREATE TABLE table_name_41 (date VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_87 WHERE week = 3
Who was the opponent the falcons played against on week 3?
CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR)
SELECT best_score FROM table_name_30 WHERE dance = "freestyle"
What is the best score of the dance freestyle?
CREATE TABLE table_name_30 (best_score VARCHAR, dance VARCHAR)
SELECT highest_finish FROM table_name_48 WHERE most_recent_finish = "2nd"
What is the Highest finish with a Most recent finish that was 2nd?
CREATE TABLE table_name_48 (highest_finish VARCHAR, most_recent_finish VARCHAR)
SELECT MIN(pick__number) FROM table_name_15 WHERE league_from = "elitserien (sweden)"
What is the lowest pick from Elitserien (Sweden)?
CREATE TABLE table_name_15 (pick__number INTEGER, league_from VARCHAR)
SELECT score FROM table_15869204_7 WHERE game = 51
What was the score in game 51?
CREATE TABLE table_15869204_7 (score VARCHAR, game VARCHAR)
SELECT MAX(ep) FROM table_20967430_3 WHERE prod_code = "5A06"
When 5a06 is the production code what is the highest episode?
CREATE TABLE table_20967430_3 (ep INTEGER, prod_code VARCHAR)
SELECT city_of_license FROM table_name_80 WHERE frequency = "103.5 mhz"
Name the city of license with frequency of 103.5 mhz
CREATE TABLE table_name_80 (city_of_license VARCHAR, frequency VARCHAR)
SELECT T2.dept_name FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY COUNT(*) LIMIT 1
What is the name of department where has the smallest number of professors?
CREATE TABLE professor (dept_code VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR)
SELECT competition FROM table_name_31 WHERE opponent = "police" AND venue = "selayang stadium"
Which competition had an opponent of Police at the Selayang Stadium?
CREATE TABLE table_name_31 (competition VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT MIN(extra_points) FROM table_name_6 WHERE points = 5 AND touchdowns < 1
How many Extra Points were scored by the Player who had 5 Points and less than 1 Touchdowns?
CREATE TABLE table_name_6 (extra_points INTEGER, points VARCHAR, touchdowns VARCHAR)
SELECT record FROM table_name_59 WHERE game = 58
What was the record when they played game 58?
CREATE TABLE table_name_59 (record VARCHAR, game VARCHAR)
SELECT stockholm FROM table_name_54 WHERE malmö = "2"
What was Stockholm's score when Malmo scored 2?
CREATE TABLE table_name_54 (stockholm VARCHAR, malmö VARCHAR)
SELECT venue FROM table_name_24 WHERE away_team = "carlton"
what was the venue that hosted Carlton as the away team?
CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR)
SELECT SUM(championship) FROM table_name_55 WHERE league_cup < 0
What is the total championships that the league cup is less than 0?
CREATE TABLE table_name_55 (championship INTEGER, league_cup INTEGER)
SELECT location FROM table_18461635_1 WHERE county = "Sussex"
Where is the team in Sussex county located?
CREATE TABLE table_18461635_1 (location VARCHAR, county VARCHAR)
SELECT place FROM table_name_50 WHERE score = 71 - 70 - 73 - 71 = 285
What place had a score of 71-70-73-71=285?
CREATE TABLE table_name_50 (place VARCHAR, score VARCHAR)
SELECT MIN(points) FROM table_name_88 WHERE grid = "2"
What is the point low with 2 grids?
CREATE TABLE table_name_88 (points INTEGER, grid VARCHAR)
SELECT order FROM table_name_26 WHERE family = "vespertilionidae" AND name = "northern long-eared myotis"
which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis?
CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR)
SELECT high_rebounds FROM table_name_15 WHERE location_attendance = "madison square garden unknown" AND date = "may 18"
What is High Rebounds, when Location Attendance is "Madison Square Garden Unknown", and when Date is "May 18"?
CREATE TABLE table_name_15 (high_rebounds VARCHAR, location_attendance VARCHAR, date VARCHAR)
SELECT team FROM table_11207040_5 WHERE stadium = "Palmerston Park"
What team plays at Palmerston Park?
CREATE TABLE table_11207040_5 (team VARCHAR, stadium VARCHAR)
SELECT t1.catalog_name, t1.date_of_publication FROM catalogs AS t1 JOIN catalog_structure AS t2 ON t1.catalog_id = t2.catalog_id WHERE catalog_level_number > 5
Find the names and publication dates of all catalogs that have catalog level number greater than 5.
CREATE TABLE catalogs (catalog_name VARCHAR, date_of_publication VARCHAR, catalog_id VARCHAR); CREATE TABLE catalog_structure (catalog_id VARCHAR)
SELECT score FROM table_name_38 WHERE away_team = "bolton wanderers"
What was the score when Bolton Wanderers were the away team?
CREATE TABLE table_name_38 (score VARCHAR, away_team VARCHAR)
SELECT pakistanis FROM table_27257896_2 WHERE working_force_of_hk = "32.8%"
If the working force of HK is 32.8%, what are the Pakistanis' %?
CREATE TABLE table_27257896_2 (pakistanis VARCHAR, working_force_of_hk VARCHAR)
SELECT first_publisher FROM table_name_8 WHERE year = 2007
What is the First Publisher in 2007?
CREATE TABLE table_name_8 (first_publisher VARCHAR, year VARCHAR)
SELECT SUM(round) FROM table_name_40 WHERE player = "joe taylor"
Which round was Joe Taylor selected in?
CREATE TABLE table_name_40 (round INTEGER, player VARCHAR)
SELECT 1 AS st_leg FROM table_name_8 WHERE team_1 = "water corporation"
What's the score of the 1st leg when Water Corporation was Team 1?
CREATE TABLE table_name_8 (team_1 VARCHAR)
SELECT h___a FROM table_name_86 WHERE opponents = "kashima antlers"
Was the game with Kashima antlers at home or away?
CREATE TABLE table_name_86 (h___a VARCHAR, opponents VARCHAR)
SELECT goals FROM table_12321870_32 WHERE matches = "17"
How many goals were scored by the player who played 17 matches?
CREATE TABLE table_12321870_32 (goals VARCHAR, matches VARCHAR)
SELECT result FROM table_name_3 WHERE opponent = "washington redskins"
Which Result has an Opponent of washington redskins?
CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR)
SELECT team FROM table_10420426_1 WHERE series = "Formula Renault 2.0 NEC"
What was the team where series is formula renault 2.0 nec?
CREATE TABLE table_10420426_1 (team VARCHAR, series VARCHAR)
SELECT AVG(wins) FROM table_name_84 WHERE class = "250cc" AND team = "bultaco" AND year > 1966 AND points = 8
What is the average wins in 250cc class for Bultaco with 8 points later than 1966?
CREATE TABLE table_name_84 (wins INTEGER, points VARCHAR, year VARCHAR, class VARCHAR, team VARCHAR)
SELECT club FROM table_27374004_2 WHERE chairman = "Roger Lambrecht"
What is the club when the chairman is roger lambrecht?
CREATE TABLE table_27374004_2 (club VARCHAR, chairman VARCHAR)
SELECT COUNT(station_type) FROM table_23394920_1 WHERE callsign = "DXCC-TV"
When dxcc-tv is the call sign how many station types are there?
CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR)
SELECT 1 AS st_leg FROM table_name_55 WHERE team_1 = "budoni (sardinia)"
Tell me the 1st leg for team being budoni (Sardinia)
CREATE TABLE table_name_55 (team_1 VARCHAR)
SELECT lyrics__l____music__m_ FROM table_name_76 WHERE place = "23"
Who did the Lyrics (l) / Music (m) for the song in 23 Place?
CREATE TABLE table_name_76 (lyrics__l____music__m_ VARCHAR, place VARCHAR)
SELECT SUM(points) FROM table_name_8 WHERE season = "1963" AND games > 30
What's the sum of points for the 1963 season when there are more than 30 games?
CREATE TABLE table_name_8 (points INTEGER, season VARCHAR, games VARCHAR)
SELECT AVG(year) FROM table_name_19 WHERE actor = "idris elba"
What is the average year that Idris Elba was nominated for or won an award?
CREATE TABLE table_name_19 (year INTEGER, actor VARCHAR)
SELECT COUNT(record) FROM table_22815259_1 WHERE cowboys_points = 12
Name the number of record for 12 cowboys points
CREATE TABLE table_22815259_1 (record VARCHAR, cowboys_points VARCHAR)
SELECT MAX(rank) FROM table_name_95 WHERE taijiquan > 9.64 AND total > 19.69
What is the highest rank of the athlete with a Taijiquan higher than 9.64 and a total more than 19.69?
CREATE TABLE table_name_95 (rank INTEGER, taijiquan VARCHAR, total VARCHAR)
SELECT november_3 FROM table_25284864_3 WHERE june_10_11 = "147"
What is the November 3 result when June 10-11 is 147?
CREATE TABLE table_25284864_3 (november_3 VARCHAR, june_10_11 VARCHAR)
SELECT nation FROM table_name_73 WHERE lead = "alexandra bruckmiller"
Which Nation has a Lead of alexandra bruckmiller?
CREATE TABLE table_name_73 (nation VARCHAR, lead VARCHAR)
SELECT points FROM table_name_54 WHERE wins > 15 AND losses < 10
How many points has more than 15 wins and less than 10 losses?
CREATE TABLE table_name_54 (points VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT SUM(floors) FROM table_name_10 WHERE name = "kölntriangle" AND rank < 63
what is the total of floors when the name is kölntriangle and rank is less thank 63?
CREATE TABLE table_name_10 (floors INTEGER, name VARCHAR, rank VARCHAR)
SELECT place FROM table_name_37 WHERE score = 67 - 76 - 74 - 67 = 284
What is the Place of the Player with a Score of 67-76-74-67=284?
CREATE TABLE table_name_37 (place VARCHAR, score VARCHAR)
SELECT SUM(points) FROM table_name_80 WHERE chassis = "maserati 250f" AND entrant = "officine alfieri maserati"
Name the sum of points for chassis of maserati 250f and entrant of officine alfieri maserati
CREATE TABLE table_name_80 (points INTEGER, chassis VARCHAR, entrant VARCHAR)
SELECT SUM(fastest_laps) FROM table_name_81 WHERE poles = 4 AND races > 178
How many Fastest Laps have Poles of 4, and Races larger than 178?
CREATE TABLE table_name_81 (fastest_laps INTEGER, poles VARCHAR, races VARCHAR)
SELECT COUNT(original_airdate) FROM table_20124413_1 WHERE prod_code = "1.17"
When 1.17 is the production code how many air dates are there?
CREATE TABLE table_20124413_1 (original_airdate VARCHAR, prod_code VARCHAR)
SELECT MIN(matches) FROM table_21486890_1 WHERE not_out = 44
Name the least matches for not out being 44
CREATE TABLE table_21486890_1 (matches INTEGER, not_out VARCHAR)
SELECT attendance FROM table_name_51 WHERE match_no = "31"
How many people attended Match No. 31?
CREATE TABLE table_name_51 (attendance VARCHAR, match_no VARCHAR)
SELECT phone, room, building FROM Faculty WHERE Fname = "Jerry" AND Lname = "Prince"
Show the phone, room, and building for the faculty named Jerry Prince.
CREATE TABLE Faculty (phone VARCHAR, room VARCHAR, building VARCHAR, Fname VARCHAR, Lname VARCHAR)
SELECT height FROM table_name_93 WHERE hometown = "huntington, wv"
What is the height of the player who is from Huntington, WV?
CREATE TABLE table_name_93 (height VARCHAR, hometown VARCHAR)
SELECT team FROM table_2175685_1 WHERE race_time = "3:12:30"
What team won when the race time was 3:12:30?
CREATE TABLE table_2175685_1 (team VARCHAR, race_time VARCHAR)
SELECT james_e_holmes FROM table_25330991_3 WHERE rockingham_county = "Joe Baez"
Name the james e. holmes for joe baez
CREATE TABLE table_25330991_3 (james_e_holmes VARCHAR, rockingham_county VARCHAR)
SELECT COUNT(grid) FROM table_name_20 WHERE constructor = "talbot-lago - talbot" AND laps < 83 AND driver = "johnny claes"
How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes?
CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR, constructor VARCHAR, laps VARCHAR)
SELECT T2.faculty FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = t2.campus JOIN degrees AS T3 ON T1.id = t3.campus AND t2.year = t3.year WHERE t2.year = 2002 ORDER BY t3.degrees DESC LIMIT 1
How many faculty lines are there in the university that conferred the most number of degrees in year 2002?
CREATE TABLE campuses (id VARCHAR); CREATE TABLE faculty (faculty VARCHAR); CREATE TABLE degrees (Id VARCHAR)
SELECT production_code FROM table_22181917_2 WHERE us_viewers__millions_ = "8.56"
What is the production code for the episode with 8.56 million U.S. viewers?
CREATE TABLE table_22181917_2 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
SELECT MIN(goals_for) FROM table_name_31 WHERE played > 30
What is the lowest Goals, when Played is greater than 30?
CREATE TABLE table_name_31 (goals_for INTEGER, played INTEGER)
SELECT COUNT(tomina_municipality) FROM table_2509350_3 WHERE villa_alcalá_municipality = 176
Name the number of tomina for villa alcala for 176
CREATE TABLE table_2509350_3 (tomina_municipality VARCHAR, villa_alcalá_municipality VARCHAR)
SELECT AVG(crowd) FROM table_name_43 WHERE away_team = "melbourne"
I want to know the average crowd for away team of melbourne
CREATE TABLE table_name_43 (crowd INTEGER, away_team VARCHAR)
SELECT years FROM table_name_43 WHERE decile = 4 AND authority = "state" AND name = "mapiu school"
Which years have a Decile of 4, an Authority of state, and a Name of mapiu school?
CREATE TABLE table_name_43 (years VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)
SELECT year__ceremony_ FROM table_17350255_1 WHERE result = "Not Nominated" AND film_title_used_in_nomination = "My Mother's Teahouse"
What was the year when My Mother's Teahouse was not nominated?
CREATE TABLE table_17350255_1 (year__ceremony_ VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT no5 FROM table_name_29 WHERE no1 = "lena claudisabel" AND no2 = "lena sylvie"
Who is no. 5 when Lena Claudisabel is no. 1 and Lena Sylvie is no. 2?
CREATE TABLE table_name_29 (no5 VARCHAR, no1 VARCHAR, no2 VARCHAR)
SELECT round FROM table_13328239_4 WHERE venue = "Knowsley Road" AND result = "Lose"
What round was held at Knowsley Road, resulting in a lose.
CREATE TABLE table_13328239_4 (round VARCHAR, venue VARCHAR, result VARCHAR)
SELECT AVG(played) FROM table_name_32 WHERE club = "burgos cf" AND draws < 7
What is the average Played, when Club is "Burgos CF", and when Draws is less than 7?
CREATE TABLE table_name_32 (played INTEGER, club VARCHAR, draws VARCHAR)
SELECT COUNT(result) FROM table_1342292_45 WHERE incumbent = "Dave E. Satterfield, Jr."
In how many districts is the incumbent Dave E. Satterfield, Jr.
CREATE TABLE table_1342292_45 (result VARCHAR, incumbent VARCHAR)
SELECT COUNT(cmdlets) FROM table_14465871_2 WHERE version = "2008"
How many of the cmdlets are the 2008 version?
CREATE TABLE table_14465871_2 (cmdlets VARCHAR, version VARCHAR)
SELECT COUNT(fastest_lap) FROM table_1137718_2 WHERE location = "Silverstone"
How many drivers had the fastest lap at Silverstone?
CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, location VARCHAR)
SELECT party FROM table_1341707_15 WHERE district = "Illinois 12"
What party did the incumbent from the Illinois 12 district belong to?
CREATE TABLE table_1341707_15 (party VARCHAR, district VARCHAR)
SELECT length FROM table_name_53 WHERE song_title = "ma ke jaisi"
What is the average length for the song "Ma Ke Jaisi"?
CREATE TABLE table_name_53 (length VARCHAR, song_title VARCHAR)
SELECT 1955 FROM table_name_78 WHERE 1961 = "n/a"
what is 1955 when 1961 is n/a?
CREATE TABLE table_name_78 (Id VARCHAR)