training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_54 (goals_against INTEGER, goals_for VARCHAR, points VARCHAR) ###human: How many Goals against have Goals for smaller than 33, and Points smaller than 16? ###assistant: SELECT SUM(goals_against) FROM table_name_54 WHERE goals_for < 33 AND points < 16
###context:CREATE TABLE table_name_9 (date VARCHAR, game_site VARCHAR) ###human: What Date was the Game at Griffith Stadium? ###assistant: SELECT date FROM table_name_9 WHERE game_site = "griffith stadium"
###context:CREATE TABLE table_name_4 (attendance VARCHAR, date VARCHAR) ###human: What attendance is listed against the date of bye? ###assistant: SELECT attendance FROM table_name_4 WHERE date = "bye"
###context:CREATE TABLE table_name_77 (date VARCHAR, week VARCHAR) ###human: What date is week 3? ###assistant: SELECT date FROM table_name_77 WHERE week = 3
###context:CREATE TABLE table_name_89 (floors VARCHAR, location VARCHAR) ###human: Which Floors has a Location of tower hill? ###assistant: SELECT floors FROM table_name_89 WHERE location = "tower hill"
###context:CREATE TABLE table_name_18 (location VARCHAR, floors VARCHAR) ###human: Which Location has a Floors of 03.0 n/a? ###assistant: SELECT location FROM table_name_18 WHERE floors = "03.0 n/a"
###context:CREATE TABLE table_name_89 (height_metres___ft VARCHAR, floors VARCHAR) ###human: Name the Height metres / ft of Floors of 05.0 n/a? ###assistant: SELECT height_metres___ft FROM table_name_89 WHERE floors = "05.0 n/a"
###context:CREATE TABLE table_name_14 (years_as_tallest VARCHAR, height_metres___ft VARCHAR) ###human: Name the Years as tallest that has Height metres / ft of 01.0 27 / 90? ###assistant: SELECT years_as_tallest FROM table_name_14 WHERE height_metres___ft = "01.0 27 / 90"
###context:CREATE TABLE table_name_95 (years_as_tallest VARCHAR, height_metres___ft VARCHAR) ###human: Name the Years as tallest has a Height metres / ft of 07.0 150 / 493 [b ]? ###assistant: SELECT years_as_tallest FROM table_name_95 WHERE height_metres___ft = "07.0 150 / 493 [b ]"
###context:CREATE TABLE table_name_68 (height_metres___ft VARCHAR, years_as_tallest VARCHAR) ###human: Name the Height metres / ft of Years with tallest of 1098–1310? ###assistant: SELECT height_metres___ft FROM table_name_68 WHERE years_as_tallest = "1098–1310"
###context:CREATE TABLE table_name_2 (score VARCHAR, place VARCHAR) ###human: How many scores have a Place of t5? ###assistant: SELECT COUNT(score) FROM table_name_2 WHERE place = "t5"
###context:CREATE TABLE table_name_33 (to_par VARCHAR, score VARCHAR, player VARCHAR) ###human: Which To Par has a Score smaller than 70, and a Player of matt kowal? ###assistant: SELECT to_par FROM table_name_33 WHERE score < 70 AND player = "matt kowal"
###context:CREATE TABLE table_name_59 (score INTEGER, to_par VARCHAR) ###human: Which Score has a To Par of –1? ###assistant: SELECT MIN(score) FROM table_name_59 WHERE to_par = "–1"
###context:CREATE TABLE table_name_9 (date VARCHAR, catalog VARCHAR, region VARCHAR) ###human: what is the date for catolog 88697185162 when the region is canada? ###assistant: SELECT date FROM table_name_9 WHERE catalog = 88697185162 AND region = "canada"
###context:CREATE TABLE table_name_44 (parish__prestegjeld_ VARCHAR, church_name VARCHAR) ###human: Which parish has a church named Vangsnes Kyrkje? ###assistant: SELECT parish__prestegjeld_ FROM table_name_44 WHERE church_name = "vangsnes kyrkje"
###context:CREATE TABLE table_name_19 (sub_parish__sokn_ VARCHAR, year_built VARCHAR) ###human: Which Sub-Parish has a church built in 1866? ###assistant: SELECT sub_parish__sokn_ FROM table_name_19 WHERE year_built = "1866"
###context:CREATE TABLE table_name_83 (year_built VARCHAR, church_name VARCHAR) ###human: When was the Hopperstad Stavkyrkje built? ###assistant: SELECT year_built FROM table_name_83 WHERE church_name = "hopperstad stavkyrkje"
###context:CREATE TABLE table_name_43 (year_built VARCHAR, location_of_the_church VARCHAR) ###human: When was the church in Arnafjord built? ###assistant: SELECT year_built FROM table_name_43 WHERE location_of_the_church = "arnafjord"
###context:CREATE TABLE table_name_39 (sub_parish__sokn_ VARCHAR, location_of_the_church VARCHAR) ###human: What is the Sub-Parish called that has a church located in Fresvik? ###assistant: SELECT sub_parish__sokn_ FROM table_name_39 WHERE location_of_the_church = "fresvik"
###context:CREATE TABLE table_name_94 (church_name VARCHAR, sub_parish__sokn_ VARCHAR) ###human: What is the church in the Sub-Parish of Fresvik called? ###assistant: SELECT church_name FROM table_name_94 WHERE sub_parish__sokn_ = "fresvik"
###context:CREATE TABLE table_name_15 (time VARCHAR, city VARCHAR) ###human: What is the time for Sheffield? ###assistant: SELECT time FROM table_name_15 WHERE city = "sheffield"
###context:CREATE TABLE table_name_33 (total VARCHAR, slalom_points VARCHAR) ###human: What are the total points for the skier with 3.18 slalom points? ###assistant: SELECT total FROM table_name_33 WHERE slalom_points = "3.18"
###context:CREATE TABLE table_name_38 (place VARCHAR, downhill_points VARCHAR) ###human: What place is the skier with 7.73 downhill points? ###assistant: SELECT place FROM table_name_38 WHERE downhill_points = 7.73
###context:CREATE TABLE table_name_50 (downhill_points INTEGER, total VARCHAR) ###human: What are the downhill points for the skier with total of 9.31 points? ###assistant: SELECT SUM(downhill_points) FROM table_name_50 WHERE total = "9.31"
###context:CREATE TABLE table_name_87 (rank_points VARCHAR, score_points VARCHAR) ###human: What is the rank for the player where there are 11 points? ###assistant: SELECT rank_points FROM table_name_87 WHERE score_points = "11"
###context:CREATE TABLE table_name_18 (shooter VARCHAR, score_points VARCHAR, total VARCHAR, event VARCHAR) ###human: Which shooter had a total of 11 at the WC Munich with a score of 6? ###assistant: SELECT shooter FROM table_name_18 WHERE total = "11" AND event = "wc munich" AND score_points = "6"
###context:CREATE TABLE table_name_10 (event VARCHAR, score_points VARCHAR) ###human: What is the event where there are 10 score points? ###assistant: SELECT event FROM table_name_10 WHERE score_points = "10"
###context:CREATE TABLE table_name_63 (shooter VARCHAR, total VARCHAR) ###human: Who is the shooter that is the Defending Champion? ###assistant: SELECT shooter FROM table_name_63 WHERE total = "defending champion"
###context:CREATE TABLE table_name_73 (owner VARCHAR, name VARCHAR) ###human: Which owner had MRT 1 HD? ###assistant: SELECT owner FROM table_name_73 WHERE name = "mrt 1 hd"
###context:CREATE TABLE table_name_71 (programming VARCHAR, name VARCHAR) ###human: What is the programming for mrt sobraniski kanal? ###assistant: SELECT programming FROM table_name_71 WHERE name = "mrt sobraniski kanal"
###context:CREATE TABLE table_name_73 (type VARCHAR, programming VARCHAR, owner VARCHAR) ###human: What is the type for a general programming and the owner tv kanal 5? ###assistant: SELECT type FROM table_name_73 WHERE programming = "general" AND owner = "tv kanal 5"
###context:CREATE TABLE table_name_20 (programming VARCHAR, name VARCHAR) ###human: What is the programming for Kanal 5? ###assistant: SELECT programming FROM table_name_20 WHERE name = "kanal 5"
###context:CREATE TABLE table_name_91 (surface VARCHAR, date VARCHAR) ###human: What was the surface on march 2, 1997? ###assistant: SELECT surface FROM table_name_91 WHERE date = "march 2, 1997"
###context:CREATE TABLE table_name_16 (result VARCHAR, partner VARCHAR) ###human: What was the result when the partner was magdalena maleeva? ###assistant: SELECT result FROM table_name_16 WHERE partner = "magdalena maleeva"
###context:CREATE TABLE table_name_34 (edition VARCHAR, partner VARCHAR) ###human: What edition had magdalena maleeva as partner? ###assistant: SELECT edition FROM table_name_34 WHERE partner = "magdalena maleeva"
###context:CREATE TABLE table_name_23 (partner VARCHAR, edition VARCHAR) ###human: Who was partner for the 1988 world group i edition? ###assistant: SELECT partner FROM table_name_23 WHERE edition = "1988 world group i"
###context:CREATE TABLE table_name_4 (result VARCHAR, date VARCHAR) ###human: What was the result on july 16, 1992? ###assistant: SELECT result FROM table_name_4 WHERE date = "july 16, 1992"
###context:CREATE TABLE table_name_70 (event VARCHAR, position VARCHAR) ###human: What is the event that is in 8th position? ###assistant: SELECT event FROM table_name_70 WHERE position = "8th"
###context:CREATE TABLE table_name_37 (event VARCHAR, year INTEGER) ###human: What is the event in a year before 1989? ###assistant: SELECT event FROM table_name_37 WHERE year < 1989
###context:CREATE TABLE table_name_24 (total INTEGER, year_s__won VARCHAR) ###human: What is the total medals in 1964? ###assistant: SELECT MIN(total) FROM table_name_24 WHERE year_s__won = "1964"
###context:CREATE TABLE table_name_32 (kills VARCHAR, assists VARCHAR, percentage VARCHAR, total_attempts VARCHAR) ###human: How many kills when percentage is more than 0.313, attempts are more than 1035 and assists are larger than 57? ###assistant: SELECT COUNT(kills) FROM table_name_32 WHERE percentage > 0.313 AND total_attempts > 1035 AND assists > 57
###context:CREATE TABLE table_name_66 (percentage INTEGER, total_blocks INTEGER) ###human: What is the highest percentage when there are more than 361 blocks? ###assistant: SELECT MAX(percentage) FROM table_name_66 WHERE total_blocks > 361
###context:CREATE TABLE table_name_78 (total_blocks INTEGER, digs VARCHAR, total_attempts VARCHAR) ###human: What is the total blocks when there are less than 210 digs and the total attempts are more than 1116? ###assistant: SELECT AVG(total_blocks) FROM table_name_78 WHERE digs < 210 AND total_attempts > 1116
###context:CREATE TABLE table_name_26 (english VARCHAR, german VARCHAR) ###human: Which English has German of leben? ###assistant: SELECT english FROM table_name_26 WHERE german = "leben"
###context:CREATE TABLE table_name_61 (plautdietsch VARCHAR, dutch VARCHAR) ###human: Which Plautdietsch has Dutch of maken? ###assistant: SELECT plautdietsch FROM table_name_61 WHERE dutch = "maken"
###context:CREATE TABLE table_name_26 (english VARCHAR, dutch VARCHAR) ###human: Which English has Dutch of tong? ###assistant: SELECT english FROM table_name_26 WHERE dutch = "tong"
###context:CREATE TABLE table_name_64 (english VARCHAR, plautdietsch VARCHAR) ###human: Which English has Plautdietsch of aupel? ###assistant: SELECT english FROM table_name_64 WHERE plautdietsch = "aupel"
###context:CREATE TABLE table_name_37 (english VARCHAR, dutch VARCHAR) ###human: Which English has Dutch of maken? ###assistant: SELECT english FROM table_name_37 WHERE dutch = "maken"
###context:CREATE TABLE table_name_21 (country VARCHAR, year_s__won VARCHAR) ###human: Can you tell me the Country that has the Year(s) Won of 1988? ###assistant: SELECT country FROM table_name_21 WHERE year_s__won = "1988"
###context:CREATE TABLE table_name_60 (total INTEGER, to_par VARCHAR, country VARCHAR) ###human: Can you tell me the average Total that has the To par smaller than 10, and the Country of south korea? ###assistant: SELECT AVG(total) FROM table_name_60 WHERE to_par < 10 AND country = "south korea"
###context:CREATE TABLE table_name_62 (year_s__won VARCHAR, country VARCHAR, total VARCHAR) ###human: Can you tell me the Year(s) Won that has the Country of united states, and the Total larger than 152? ###assistant: SELECT year_s__won FROM table_name_62 WHERE country = "united states" AND total > 152
###context:CREATE TABLE table_name_18 (year_s__won VARCHAR, country VARCHAR, to_par VARCHAR, total VARCHAR) ###human: Can you tell me the Year(s) Won that has the To par larger than 5, and the Total smaller than 155, and the Country of united states? ###assistant: SELECT year_s__won FROM table_name_18 WHERE to_par > 5 AND total < 155 AND country = "united states"
###context:CREATE TABLE table_name_34 (player VARCHAR, total VARCHAR, year_s__won VARCHAR) ###human: What golfer has a greater than 293 total, and won in 1989? ###assistant: SELECT player FROM table_name_34 WHERE total > 293 AND year_s__won = "1989"
###context:CREATE TABLE table_name_16 (total INTEGER, to_par VARCHAR) ###human: What is the maximum total when the To par is +3? ###assistant: SELECT MAX(total) FROM table_name_16 WHERE to_par = "+3"
###context:CREATE TABLE table_name_52 (player VARCHAR, total VARCHAR) ###human: What golfer has 281 as their total? ###assistant: SELECT player FROM table_name_52 WHERE total = 281
###context:CREATE TABLE table_name_95 (capacity INTEGER, stadium VARCHAR) ###human: What is the highest capacity of the tsentral stadium (batumi)? ###assistant: SELECT MAX(capacity) FROM table_name_95 WHERE stadium = "tsentral stadium (batumi)"
###context:CREATE TABLE table_name_17 (clubs VARCHAR, stadium VARCHAR) ###human: What clubs are in the evgrapi shevardnadze stadium? ###assistant: SELECT clubs FROM table_name_17 WHERE stadium = "evgrapi shevardnadze stadium"
###context:CREATE TABLE table_name_27 (stadium VARCHAR, clubs VARCHAR) ###human: What is the stadium of the zooveti tbilisi club? ###assistant: SELECT stadium FROM table_name_27 WHERE clubs = "zooveti tbilisi"
###context:CREATE TABLE table_name_79 (college VARCHAR, player VARCHAR) ###human: What college had Jim Leonhard Category:articles with hcards? ###assistant: SELECT college FROM table_name_79 WHERE player = "jim leonhard category:articles with hcards"
###context:CREATE TABLE table_name_25 (original_nfl_team VARCHAR, player VARCHAR) ###human: Who's the original team for Rashied Davis Category:articles with hcards? ###assistant: SELECT original_nfl_team FROM table_name_25 WHERE player = "rashied davis category:articles with hcards"
###context:CREATE TABLE table_name_94 (college VARCHAR, player VARCHAR) ###human: What college has Lance Moore Category:articles with hcards? ###assistant: SELECT college FROM table_name_94 WHERE player = "lance moore category:articles with hcards"
###context:CREATE TABLE table_name_31 (original_nfl_team VARCHAR, pos VARCHAR, college VARCHAR) ###human: What's the original NFL team when the POS is S and college is Georgia Tech? ###assistant: SELECT original_nfl_team FROM table_name_31 WHERE pos = "s" AND college = "georgia tech"
###context:CREATE TABLE table_name_32 (date_of_birth VARCHAR, child VARCHAR) ###human: What is the date of birth of Oliver Buell's child? ###assistant: SELECT date_of_birth FROM table_name_32 WHERE child = "oliver buell"
###context:CREATE TABLE table_name_30 (father VARCHAR, date_of_birth VARCHAR) ###human: Who is the father that was born on January 2, 1842? ###assistant: SELECT father FROM table_name_30 WHERE date_of_birth = "january 2, 1842"
###context:CREATE TABLE table_name_58 (father VARCHAR, mother VARCHAR) ###human: Who is the father of the child whose mother is Presendia Huntington Buell? ###assistant: SELECT father FROM table_name_58 WHERE mother = "presendia huntington buell"
###context:CREATE TABLE table_name_24 (place VARCHAR, country VARCHAR, score VARCHAR) ###human: What was the place in Germany with a score of 69-69=138? ###assistant: SELECT place FROM table_name_24 WHERE score = 69 - 69 = 138 AND country = "germany"
###context:CREATE TABLE table_name_73 (country VARCHAR, place VARCHAR, player VARCHAR) ###human: What is the country that has a place of T6 that Eduardo Romero plays for? ###assistant: SELECT country FROM table_name_73 WHERE place = "t6" AND player = "eduardo romero"
###context:CREATE TABLE table_name_96 (to_par VARCHAR, country VARCHAR) ###human: What is the to par for Scotland? ###assistant: SELECT to_par FROM table_name_96 WHERE country = "scotland"
###context:CREATE TABLE table_name_73 (score VARCHAR, player VARCHAR) ###human: What is the score for Darren Clarke? ###assistant: SELECT score FROM table_name_73 WHERE player = "darren clarke"
###context:CREATE TABLE table_name_17 (country VARCHAR, player VARCHAR, place VARCHAR, score VARCHAR) ###human: What is the country that has a place of T6, a socre of 69-69=138, and where Niclas Fasth played? ###assistant: SELECT country FROM table_name_17 WHERE place = "t6" AND score = 69 - 69 = 138 AND player = "niclas fasth"
###context:CREATE TABLE table_name_42 (losses VARCHAR, against VARCHAR, wins VARCHAR) ###human: What's the total losses that has more than 12 wins and 1017 against? ###assistant: SELECT COUNT(losses) FROM table_name_42 WHERE against = 1017 AND wins > 12
###context:CREATE TABLE table_name_43 (wins INTEGER, benalla_dfl VARCHAR) ###human: What's the most wins of Tatong? ###assistant: SELECT MAX(wins) FROM table_name_43 WHERE benalla_dfl = "tatong"
###context:CREATE TABLE table_name_13 (byes INTEGER, benalla_dfl VARCHAR, against VARCHAR) ###human: What's the most number of byes for Longwood having less than 1944 against? ###assistant: SELECT MAX(byes) FROM table_name_13 WHERE benalla_dfl = "longwood" AND against < 1944
###context:CREATE TABLE table_name_21 (against INTEGER, draws INTEGER) ###human: What is the smallest number against when the draws are less than 0? ###assistant: SELECT MIN(against) FROM table_name_21 WHERE draws < 0
###context:CREATE TABLE table_name_54 (byes INTEGER, benalla_dfl VARCHAR, wins VARCHAR) ###human: What are the average byes of Bonnie Doon having more than 16 wins? ###assistant: SELECT AVG(byes) FROM table_name_54 WHERE benalla_dfl = "bonnie doon" AND wins > 16
###context:CREATE TABLE table_name_91 (club VARCHAR, city VARCHAR) ###human: What is Rovigo's Club? ###assistant: SELECT club FROM table_name_91 WHERE city = "rovigo"
###context:CREATE TABLE table_name_15 (club VARCHAR) ###human: What 2007-08 had A.S. Gubbio 1910 Club? ###assistant: SELECT 2007 AS _08_season FROM table_name_15 WHERE club = "a.s. gubbio 1910"
###context:CREATE TABLE table_name_49 (country VARCHAR, total VARCHAR) ###human: Which country had a total of 295? ###assistant: SELECT country FROM table_name_49 WHERE total = 295
###context:CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR) ###human: On what Date is West Ham United the Home team? ###assistant: SELECT date FROM table_name_35 WHERE home_team = "west ham united"
###context:CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR) ###human: On what Date was the Score 4–1? ###assistant: SELECT date FROM table_name_76 WHERE score = "4–1"
###context:CREATE TABLE table_name_68 (away_team VARCHAR, tie_no VARCHAR) ###human: What is the Away team of Tie no 1? ###assistant: SELECT away_team FROM table_name_68 WHERE tie_no = "1"
###context:CREATE TABLE table_name_37 (tie_no VARCHAR, away_team VARCHAR) ###human: What is the Tie no when Crystal Palace is the Away team? ###assistant: SELECT tie_no FROM table_name_37 WHERE away_team = "crystal palace"
###context:CREATE TABLE table_name_66 (home_team VARCHAR, tie_no VARCHAR) ###human: What is the Home team of Tie no 11? ###assistant: SELECT home_team FROM table_name_66 WHERE tie_no = "11"
###context:CREATE TABLE table_name_84 (date VARCHAR, home_team VARCHAR) ###human: On what Date is West Ham United the Home team? ###assistant: SELECT date FROM table_name_84 WHERE home_team = "west ham united"
###context:CREATE TABLE table_name_10 (week_4 VARCHAR, week_1 VARCHAR) ###human: What kind of Week 4 has a Week 1 of sheila levell? ###assistant: SELECT week_4 FROM table_name_10 WHERE week_1 = "sheila levell"
###context:CREATE TABLE table_name_15 (week_2 VARCHAR, week_4 VARCHAR) ###human: What kind of Week 2 has a Week 4 of araya robinson? ###assistant: SELECT week_2 FROM table_name_15 WHERE week_4 = "araya robinson"
###context:CREATE TABLE table_name_65 (week_4 VARCHAR, week_2 VARCHAR) ###human: What kind of Week 4 has a Week 2 of tiffany logan? ###assistant: SELECT week_4 FROM table_name_65 WHERE week_2 = "tiffany logan"
###context:CREATE TABLE table_name_68 (week_5 VARCHAR, week_1 VARCHAR) ###human: what kind of Week 5 that has a Week 1 of mandy ashford? ###assistant: SELECT week_5 FROM table_name_68 WHERE week_1 = "mandy ashford"
###context:CREATE TABLE table_name_91 (week_2 VARCHAR, week_1 VARCHAR) ###human: What kind of Week 2 that has a Week 1 of mandy ashford? ###assistant: SELECT week_2 FROM table_name_91 WHERE week_1 = "mandy ashford"
###context:CREATE TABLE table_name_81 (week_2 VARCHAR, week_1 VARCHAR) ###human: What Week 2 that has a Week 1 of mackenzie ryan? ###assistant: SELECT week_2 FROM table_name_81 WHERE week_1 = "mackenzie ryan"
###context:CREATE TABLE table_name_70 (name VARCHAR, weight VARCHAR) ###human: What is the name when weight shows head coach: Aleksandr Kabanov? ###assistant: SELECT name FROM table_name_70 WHERE weight = "head coach: aleksandr kabanov"
###context:CREATE TABLE table_name_97 (park_and_ride_lot VARCHAR, station_name VARCHAR) ###human: What is the park & ride lot for the Temple Square station? ###assistant: SELECT park_and_ride_lot FROM table_name_97 WHERE station_name = "temple square"
###context:CREATE TABLE table_name_53 (park_and_ride_lot VARCHAR, station_name VARCHAR) ###human: For the Temple Square station, what is the park & ride lot name? ###assistant: SELECT park_and_ride_lot FROM table_name_53 WHERE station_name = "temple square"
###context:CREATE TABLE table_name_99 (station_name VARCHAR, opening_year VARCHAR, park_and_ride_lot VARCHAR) ###human: Which station was opened in 2013, with no park & ride lot? ###assistant: SELECT station_name FROM table_name_99 WHERE opening_year = "2013" AND park_and_ride_lot = "no"
###context:CREATE TABLE table_name_65 (free_fare_zone VARCHAR, station_name VARCHAR) ###human: Where is the free fare zone for the Arena station? ###assistant: SELECT free_fare_zone FROM table_name_65 WHERE station_name = "arena"
###context:CREATE TABLE table_name_70 (statistic VARCHAR, name VARCHAR) ###human: Calvin Abueva Calvin Abueva had what statistic? ###assistant: SELECT statistic FROM table_name_70 WHERE name = "calvin abueva calvin abueva"
###context:CREATE TABLE table_name_79 (statistic VARCHAR, opponent VARCHAR) ###human: When the opposing team was SSC-R what was the statistic? ###assistant: SELECT statistic FROM table_name_79 WHERE opponent = "ssc-r"
###context:CREATE TABLE table_name_70 (name VARCHAR, opponent VARCHAR) ###human: When SSC-R is the opponent what is the name? ###assistant: SELECT name FROM table_name_70 WHERE opponent = "ssc-r"
###context:CREATE TABLE table_name_7 (stage VARCHAR, statistic VARCHAR) ###human: With a statistic of most points, what is the stage? ###assistant: SELECT stage FROM table_name_7 WHERE statistic = "most points"
###context:CREATE TABLE table_name_49 (total VARCHAR, opponent VARCHAR) ###human: When the opposing team was CSB UPHDS what was the total? ###assistant: SELECT total FROM table_name_49 WHERE opponent = "csb uphds"