question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What was Performer 1's name who performed with Sandi Toksvig as Performer 3 and Mike McShane as Performer 4? | CREATE TABLE table_name_13 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR) | SELECT performer_1 FROM table_name_13 WHERE performer_3 = "sandi toksvig" AND performer_4 = "mike mcshane" |
Name the title directed by charles beeson by jeremy carver | CREATE TABLE table_19396259_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR) | SELECT title FROM table_19396259_1 WHERE directed_by = "Charles Beeson" AND written_by = "Jeremy Carver" |
What was the date of the game held at the Al-Rashid Stadium, Dubai? | CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_13 WHERE venue = "al-rashid stadium, dubai" |
Who directed the episode with production code ip03010? | CREATE TABLE table_29273182_1 (directed_by VARCHAR, production_code VARCHAR) | SELECT directed_by FROM table_29273182_1 WHERE production_code = "IP03010" |
What event did she finish 3rd in 2010? | CREATE TABLE table_name_37 (event VARCHAR, position VARCHAR, year VARCHAR) | SELECT event FROM table_name_37 WHERE position = "3rd" AND year = 2010 |
What is the lowest game number of the game after March 2 with the minnesota north stars as the opponent? | CREATE TABLE table_name_11 (game INTEGER, march VARCHAR, opponent VARCHAR) | SELECT MIN(game) FROM table_name_11 WHERE march > 2 AND opponent = "minnesota north stars" |
What is Darren Clarke's total score? | CREATE TABLE table_name_45 (score VARCHAR, player VARCHAR) | SELECT COUNT(score) FROM table_name_45 WHERE player = "darren clarke" |
who is the the voice actor (englbeingh 1998 / pioneer) with voice actor (englbeingh 1997 / saban) being alec willows and voice actor (englbeingh 2006 / funimation) being andy mcavin | CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__english_1997___saban_ VARCHAR, voice_actor__english_2006___funimation_ VARCHAR) | SELECT voice_actor__english_1998___pioneer_ FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = "Alec Willows" AND voice_actor__english_2006___funimation_ = "Andy McAvin" |
How many airlines have the star alliance and are in brazil? | CREATE TABLE table_name_13 (rank VARCHAR, alliance VARCHAR, country VARCHAR) | SELECT COUNT(rank) FROM table_name_13 WHERE alliance = "star alliance" AND country = "brazil" |
Which Winnings have Starts larger than 34, and Poles smaller than 1, and a Top 10 of 5? | CREATE TABLE table_name_93 (winnings VARCHAR, top_10 VARCHAR, starts VARCHAR, poles VARCHAR) | SELECT winnings FROM table_name_93 WHERE starts > 34 AND poles < 1 AND top_10 = 5 |
Which Score has a Location of richfield coliseum? | CREATE TABLE table_name_96 (score VARCHAR, location VARCHAR) | SELECT score FROM table_name_96 WHERE location = "richfield coliseum" |
WHAT IS THE 1ST LEG WITH TEAM 2 AS ATHLETIC? | CREATE TABLE table_name_5 (team_2 VARCHAR) | SELECT 1 AS st_leg FROM table_name_5 WHERE team_2 = "athletic" |
Which venue hosted the 2004 AFC Asian Cup qualification on November 18, 2003? | CREATE TABLE table_name_11 (venue VARCHAR, competition VARCHAR, date VARCHAR) | SELECT venue FROM table_name_11 WHERE competition = "2004 afc asian cup qualification" AND date = "november 18, 2003" |
Which category has 5 stations? | CREATE TABLE table_name_11 (category VARCHAR, stations VARCHAR) | SELECT category FROM table_name_11 WHERE stations = "5" |
Which week starts on November 23, 1997? | CREATE TABLE table_name_55 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_55 WHERE date = "november 23, 1997" |
What did they do in the game when their record was 3-2-1? | CREATE TABLE table_21058823_1 (result VARCHAR, record VARCHAR) | SELECT result FROM table_21058823_1 WHERE record = "3-2-1" |
Who are the writers of the episodes directed by Justin Hartley? | CREATE TABLE table_26464364_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT written_by FROM table_26464364_1 WHERE directed_by = "Justin Hartley" |
What is the result when team 1 is ICL Pakistan? | CREATE TABLE table_17103566_1 (result VARCHAR, team_1 VARCHAR) | SELECT result FROM table_17103566_1 WHERE team_1 = "ICL Pakistan" |
What song has filipa sousa as an artist? | CREATE TABLE table_name_94 (song VARCHAR, artist VARCHAR) | SELECT song FROM table_name_94 WHERE artist = "filipa sousa" |
What team has a Venue at Lake Oval? | CREATE TABLE table_name_35 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_35 WHERE venue = "lake oval" |
Who played 2nd base when nomar garciaparra was at 1st base? | CREATE TABLE table_12142298_2 (second_baseman VARCHAR, first_baseman VARCHAR) | SELECT second_baseman FROM table_12142298_2 WHERE first_baseman = "Nomar Garciaparra" |
Which main cast seasons were portrayed by Joe Jonas? | CREATE TABLE table_name_13 (main_cast_seasons VARCHAR, portrayed_by VARCHAR) | SELECT main_cast_seasons FROM table_name_13 WHERE portrayed_by = "joe jonas" |
What is the skip when Tony Angiboust was a lead? | CREATE TABLE table_name_40 (skip VARCHAR, lead VARCHAR) | SELECT skip FROM table_name_40 WHERE lead = "tony angiboust" |
What is the highest Year, when Rank is less than 28, and when Accolade is "The 100 greatest metal albums of the decade"? | CREATE TABLE table_name_59 (year INTEGER, rank VARCHAR, accolade VARCHAR) | SELECT MAX(year) FROM table_name_59 WHERE rank < 28 AND accolade = "the 100 greatest metal albums of the decade" |
Name the sum To par for score of 71-74-71-72=288 | CREATE TABLE table_name_26 (to_par INTEGER, score VARCHAR) | SELECT SUM(to_par) FROM table_name_26 WHERE score = 71 - 74 - 71 - 72 = 288 |
What is the final score when 22210 is the attendance? | CREATE TABLE table_23612439_2 (final_score VARCHAR, attendance VARCHAR) | SELECT final_score FROM table_23612439_2 WHERE attendance = 22210 |
How many episodes had an original air date with 5.1 million viewers | CREATE TABLE table_15938543_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) | SELECT COUNT(original_air_date) FROM table_15938543_1 WHERE us_viewers__million_ = "5.1" |
What is the value for 2009 when the value for 2011 is 138? | CREATE TABLE table_name_87 (Id VARCHAR) | SELECT 2009 FROM table_name_87 WHERE 2011 = "138" |
What is the production code of the episode that had 5.43 million viewers? | CREATE TABLE table_24938621_3 (production_code VARCHAR, us_viewers__million_ VARCHAR) | SELECT production_code FROM table_24938621_3 WHERE us_viewers__million_ = "5.43" |
What tyre was used in the Zandvoort circuit? | CREATE TABLE table_name_71 (tyre VARCHAR, circuit VARCHAR) | SELECT tyre FROM table_name_71 WHERE circuit = "zandvoort" |
Which police force serves a population of 17000? | CREATE TABLE table_12340907_1 (police_force VARCHAR, population VARCHAR) | SELECT police_force FROM table_12340907_1 WHERE population = 17000 |
When was set 3 of 18-25? | CREATE TABLE table_name_2 (date VARCHAR, set_3 VARCHAR) | SELECT date FROM table_name_2 WHERE set_3 = "18-25" |
Which away team plays at the venue glenferrie oval? | CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_63 WHERE venue = "glenferrie oval" |
How many podiums had a race higher than 14 in 1996 and a Flap lower than 9? | CREATE TABLE table_name_91 (podium VARCHAR, flap VARCHAR, race VARCHAR, season VARCHAR) | SELECT COUNT(podium) FROM table_name_91 WHERE race > 14 AND season = "1996" AND flap < 9 |
For R. Magjistari scores under 6, D. Tukiqi scores of 6, and ranks under 5, what is the average A. Krajka score? | CREATE TABLE table_name_60 (a_krajka INTEGER, rank VARCHAR, r_magjistari VARCHAR, d_tukiqi VARCHAR) | SELECT AVG(a_krajka) FROM table_name_60 WHERE r_magjistari < 6 AND d_tukiqi = 6 AND rank < 5 |
What is To Par, when Player is K. J. Choi? | CREATE TABLE table_name_58 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_58 WHERE player = "k. j. choi" |
What is the Class when Wessex Trains Pink is the Livery? | CREATE TABLE table_name_90 (class VARCHAR, livery VARCHAR) | SELECT class FROM table_name_90 WHERE livery = "wessex trains pink" |
Who was the vacator when the reason for change was failure to elect? | CREATE TABLE table_225206_3 (vacator VARCHAR, reason_for_change VARCHAR) | SELECT vacator FROM table_225206_3 WHERE reason_for_change = "Failure to elect" |
What is the Obama# when McCain% is 64.4%? | CREATE TABLE table_20750731_1 (obama_number INTEGER, mccain_percentage VARCHAR) | SELECT MAX(obama_number) FROM table_20750731_1 WHERE mccain_percentage = "64.4%" |
What is the Away team at the Wolverhampton Wanderers Home game with a Score of 2–0? | CREATE TABLE table_name_33 (away_team VARCHAR, score VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_33 WHERE score = "2–0" AND home_team = "wolverhampton wanderers" |
Which political party is involved where John J. Delaney is the sitting Representative? | CREATE TABLE table_1342256_32 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342256_32 WHERE incumbent = "John J. Delaney" |
for the rank of 3 for the united states, what is the average lane? | CREATE TABLE table_name_8 (lane INTEGER, nationality VARCHAR, rank VARCHAR) | SELECT AVG(lane) FROM table_name_8 WHERE nationality = "united states" AND rank = 3 |
what is the country where the player is phil mickelson? | CREATE TABLE table_13282157_1 (country VARCHAR, player VARCHAR) | SELECT country FROM table_13282157_1 WHERE player = "Phil Mickelson" |
Who was the opponent on April 21? | CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_24 WHERE date = "april 21" |
What date has wrexham as the home team? | CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_69 WHERE home_team = "wrexham" |
Who won the mens doubles when wu yang won the womens singles? | CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, womens_singles VARCHAR) | SELECT mens_doubles FROM table_28138035_26 WHERE womens_singles = "Wu Yang" |
Show names of parties that does not have any members. | CREATE TABLE party (party_name VARCHAR, party_id VARCHAR); CREATE TABLE Member (party_name VARCHAR, party_id VARCHAR) | SELECT party_name FROM party WHERE NOT party_id IN (SELECT party_id FROM Member) |
What city is Tiffin University located in? | CREATE TABLE table_29483673_1 (location___city VARCHAR, institution VARCHAR) | SELECT location___city FROM table_29483673_1 WHERE institution = "Tiffin University" |
What was the result when they had their bye week? | CREATE TABLE table_name_84 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_84 WHERE date = "bye" |
What is the ergative for the dative (i)mas? | CREATE TABLE table_name_53 (ergative VARCHAR, dative VARCHAR) | SELECT ergative FROM table_name_53 WHERE dative = "(i)mas" |
How much Lost has an Against larger than 19, and a Drawn smaller than 1? | CREATE TABLE table_name_67 (lost INTEGER, against VARCHAR, drawn VARCHAR) | SELECT SUM(lost) FROM table_name_67 WHERE against > 19 AND drawn < 1 |
What series had the title rank of various? | CREATE TABLE table_name_20 (series VARCHAR, title_rank VARCHAR) | SELECT series FROM table_name_20 WHERE title_rank = "various" |
what is the typhoid fever number for the year 1929 | CREATE TABLE table_1007688_1 (typhoid_fever VARCHAR, year VARCHAR) | SELECT typhoid_fever FROM table_1007688_1 WHERE year = "1929" |
Where was the location attendance when Minnesota played? | CREATE TABLE table_name_1 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_name_1 WHERE team = "minnesota" |
What's the quantity made when the manufacturer was 4-6-2 — oooooo — pacific? | CREATE TABLE table_name_7 (quantity_made VARCHAR, manufacturer VARCHAR) | SELECT quantity_made FROM table_name_7 WHERE manufacturer = "4-6-2 — oooooo — pacific" |
What date was at Oakland-Alameda County Coliseum with a time of 3:40 and a game less than 5? | CREATE TABLE table_name_6 (date VARCHAR, time VARCHAR, game VARCHAR, location VARCHAR) | SELECT date FROM table_name_6 WHERE game < 5 AND location = "oakland-alameda county coliseum" AND time = "3:40" |
What is the highest Total when Georgia is the nation with less than 11 rank? | CREATE TABLE table_name_46 (total INTEGER, nation VARCHAR, rank VARCHAR) | SELECT MAX(total) FROM table_name_46 WHERE nation = "georgia" AND rank < 11 |
Which athlete had a score of 236.023? | CREATE TABLE table_name_55 (athlete VARCHAR, score VARCHAR) | SELECT athlete FROM table_name_55 WHERE score = "236.023" |
What was Juli's winning margin on Aug 24, 1986? | CREATE TABLE table_name_10 (margin_of_victory VARCHAR, date VARCHAR) | SELECT margin_of_victory FROM table_name_10 WHERE date = "aug 24, 1986" |
Which Team has Laps smaller than 105, and a Grid smaller than 18, and Points of 11? | CREATE TABLE table_name_16 (team VARCHAR, points VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT team FROM table_name_16 WHERE laps < 105 AND grid < 18 AND points = 11 |
What's the Württemberg in the year before 1929? | CREATE TABLE table_name_42 (württemberg VARCHAR, year INTEGER) | SELECT württemberg FROM table_name_42 WHERE year < 1929 |
In what year Year has a Co-Drivers of jérôme policand christopher campbell? | CREATE TABLE table_name_82 (year INTEGER, co_drivers VARCHAR) | SELECT SUM(year) FROM table_name_82 WHERE co_drivers = "jérôme policand christopher campbell" |
When Hamilton Academical is the Opponent, what is the total Attendance? | CREATE TABLE table_name_26 (attendance VARCHAR, opponent VARCHAR) | SELECT COUNT(attendance) FROM table_name_26 WHERE opponent = "hamilton academical" |
How many season 3 appearances by Morgan the Dog? | CREATE TABLE table_26240046_1 (season_3 INTEGER, played_by VARCHAR) | SELECT MAX(season_3) FROM table_26240046_1 WHERE played_by = "Morgan the Dog" |
What is the L3 cache for the processor having a speed of 2.93 GHz? | CREATE TABLE table_269920_16 (l3_cache__mb_ VARCHAR, speed__ghz_ VARCHAR) | SELECT l3_cache__mb_ FROM table_269920_16 WHERE speed__ghz_ = "2.93" |
What is the blank ends record when the win record is higher than 6.0? | CREATE TABLE table_29565673_2 (blank_ends VARCHAR, w INTEGER) | SELECT blank_ends FROM table_29565673_2 WHERE w > 6.0 |
What is the total avg/g of McCrary, Greg? | CREATE TABLE table_name_40 (avg_g VARCHAR, name VARCHAR) | SELECT COUNT(avg_g) FROM table_name_40 WHERE name = "mccrary, greg" |
What song was written after 1976 and directed by Rahul Dev Burman? | CREATE TABLE table_name_23 (song VARCHAR, year VARCHAR, music_director_s_ VARCHAR) | SELECT song FROM table_name_23 WHERE year > 1976 AND music_director_s_ = "rahul dev burman" |
What is the highest league goals that have barry endean as the name, wirh FA cup apps greater than 0? | CREATE TABLE table_name_46 (league_goals INTEGER, name VARCHAR, fa_cup_apps VARCHAR) | SELECT MAX(league_goals) FROM table_name_46 WHERE name = "barry endean" AND fa_cup_apps > 0 |
Where is Dynamo-2 located? | CREATE TABLE table_name_38 (location VARCHAR, team VARCHAR) | SELECT location FROM table_name_38 WHERE team = "dynamo-2" |
Name the Non-Suited Match that has greater than 6 Number of Decks. | CREATE TABLE table_name_60 (non_suited_match VARCHAR, number_of_decks INTEGER) | SELECT non_suited_match FROM table_name_60 WHERE number_of_decks > 6 |
What is the result when the round is less than 3, the location is in Auckland, New Zealand, and tko is the method? | CREATE TABLE table_name_29 (result VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR) | SELECT result FROM table_name_29 WHERE round < 3 AND location = "auckland, new zealand" AND method = "tko" |
june 10-11 when january 15-16 is january 15, 1991? | CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, january_15_16 VARCHAR) | SELECT june_10_11 FROM table_25355501_2 WHERE january_15_16 = "January 15, 1991" |
What is the ethernet ports of the m1500 appliance? | CREATE TABLE table_name_5 (ethernet_ports VARCHAR, name VARCHAR) | SELECT ethernet_ports FROM table_name_5 WHERE name = "m1500" |
What was the competition on 7 June 1999? | CREATE TABLE table_name_84 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_84 WHERE date = "7 june 1999" |
What was the lowest Attendance when the Opponent was Maryland? | CREATE TABLE table_name_4 (attendance INTEGER, opponent VARCHAR) | SELECT MIN(attendance) FROM table_name_4 WHERE opponent = "maryland" |
What is the highest number of households with a median household income of $31,176, and a population of 25,607? | CREATE TABLE table_name_30 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR) | SELECT MAX(number_of_households) FROM table_name_30 WHERE median_household_income = "$31,176" AND population < 25 OFFSET 607 |
How many locations have a school that is nicknamed the Panthers? | CREATE TABLE table_262560_2 (location VARCHAR, nickname VARCHAR) | SELECT COUNT(location) FROM table_262560_2 WHERE nickname = "Panthers" |
On which week was the beatles the original artist and the order # smaller than 10? | CREATE TABLE table_name_34 (week__number VARCHAR, original_artist VARCHAR, order__number VARCHAR) | SELECT week__number FROM table_name_34 WHERE original_artist = "the beatles" AND order__number < 10 |
How many dams are there in the Nome (CA) area? | CREATE TABLE table_17978052_2 (_number_s_dam_and_gnis_query_link INTEGER, borough_or_census_area VARCHAR) | SELECT MIN(_number_s_dam_and_gnis_query_link) FROM table_17978052_2 WHERE borough_or_census_area = "Nome (CA)" |
Who is the director of the film in Italian? | CREATE TABLE table_name_92 (director VARCHAR, language VARCHAR) | SELECT director FROM table_name_92 WHERE language = "italian" |
How many agencies did Budarin Nikolai Budarin working for? | CREATE TABLE table_14125006_1 (agency VARCHAR, astronaut VARCHAR) | SELECT COUNT(agency) FROM table_14125006_1 WHERE astronaut = "Budarin Nikolai Budarin" |
What is the General classification for a points classification leader of Bradley Wiggins? | CREATE TABLE table_name_47 (general_classification VARCHAR, points_classification VARCHAR) | SELECT general_classification FROM table_name_47 WHERE points_classification = "bradley wiggins" |
What is the average number of draws that has a played entry of less than 30 and a goal difference greater than 2? | CREATE TABLE table_name_9 (draws INTEGER, goal_difference VARCHAR, played VARCHAR) | SELECT AVG(draws) FROM table_name_9 WHERE goal_difference > 2 AND played < 30 |
What was the attendance on November 3, 1968, that was a week smaller than 8? | CREATE TABLE table_name_81 (attendance VARCHAR, date VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_81 WHERE date = "november 3, 1968" AND week < 8 |
Name the number of high rebounds for l 92–96 (ot) | CREATE TABLE table_22879262_14 (high_rebounds VARCHAR, score VARCHAR) | SELECT COUNT(high_rebounds) FROM table_22879262_14 WHERE score = "L 92–96 (OT)" |
What is the highest number of draws with more than 15 points, an against of 19, and less than 3 losses? | CREATE TABLE table_name_27 (drawn INTEGER, lost VARCHAR, points VARCHAR, against VARCHAR) | SELECT MAX(drawn) FROM table_name_27 WHERE points > 15 AND against = 19 AND lost < 3 |
What is the number in attendance at Dowdy-Ficklen stadium • Greenville, NC, and the opponent was Ohio? | CREATE TABLE table_name_63 (attendance VARCHAR, site VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_63 WHERE site = "dowdy-ficklen stadium • greenville, nc" AND opponent = "ohio" |
In which district is anna university - tiruchirappalli campus, whose website is http://www.annauniv.edu, located? | CREATE TABLE table_name_3 (district VARCHAR, weblink VARCHAR, college_or_campus_name VARCHAR) | SELECT district FROM table_name_3 WHERE weblink = "http://www.annauniv.edu" AND college_or_campus_name = "anna university - tiruchirappalli campus" |
What is the highest value for col(m) when prominence(m) is 3755? | CREATE TABLE table_18946749_4 (col__m_ INTEGER, prominence__m_ VARCHAR) | SELECT MAX(col__m_) FROM table_18946749_4 WHERE prominence__m_ = 3755 |
Show the names of trains and locations of railways they are in. | CREATE TABLE railway (Location VARCHAR, Railway_ID VARCHAR); CREATE TABLE train (Name VARCHAR, Railway_ID VARCHAR) | SELECT T2.Name, T1.Location FROM railway AS T1 JOIN train AS T2 ON T1.Railway_ID = T2.Railway_ID |
What is the attendance for the game on May 25? | CREATE TABLE table_name_33 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_33 WHERE date = "may 25" |
shows for the artist Santana featuring the product g&b? | CREATE TABLE table_name_78 (volume VARCHAR, artist VARCHAR) | SELECT volume AS :issue FROM table_name_78 WHERE artist = "santana featuring the product g&b" |
Which Time/Retired has Laps smaller than 24, and a Manufacturer of aprilia, and a Grid smaller than 12, and a Rider of ángel rodríguez? | CREATE TABLE table_name_5 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR) | SELECT time_retired FROM table_name_5 WHERE laps < 24 AND manufacturer = "aprilia" AND grid < 12 AND rider = "ángel rodríguez" |
What date was the score won 1-2? | CREATE TABLE table_name_93 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_93 WHERE score = "won 1-2" |
For each station, return its longitude and the average duration of trips that started from the station. | CREATE TABLE station (name VARCHAR, long VARCHAR, id VARCHAR); CREATE TABLE trip (duration INTEGER, start_station_id VARCHAR) | SELECT T1.name, T1.long, AVG(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id GROUP BY T2.start_station_id |
What is the home teams score when north melbourne is the away team? | CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_87 WHERE away_team = "north melbourne" |
what is the club that as 100 tries? | CREATE TABLE table_name_48 (club VARCHAR, tries_for VARCHAR) | SELECT club FROM table_name_48 WHERE tries_for = "100" |
Who was the opponent at the match smaller than 3? | CREATE TABLE table_name_31 (opponent_team VARCHAR, match INTEGER) | SELECT opponent_team FROM table_name_31 WHERE match < 3 |
What is maximum loss record when the pa record is 47? | CREATE TABLE table_29545993_3 (l INTEGER, pa VARCHAR) | SELECT MAX(l) FROM table_29545993_3 WHERE pa = 47 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.