training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_2266230_1 (report VARCHAR, year VARCHAR) ###human: Name the report for 2003 ###assistant: SELECT report FROM table_2266230_1 WHERE year = "2003"
###context:CREATE TABLE table_22665117_1 (date_opened VARCHAR, dist_id VARCHAR) ###human: What is the date opened if thedistrict ID is 11901? ###assistant: SELECT date_opened FROM table_22665117_1 WHERE dist_id = 11901
###context:CREATE TABLE table_22665117_1 (authorizing_agency VARCHAR, district_name VARCHAR) ###human: If the district name is the Academy of Flint, what is the authorizing agency? ###assistant: SELECT authorizing_agency FROM table_22665117_1 WHERE district_name = "Academy of Flint"
###context:CREATE TABLE table_22665117_1 (district_name VARCHAR, dist_id VARCHAR) ###human: If the district ID is 74907, what is the name of the district? ###assistant: SELECT district_name FROM table_22665117_1 WHERE dist_id = 74907
###context:CREATE TABLE table_22665117_1 (county VARCHAR, district_name VARCHAR) ###human: If the name of the district is the Charyl Stockwell Academy, what is the county name? ###assistant: SELECT county FROM table_22665117_1 WHERE district_name = "Charyl Stockwell Academy"
###context:CREATE TABLE table_2266976_1 (driver VARCHAR, year VARCHAR) ###human: Who was the driver in 1986? ###assistant: SELECT driver FROM table_2266976_1 WHERE year = "1986"
###context:CREATE TABLE table_2266976_1 (date VARCHAR, average_speed__mph_ VARCHAR) ###human: When was an average speed of 81.388 mph recorded? ###assistant: SELECT date FROM table_2266976_1 WHERE average_speed__mph_ = "81.388"
###context:CREATE TABLE table_2266976_1 (manufacturer VARCHAR, year VARCHAR) ###human: Who was the manufacturer in 1990? ###assistant: SELECT manufacturer FROM table_2266976_1 WHERE year = "1990"
###context:CREATE TABLE table_2266976_1 (manufacturer VARCHAR, race_time VARCHAR) ###human: Who was the manufacturer in the year when the race lasted 2:30:28? ###assistant: SELECT manufacturer FROM table_2266976_1 WHERE race_time = "2:30:28"
###context:CREATE TABLE table_2266976_1 (team VARCHAR, year VARCHAR) ###human: What team competed in 2003? ###assistant: SELECT team FROM table_2266976_1 WHERE year = "2003"
###context:CREATE TABLE table_2266976_1 (miles__km_ VARCHAR, race_time VARCHAR) ###human: How long in miles (km) was the race that lasted 3:07:53? ###assistant: SELECT miles__km_ FROM table_2266976_1 WHERE race_time = "3:07:53"
###context:CREATE TABLE table_22669375_1 (race_name VARCHAR, date VARCHAR) ###human: Name the race name for june 6 ###assistant: SELECT race_name FROM table_22669375_1 WHERE date = "June 6"
###context:CREATE TABLE table_22669375_1 (location VARCHAR, race_name VARCHAR) ###human: Name the location for trenton 300 ###assistant: SELECT location FROM table_22669375_1 WHERE race_name = "Trenton 300"
###context:CREATE TABLE table_22669375_1 (race_name VARCHAR, rnd VARCHAR) ###human: Name the race name for rnd being 11 ###assistant: SELECT race_name FROM table_22669375_1 WHERE rnd = 11
###context:CREATE TABLE table_22669816_1 (length VARCHAR, winning_driver VARCHAR) ###human: What length was won by Roger McCluskey? ###assistant: SELECT length FROM table_22669816_1 WHERE winning_driver = "Roger McCluskey"
###context:CREATE TABLE table_22669816_1 (rnd VARCHAR, track VARCHAR) ###human: What rounds did Phoenix International Raceway host? ###assistant: SELECT rnd FROM table_22669816_1 WHERE track = "Phoenix International Raceway"
###context:CREATE TABLE table_22669816_1 (length VARCHAR, track VARCHAR) ###human: What are the lengths hosted by Pocono International Raceway? ###assistant: SELECT length FROM table_22669816_1 WHERE track = "Pocono International Raceway"
###context:CREATE TABLE table_22669816_1 (length VARCHAR, track VARCHAR) ###human: What lengths did Phoenix International Raceway host? ###assistant: SELECT length FROM table_22669816_1 WHERE track = "Phoenix International Raceway"
###context:CREATE TABLE table_22669044_7 (location_attendance VARCHAR, score VARCHAR) ###human: Name the location attendance for score being l 83–118 (ot) ###assistant: SELECT location_attendance FROM table_22669044_7 WHERE score = "L 83–118 (OT)"
###context:CREATE TABLE table_22669044_7 (high_assists VARCHAR, date VARCHAR) ###human: Name the high assists for december 9 ###assistant: SELECT high_assists FROM table_22669044_7 WHERE date = "December 9"
###context:CREATE TABLE table_2267345_2 (winner VARCHAR, team_classification VARCHAR, combativity_award VARCHAR) ###human: What is the total number of winners when the team classification leader was Kelme-Costa Blanca and the combativity award was won by Jacky Durand? ###assistant: SELECT COUNT(winner) FROM tab...
###context:CREATE TABLE table_2267345_2 (general_classification VARCHAR, young_rider_classification VARCHAR, winner VARCHAR) ###human: Who was the general classification leader when the young rider classification leader was Salvatore Commesso and the winner was Erik Dekker? ###assistant: SELECT general_classifi...
###context:CREATE TABLE table_2267345_2 (team_classification VARCHAR, young_rider_classification VARCHAR, combativity_award VARCHAR) ###human: What is the total number of team classifications when the young rider classification leader was Salvatore Commesso and the combativity award winner was Jacky Durand? ###...
###context:CREATE TABLE table_22673872_1 (rnd INTEGER, winning_driver VARCHAR, track VARCHAR) ###human: In what round did Al Unser win at Wisconsin State Fair Park Speedway? ###assistant: SELECT MIN(rnd) FROM table_22673872_1 WHERE winning_driver = "Al Unser" AND track = "Wisconsin State Fair Park Speedway"
###context:CREATE TABLE table_22673872_1 (race_name VARCHAR, location VARCHAR, winning_driver VARCHAR) ###human: How many races are in College Station, Texas and won by Johnny Rutherford? ###assistant: SELECT COUNT(race_name) FROM table_22673872_1 WHERE location = "College Station, Texas" AND winning_driver = ...
###context:CREATE TABLE table_22673872_1 (race_name VARCHAR, pole_position VARCHAR) ###human: What was the name of the race that Al Unser had the pole position? ###assistant: SELECT race_name FROM table_22673872_1 WHERE pole_position = "Al Unser"
###context:CREATE TABLE table_22673872_1 (track VARCHAR, race_name VARCHAR) ###human: What is the name of the track for the International 500 mile Sweepstakes race? ###assistant: SELECT track FROM table_22673872_1 WHERE race_name = "International 500 Mile Sweepstakes"
###context:CREATE TABLE table_22673872_1 (location VARCHAR, pole_position VARCHAR) ###human: Which locations did Gordon Johncock hold the pole position? ###assistant: SELECT location FROM table_22673872_1 WHERE pole_position = "Gordon Johncock"
###context:CREATE TABLE table_2266990_2 (classification VARCHAR, title VARCHAR) ###human: What classifications does Fish Rap live! has? ###assistant: SELECT classification FROM table_2266990_2 WHERE title = "Fish Rap Live!"
###context:CREATE TABLE table_22673956_1 (race_name VARCHAR, date VARCHAR) ###human: How many races took place on October 1? ###assistant: SELECT COUNT(race_name) FROM table_22673956_1 WHERE date = "October 1"
###context:CREATE TABLE table_22673956_1 (type VARCHAR, track VARCHAR) ###human: How many types of tracks are there on the Phoenix International raceway? ###assistant: SELECT COUNT(type) FROM table_22673956_1 WHERE track = "Phoenix International Raceway"
###context:CREATE TABLE table_22673956_1 (rnd INTEGER, race_name VARCHAR) ###human: Daily Empress Indy Silverstone took place on which round? ###assistant: SELECT MAX(rnd) FROM table_22673956_1 WHERE race_name = "Daily Empress Indy Silverstone"
###context:CREATE TABLE table_22673956_1 (race_name VARCHAR, track VARCHAR) ###human: How many races took place on the Indianapolis Motor Speedway track? ###assistant: SELECT COUNT(race_name) FROM table_22673956_1 WHERE track = "Indianapolis Motor Speedway"
###context:CREATE TABLE table_2267465_1 (driver VARCHAR, race_time VARCHAR) ###human: What driver achieved a 3:50:12 race time? ###assistant: SELECT driver FROM table_2267465_1 WHERE race_time = "3:50:12"
###context:CREATE TABLE table_2267465_1 (manufacturer VARCHAR, team VARCHAR) ###human: Can you tell me the manufacturer behind Race Hill Farm Team? ###assistant: SELECT manufacturer FROM table_2267465_1 WHERE team = "Race Hill Farm team"
###context:CREATE TABLE table_2267465_1 (laps VARCHAR, race_time VARCHAR) ###human: How many laps have a 3:34:26 race time? ###assistant: SELECT COUNT(laps) FROM table_2267465_1 WHERE race_time = "3:34:26"
###context:CREATE TABLE table_2267465_1 (average_speed__mph_ VARCHAR, year VARCHAR) ###human: What's the average mph of 1964? ###assistant: SELECT average_speed__mph_ FROM table_2267465_1 WHERE year = "1964"
###context:CREATE TABLE table_2268216_1 (manufacturer VARCHAR, team VARCHAR) ###human: Whose is the manufacturer for team Ranier-Lundy? ###assistant: SELECT manufacturer FROM table_2268216_1 WHERE team = "Ranier-Lundy"
###context:CREATE TABLE table_2268216_1 (year VARCHAR, average_speed__mph_ VARCHAR) ###human: In what year was the average speed 92.68? ###assistant: SELECT year FROM table_2268216_1 WHERE average_speed__mph_ = "92.68"
###context:CREATE TABLE table_2268216_1 (year VARCHAR, team VARCHAR, manufacturer VARCHAR) ###human: How many years was Pontiac the manufacturer for Joe Gibbs Racing? ###assistant: SELECT COUNT(year) FROM table_2268216_1 WHERE team = "Joe Gibbs Racing" AND manufacturer = "Pontiac"
###context:CREATE TABLE table_2268216_1 (date VARCHAR, race_time VARCHAR) ###human: What is the date for the race that had the time of 2:43:19? ###assistant: SELECT date FROM table_2268216_1 WHERE race_time = "2:43:19"
###context:CREATE TABLE table_2268216_1 (average_speed__mph_ VARCHAR, year VARCHAR) ###human: How many average speeds are listed in the year 2003? ###assistant: SELECT COUNT(average_speed__mph_) FROM table_2268216_1 WHERE year = "2003"
###context:CREATE TABLE table_2268216_1 (team VARCHAR, race_time VARCHAR) ###human: What team had a race time of 2:53:57? ###assistant: SELECT team FROM table_2268216_1 WHERE race_time = "2:53:57"
###context:CREATE TABLE table_22713796_14 (sprint_classification VARCHAR, winner VARCHAR) ###human: Name the sprint classification being alejandro valverde ###assistant: SELECT sprint_classification FROM table_22713796_14 WHERE winner = "Alejandro Valverde"
###context:CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR) ###human: Name the stage for no award ###assistant: SELECT stage FROM table_22713796_14 WHERE mountains_classification = "no award"
###context:CREATE TABLE table_22713796_14 (stage VARCHAR, mountains_classification VARCHAR) ###human: Name the total number of stage for lloyd mondory ###assistant: SELECT COUNT(stage) FROM table_22713796_14 WHERE mountains_classification = "Lloyd Mondory"
###context:CREATE TABLE table_22713796_14 (stage INTEGER, winner VARCHAR, general_classification VARCHAR, team_classification VARCHAR) ###human: Name the most stage for alejandro valverde and astana greg henderson ###assistant: SELECT MAX(stage) FROM table_22713796_14 WHERE general_classification = "Alejandro V...
###context:CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, conference VARCHAR) ###human: When the Border Conference was held, who was the tournament winner? ###assistant: SELECT tournament_winner FROM table_22733636_1 WHERE conference = "Border conference"
###context:CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, regular_season_winner VARCHAR) ###human: When Princeton was the regular season winner, who was the tournament winner? ###assistant: SELECT tournament_winner FROM table_22733636_1 WHERE regular_season_winner = "Princeton"
###context:CREATE TABLE table_22719663_3 (experience VARCHAR, name VARCHAR) ###human: How long has Mel Daniels been playing? ###assistant: SELECT experience FROM table_22719663_3 WHERE name = "Mel Daniels"
###context:CREATE TABLE table_22719663_3 (position VARCHAR, college VARCHAR) ###human: What position did the player from San Jose State play? ###assistant: SELECT position FROM table_22719663_3 WHERE college = "San Jose State"
###context:CREATE TABLE table_22719663_3 (number VARCHAR, height VARCHAR) ###human: What was the number of the player that was 6-6? ###assistant: SELECT number FROM table_22719663_3 WHERE height = "6-6"
###context:CREATE TABLE table_22736523_1 (result VARCHAR, order__number VARCHAR, song_choice VARCHAR) ###human: If the song choice is Coba and the order number is 10, what is the result? ###assistant: SELECT result FROM table_22736523_1 WHERE order__number = "10" AND song_choice = "Coba"
###context:CREATE TABLE table_22736523_1 (result VARCHAR, song_choice VARCHAR) ###human: What is the result if Coba is the song choice? ###assistant: SELECT result FROM table_22736523_1 WHERE song_choice = "Coba"
###context:CREATE TABLE table_22736523_1 (order__number VARCHAR, song_choice VARCHAR) ###human: If Coba is the song choice, what is the order number? ###assistant: SELECT order__number FROM table_22736523_1 WHERE song_choice = "Coba"
###context:CREATE TABLE table_22736523_1 (theme VARCHAR, song_choice VARCHAR) ###human: If Crazy In Love is the song choice, what is the theme? ###assistant: SELECT theme FROM table_22736523_1 WHERE song_choice = "Crazy In Love"
###context:CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR) ###human: For week number of the top 40, what was the results? ###assistant: SELECT result FROM table_22736523_1 WHERE week__number = "Top 40"
###context:CREATE TABLE table_22736523_1 (result VARCHAR, week__number VARCHAR) ###human: For week of top 9, what were the results? ###assistant: SELECT result FROM table_22736523_1 WHERE week__number = "Top 9"
###context:CREATE TABLE table_2273738_1 (type VARCHAR, city VARCHAR) ###human: The city of Birmingham is what type of location? ###assistant: SELECT type FROM table_2273738_1 WHERE city = "Birmingham"
###context:CREATE TABLE table_2273738_1 (type VARCHAR, local_authority VARCHAR) ###human: Leeds City Council is the local authority for what type of location? ###assistant: SELECT type FROM table_2273738_1 WHERE local_authority = "Leeds city Council"
###context:CREATE TABLE table_2273738_1 (metropolitan_area VARCHAR, county VARCHAR) ###human: Tyne and Wear County has what total membership for their metropolitan area? ###assistant: SELECT metropolitan_area FROM table_2273738_1 WHERE county = "Tyne and Wear"
###context:CREATE TABLE table_2273738_1 (metropolitan_area INTEGER, city VARCHAR) ###human: What is the total membership for the metropolitan area in the city of Manchester? ###assistant: SELECT MAX(metropolitan_area) FROM table_2273738_1 WHERE city = "Manchester"
###context:CREATE TABLE table_22752982_5 (runner_up_a VARCHAR, winner VARCHAR) ###human: Who was the runner-up (a) if K. P. Ramalingam won the election? ###assistant: SELECT runner_up_a FROM table_22752982_5 WHERE winner = "K. P. Ramalingam"
###context:CREATE TABLE table_22737506_1 (team_name VARCHAR, races VARCHAR) ###human: When 1 (5) is the races what is the team name? ###assistant: SELECT team_name FROM table_22737506_1 WHERE races = "1 (5)"
###context:CREATE TABLE table_22737506_1 (poles INTEGER, pos VARCHAR) ###human: When 19th is the position what is the highest amount of poles? ###assistant: SELECT MAX(poles) FROM table_22737506_1 WHERE pos = "19th"
###context:CREATE TABLE table_22737506_1 (pos VARCHAR, points VARCHAR) ###human: When 86 is the amount of points what is the position? ###assistant: SELECT pos FROM table_22737506_1 WHERE points = 86
###context:CREATE TABLE table_22754310_1 (margin INTEGER, party VARCHAR, winner VARCHAR) ###human: Name the most margin for nco party and p. ramachandran won ###assistant: SELECT MAX(margin) FROM table_22754310_1 WHERE party = "NCO" AND winner = "P. Ramachandran"
###context:CREATE TABLE table_22754310_1 (party VARCHAR, runner_up_a VARCHAR) ###human: Name the party a for m. s. k. sathiyendran runner up ###assistant: SELECT party AS a FROM table_22754310_1 WHERE runner_up_a = "M. S. K. Sathiyendran"
###context:CREATE TABLE table_22754310_1 (party VARCHAR, constituency VARCHAR) ###human: Name the party a for sriperumbudur ###assistant: SELECT party AS a FROM table_22754310_1 WHERE constituency = "Sriperumbudur"
###context:CREATE TABLE table_22754310_1 (runner_up_a VARCHAR, constituency VARCHAR) ###human: Name the total number of runner up a for perambalur ###assistant: SELECT COUNT(runner_up_a) FROM table_22754310_1 WHERE constituency = "Perambalur"
###context:CREATE TABLE table_22754310_1 (constituency VARCHAR, margin VARCHAR) ###human: Name the constituency for 175130 ###assistant: SELECT constituency FROM table_22754310_1 WHERE margin = 175130
###context:CREATE TABLE table_22753439_1 (margin VARCHAR, winner VARCHAR) ###human: How many margins have a winner of S. Singaravadivel? ###assistant: SELECT COUNT(margin) FROM table_22753439_1 WHERE winner = "S. Singaravadivel"
###context:CREATE TABLE table_22753439_1 (winner VARCHAR, runner_up_a VARCHAR) ###human: How many winners have a runner-up of A. Karthikeyan? ###assistant: SELECT COUNT(winner) FROM table_22753439_1 WHERE runner_up_a = "A. Karthikeyan"
###context:CREATE TABLE table_22753439_1 (party VARCHAR, winner VARCHAR) ###human: What is every party with a winner of P. Chidambaram? ###assistant: SELECT party AS a FROM table_22753439_1 WHERE winner = "P. Chidambaram"
###context:CREATE TABLE table_22753439_1 (party VARCHAR, constituency VARCHAR) ###human: What is every party A with a constituency of Tiruchendur? ###assistant: SELECT party AS a FROM table_22753439_1 WHERE constituency = "Tiruchendur"
###context:CREATE TABLE table_22753245_1 (constituency VARCHAR, runner_up_a VARCHAR) ###human: Who is the constituency when the runner-up was d. Venugopal? ###assistant: SELECT constituency FROM table_22753245_1 WHERE runner_up_a = "D. Venugopal"
###context:CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR) ###human: What is the party where the constituency is 10. Tindivanam? ###assistant: SELECT party FROM table_22753245_1 WHERE constituency = "10. Tindivanam"
###context:CREATE TABLE table_22753245_1 (party VARCHAR, constituency VARCHAR) ###human: What is the party when the constituency is 1. Chennai North? ###assistant: SELECT party FROM table_22753245_1 WHERE constituency = "1. Chennai North"
###context:CREATE TABLE table_22753245_1 (margin VARCHAR, party VARCHAR, winner VARCHAR) ###human: How many margin results are listed in the election that was won by L. Adaikalaraj C and the party was the Indian national congress? ###assistant: SELECT COUNT(margin) FROM table_22753245_1 WHERE party = "Indian N...
###context:CREATE TABLE table_22754491_1 (margin INTEGER, winner VARCHAR) ###human: What is the margin when k. balathandayutham is the winner? ###assistant: SELECT MAX(margin) FROM table_22754491_1 WHERE winner = "K. Balathandayutham"
###context:CREATE TABLE table_22754491_1 (margin VARCHAR, constituency VARCHAR) ###human: What is the margin when periyakulam is the constituency? ###assistant: SELECT margin FROM table_22754491_1 WHERE constituency = "Periyakulam"
###context:CREATE TABLE table_22765887_1 (pole_position VARCHAR, date VARCHAR) ###human: Who had the pole position in the August 15, 1981 race? ###assistant: SELECT pole_position FROM table_22765887_1 WHERE date = "August 15, 1981"
###context:CREATE TABLE table_22765887_1 (track VARCHAR, date VARCHAR) ###human: Which track was used on September 12, 1981? ###assistant: SELECT track FROM table_22765887_1 WHERE date = "September 12, 1981"
###context:CREATE TABLE table_22771048_3 (extension VARCHAR, city_neighborhood VARCHAR) ###human: Name the extension for university of washington ###assistant: SELECT extension FROM table_22771048_3 WHERE city_neighborhood = "University of Washington"
###context:CREATE TABLE table_22771048_3 (projected_opening INTEGER) ###human: Name the least projected opening ###assistant: SELECT MIN(projected_opening) FROM table_22771048_3
###context:CREATE TABLE table_22771048_3 (transit_connections VARCHAR, station VARCHAR) ###human: Name the transit connections for capitol hill u ###assistant: SELECT transit_connections FROM table_22771048_3 WHERE station = "Capitol Hill U"
###context:CREATE TABLE table_22771048_4 (city_neighborhood VARCHAR, station VARCHAR) ###human: How many neighborhoods have a station proposed at a Hospital? ###assistant: SELECT COUNT(city_neighborhood) FROM table_22771048_4 WHERE station = "Hospital"
###context:CREATE TABLE table_22771048_2 (transit_connections VARCHAR, station VARCHAR) ###human: What are the transit connections from Pioneer Square U? ###assistant: SELECT transit_connections FROM table_22771048_2 WHERE station = "Pioneer Square U"
###context:CREATE TABLE table_22771048_2 (transit_connections VARCHAR, city_neighborhood VARCHAR) ###human: What's the transit connection in Columbia City, Seattle? ###assistant: SELECT transit_connections FROM table_22771048_2 WHERE city_neighborhood = "Columbia City, Seattle"
###context:CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR) ###human: For small patent type of protections, what type of PCT route is available? ###assistant: SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = "small patent"
###context:CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, country VARCHAR) ###human: In Tonga, what is the conversion from patent application? ###assistant: SELECT conversion_from_patent_application FROM table_2279413_1 WHERE country = "Tonga"
###context:CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR) ###human: For short patent type of protections, what type of PCT route is available? ###assistant: SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = "short patent"
###context:CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, country VARCHAR) ###human: In Tangier Zone, what is the PCT route availibility? ###assistant: SELECT pct_route_available FROM table_2279413_1 WHERE country = "Tangier Zone"
###context:CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, maximum_term VARCHAR, pct_route_available VARCHAR) ###human: When the PCT route available is yes and the maximum term is 10 years, what are the available conversions from patent applications? ###assistant: SELECT conversion_fro...
###context:CREATE TABLE table_22801331_1 (result VARCHAR, record VARCHAR) ###human: What was the result against the team which the Cowboys have a 6-2 record against? ###assistant: SELECT result FROM table_22801331_1 WHERE record = "6-2"
###context:CREATE TABLE table_22801331_1 (opponents INTEGER, cowboys_points VARCHAR) ###human: What is the fewest points opponents have scored when the Cowboys score 36? ###assistant: SELECT MIN(opponents) FROM table_22801331_1 WHERE cowboys_points = 36
###context:CREATE TABLE table_22801331_1 (opponents VARCHAR, record VARCHAR) ###human: How many opponents have a 1-0 record against the Cowboys? ###assistant: SELECT opponents FROM table_22801331_1 WHERE record = "1-0"
###context:CREATE TABLE table_22801331_1 (game VARCHAR, record VARCHAR) ###human: What game was held against a team with a 6-3 record against the Cowboys? ###assistant: SELECT game FROM table_22801331_1 WHERE record = "6-3"
###context:CREATE TABLE table_22810095_8 (COUnT VARCHAR, country VARCHAR) ###human: How many names have a country of civ? ###assistant: SELECT COUnT AS name FROM table_22810095_8 WHERE country = "CIV"
###context:CREATE TABLE table_22810095_8 (name VARCHAR, moving_from VARCHAR) ###human: Who moved from Northampton Town? ###assistant: SELECT name FROM table_22810095_8 WHERE moving_from = "northampton Town"