answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT home_team FROM table_name_40 WHERE tie_no = "11"
What is the home team when the tie is 11?
CREATE TABLE table_name_40 (home_team VARCHAR, tie_no VARCHAR)
SELECT LOCATION, COUNT(*) FROM railway GROUP BY LOCATION
Show different locations of railways along with the corresponding number of railways at each location.
CREATE TABLE railway (LOCATION VARCHAR)
SELECT title FROM table_29087004_3 WHERE written_by = "Eric Trueheart"
What are the titles of episodes written by Eric Trueheart?
CREATE TABLE table_29087004_3 (title VARCHAR, written_by VARCHAR)
SELECT POSITION, COUNT(*) FROM match_season GROUP BY POSITION
Show the position of players and the corresponding number of players.
CREATE TABLE match_season (POSITION VARCHAR)
SELECT frequency FROM table_13869651_3 WHERE part_number_s_ = "ADO520BIAA5DO"
What is the frequency of the model whose part number is ado520biaa5do?
CREATE TABLE table_13869651_3 (frequency VARCHAR, part_number_s_ VARCHAR)
SELECT outcome FROM table_name_40 WHERE score = "2–6, 1–6"
Tell me the outcome of 2–6, 1–6
CREATE TABLE table_name_40 (outcome VARCHAR, score VARCHAR)
SELECT away_team FROM table_name_88 WHERE home_team = "north melbourne"
Who was the away team playing the home team North Melbourne?
CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR)
SELECT player FROM table_25518547_3 WHERE mls_team = "Philadelphia Union"
What player was drafted by the philadelphia union?
CREATE TABLE table_25518547_3 (player VARCHAR, mls_team VARCHAR)
SELECT country FROM table_name_17 WHERE place = "t6" AND score = 69 - 69 = 138 AND player = "niclas fasth"
What is the country that has a place of T6, a socre of 69-69=138, and where Niclas Fasth played?
CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR)
SELECT county FROM table_name_95 WHERE size > 258 AND mascot = "commodores"
Which County has a Size larger than 258, and a Mascot of commodores?
CREATE TABLE table_name_95 (county VARCHAR, size VARCHAR, mascot VARCHAR)
SELECT COUNT(tonnage_grt) FROM table_name_94 WHERE type = "cargo ship" AND date = "4 feb 16"
what is the total tonnage grt of the cargo ship(s) sunk or captured on 4 feb 16?
CREATE TABLE table_name_94 (tonnage_grt VARCHAR, type VARCHAR, date VARCHAR)
SELECT evening_gown FROM table_12094609_1 WHERE preliminaries = "8.977"
what's the evening gown where preliminaries is 8.977
CREATE TABLE table_12094609_1 (evening_gown VARCHAR, preliminaries VARCHAR)
SELECT name FROM table_name_98 WHERE opened = 2000 AND park = "brighton pier"
What is the name of the roller coaster that opened in 2000 in Brighton Pier?
CREATE TABLE table_name_98 (name VARCHAR, opened VARCHAR, park VARCHAR)
SELECT planet FROM table_name_50 WHERE orbital_period = "3.23 days"
What planet orbits in 3.23 days?
CREATE TABLE table_name_50 (planet VARCHAR, orbital_period VARCHAR)
SELECT place FROM table_name_63 WHERE score = 69 - 72 - 72 = 213
What is the Place of the Player with a Score of 69-72-72=213?
CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR)
SELECT compression_ratio FROM table_1123802_1 WHERE engine = "Wasp Jr. T1B2"
What was the compression ration when the engine was Wasp Jr. T1B2?
CREATE TABLE table_1123802_1 (compression_ratio VARCHAR, engine VARCHAR)
SELECT opponent FROM table_name_6 WHERE date = "april 13"
What were the opponents from the April 13?
CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR)
SELECT player FROM table_name_49 WHERE position = "right wing" AND nationality = "czech republic"
Who has a nationality of Czech Republic and a position of right wing?
CREATE TABLE table_name_49 (player VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT death FROM table_name_1 WHERE husband = "charles, 1st dauphin"
when was the death of the person with husband Charles, 1st dauphin?
CREATE TABLE table_name_1 (death VARCHAR, husband VARCHAR)
SELECT builder FROM table_name_86 WHERE works_number = "16272"
Which Builder has a Works Number of 16272?
CREATE TABLE table_name_86 (builder VARCHAR, works_number VARCHAR)
SELECT COUNT(category) FROM table_1507852_1 WHERE attribute = "onreset"
How many categories are there when the attribute is "onreset"?
CREATE TABLE table_1507852_1 (category VARCHAR, attribute VARCHAR)
SELECT MAX(rank) FROM table_name_62 WHERE time = "1:44.757"
What is the rank of the person with a time of 1:44.757?
CREATE TABLE table_name_62 (rank INTEGER, time VARCHAR)
SELECT AVG(wins) FROM table_name_25 WHERE team = "usa"
How many average wins have USA as the team?
CREATE TABLE table_name_25 (wins INTEGER, team VARCHAR)
SELECT grid FROM table_name_58 WHERE laps < 80 AND driver = "bruce mclaren"
When laps are less than 80 and Bruce mclaren is the driver, what is the grid?
CREATE TABLE table_name_58 (grid VARCHAR, laps VARCHAR, driver VARCHAR)
SELECT romaji_title FROM table_name_43 WHERE tv_station = "tbs" AND episodes < 11
What is the Romanji Title of a show on TBS with less than 11 episodes?
CREATE TABLE table_name_43 (romaji_title VARCHAR, tv_station VARCHAR, episodes VARCHAR)
SELECT motogp_winner FROM table_26781017_1 WHERE circuit = "Catalunya"
Who are all the motogp winners when the circuit was Catalunya?
CREATE TABLE table_26781017_1 (motogp_winner VARCHAR, circuit VARCHAR)
SELECT COUNT(rebounds) FROM table_name_10 WHERE team = "maccabi tel aviv" AND games > 6
How many Rebounds did Maccabi Tel Aviv Team get after Game 6?
CREATE TABLE table_name_10 (rebounds VARCHAR, team VARCHAR, games VARCHAR)
SELECT premiere FROM table_11323532_2 WHERE host = "Lieke van Lexmond Dennis Weening"
What is the premiere where the host is lieke van lexmond dennis weening?
CREATE TABLE table_11323532_2 (premiere VARCHAR, host VARCHAR)
SELECT score FROM table_name_83 WHERE opponent_team = "belgium" AND opponent = "kirsten flipkens"
What is Score, when Opponent Team is Belgium, and when Opponent is Kirsten Flipkens?
CREATE TABLE table_name_83 (score VARCHAR, opponent_team VARCHAR, opponent VARCHAR)
SELECT home_team AS score FROM table_name_27 WHERE venue = "kardinia park"
Who was the home team when the VFL played Kardinia Park?
CREATE TABLE table_name_27 (home_team VARCHAR, venue VARCHAR)
SELECT high_points FROM table_name_39 WHERE date = "march 24"
Who had the highest points of the game on March 24?
CREATE TABLE table_name_39 (high_points VARCHAR, date VARCHAR)
SELECT COUNT(wins) FROM table_16225511_2 WHERE school = "Baylor"
How many wins did Baylor have?
CREATE TABLE table_16225511_2 (wins VARCHAR, school VARCHAR)
SELECT MAX(apps) FROM table_name_22 WHERE season = "total" AND goals > 3
What is the most apps that a has a total season and 3 goals?
CREATE TABLE table_name_22 (apps INTEGER, season VARCHAR, goals VARCHAR)
SELECT T1.fname FROM student AS T1 JOIN lives_in AS T2 ON T1.stuid = T2.stuid JOIN dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.dorm_name = 'Smith Hall'
Find the first name of students who are living in the Smith Hall.
CREATE TABLE student (fname VARCHAR, stuid VARCHAR); CREATE TABLE lives_in (stuid VARCHAR, dormid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR)
SELECT MIN(total) FROM table_name_79 WHERE year_s__won = "1968 , 1971" AND to_par < 11
What is the lowest Total, when Year(s) Won is "1968 , 1971", and when To Par is less than 11?
CREATE TABLE table_name_79 (total INTEGER, year_s__won VARCHAR, to_par VARCHAR)
SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Kaxholmen"
How many hectars of land is in Kaxholmen?
CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR)
SELECT worldwide_gross FROM table_name_60 WHERE movie = "jab tak hai jaan"
How did the jab tak hai jaan movie gross worldwide?
CREATE TABLE table_name_60 (worldwide_gross VARCHAR, movie VARCHAR)
SELECT nation FROM table_26677836_1 WHERE place = 2
What is the nation when the place is 2?
CREATE TABLE table_26677836_1 (nation VARCHAR, place VARCHAR)
SELECT venue FROM table_name_51 WHERE score = "4.10 (34) - 8.12 (60)"
Where was the match with a score of 4.10 (34) - 8.12 (60)?
CREATE TABLE table_name_51 (venue VARCHAR, score VARCHAR)
SELECT ratings FROM table_name_23 WHERE year = 2013
How many Ratings did the 2013 Year have?
CREATE TABLE table_name_23 (ratings VARCHAR, year VARCHAR)
SELECT circuit FROM table_29361707_2 WHERE pole_position = "Valmir Benavides"
Valmir Benavides won pole position at which circuit?
CREATE TABLE table_29361707_2 (circuit VARCHAR, pole_position VARCHAR)
SELECT linda_mccartney FROM table_name_80 WHERE stuart = "electric guitar"
Which Linda McCartney has a Stuart of electric guitar?
CREATE TABLE table_name_80 (linda_mccartney VARCHAR, stuart VARCHAR)
SELECT source FROM table_name_8 WHERE attack = "9,77%"
What Source has an Attack of 9,77%?
CREATE TABLE table_name_8 (source VARCHAR, attack VARCHAR)
SELECT total_produced FROM table_name_49 WHERE service = "freight" AND builder’s_model = "u28c"
What is the total amount of freight produced of u28c?
CREATE TABLE table_name_49 (total_produced VARCHAR, service VARCHAR, builder’s_model VARCHAR)
SELECT points FROM table_13758945_3 WHERE tries_for = "64"
what's the points with tries for being 64
CREATE TABLE table_13758945_3 (points VARCHAR, tries_for VARCHAR)
SELECT SUM(assists) FROM table_name_32 WHERE club = "richmond kickers" AND points > 24
What is the amount of assists for richmond kickers and points larger than 24
CREATE TABLE table_name_32 (assists INTEGER, club VARCHAR, points VARCHAR)
SELECT record FROM table_29846807_5 WHERE team = "Boston University"
When boston university is the team what is the record?
CREATE TABLE table_29846807_5 (record VARCHAR, team VARCHAR)
SELECT player FROM table_name_37 WHERE position = "offensive tackle" AND afl_team = "new york jets"
Which player is an offensive tackle for the New York Jets?
CREATE TABLE table_name_37 (player VARCHAR, position VARCHAR, afl_team VARCHAR)
SELECT score FROM table_23285849_10 WHERE high_points = "J.R. Smith (26)"
When j.r. smith (26) has the highest amount of points what is the score?
CREATE TABLE table_23285849_10 (score VARCHAR, high_points VARCHAR)
SELECT partner FROM table_name_23 WHERE edition = "1988 world group i"
Who was partner for the 1988 world group i edition?
CREATE TABLE table_name_23 (partner VARCHAR, edition VARCHAR)
SELECT MAX(goals) FROM table_name_53 WHERE rank > 3 AND goal_ratio = 0.54
What is the largest value for goals in rank over 3 with goal ration of 0.54?
CREATE TABLE table_name_53 (goals INTEGER, rank VARCHAR, goal_ratio VARCHAR)
SELECT song FROM table_2528382_1 WHERE additional_info = "Drunkard Groom"
Which song has Drunkard Groom listed as additional information?
CREATE TABLE table_2528382_1 (song VARCHAR, additional_info VARCHAR)
SELECT home FROM table_name_61 WHERE date = "march 7"
What is the home team on March 7?
CREATE TABLE table_name_61 (home VARCHAR, date VARCHAR)
SELECT ihsaa_class FROM table_name_51 WHERE school = "taylor"
Which IHSAA Class has a School of taylor?
CREATE TABLE table_name_51 (ihsaa_class VARCHAR, school VARCHAR)
SELECT date FROM table_name_41 WHERE tournament = "konica san jose classic"
When is the tournament of konica san jose classic?
CREATE TABLE table_name_41 (date VARCHAR, tournament VARCHAR)
SELECT MIN(diameter) FROM table_name_71 WHERE longitude = "71.1w"
What's the lowest diameter when the longitude is 71.1w?
CREATE TABLE table_name_71 (diameter INTEGER, longitude VARCHAR)
SELECT T3.course_name, COUNT(*) FROM students AS T1 JOIN student_course_registrations AS T2 ON T1.student_id = T2.student_id JOIN courses AS T3 ON T2.course_id = T3.course_id GROUP BY T2.course_id
How many registed students do each course have? List course name and the number of their registered students?
CREATE TABLE students (student_id VARCHAR); CREATE TABLE courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE student_course_registrations (course_id VARCHAR, student_id VARCHAR)
SELECT institution FROM table_262527_1 WHERE location = "North Newton, Kansas"
what is the institution located in north newton, kansas?
CREATE TABLE table_262527_1 (institution VARCHAR, location VARCHAR)
SELECT barangay FROM table_2004733_2 WHERE area__in_km_2__ = "3.6787"
What's the name of the barangay whose area is 3.6787 km² ?
CREATE TABLE table_2004733_2 (barangay VARCHAR, area__in_km_2__ VARCHAR)
SELECT year FROM table_name_59 WHERE role = "himself" AND title = "epik high's love and delusion"
What is the Year, when Role is "himself", and when Title is "Epik High's Love And Delusion"?
CREATE TABLE table_name_59 (year VARCHAR, role VARCHAR, title VARCHAR)
SELECT number FROM table_name_90 WHERE position = "forward" AND school_club_team = "la salle"
What is the number for the forward position from the school/club team La Salle?
CREATE TABLE table_name_90 (number VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT university_students_and_adults__18yrs + _ FROM table_13555999_1 WHERE senior_high_school__15_18_yrs_ = "26mm"
What amount of the university students and adults ehre the the senior high school is 26mm?
CREATE TABLE table_13555999_1 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, senior_high_school__15_18_yrs_ VARCHAR)
SELECT country FROM table_18812411_3 WHERE r3 = 72 AND player = "Larry Mize"
What country had a r3 at 72, by Larry Mize?
CREATE TABLE table_18812411_3 (country VARCHAR, r3 VARCHAR, player VARCHAR)
SELECT date FROM table_name_14 WHERE tournament = "la quinta"
Which date has a Tournament of la quinta?
CREATE TABLE table_name_14 (date VARCHAR, tournament VARCHAR)
SELECT spouse FROM table_name_82 WHERE birth = "29 september 1766"
Who is the spouse of the person born on 29 September 1766?
CREATE TABLE table_name_82 (spouse VARCHAR, birth VARCHAR)
SELECT 2008 FROM table_name_41 WHERE 2012 = "sf"
Name the 2008 for 2012 of sf
CREATE TABLE table_name_41 (Id VARCHAR)
SELECT venue FROM table_name_45 WHERE home_team = "geelong"
Which Venue has a Home team of geelong?
CREATE TABLE table_name_45 (venue VARCHAR, home_team VARCHAR)
SELECT no_in_series FROM table_15861776_1 WHERE tv_broadcast = "S03E20"
What episode in the series is TV broadcast s03e20?
CREATE TABLE table_15861776_1 (no_in_series VARCHAR, tv_broadcast VARCHAR)
SELECT max_1_min_wind_mph__km_h_ FROM table_name_26 WHERE dates_active = "september22– september28"
Which Max 1-min wind mph (km/h) that has Dates active on september22– september28?
CREATE TABLE table_name_26 (max_1_min_wind_mph__km_h_ VARCHAR, dates_active VARCHAR)
SELECT SUM(laps) FROM table_name_2 WHERE grid < 14 AND time_retired = "out of fuel"
How many laps have a grid under 14 and a time/retired of out of fuel?
CREATE TABLE table_name_2 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
SELECT result FROM table_name_67 WHERE date = "november 23, 2003"
What was the result of the game played on November 23, 2003?
CREATE TABLE table_name_67 (result VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_72 WHERE winning_score = –9(69 - 71 - 67 = 207)
What tournament had a winning score of –9 (69-71-67=207)?
CREATE TABLE table_name_72 (tournament VARCHAR, winning_score VARCHAR)
SELECT MAX(swimsuit) FROM table_name_13 WHERE average < 8.073 AND evening_gown < 8.31 AND interview > 8.23 AND state = "georgia"
What's the highest swimsuit for an average less than 8.073, evening gown less than 8.31, and an interview over 8.23 in georgia?
CREATE TABLE table_name_13 (swimsuit INTEGER, state VARCHAR, interview VARCHAR, average VARCHAR, evening_gown VARCHAR)
SELECT episodes FROM table_14855908_3 WHERE region_1__us_ = "October 13, 2009"
How many episodes were released on DVD in the US on October 13, 2009?
CREATE TABLE table_14855908_3 (episodes VARCHAR, region_1__us_ VARCHAR)
SELECT rnd FROM table_10725629_2 WHERE date = "August 9"
Which rounds were held on August 9?
CREATE TABLE table_10725629_2 (rnd VARCHAR, date VARCHAR)
SELECT MAX(area__km_2__) FROM table_name_41 WHERE location = "alaska" AND population__2000_ = "39" AND rank > 19
What is the largest area in Alaska with a population of 39 and rank over 19?
CREATE TABLE table_name_41 (area__km_2__ INTEGER, rank VARCHAR, location VARCHAR, population__2000_ VARCHAR)
SELECT MIN(average) FROM table_11206916_1 WHERE stadium = "Firs Park"
The firs park stadium had the lowest average attendence of what?
CREATE TABLE table_11206916_1 (average INTEGER, stadium VARCHAR)
SELECT stadium FROM table_28884858_1 WHERE capacity_percentage = "83.9%"
What is the name of the stadium when the capacity percentage is 83.9%
CREATE TABLE table_28884858_1 (stadium VARCHAR, capacity_percentage VARCHAR)
SELECT blocks FROM table_13050003_2 WHERE points = "Zach Randolph (24)"
Who are the blockers where points are scored by Zach Randolph (24)?
CREATE TABLE table_13050003_2 (blocks VARCHAR, points VARCHAR)
SELECT meet FROM table_name_4 WHERE event = "1500m freestyle"
What event had the 1500m freestyle?
CREATE TABLE table_name_4 (meet VARCHAR, event VARCHAR)
SELECT SUM(rank) FROM table_name_95 WHERE total = 11 AND silver > 4
What is the rank of the team with 11 total medals and more than 4 silver medals has?
CREATE TABLE table_name_95 (rank INTEGER, total VARCHAR, silver VARCHAR)
SELECT date FROM table_name_29 WHERE score = "2-0"
When did the score of 2-0 take place?
CREATE TABLE table_name_29 (date VARCHAR, score VARCHAR)
SELECT pole_position FROM table_19908651_3 WHERE winning_driver = "Paul Tracy" AND race_name = "ITT Automotive Grand Prix of Detroit"
Who was at the pole position in the ITT Automotive Grand Prix of Detroit, won by Paul Tracy?
CREATE TABLE table_19908651_3 (pole_position VARCHAR, winning_driver VARCHAR, race_name VARCHAR)
SELECT title FROM table_2182654_6 WHERE directed_by = "Mary Harron"
What was the name of the episode that was directed by Mary Harron?
CREATE TABLE table_2182654_6 (title VARCHAR, directed_by VARCHAR)
SELECT bsu_head_coach FROM table_name_76 WHERE opponent = "louisville" AND year > 1994
Who is the BSU head coach of the tournament after 1994 with louisville as the opponent?
CREATE TABLE table_name_76 (bsu_head_coach VARCHAR, opponent VARCHAR, year VARCHAR)
SELECT AVG(draws) FROM table_name_17 WHERE wins > 1 AND losses = 14 AND against < 1836
What is the average draws with more than 1 win, 14 losses, and against less than 1836?
CREATE TABLE table_name_17 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT COUNT(since) FROM table_name_57 WHERE goals > 6 AND name = "deco"
What is the total number of Since with a Goals larger than 6, and a Name with deco?
CREATE TABLE table_name_57 (since VARCHAR, goals VARCHAR, name VARCHAR)
SELECT position FROM table_name_41 WHERE driver = "bib stillwell"
Can you tell me the Position that has the Driver of bib stillwell?
CREATE TABLE table_name_41 (position VARCHAR, driver VARCHAR)
SELECT driver FROM table_name_34 WHERE constructor = "maserati" AND laps < 18 AND grid < 14 AND time_retired = "oil leak"
Who drove the maserati under 18 laps with an oil leak that had a grid of under 14?
CREATE TABLE table_name_34 (driver VARCHAR, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR, laps VARCHAR)
SELECT event FROM table_name_25 WHERE res = "win" AND time = "n/a" AND method = "submission (triangle choke)"
Which event did he win with a method of submission (triangle choke) and a time of n/a?
CREATE TABLE table_name_25 (event VARCHAR, method VARCHAR, res VARCHAR, time VARCHAR)
SELECT partial_thromboplastin_time FROM table_221653_1 WHERE condition = "Factor X deficiency as seen in amyloid purpura"
What is the partial thromboplastin time when the condition factor x deficiency as seen in amyloid purpura?
CREATE TABLE table_221653_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR)
SELECT title FROM table_name_73 WHERE track_number = "07" AND record_label = "emi" AND release_date = "21 april 2006"
Name The Title which has a Track number of 07, and a Record label of emi on 21 april 2006?
CREATE TABLE table_name_73 (title VARCHAR, release_date VARCHAR, track_number VARCHAR, record_label VARCHAR)
SELECT freestyle_leg FROM table_name_69 WHERE country = "netherlands"
What is the freestyle leg for the Netherlands?
CREATE TABLE table_name_69 (freestyle_leg VARCHAR, country VARCHAR)
SELECT MIN(attendance) FROM table_name_7 WHERE record = "9–26"
What is the lowest number of people in attendance when the record was 9–26?
CREATE TABLE table_name_7 (attendance INTEGER, record VARCHAR)
SELECT date FROM table_name_95 WHERE opponent = "chicago bears"
Opponent of chicago bears involved what date?
CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR)
SELECT Working_year_starts FROM manager ORDER BY LEVEL DESC
Show the working years of managers in descending order of their level.
CREATE TABLE manager (Working_year_starts VARCHAR, LEVEL VARCHAR)
SELECT race FROM table_29690363_3 WHERE fastest_lap = "Josef Newgarden" AND most_laps_led = "Josef Newgarden"
What race did josef newgarden have the fastest lap and lead the most laps?
CREATE TABLE table_29690363_3 (race VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR)
SELECT height__m_ FROM table_name_69 WHERE no_of_hc_climbs > 2 AND most_recent = 2012 AND no_of_times_visited < 48 AND first_time_as_hc_climb = 1989
What is the height with more than 2 HC climbs more recent than 2012, less than 48 times visited, and a first HC climb in 1989?
CREATE TABLE table_name_69 (height__m_ VARCHAR, first_time_as_hc_climb VARCHAR, no_of_times_visited VARCHAR, no_of_hc_climbs VARCHAR, most_recent VARCHAR)
SELECT d_41_√ FROM table_name_20 WHERE d_43_o = "r 13"
Name the D 41 √ for having D 43 of r 13
CREATE TABLE table_name_20 (d_41_√ VARCHAR, d_43_o VARCHAR)
SELECT jury FROM table_name_51 WHERE singer = "kostas bigalis & mirella fragkopoulou"
Kostas Bigalis & Mirella Fragkopoulou the singer had what has the jury?
CREATE TABLE table_name_51 (jury VARCHAR, singer VARCHAR)