answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT score_points FROM table_name_65 WHERE total = "olympic bronze medalist"
With Olympic Bronze Medalist as the total what are the score points?
CREATE TABLE table_name_65 (score_points VARCHAR, total VARCHAR)
SELECT player FROM table_2897457_4 WHERE position = "Centre" AND nhl_team = "Detroit Red Wings"
Which player is the centre for the Detroit Red Wings?
CREATE TABLE table_2897457_4 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)
SELECT position FROM table_14342592_3 WHERE player = "Hal Weeks"
What positions does Hal Weeks play?
CREATE TABLE table_14342592_3 (position VARCHAR, player VARCHAR)
SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1
What is the customer id, first and last name with most number of accounts.
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR)
SELECT original_airdate FROM table_name_26 WHERE youtube_hero = "greg pattillo"
What is the Original Airdate for the YouTube Hero greg pattillo?
CREATE TABLE table_name_26 (original_airdate VARCHAR, youtube_hero VARCHAR)
SELECT MIN(year) FROM table_name_47 WHERE player = "serena williams" AND sets > 2
what's the earliest year that serena williams had more than 2 sets?
CREATE TABLE table_name_47 (year INTEGER, player VARCHAR, sets VARCHAR)
SELECT class_aAAAA FROM table_10399701_2 WHERE school_year = "1995-96"
Who was Class AAAAA during the school year of 1995-96?
CREATE TABLE table_10399701_2 (class_aAAAA VARCHAR, school_year VARCHAR)
SELECT reward FROM table_1893276_2 WHERE air_date = "October 6, 2005"
How many rewards are there for air date October 6, 2005?
CREATE TABLE table_1893276_2 (reward VARCHAR, air_date VARCHAR)
SELECT COUNT(rank_by_average) FROM table_26375386_28 WHERE couple = "Keiron & Brianne"
How many ranks by average when Keiron & Brianne are the couple?
CREATE TABLE table_26375386_28 (rank_by_average VARCHAR, couple VARCHAR)
SELECT COUNT(game) FROM table_name_74 WHERE opponent = "edmonton oilers" AND february > 12
What is the game number of the game with the Edmonton Oilers as the opponent after February 12?
CREATE TABLE table_name_74 (game VARCHAR, opponent VARCHAR, february VARCHAR)
SELECT tv_station FROM table_name_43 WHERE romaji_title = "kegareta shita"
Which TV Station has a Romaji Title of kegareta shita?
CREATE TABLE table_name_43 (tv_station VARCHAR, romaji_title VARCHAR)
SELECT COUNT(player) FROM table_28697228_4 WHERE passing_yards = 208
How may players have a passing yard score of 208?
CREATE TABLE table_28697228_4 (player VARCHAR, passing_yards VARCHAR)
SELECT COUNT(*) FROM camera_lens WHERE NOT id IN (SELECT camera_lens_id FROM photos)
How many camera lenses are not used in taking any photos?
CREATE TABLE photos (id VARCHAR, camera_lens_id VARCHAR); CREATE TABLE camera_lens (id VARCHAR, camera_lens_id VARCHAR)
SELECT affiliation FROM table_name_54 WHERE enrollment > 502
Which Affiliation has an Enrollement larger than 502?
CREATE TABLE table_name_54 (affiliation VARCHAR, enrollment INTEGER)
SELECT MAX(game) FROM table_name_32 WHERE record = "1-0" AND hornets_score > 100
What is the highest game with a 1-0 record, and the Hornets scored more than 100?
CREATE TABLE table_name_32 (game INTEGER, record VARCHAR, hornets_score VARCHAR)
SELECT time FROM table_name_94 WHERE rank > 2 AND country = "france"
When france had a rank larger than 2, what was their time?
CREATE TABLE table_name_94 (time VARCHAR, rank VARCHAR, country VARCHAR)
SELECT SUM(split__50m_) FROM table_name_24 WHERE name = "josefin lillhage" AND lane > 8
What is the total sum of 50m splits for josefin lillhage in lanes above 8?
CREATE TABLE table_name_24 (split__50m_ INTEGER, name VARCHAR, lane VARCHAR)
SELECT title FROM table_23513241_5 WHERE series_episode = 38
List the title of series episode 38.
CREATE TABLE table_23513241_5 (title VARCHAR, series_episode VARCHAR)
SELECT MAX(1 AS st_prize__) AS $__ FROM table_11622255_1 WHERE score = "193 (-17)"
what is the maximum 1st prize( $ ) where score is 193 (-17)
CREATE TABLE table_11622255_1 (score VARCHAR)
SELECT dock_connection FROM table_24384861_1 WHERE version = "SoundDock series III"
What type of dock connection does the sounddock series III have?
CREATE TABLE table_24384861_1 (dock_connection VARCHAR, version VARCHAR)
SELECT precincts FROM table_name_88 WHERE g_hager = "2,260 (15%)"
Which Precincts has a G. Hager of 2,260 (15%)?
CREATE TABLE table_name_88 (precincts VARCHAR, g_hager VARCHAR)
SELECT launched FROM table_name_33 WHERE commissioned = "november 1975" AND bow_number = "ps-18"
When did the ship commissioned in November 1975 with a bow number of ps-18 launch?
CREATE TABLE table_name_33 (launched VARCHAR, commissioned VARCHAR, bow_number VARCHAR)
SELECT tie_no FROM table_name_52 WHERE away_team = "wrexham"
WHAT'S THE TIE NUMBER WITH AN AWAY TEAM OF WREXHAM?
CREATE TABLE table_name_52 (tie_no VARCHAR, away_team VARCHAR)
SELECT season AS premiere FROM table_10819266_8 WHERE rank = "#21"
How many season premiers have a rank of #21?
CREATE TABLE table_10819266_8 (season VARCHAR, rank VARCHAR)
SELECT runs FROM table_name_42 WHERE match = "42"
With 42 as the match what are the runs?
CREATE TABLE table_name_42 (runs VARCHAR, match VARCHAR)
SELECT AVG(week) FROM table_name_53 WHERE game_site = "memorial stadium"
what week number was at memorial stadium?
CREATE TABLE table_name_53 (week INTEGER, game_site VARCHAR)
SELECT COUNT(position) FROM table_10975034_5 WHERE pick__number = 43
What is the number of position where the pick number is 43?
CREATE TABLE table_10975034_5 (position VARCHAR, pick__number VARCHAR)
SELECT aggressive_rider FROM table_25580292_13 WHERE sprint_classification = "André Greipel" AND mountains_classification = "Timothy Roe"
Who was the aggressive rider when the sprint classification was andré greipel and mountains classification was timothy roe?
CREATE TABLE table_25580292_13 (aggressive_rider VARCHAR, sprint_classification VARCHAR, mountains_classification VARCHAR)
SELECT COUNT(week) FROM table_name_12 WHERE attendance = "69,149"
How many weeks had an attendance at 69,149?
CREATE TABLE table_name_12 (week VARCHAR, attendance VARCHAR)
SELECT T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T1.Launched_Year > 1928
Show names of ships involved in a mission launched after 1928.
CREATE TABLE mission (Ship_ID VARCHAR, Launched_Year INTEGER); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR)
SELECT DISTINCT T1.Age FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.Secretary_Vote WHERE T2.Election_Cycle = "Fall"
Find the distinct ages of students who have secretary votes in the fall election cycle.
CREATE TABLE VOTING_RECORD (Secretary_Vote VARCHAR, Election_Cycle VARCHAR); CREATE TABLE STUDENT (Age VARCHAR, StuID VARCHAR)
SELECT cargo__tonnes_ FROM table_name_90 WHERE international__non_cis_ = "297 421"
What are the cargo tonnes when the international (non-CIS) is 297 421?
CREATE TABLE table_name_90 (cargo__tonnes_ VARCHAR, international__non_cis_ VARCHAR)
SELECT MAX(australian_open) FROM table_197638_7
When was the Australian open?
CREATE TABLE table_197638_7 (australian_open INTEGER)
SELECT date FROM table_name_56 WHERE away_team = "mansfield town"
What date did the away team Mansfield Town play?
CREATE TABLE table_name_56 (date VARCHAR, away_team VARCHAR)
SELECT COUNT(density) FROM table_name_57 WHERE population > 393 OFFSET 390
What's the total number of density for the place with a population over 393,390?
CREATE TABLE table_name_57 (density VARCHAR, population INTEGER)
SELECT eliminated FROM table_1893276_2 WHERE air_date = "November 3, 2005"
What was eliminated on the air date of November 3, 2005?
CREATE TABLE table_1893276_2 (eliminated VARCHAR, air_date VARCHAR)
SELECT opponents FROM table_21058836_1 WHERE opponent = "Santa Clara"
Santa Clara was played how many times?
CREATE TABLE table_21058836_1 (opponents VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_91 WHERE team = "minnesota"
Can you tell me the Record that has the Team of minnesota?
CREATE TABLE table_name_91 (record VARCHAR, team VARCHAR)
SELECT AVG(episode__number) FROM table_name_75 WHERE episode_name = "the origin of donnie (part 1)"
What is the average episode # with a name of the origin of Donnie (part 1)?
CREATE TABLE table_name_75 (episode__number INTEGER, episode_name VARCHAR)
SELECT MAX(area__km²_) FROM table_14532_1 WHERE region = "Tuscany"
What is the area of Tuscany?
CREATE TABLE table_14532_1 (area__km²_ INTEGER, region VARCHAR)
SELECT 1997 FROM table_name_99 WHERE 1999 = "1r" AND 1995 = "3r" AND 1993 = "1r"
What's the 1997 if 1993 has a 1R, 1995 has a 3R, and 1999 has a 1R?
CREATE TABLE table_name_99 (Id VARCHAR)
SELECT COUNT(high_rebounds) FROM table_13619027_9 WHERE date = "March 13"
How many different values if the number is high rebounds can be found for the game on March 13?
CREATE TABLE table_13619027_9 (high_rebounds VARCHAR, date VARCHAR)
SELECT COUNT(total) FROM table_name_33 WHERE associate_professors > 4 AND lecturers = 5 AND professors < 40
What is the total in the case when there are more than 4 associate professors, 5 lecturers and fewer professors than 40?
CREATE TABLE table_name_33 (total VARCHAR, professors VARCHAR, associate_professors VARCHAR, lecturers VARCHAR)
SELECT d_shulman FROM table_name_9 WHERE c_abate = "728 (43%)"
What is the number for D. Shulman if C. Abate has 728 (43%)
CREATE TABLE table_name_9 (d_shulman VARCHAR, c_abate VARCHAR)
SELECT archbishop FROM table_1656555_1 WHERE ordained_bishop = "November 30, 1925"
Which archbishop was ordained as bishop November 30, 1925?
CREATE TABLE table_1656555_1 (archbishop VARCHAR, ordained_bishop VARCHAR)
SELECT result FROM table_27616663_1 WHERE original_artist = "Caetano Veloso"
What was the result of the performance of the song by Caetano Veloso?
CREATE TABLE table_27616663_1 (result VARCHAR, original_artist VARCHAR)
SELECT COUNT(fa_cup) FROM table_name_64 WHERE play_offs = 3 AND name = "mitch cook category:articles with hcards" AND total < 11
What's the total number of FA Cup with a Play-offs of 3, and the Name of Mitch Cook Category:Articles with hCards and has a Total thats less than 11?
CREATE TABLE table_name_64 (fa_cup VARCHAR, total VARCHAR, play_offs VARCHAR, name VARCHAR)
SELECT tonnage___grt__ FROM table_name_11 WHERE fate = "sunk" AND deaths < 17 AND date = "16 november 1940"
Which Tonnage has a Fate of sunk, and Deaths smaller than 17, and a Date of 16 november 1940?
CREATE TABLE table_name_11 (tonnage___grt__ VARCHAR, date VARCHAR, fate VARCHAR, deaths VARCHAR)
SELECT qual_1 FROM table_name_32 WHERE team = "newman/haas racing" AND name = "sébastien bourdais"
Sébastien Bourdais of the team Newman/Haas Racing has what qual 1?
CREATE TABLE table_name_32 (qual_1 VARCHAR, team VARCHAR, name VARCHAR)
SELECT chinese__traditional_ FROM table_name_84 WHERE english_title = "beautiful"
What is the traditional Chinese name for the record Beautiful?
CREATE TABLE table_name_84 (chinese__traditional_ VARCHAR, english_title VARCHAR)
SELECT time_retired FROM table_name_71 WHERE manufacturer = "honda" AND grid < 26 AND laps = 18 AND rider = "joan olivé"
What is the time/retired of the honda manufacturer with a grid less than 26, 18 laps, and joan olivé as the rider?
CREATE TABLE table_name_71 (time_retired VARCHAR, rider VARCHAR, laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)
SELECT margin_of_victory FROM table_name_55 WHERE tournament = "pocono northeast classic"
What's the margin of victory during the Pocono Northeast Classic?
CREATE TABLE table_name_55 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT driver FROM table_name_21 WHERE constructor = "ferrari" AND laps = 57
Who drove the ferrari that went 57 laps?
CREATE TABLE table_name_21 (driver VARCHAR, constructor VARCHAR, laps VARCHAR)
SELECT MIN(population__2010_) FROM table_249512_2 WHERE place_name = "Edgewater"
What is the minimum 2010 population of Edgewater?
CREATE TABLE table_249512_2 (population__2010_ INTEGER, place_name VARCHAR)
SELECT kinka_13 FROM table_name_11 WHERE kinka_developer = "yes" AND version = "support mo 230"
What is the KINKA 1.3 when the developer is yes and the support version is support mo 230?
CREATE TABLE table_name_11 (kinka_13 VARCHAR, kinka_developer VARCHAR, version VARCHAR)
SELECT winning_driver FROM table_name_29 WHERE fastest_lap = "clay regazzoni" AND pole_position = "jackie stewart"
Who was the winning driver of the race with Clay Regazzoni as the fastest lap and Jackie stewart as the pole position?
CREATE TABLE table_name_29 (winning_driver VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)
SELECT nationality FROM table_name_39 WHERE date = "8 may 1942"
Which Nationality has a Date of 8 may 1942?
CREATE TABLE table_name_39 (nationality VARCHAR, date VARCHAR)
SELECT date FROM table_name_74 WHERE tournament = "michalovce"
what is the date of the tournament in michalovce
CREATE TABLE table_name_74 (date VARCHAR, tournament VARCHAR)
SELECT winner FROM table_name_92 WHERE finalist = "lina krasnoroutskaya"
Who was the winner against finalist Lina Krasnoroutskaya?
CREATE TABLE table_name_92 (winner VARCHAR, finalist VARCHAR)
SELECT SUM(minutes) FROM table_name_73 WHERE rank > 7 AND club = "real madrid"
What are the minutes of the Player from Real Madrid Club with a Rank of 7 or larger?
CREATE TABLE table_name_73 (minutes INTEGER, rank VARCHAR, club VARCHAR)
SELECT score FROM table_name_45 WHERE result = "l" AND date = "15-oct-64"
Result of l, and a Date of 15-oct-64 had what score?
CREATE TABLE table_name_45 (score VARCHAR, result VARCHAR, date VARCHAR)
SELECT score FROM table_name_17 WHERE date = "april 22"
What was the score on April 22?
CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)
SELECT MAX(administrative_panel) FROM table_name_14 WHERE cultural_and_educational_panel = 2 AND industrial_and_commercial_panel > 4
What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4?
CREATE TABLE table_name_14 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
SELECT text FROM tweets WHERE text LIKE '%intern%'
Return the text of tweets about the topic 'intern'.
CREATE TABLE tweets (text VARCHAR)
SELECT COUNT(game) FROM table_name_89 WHERE opponent = "washington"
What is the total number of games for the opponent in Washington?
CREATE TABLE table_name_89 (game VARCHAR, opponent VARCHAR)
SELECT opponent FROM table_name_46 WHERE week > 3 AND game_site = "mile high stadium" AND record = "3–3"
Which Opponent has a Week larger than 3, and a Game site of mile high stadium, and a Record of 3–3?
CREATE TABLE table_name_46 (opponent VARCHAR, record VARCHAR, week VARCHAR, game_site VARCHAR)
SELECT round FROM table_name_99 WHERE venue = "ullevaal"
What Round is in Ullevaal?
CREATE TABLE table_name_99 (round VARCHAR, venue VARCHAR)
SELECT partnered_with FROM table_name_97 WHERE score_in_final = "4–6, 3–6"
Who was Alicja Rosolska Partnered with when the Score in Final was 4–6, 3–6?
CREATE TABLE table_name_97 (partnered_with VARCHAR, score_in_final VARCHAR)
SELECT points_classification FROM table_22941863_19 WHERE stage = 3
If the stage is 3, what is the points classification name?
CREATE TABLE table_22941863_19 (points_classification VARCHAR, stage VARCHAR)
SELECT date FROM table_name_75 WHERE opponent = "wimbledon" AND result = "drew 0-0"
What is the Date with an Opponent with wimbledon, and a Result of drew 0-0?
CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, result 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 MAX(points) FROM table_23308178_8
What is the largest number of points they had?
CREATE TABLE table_23308178_8 (points INTEGER)
SELECT prize_money FROM table_12454156_1 WHERE runner_up = "Fabrizio Baldassari"
When Fabrizio Baldassari is the runner-up what is the total prize money?
CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)
SELECT MIN(laps) FROM table_name_85 WHERE team = "dale coyne racing" AND time_retired = "mechanical" AND points < 5
What is the fewest number of laps for a Dale Coyne Racing team with a mechanical time/retired and fewer than 5 points?
CREATE TABLE table_name_85 (laps INTEGER, points VARCHAR, team VARCHAR, time_retired VARCHAR)
SELECT series_ep FROM table_name_80 WHERE segment_b = "jukeboxes"
What series episode has jukeboxes as segment B?
CREATE TABLE table_name_80 (series_ep VARCHAR, segment_b VARCHAR)
SELECT SUM(car__number) FROM table_name_62 WHERE laps < 369 AND make = "dodge" AND points > 49
What is the car number that has less than 369 laps for a Dodge with more than 49 points?
CREATE TABLE table_name_62 (car__number INTEGER, points VARCHAR, laps VARCHAR, make VARCHAR)
SELECT COUNT(office) FROM table_1331313_1 WHERE department = "department of Justice Kagawaran ng Katarungan"
how many office with department being department of justice kagawaran ng katarungan
CREATE TABLE table_1331313_1 (office VARCHAR, department VARCHAR)
SELECT placing FROM table_name_35 WHERE weight__kg_ < 54 AND barrier_[b_] = "20"
What place was the horse with a barrier of 20 and weighing less than 54 kg
CREATE TABLE table_name_35 (placing VARCHAR, weight__kg_ VARCHAR, barrier_ VARCHAR, b_ VARCHAR)
SELECT date FROM table_name_86 WHERE opponent = "oakland raiders"
What was the date of the game against Oakland Raiders?
CREATE TABLE table_name_86 (date VARCHAR, opponent VARCHAR)
SELECT AVG(attendance) FROM table_name_61 WHERE venue = "a" AND date = "2 january 2008"
When the venue was A and the date was 2 january 2008, what was the average attendance?
CREATE TABLE table_name_61 (attendance INTEGER, venue VARCHAR, date VARCHAR)
SELECT fixed_telephone_line FROM table_25042332_27 WHERE vehicle = "25.6%"
Name the fixed telephone line for 25.6% vehicle
CREATE TABLE table_25042332_27 (fixed_telephone_line VARCHAR, vehicle VARCHAR)
SELECT country FROM table_name_16 WHERE player = "vijay singh"
Name the country vijay singh is from
CREATE TABLE table_name_16 (country VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_86 WHERE player = "mattias modig"
What is the nationality of Mattias Modig?
CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR)
SELECT MAX(goals) FROM table_name_7 WHERE player = "david mcllwain" AND games > 52
Which Goals have a Player of david mcllwain, and Games larger than 52?
CREATE TABLE table_name_7 (goals INTEGER, player VARCHAR, games VARCHAR)
SELECT player FROM table_name_56 WHERE place = "t7"
Who is the player with a t7 place?
CREATE TABLE table_name_56 (player VARCHAR, place VARCHAR)
SELECT school FROM table_name_94 WHERE hometown = "little rock, arkansas"
What's the school of the player with a hometown of little rock, arkansas?
CREATE TABLE table_name_94 (school VARCHAR, hometown VARCHAR)
SELECT round FROM table_name_30 WHERE track = "winton"
What Round has the Track Winton?
CREATE TABLE table_name_30 (round VARCHAR, track VARCHAR)
SELECT runner_up FROM table_name_43 WHERE year < 2008 AND arena = "broadmoor arena"
Who was the runner-up at the Broadmoor Arena before 2008?
CREATE TABLE table_name_43 (runner_up VARCHAR, year VARCHAR, arena VARCHAR)
SELECT AVG(money___) AS $__ FROM table_name_23 WHERE country = "united states" AND place = "t6"
Which money has a Country of united states, and a Place of t6?
CREATE TABLE table_name_23 (money___ INTEGER, country VARCHAR, place VARCHAR)
SELECT COUNT(player) FROM table_13312864_1 WHERE weight = 95
How many players weight 95?
CREATE TABLE table_13312864_1 (player VARCHAR, weight VARCHAR)
SELECT venue FROM table_name_7 WHERE winner = "nevada" AND year > 2004
Tell me the venue for winner of nevada and year more than 2004
CREATE TABLE table_name_7 (venue VARCHAR, winner VARCHAR, year VARCHAR)
SELECT COUNT(established) FROM table_name_86 WHERE club = "lehigh valley storm"
What is the total number of the established club of Lehigh Valley Storm?
CREATE TABLE table_name_86 (established VARCHAR, club VARCHAR)
SELECT score FROM table_name_79 WHERE date = "july 29, 1990"
What is the score of the match on July 29, 1990?
CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_83 WHERE date = "may 29"
How many were in Attendance on the Date May 29?
CREATE TABLE table_name_83 (attendance VARCHAR, date VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_59 WHERE round > 3
What college did the player selected in rounds over 3 play for?
CREATE TABLE table_name_59 (college_junior_club_team__league_ VARCHAR, round INTEGER)
SELECT agg FROM table_name_34 WHERE team_2 = "asl sport guyanais"
Name the agg for team 2 of asl sport guyanais.
CREATE TABLE table_name_34 (agg VARCHAR, team_2 VARCHAR)
SELECT 2013 FROM table_name_94 WHERE 2007 = "a"
What was the 2013 finish for the tournament that had a 2007 finish of A?
CREATE TABLE table_name_94 (Id VARCHAR)
SELECT score FROM table_name_71 WHERE record = "81-60"
What was the score of the game with a record of 81-60?
CREATE TABLE table_name_71 (score VARCHAR, record VARCHAR)
SELECT AVG(lane) FROM table_name_80 WHERE heat < 2 AND name = "racheal nachula"
What is the average lane racheal nachula has when the heat is less than 2?
CREATE TABLE table_name_80 (lane INTEGER, heat VARCHAR, name VARCHAR)
SELECT home_team FROM table_24887326_7 WHERE away_team = "Fulham"
Who was the home team when the away team was fulham?
CREATE TABLE table_24887326_7 (home_team VARCHAR, away_team VARCHAR)