answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT attendance FROM table_name_27 WHERE opponent = "middlesbrough"
What is the attendance rate for the Middlesbrough opponent?
CREATE TABLE table_name_27 (attendance VARCHAR, opponent VARCHAR)
SELECT AVG(drop_zone) AS Time FROM table_name_22 WHERE drop_zone = "n" AND troop_carrier_group = "1st pathfinder prov."
What is the average drop zone time in the N drop zone for the 1st Pathfinder Prov.?
CREATE TABLE table_name_22 (drop_zone INTEGER, troop_carrier_group VARCHAR)
SELECT result FROM table_name_7 WHERE year < 2000
What were the results before the year 2000?
CREATE TABLE table_name_7 (result VARCHAR, year INTEGER)
SELECT mascot FROM table_15873547_1 WHERE colors = "Green and Navy"
What is the mascot with the colors green and navy?
CREATE TABLE table_15873547_1 (mascot VARCHAR, colors VARCHAR)
SELECT type FROM table_name_7 WHERE moving_to = "valenciennes"
What type is shown with a moving to of valenciennes?
CREATE TABLE table_name_7 (type VARCHAR, moving_to VARCHAR)
SELECT MAX(norwegian_americans__2000_) FROM table_1182314_5 WHERE norwegian_americans__1990_ = 9170
what is the maximum norwegian americans (2000) where norwegian americans (1990) is 9170
CREATE TABLE table_1182314_5 (norwegian_americans__2000_ INTEGER, norwegian_americans__1990_ VARCHAR)
SELECT runner_up_a FROM table_22756549_1 WHERE constituency = "Nagapattinam"
Who was the runner up for the Nagapattinam constituency?
CREATE TABLE table_22756549_1 (runner_up_a VARCHAR, constituency VARCHAR)
SELECT reported_cost FROM table_1373542_1 WHERE acquired_from = "Standard & Poor's"
What was the reported cost of the asset acquired from Standard & Poor's?
CREATE TABLE table_1373542_1 (reported_cost VARCHAR, acquired_from VARCHAR)
SELECT SUM(pata) FROM table_name_38 WHERE model = "nforce professional 3400 mcp"
How many PATAs does an nForce Professional 3400 MCP have?
CREATE TABLE table_name_38 (pata INTEGER, model VARCHAR)
SELECT AVG(total) FROM table_name_36 WHERE rank = 6 AND silver < 0
What is the average Total for the Rank of 6, when Silver is smaller than 0?
CREATE TABLE table_name_36 (total INTEGER, rank VARCHAR, silver VARCHAR)
SELECT name FROM channel WHERE OWNER = 'CCTV' OR OWNER = 'HBS'
What are the names of the channels owned by CCTV or HBS?
CREATE TABLE channel (name VARCHAR, OWNER VARCHAR)
SELECT original_artist FROM table_21501564_1 WHERE result = "Selected"
Who was the originally artist when Jasmine Murray was selected?
CREATE TABLE table_21501564_1 (original_artist VARCHAR, result VARCHAR)
SELECT australian FROM table_name_79 WHERE american = "ɑ"
What is the Australian for the American ɑ?
CREATE TABLE table_name_79 (australian VARCHAR, american VARCHAR)
SELECT jockey FROM table_20626467_1 WHERE class = "Group 1" AND venue = "Randwick" AND distance = "1400m"
Who was the jockey in group 1 at the 1400m distance at randwick?
CREATE TABLE table_20626467_1 (jockey VARCHAR, distance VARCHAR, class VARCHAR, venue VARCHAR)
SELECT phoneme FROM table_name_78 WHERE example = "/umsʁ/"
Name the phoneme when the example is /umsʁ/
CREATE TABLE table_name_78 (phoneme VARCHAR, example VARCHAR)
SELECT fleet_number FROM table_name_62 WHERE year = "19xx"
What is fleet number for the year of 19xx?
CREATE TABLE table_name_62 (fleet_number VARCHAR, year VARCHAR)
SELECT MAX(attendance) FROM table_name_64 WHERE opponent = "club brugge" AND venue = "a"
What is the highest attendance for the opponents Club Brugge in Venue A?
CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR, venue VARCHAR)
SELECT SUM(dwellings) FROM table_name_37 WHERE neighbourhood = "beverly heights" AND change___percentage_ > -5.2
How many Dwellings does Beverly Heights have that have a change percent larger than -5.2?
CREATE TABLE table_name_37 (dwellings INTEGER, neighbourhood VARCHAR, change___percentage_ VARCHAR)
SELECT AVG(played) FROM table_name_17 WHERE drawn > 1 AND against > 16
What is the average played that has a drawn greater than 1, with an against greater than 16?
CREATE TABLE table_name_17 (played INTEGER, drawn VARCHAR, against VARCHAR)
SELECT team FROM table_name_82 WHERE winner = "mark skaife" AND series = "atcc round 7"
What is the Team of Winner Mark Skaife in ATCC Round 7?
CREATE TABLE table_name_82 (team VARCHAR, winner VARCHAR, series VARCHAR)
SELECT civil_parish FROM table_28802165_1 WHERE townland = "Aghafullim"
What is the civil parish of Aghafullim?
CREATE TABLE table_28802165_1 (civil_parish VARCHAR, townland VARCHAR)
SELECT score FROM table_name_13 WHERE opponent = "tampa bay lightning"
What is Score, when Opponent is "Tampa Bay Lightning"?
CREATE TABLE table_name_13 (score VARCHAR, opponent VARCHAR)
SELECT SUM(goals) FROM table_name_78 WHERE club = "hallelujah fc" AND rank = "7"
Which Goals have a Club of hallelujah fc, and a Rank of 7?
CREATE TABLE table_name_78 (goals INTEGER, club VARCHAR, rank VARCHAR)
SELECT COUNT(no) FROM table_22824297_1 WHERE hometown = "Canton, Illinois"
How many values for number occur with the hometown of Canton, Illinois?
CREATE TABLE table_22824297_1 (no VARCHAR, hometown VARCHAR)
SELECT year_of_last_win FROM table_14286908_1 WHERE total_finals = 10
In what year was the total finals at 10?
CREATE TABLE table_14286908_1 (year_of_last_win VARCHAR, total_finals VARCHAR)
SELECT MAX(wins) FROM table_18018214_3
What was the highest number of wins for any team?
CREATE TABLE table_18018214_3 (wins INTEGER)
SELECT developer FROM table_name_12 WHERE release_date = "2010-12-16" AND title = "facebook"
What Developer has a Release date of 2010-12-16, and a Title of facebook?
CREATE TABLE table_name_12 (developer VARCHAR, release_date VARCHAR, title VARCHAR)
SELECT runner_up_a FROM table_22752982_5 WHERE winner = "K. P. Ramalingam"
Who was the runner-up (a) if K. P. Ramalingam won the election?
CREATE TABLE table_22752982_5 (runner_up_a VARCHAR, winner VARCHAR)
SELECT COUNT(title_and_source) FROM table_13663434_1 WHERE pal__295_ = "Yes" AND jp__210_ = "Yes"
how many title and source with pal -295- being yes and jp -210- being yes
CREATE TABLE table_13663434_1 (title_and_source VARCHAR, pal__295_ VARCHAR, jp__210_ VARCHAR)
SELECT MAX(extra_points_1_point) FROM table_name_59 WHERE total_points < 8
Which Extra points 1 point is the highest one that has a Total Points smaller than 8?
CREATE TABLE table_name_59 (extra_points_1_point INTEGER, total_points INTEGER)
SELECT MAX(losses) FROM table_name_99 WHERE byes > 2
What were the highest losses for a byes larger than 2?
CREATE TABLE table_name_99 (losses INTEGER, byes INTEGER)
SELECT MIN(game) FROM table_name_88 WHERE date = "april 25"
What was the game on April 25?
CREATE TABLE table_name_88 (game INTEGER, date VARCHAR)
SELECT date FROM table_name_38 WHERE time = "17:37" AND set_4 = "25–15"
What is the Date with a Time of 17:37, and the Set 4 is 25–15?
CREATE TABLE table_name_38 (date VARCHAR, time VARCHAR, set_4 VARCHAR)
SELECT opponent FROM table_name_95 WHERE round < 4 AND event = "ufc 90"
Who was the opponent during the UFC 90 event with a fight that lasted less than 4 rounds?
CREATE TABLE table_name_95 (opponent VARCHAR, round VARCHAR, event VARCHAR)
SELECT method FROM table_name_86 WHERE round = "3" AND res = "loss" AND event = "juiz de fora - fight 1"
Which method had a 3 rounds, result in a loss and the Juiz de Fora - fight 1 event?
CREATE TABLE table_name_86 (method VARCHAR, event VARCHAR, round VARCHAR, res VARCHAR)
SELECT runner_up FROM table_25058269_1 WHERE season = "2011–12"
Who is the runner-up for season 2011–12?
CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)
SELECT country FROM table_name_35 WHERE player = "nick price"
What country is Nick Price from?
CREATE TABLE table_name_35 (country VARCHAR, player VARCHAR)
SELECT Record_Company FROM orchestra WHERE Year_of_Founded < 2003 INTERSECT SELECT Record_Company FROM orchestra WHERE Year_of_Founded > 2003
Show the record companies shared by orchestras founded before 2003 and after 2003.
CREATE TABLE orchestra (Record_Company VARCHAR, Year_of_Founded INTEGER)
SELECT COUNT(goals_against) FROM table_name_13 WHERE goal_difference = 0 AND wins = 12 AND goals_for > 44
How many "goals against" were scored at the club that had a "goal difference" of 0, 12 wins, and more than 44 goals?
CREATE TABLE table_name_13 (goals_against VARCHAR, goals_for VARCHAR, goal_difference VARCHAR, wins VARCHAR)
SELECT airport FROM table_name_77 WHERE country = "vietnam"
What airport is in Vietnam?
CREATE TABLE table_name_77 (airport VARCHAR, country VARCHAR)
SELECT place FROM table_name_66 WHERE player = "kirk triplett"
What is Kirk Triplett's Place?
CREATE TABLE table_name_66 (place VARCHAR, player VARCHAR)
SELECT player FROM table_1013129_10 WHERE position = "Centre" AND nhl_team = "Florida Panthers"
NHL players are all centre in Florida panthers.
CREATE TABLE table_1013129_10 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)
SELECT AVG(height__m_) FROM table_name_45 WHERE class = "hewitt" AND prom__m_ < 86 AND peak = "gragareth"
What is the average height for hewitt class, with prom less than 86, and a Peak of gragareth?
CREATE TABLE table_name_45 (height__m_ INTEGER, peak VARCHAR, class VARCHAR, prom__m_ VARCHAR)
SELECT android_version FROM table WHERE code_name = "Lotus"
What is the Android version is the code name is Lotus?
CREATE TABLE table (android_version VARCHAR, code_name VARCHAR)
SELECT drew FROM table_name_52 WHERE round = "third place" AND season = "1999-2000"
What is the drew for the 1999-2000 season when they were in third place?
CREATE TABLE table_name_52 (drew VARCHAR, round VARCHAR, season VARCHAR)
SELECT MIN(total_points) FROM table_name_84 WHERE artist = "karine trécy" AND place < 12
What is the lowest total points Karine Trécy has with a less than 12 place?
CREATE TABLE table_name_84 (total_points INTEGER, artist VARCHAR, place VARCHAR)
SELECT AVG(points) FROM table_name_42 WHERE engine = "ford xb" AND team = "project indy"
What are the average points for the Project Indy team that has the Ford xb engine?
CREATE TABLE table_name_42 (points INTEGER, engine VARCHAR, team VARCHAR)
SELECT studio FROM table_name_33 WHERE gross_rental = "$7,500,000"
What is the Studio of the Film with a Gross rental of $7,500,000?
CREATE TABLE table_name_33 (studio VARCHAR, gross_rental VARCHAR)
SELECT SUM(hoursperweek), SUM(gamesplayed) FROM Sportsinfo AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.Fname = "David" AND T2.Lname = "Shieber"
Show total hours per week and number of games played for student David Shieber.
CREATE TABLE Student (StuID VARCHAR, Fname VARCHAR, Lname VARCHAR); CREATE TABLE Sportsinfo (StuID VARCHAR)
SELECT place FROM table_name_52 WHERE country = "united states" AND money___$__ = "200"
What is the ranking for the United States when the money is $200?
CREATE TABLE table_name_52 (place VARCHAR, country VARCHAR, money___$__ VARCHAR)
SELECT MIN(earnings___) AS $__ FROM table_name_34 WHERE player = "vijay singh" AND wins > 24
What is the lowest earnings of Vijay Singh who had more than 24 wins?
CREATE TABLE table_name_34 (earnings___ INTEGER, player VARCHAR, wins VARCHAR)
SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = "Morning" INTERSECT SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = "Night"
find the program owners that have some programs in both morning and night time.
CREATE TABLE broadcast (program_id VARCHAR, Time_of_day VARCHAR); CREATE TABLE program (owner VARCHAR, program_id VARCHAR)
SELECT MIN(crowd) FROM table_name_65 WHERE away_team = "carlton"
What was the lowest crowd size when Carlton was the away team.
CREATE TABLE table_name_65 (crowd INTEGER, away_team VARCHAR)
SELECT MIN(points) FROM table_name_24 WHERE name = "ehc münchen ii" AND position < 7
what is the lowest points when name is ehc münchen ii and position is less than 7?
CREATE TABLE table_name_24 (points INTEGER, name VARCHAR, position VARCHAR)
SELECT starring_actors FROM table_18540104_1 WHERE time_frame = "Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx"
Who is the star of the program on Thursdays 22:00~22:54 2005-04-xx to 2005-06-xx?
CREATE TABLE table_18540104_1 (starring_actors VARCHAR, time_frame VARCHAR)
SELECT MAX(weight__kg_) FROM table_name_24 WHERE position = "scrum half"
What is the highest weight of the position scrum half?
CREATE TABLE table_name_24 (weight__kg_ INTEGER, position VARCHAR)
SELECT time FROM table_name_88 WHERE heat = 3 AND lane > 3 AND nationality = "chinese taipei"
What is the Time of the swimmer from Chinese Taipei in Heat 3?
CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR)
SELECT COUNT(_number) FROM table_19982699_1 WHERE director = "Robert Young"
How many total number have robert young as the director?
CREATE TABLE table_19982699_1 (_number VARCHAR, director VARCHAR)
SELECT MIN(freight_carried_s_tonne) FROM table_12791809_1 WHERE super_b_capacity_reached_[_citation_needed_] = "February 26"
What is the least amount of freight carried when the super b capacity reached was February 26?
CREATE TABLE table_12791809_1 (freight_carried_s_tonne INTEGER, super_b_capacity_reached_ VARCHAR, _citation_needed_ VARCHAR)
SELECT status FROM table_name_29 WHERE co_contestant__yaar_vs_pyaar_ = "tina parekh"
Which Status has a Co-contestant (Yaar vs. Pyaar) of tina parekh?
CREATE TABLE table_name_29 (status VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT AVG(points) FROM table_name_23 WHERE tyres = "b" AND chassis = "tf109"
Tell me the average points with tyres of b and chassis of tf109
CREATE TABLE table_name_23 (points INTEGER, tyres VARCHAR, chassis VARCHAR)
SELECT rank FROM table_name_46 WHERE name = "svetlana fedorenko"
What was the rank of Svetlana Fedorenko?
CREATE TABLE table_name_46 (rank VARCHAR, name VARCHAR)
SELECT MIN(game) FROM table_name_93 WHERE record = "5-1-3"
Name the least game for record of 5-1-3
CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)
SELECT date_of_vacancy FROM table_27133147_3 WHERE incoming_head_coach = "Carlos Azenha"
If the incoming head coach is Carlos Azenha, what is the date of vacancy?
CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, incoming_head_coach VARCHAR)
SELECT result FROM table_name_44 WHERE attendance = 960
What is the result when the attendance is 960?
CREATE TABLE table_name_44 (result VARCHAR, attendance VARCHAR)
SELECT population FROM table_171361_1 WHERE status = "City"
What is the population of each community with city status?
CREATE TABLE table_171361_1 (population VARCHAR, status VARCHAR)
SELECT greek FROM table_name_63 WHERE latin = "f, y, u/v/w"
to the Latin of f, y, u/v/w?
CREATE TABLE table_name_63 (greek VARCHAR, latin VARCHAR)
SELECT COUNT(report) FROM table_10706961_2 WHERE winning_team = "Forsythe Racing" AND pole_position = "Teo Fabi"
How many reports are there in the race that Forsythe Racing won and Teo Fabi had the pole position in?
CREATE TABLE table_10706961_2 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR)
SELECT standing_broad_jump__cm_ FROM table_name_67 WHERE grade = "b"
Which standing broad jump (cm) had the b grade?
CREATE TABLE table_name_67 (standing_broad_jump__cm_ VARCHAR, grade VARCHAR)
SELECT womens_singles FROM table_12266757_1 WHERE season = "1958/1959"
Who won the womens singles in the 1958/1959 season?
CREATE TABLE table_12266757_1 (womens_singles VARCHAR, season VARCHAR)
SELECT cfl_team FROM table_21321804_3 WHERE college = "Nebraska"
What team does the player who went to Nebraska play for?
CREATE TABLE table_21321804_3 (cfl_team VARCHAR, college VARCHAR)
SELECT MAX(attendance) FROM table_name_47 WHERE opponent = "at kansas city chiefs"
What is the highest number in attendance against the game at Kansas City Chiefs?
CREATE TABLE table_name_47 (attendance INTEGER, opponent VARCHAR)
SELECT school FROM table_name_27 WHERE national_championships = 2 AND city = "orlando"
Which School has a National Championships of 2, and a City of orlando?
CREATE TABLE table_name_27 (school VARCHAR, national_championships VARCHAR, city VARCHAR)
SELECT club_s_ FROM table_28286776_50 WHERE international_debut = "2010 v Australia"
When 2010 v australia is the interantional debut what is the club?
CREATE TABLE table_28286776_50 (club_s_ VARCHAR, international_debut VARCHAR)
SELECT city FROM table_name_55 WHERE home_arena = "barclays center"
Which city includes Barclays Center?
CREATE TABLE table_name_55 (city VARCHAR, home_arena VARCHAR)
SELECT AVG(crowd) FROM table_name_9 WHERE home_team = "melbourne"
What was the average crowd size when Melbourne was the home team?
CREATE TABLE table_name_9 (crowd INTEGER, home_team VARCHAR)
SELECT MIN(played_2) FROM table_name_65 WHERE lost > 83 AND seasons = 8 AND club_1 = "chernomorets novorossiysk" AND drawn < 65
What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8?
CREATE TABLE table_name_65 (played_2 INTEGER, drawn VARCHAR, club_1 VARCHAR, lost VARCHAR, seasons VARCHAR)
SELECT us_viewers__millions_ FROM table_11411026_2 WHERE written_by = "Krystal Houghton"
How many millions of U.S. viewers whatched episodes written by Krystal Houghton?
CREATE TABLE table_11411026_2 (us_viewers__millions_ VARCHAR, written_by VARCHAR)
SELECT visiting_team FROM table_name_92 WHERE host_team = "jacksonville jaguars"
In the game in which the Jacksonville Jaguars were hosts, what was the name of the visiting team?
CREATE TABLE table_name_92 (visiting_team VARCHAR, host_team VARCHAR)
SELECT MIN(total) FROM table_name_87 WHERE silver > 0 AND nation = "georgia" AND bronze < 1
What is the smallest number of total medals for Georgia with 0 silver and 1 bronze?
CREATE TABLE table_name_87 (total INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT runner_s__up FROM table_name_23 WHERE winner = "sarah brice"
Who was the runner(s)-Up to winner Sarah Brice?
CREATE TABLE table_name_23 (runner_s__up VARCHAR, winner VARCHAR)
SELECT home_team FROM table_name_62 WHERE venue = "princes park"
What home team plays at Princes Park?
CREATE TABLE table_name_62 (home_team VARCHAR, venue VARCHAR)
SELECT score FROM table_name_5 WHERE player = "arnold palmer"
What was Arnold Palmer's score in the tournamnet?
CREATE TABLE table_name_5 (score VARCHAR, player VARCHAR)
SELECT away_team FROM table_name_75 WHERE home_team = "slough town"
What was the away team for the game in Slough Town?
CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR)
SELECT lost FROM table_name_73 WHERE points_for = "142"
Who lost with 142 points for?
CREATE TABLE table_name_73 (lost VARCHAR, points_for VARCHAR)
SELECT event FROM table_name_21 WHERE year > 2005 AND competition = "asian championships" AND position = "2nd" AND venue = "kobe, japan"
In which event did Moradi compete and finish in 2nd at the Asian Championships in Kobe, Japan held after 2005?
CREATE TABLE table_name_21 (event VARCHAR, venue VARCHAR, position VARCHAR, year VARCHAR, competition VARCHAR)
SELECT party FROM table_1341663_14 WHERE incumbent = "Phil Crane"
What is Phil Crane, democrat or republican
CREATE TABLE table_1341663_14 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(fa_cup) FROM table_name_50 WHERE league < 29 AND play_offs < 0
What's the total of number of FA Cup that has a League small than 29 with Play-offs less than 0?
CREATE TABLE table_name_50 (fa_cup VARCHAR, league VARCHAR, play_offs VARCHAR)
SELECT season FROM table_name_53 WHERE club = "celtic"
Which season has the Celtic club?
CREATE TABLE table_name_53 (season VARCHAR, club VARCHAR)
SELECT founded FROM table_1715730_2 WHERE institution = "Union University"
what is the year union university was founded?
CREATE TABLE table_1715730_2 (founded VARCHAR, institution VARCHAR)
SELECT AVG(yards) FROM table_name_90 WHERE avg > 7 AND long < 60 AND rec > 19 AND player = "correll buckhalter"
Which Yards has an Avg larger than 7, and a Long smaller than 60, and a Rec larger than 19, and a Player of correll buckhalter?
CREATE TABLE table_name_90 (yards INTEGER, player VARCHAR, rec VARCHAR, avg VARCHAR, long VARCHAR)
SELECT MAX(grid) FROM table_name_90 WHERE time = "+0.283"
What driver had the highest grid position with a time of +0.283?
CREATE TABLE table_name_90 (grid INTEGER, time VARCHAR)
SELECT final_four FROM table_name_32 WHERE win__percentage = ".750"
What is the Final Four with a win percentage of .750?
CREATE TABLE table_name_32 (final_four VARCHAR, win__percentage VARCHAR)
SELECT player FROM table_11677691_4 WHERE college = "Southern California"
Which player went to the college Southern California?
CREATE TABLE table_11677691_4 (player VARCHAR, college VARCHAR)
SELECT week FROM table_name_46 WHERE date = "september 23, 1973"
September 23, 1973 landed on which week of the season?
CREATE TABLE table_name_46 (week VARCHAR, date VARCHAR)
SELECT nominated_work FROM table_name_15 WHERE year = 2000 AND results = "won"
Which Nominated Work won in 2000?
CREATE TABLE table_name_15 (nominated_work VARCHAR, year VARCHAR, results VARCHAR)
SELECT rider FROM table_name_43 WHERE rank < 8 AND year = 2000 AND speed = "18.32 km/h"
Who is the rider that has a rank of less than 8 in the year 2000, and whose speed was 18.32 km/h?
CREATE TABLE table_name_43 (rider VARCHAR, speed VARCHAR, rank VARCHAR, year VARCHAR)
SELECT year_s__won FROM table_name_20 WHERE total < 294 AND country = "spain"
The golfer from Spain with a total less than 294 won in what year (s)?
CREATE TABLE table_name_20 (year_s__won VARCHAR, total VARCHAR, country VARCHAR)
SELECT high_rebounds FROM table_name_41 WHERE date = "june 11"
Who had the most rebounds and how many did he have during the game on June 11?
CREATE TABLE table_name_41 (high_rebounds VARCHAR, date VARCHAR)
SELECT MAX(ending_with) FROM table_1852650_1 WHERE sung_by = "Peyalvar"
Name the most ending with for peyalvar
CREATE TABLE table_1852650_1 (ending_with INTEGER, sung_by VARCHAR)