combined_text
stringlengths
106
1.05k
###question:What is the number of Justin Jeffries?###answer:SELECT COUNT(number) FROM table_name_31 WHERE name = "justin jeffries"###context:CREATE TABLE table_name_31 (number VARCHAR, name VARCHAR)
###question:How many games has number 61 played in?###answer:SELECT MIN(games) AS ↑ FROM table_name_29 WHERE number = 61###context:CREATE TABLE table_name_29 (games INTEGER, number VARCHAR)
###question:What is the name of the player who is a wr and has a weight of 197?###answer:SELECT name FROM table_name_83 WHERE position = "wr" AND weight = 197###context:CREATE TABLE table_name_83 (name VARCHAR, position VARCHAR, weight VARCHAR)
###question:What is the hometown of number 40?###answer:SELECT hometown FROM table_name_44 WHERE number = 40###context:CREATE TABLE table_name_44 (hometown VARCHAR, number VARCHAR)
###question:What date is the visitor Ottawa?###answer:SELECT date FROM table_name_91 WHERE visitor = "ottawa"###context:CREATE TABLE table_name_91 (date VARCHAR, visitor VARCHAR)
###question:what is the sum of the year in rhode island###answer:SELECT SUM(year) FROM table_name_99 WHERE state = "rhode island"###context:CREATE TABLE table_name_99 (year INTEGER, state VARCHAR)
###question:what is the senator in kentucky###answer:SELECT senator FROM table_name_72 WHERE state = "kentucky"###context:CREATE TABLE table_name_72 (senator VARCHAR, state VARCHAR)
###question:What is the destination of the rail with Dhanbad as the origin?###answer:SELECT destination FROM table_name_76 WHERE origin = "dhanbad"###context:CREATE TABLE table_name_76 (destination VARCHAR, origin VARCHAR)
###question:What is the destination of the Garib nwaz exp train?###answer:SELECT destination FROM table_name_87 WHERE train_name = "garib nwaz exp"###context:CREATE TABLE table_name_87 (destination VARCHAR, train_name VARCHAR)
###question:What is the train name of the rail with a daily frequency and a destination of Rajgir?###answer:SELECT train_name FROM table_name_44 WHERE frequency__inbound_outbound_ = "daily" AND destination = "rajgir"###context:CREATE TABLE table_name_44 (train_name VARCHAR, frequency__inbound_outbound_ VARCHAR, destina...
###question:What is the train name of the rail with a daily frequency and Jammutawi as the destination?###answer:SELECT train_name FROM table_name_61 WHERE frequency__inbound_outbound_ = "daily" AND destination = "jammutawi"###context:CREATE TABLE table_name_61 (train_name VARCHAR, frequency__inbound_outbound_ VARCHAR,...
###question:What is the frequency of the rail with an origin of Ranchi?###answer:SELECT frequency__inbound_outbound_ FROM table_name_72 WHERE origin = "ranchi"###context:CREATE TABLE table_name_72 (frequency__inbound_outbound_ VARCHAR, origin VARCHAR)
###question:What is the frequency of the train named Garib nwaz exp?###answer:SELECT frequency__inbound_outbound_ FROM table_name_10 WHERE train_name = "garib nwaz exp"###context:CREATE TABLE table_name_10 (frequency__inbound_outbound_ VARCHAR, train_name VARCHAR)
###question:Name the segment c with episode less than 179 and segment b of s sticker###answer:SELECT segment_c FROM table_name_63 WHERE episode < 179 AND segment_b = "s sticker"###context:CREATE TABLE table_name_63 (segment_c VARCHAR, episode VARCHAR, segment_b VARCHAR)
###question:Name the segment c for ski goggles###answer:SELECT segment_c FROM table_name_78 WHERE segment_a = "ski goggles"###context:CREATE TABLE table_name_78 (segment_c VARCHAR, segment_a VARCHAR)
###question:In which position did Steve play first?###answer:SELECT position FROM table_name_26 WHERE first = "steve"###context:CREATE TABLE table_name_26 (position VARCHAR, first VARCHAR)
###question:Which bats did mitchell play first?###answer:SELECT bats FROM table_name_23 WHERE first = "mitchell"###context:CREATE TABLE table_name_23 (bats VARCHAR, first VARCHAR)
###question:When is mr. ryan's DOB?###answer:SELECT dob FROM table_name_19 WHERE surname = "ryan"###context:CREATE TABLE table_name_19 (dob VARCHAR, surname VARCHAR)
###question:Which Throws have a Position of 3b/rhp?###answer:SELECT throws FROM table_name_1 WHERE position = "3b/rhp"###context:CREATE TABLE table_name_1 (throws VARCHAR, position VARCHAR)
###question:When is Collins' DOB?###answer:SELECT dob FROM table_name_22 WHERE surname = "collins"###context:CREATE TABLE table_name_22 (dob VARCHAR, surname VARCHAR)
###question:Which Position has a D.O.B. of 3 june 1989?###answer:SELECT position FROM table_name_78 WHERE dob = "3 june 1989"###context:CREATE TABLE table_name_78 (position VARCHAR, dob VARCHAR)
###question:What type of architecture does the Saturn Vue have?###answer:SELECT architecture FROM table_name_15 WHERE vehicle_name = "saturn vue"###context:CREATE TABLE table_name_15 (architecture VARCHAR, vehicle_name VARCHAR)
###question:What architecture type does the Ford Escort Wagon have?###answer:SELECT architecture FROM table_name_73 WHERE original_vehicle = "ford escort wagon"###context:CREATE TABLE table_name_73 (architecture VARCHAR, original_vehicle VARCHAR)
###question:What original vehicle has uwhvt homepage architecture?###answer:SELECT original_vehicle FROM table_name_76 WHERE architecture = "uwhvt homepage"###context:CREATE TABLE table_name_76 (original_vehicle VARCHAR, architecture VARCHAR)
###question:Which Winner has a Last 16 of £400?###answer:SELECT winner FROM table_name_4 WHERE last_16 = "£400"###context:CREATE TABLE table_name_4 (winner VARCHAR, last_16 VARCHAR)
###question:Which Runner-Up has a Total of £31,200?###answer:SELECT runner_up FROM table_name_44 WHERE total = "£31,200"###context:CREATE TABLE table_name_44 (runner_up VARCHAR, total VARCHAR)
###question:Which Runner-Up has a Last 16 of £300?###answer:SELECT runner_up FROM table_name_52 WHERE last_16 = "£300"###context:CREATE TABLE table_name_52 (runner_up VARCHAR, last_16 VARCHAR)
###question:Which Last 64 has a Total of £34,600?###answer:SELECT last_64 FROM table_name_65 WHERE total = "£34,600"###context:CREATE TABLE table_name_65 (last_64 VARCHAR, total VARCHAR)
###question:Which Winner has Semi-Finalists of £2,000?###answer:SELECT winner FROM table_name_71 WHERE semi_finalists = "£2,000"###context:CREATE TABLE table_name_71 (winner VARCHAR, semi_finalists VARCHAR)
###question:Which Year has a Quarter-Finalists of £1,000, and Semi-Finalists of £1,500?###answer:SELECT year FROM table_name_16 WHERE quarter_finalists = "£1,000" AND semi_finalists = "£1,500"###context:CREATE TABLE table_name_16 (year VARCHAR, quarter_finalists VARCHAR, semi_finalists VARCHAR)
###question:How tall is Dylan Postl?###answer:SELECT height FROM table_name_69 WHERE name = "dylan postl"###context:CREATE TABLE table_name_69 (height VARCHAR, name VARCHAR)
###question:What is the largest amount of goals when the points are less than 0?###answer:SELECT MAX(goals) FROM table_name_3 WHERE points < 0###context:CREATE TABLE table_name_3 (goals INTEGER, points INTEGER)
###question:Which player has more than 0 goals and less than 12 tries?###answer:SELECT player FROM table_name_5 WHERE goals > 0 AND tries < 12###context:CREATE TABLE table_name_5 (player VARCHAR, goals VARCHAR, tries VARCHAR)
###question:What is the smallest number of tries when Matt Diskin is the player and there are more than 16 points?###answer:SELECT MIN(tries) FROM table_name_84 WHERE player = "matt diskin" AND points > 16###context:CREATE TABLE table_name_84 (tries INTEGER, player VARCHAR, points VARCHAR)
###question:Which position has more than 4 points, less than 12 tries, a squad number of more than 1, and where Ali Lauitiiti is a player?###answer:SELECT position FROM table_name_58 WHERE points > 4 AND tries < 12 AND squad_no > 1 AND player = "ali lauitiiti"###context:CREATE TABLE table_name_58 (position VARCHAR, pla...
###question:What is the total number of squad no when there are more than 8 points, Danny Mcguire is a player, and there are more than 0 goals?###answer:SELECT SUM(squad_no) FROM table_name_23 WHERE points > 8 AND player = "danny mcguire" AND goals > 0###context:CREATE TABLE table_name_23 (squad_no INTEGER, goals VARCH...
###question:What is the lowest lost from drawn of 1 or greater?###answer:SELECT MIN(lost) FROM table_name_18 WHERE drawn > 1###context:CREATE TABLE table_name_18 (lost INTEGER, drawn INTEGER)
###question:What is the highest games from a game with points less than 4, drawn of 1 and a lost less than 6?###answer:SELECT MAX(games) FROM table_name_58 WHERE points < 4 AND drawn = 1 AND lost < 6###context:CREATE TABLE table_name_58 (games INTEGER, lost VARCHAR, points VARCHAR, drawn VARCHAR)
###question:What is the score of the game on January 18?###answer:SELECT score FROM table_name_85 WHERE date = "january 18"###context:CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)
###question:What is the score of the game on January 10?###answer:SELECT score FROM table_name_82 WHERE date = "january 10"###context:CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)
###question:What is the score of the game on November 12 with the Chicago Black Hawks as the visitor team?###answer:SELECT score FROM table_name_24 WHERE visitor = "chicago black hawks" AND date = "november 12"###context:CREATE TABLE table_name_24 (score VARCHAR, visitor VARCHAR, date VARCHAR)
###question:What is the series score of the game on May 6?###answer:SELECT series FROM table_name_55 WHERE date = "may 6"###context:CREATE TABLE table_name_55 (series VARCHAR, date VARCHAR)
###question:The Zeehond was built by whom?###answer:SELECT builder FROM table_name_49 WHERE ship = "zeehond"###context:CREATE TABLE table_name_49 (builder VARCHAR, ship VARCHAR)
###question:What college, junior, or club team did Victor Ignatjev play for?###answer:SELECT college_junior_club_team FROM table_name_90 WHERE player = "victor ignatjev"###context:CREATE TABLE table_name_90 (college_junior_club_team VARCHAR, player VARCHAR)
###question:Which player is from Sweden?###answer:SELECT player FROM table_name_47 WHERE nationality = "sweden"###context:CREATE TABLE table_name_47 (player VARCHAR, nationality VARCHAR)
###question:What was the score on April 22?###answer:SELECT score FROM table_name_17 WHERE date = "april 22"###context:CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR)
###question:What opponent has a score of 1-3?###answer:SELECT opponent FROM table_name_70 WHERE score = "1-3"###context:CREATE TABLE table_name_70 (opponent VARCHAR, score VARCHAR)
###question:What is the record for April 21?###answer:SELECT record FROM table_name_42 WHERE date = "april 21"###context:CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)
###question:Which Player has a Round larger than 5, and a School/Club Team of bethune-cookman?###answer:SELECT player FROM table_name_52 WHERE round > 5 AND school_club_team = "bethune-cookman"###context:CREATE TABLE table_name_52 (player VARCHAR, round VARCHAR, school_club_team VARCHAR)
###question:Which Position has a Pick smaller than 152, and a Round smaller than 3?###answer:SELECT position FROM table_name_92 WHERE pick < 152 AND round < 3###context:CREATE TABLE table_name_92 (position VARCHAR, pick VARCHAR, round VARCHAR)
###question:How many Picks have a Position of defensive back?###answer:SELECT COUNT(pick) FROM table_name_61 WHERE position = "defensive back"###context:CREATE TABLE table_name_61 (pick VARCHAR, position VARCHAR)
###question:Which Player has a Round smaller than 11, and a Pick smaller than 152, and a Position of guard?###answer:SELECT player FROM table_name_10 WHERE round < 11 AND pick < 152 AND position = "guard"###context:CREATE TABLE table_name_10 (player VARCHAR, position VARCHAR, round VARCHAR, pick VARCHAR)
###question:Which participants won the silver medal for the Men's Doubles?###answer:SELECT name FROM table_name_57 WHERE medal = "silver" AND event = "men's doubles"###context:CREATE TABLE table_name_57 (name VARCHAR, medal VARCHAR, event VARCHAR)
###question:What event did Rashid Sidek participate in?###answer:SELECT event FROM table_name_8 WHERE name = "rashid sidek"###context:CREATE TABLE table_name_8 (event VARCHAR, name VARCHAR)
###question:Which Olympic Games had a silver medal for the Men's Singles?###answer:SELECT games FROM table_name_33 WHERE event = "men's singles" AND medal = "silver"###context:CREATE TABLE table_name_33 (games VARCHAR, event VARCHAR, medal VARCHAR)
###question:Which sport was in the 1992 Barcelona games?###answer:SELECT sport FROM table_name_92 WHERE games = "1992 barcelona"###context:CREATE TABLE table_name_92 (sport VARCHAR, games VARCHAR)
###question:What event was in the 2008 Beijing games?###answer:SELECT event FROM table_name_81 WHERE games = "2008 beijing"###context:CREATE TABLE table_name_81 (event VARCHAR, games VARCHAR)
###question:What is the round of the defense player from the United States?###answer:SELECT round FROM table_name_32 WHERE position = "defense" AND nationality = "united states"###context:CREATE TABLE table_name_32 (round VARCHAR, position VARCHAR, nationality VARCHAR)
###question:What is the position of Dale Craigwell?###answer:SELECT position FROM table_name_67 WHERE player = "dale craigwell"###context:CREATE TABLE table_name_67 (position VARCHAR, player VARCHAR)
###question:What is the position of the player from Sweden?###answer:SELECT position FROM table_name_93 WHERE nationality = "sweden"###context:CREATE TABLE table_name_93 (position VARCHAR, nationality VARCHAR)
###question:Who is the player from a round larger than 5 and the college/junior/club team of Leningrad SKA (russia)?###answer:SELECT player FROM table_name_94 WHERE round > 5 AND college_junior_club_team = "leningrad ska (russia)"###context:CREATE TABLE table_name_94 (player VARCHAR, round VARCHAR, college_junior_club_...
###question:What position does Mikhail Kravets play?###answer:SELECT position FROM table_name_15 WHERE player = "mikhail kravets"###context:CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR)
###question:Which date was held at Laguna Seca Raceway, in class GTX/GTO?###answer:SELECT date FROM table_name_94 WHERE circuit = "laguna seca raceway" AND class = "gtx/gto"###context:CREATE TABLE table_name_94 (date VARCHAR, circuit VARCHAR, class VARCHAR)
###question:Which circuit was held on May 7 for 1 hour?###answer:SELECT circuit FROM table_name_24 WHERE date = "may 7" AND length = "1 hour"###context:CREATE TABLE table_name_24 (circuit VARCHAR, date VARCHAR, length VARCHAR)
###question:Which circuit has a length of 45 minutes and is held on August 6?###answer:SELECT circuit FROM table_name_78 WHERE length = "45 minutes" AND date = "august 6"###context:CREATE TABLE table_name_78 (circuit VARCHAR, length VARCHAR, date VARCHAR)
###question:What is the length of the 6 Hours of Talladega?###answer:SELECT length FROM table_name_82 WHERE race = "6 hours of talladega"###context:CREATE TABLE table_name_82 (length VARCHAR, race VARCHAR)
###question:Name the class AA with class A of rule and school year of 1995-96###answer:SELECT class_aA FROM table_name_52 WHERE class_a = "rule" AND school_year = "1995-96"###context:CREATE TABLE table_name_52 (class_aA VARCHAR, class_a VARCHAR, school_year VARCHAR)
###question:Name the class A with school year of 2004-05###answer:SELECT class_a FROM table_name_59 WHERE school_year = "2004-05"###context:CREATE TABLE table_name_59 (class_a VARCHAR, school_year VARCHAR)
###question:Name the clas AAAA of school year 2000-01###answer:SELECT class_aAAA FROM table_name_76 WHERE school_year = "2000-01"###context:CREATE TABLE table_name_76 (class_aAAA VARCHAR, school_year VARCHAR)
###question:What school is from 45 Lake county and is located in Merrillville?###answer:SELECT school FROM table_name_32 WHERE county = "45 lake" AND location = "merrillville"###context:CREATE TABLE table_name_32 (school VARCHAR, county VARCHAR, location VARCHAR)
###question:What school is located in Michigan City?###answer:SELECT school FROM table_name_37 WHERE location = "michigan city"###context:CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR)
###question:What is the IHSAA class for Chesterton?###answer:SELECT ihsaa_class FROM table_name_49 WHERE school = "chesterton"###context:CREATE TABLE table_name_49 (ihsaa_class VARCHAR, school VARCHAR)
###question:What is the IHSAA class for Portage?###answer:SELECT ihsaa_class FROM table_name_69 WHERE school = "portage"###context:CREATE TABLE table_name_69 (ihsaa_class VARCHAR, school VARCHAR)
###question:What is the IHSAA class for Crown Point?###answer:SELECT ihsaa_class FROM table_name_98 WHERE school = "crown point"###context:CREATE TABLE table_name_98 (ihsaa_class VARCHAR, school VARCHAR)
###question:What is the average grid of driver Christian Vietoris who has less than 12 laps?###answer:SELECT AVG(grid) FROM table_name_79 WHERE driver = "christian vietoris" AND laps < 12###context:CREATE TABLE table_name_79 (grid INTEGER, driver VARCHAR, laps VARCHAR)
###question:What is the grid of driver joão urbano?###answer:SELECT SUM(grid) FROM table_name_75 WHERE driver = "joão urbano"###context:CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR)
###question:What is the lowest laps a grid less than 22 with a time of +35.268 has?###answer:SELECT MIN(laps) FROM table_name_92 WHERE grid < 22 AND time = "+35.268"###context:CREATE TABLE table_name_92 (laps INTEGER, grid VARCHAR, time VARCHAR)
###question:What is the lowest laps driver Christian Vietoris with a grid smaller than 6 has?###answer:SELECT MIN(laps) FROM table_name_62 WHERE driver = "christian vietoris" AND grid < 6###context:CREATE TABLE table_name_62 (laps INTEGER, driver VARCHAR, grid VARCHAR)
###question:What is the primary sponsor of driver Mark Martin?###answer:SELECT primary_sponsor_s_ FROM table_name_78 WHERE driver_s_ = "mark martin"###context:CREATE TABLE table_name_78 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)
###question:Who is the crew chief of team Joe Gibbs Racing, which has a Chevrolet Monte Carlo and Fedex as the primary sponsor?###answer:SELECT crew_chief FROM table_name_81 WHERE car_s_ = "chevrolet monte carlo" AND team = "joe gibbs racing" AND primary_sponsor_s_ = "fedex"###context:CREATE TABLE table_name_81 (crew_c...
###question:Who is the driver of the team with the crew chief Derrick Finley?###answer:SELECT driver_s_ FROM table_name_16 WHERE crew_chief = "derrick finley"###context:CREATE TABLE table_name_16 (driver_s_ VARCHAR, crew_chief VARCHAR)
###question:Who is the crew chief of team Chip Ganassi Racing with Felix Sabates, which has Casey Mears as the driver?###answer:SELECT crew_chief FROM table_name_10 WHERE team = "chip ganassi racing with felix sabates" AND driver_s_ = "casey mears"###context:CREATE TABLE table_name_10 (crew_chief VARCHAR, team VARCHAR,...
###question:Which team has Peak Fitness as the primary sponsor?###answer:SELECT team FROM table_name_87 WHERE primary_sponsor_s_ = "peak fitness"###context:CREATE TABLE table_name_87 (team VARCHAR, primary_sponsor_s_ VARCHAR)
###question:What date has w 20-17 as the result, and 1-0 as the record?###answer:SELECT date FROM table_name_32 WHERE result = "w 20-17" AND record = "1-0"###context:CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR, record VARCHAR)
###question:What game site has december 24, 2000 as a date?###answer:SELECT game_site FROM table_name_58 WHERE date = "december 24, 2000"###context:CREATE TABLE table_name_58 (game_site VARCHAR, date VARCHAR)
###question:What date has dallas cowboys as the opponent?###answer:SELECT date FROM table_name_91 WHERE opponent = "dallas cowboys"###context:CREATE TABLE table_name_91 (date VARCHAR, opponent VARCHAR)
###question:What is the attendance that has fedex field as the game site with 3 as the week?###answer:SELECT attendance FROM table_name_24 WHERE game_site = "fedex field" AND week = 3###context:CREATE TABLE table_name_24 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)
###question:What is the record for April 22?###answer:SELECT record FROM table_name_25 WHERE date = "april 22"###context:CREATE TABLE table_name_25 (record VARCHAR, date VARCHAR)
###question:What is the record when the visiting team was the Quebec Nordiques on April 22?###answer:SELECT record FROM table_name_26 WHERE visitor = "quebec nordiques" AND date = "april 22"###context:CREATE TABLE table_name_26 (record VARCHAR, visitor VARCHAR, date VARCHAR)
###question:What is the longitude of Taurus?###answer:SELECT longitude_အင်္သာ FROM table_name_98 WHERE latin = "taurus"###context:CREATE TABLE table_name_98 (longitude_အင်္သာ VARCHAR, latin VARCHAR)
###question:What is the Location for Belshina?###answer:SELECT location FROM table_name_99 WHERE team = "belshina"###context:CREATE TABLE table_name_99 (location VARCHAR, team VARCHAR)
###question:What is the total number for Capacity at city stadium, borisov?###answer:SELECT COUNT(capacity) FROM table_name_28 WHERE venue = "city stadium, borisov"###context:CREATE TABLE table_name_28 (capacity VARCHAR, venue VARCHAR)
###question:Which rating larger than 5 have the lowest amount of views in #3 rank with a share of 9?###answer:SELECT MIN(viewers__millions_) FROM table_name_11 WHERE weekly_rank = "#3" AND share = 9 AND rating > 5###context:CREATE TABLE table_name_11 (viewers__millions_ INTEGER, rating VARCHAR, weekly_rank VARCHAR, sha...
###question:What is the highest played that has a drawn less than 9, 36 as the difference, with a lost greater than 7?###answer:SELECT MAX(played) FROM table_name_60 WHERE drawn < 9 AND difference = "36" AND lost > 7###context:CREATE TABLE table_name_60 (played INTEGER, lost VARCHAR, drawn VARCHAR, difference VARCHAR)
###question:How many positions have figueirense as the team, with a played greater than 38?###answer:SELECT COUNT(position) FROM table_name_39 WHERE team = "figueirense" AND played > 38###context:CREATE TABLE table_name_39 (position VARCHAR, team VARCHAR, played VARCHAR)
###question:What is the largest drawn that has a played less than 38?###answer:SELECT MAX(drawn) FROM table_name_8 WHERE played < 38###context:CREATE TABLE table_name_8 (drawn INTEGER, played INTEGER)
###question:How many positions have 9 as a drawn, 5 as a difference, with a lost less than 14?###answer:SELECT COUNT(position) FROM table_name_9 WHERE drawn = 9 AND difference = "5" AND lost < 14###context:CREATE TABLE table_name_9 (position VARCHAR, lost VARCHAR, drawn VARCHAR, difference VARCHAR)
###question:What date did Episode 2-01 (42) air?###answer:SELECT original_airdate FROM table_name_56 WHERE episode = "2-01 (42)"###context:CREATE TABLE table_name_56 (original_airdate VARCHAR, episode VARCHAR)
###question:Who wrote Episode 2-15 (56)?###answer:SELECT writer_s_ FROM table_name_51 WHERE episode = "2-15 (56)"###context:CREATE TABLE table_name_51 (writer_s_ VARCHAR, episode VARCHAR)
###question:What is the highest number of games with 1 loss and points less than 18?###answer:SELECT MAX(games) FROM table_name_9 WHERE lost = 1 AND points < 18###context:CREATE TABLE table_name_9 (games INTEGER, lost VARCHAR, points VARCHAR)