answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT competition FROM table_name_35 WHERE date = "1995-08-06"
what is the competition when the date is 1995-08-06?
CREATE TABLE table_name_35 (competition VARCHAR, date VARCHAR)
SELECT COUNT(blocks) FROM table_23346303_5 WHERE points = 4
What is the blocks total number if the points is 4?
CREATE TABLE table_23346303_5 (blocks VARCHAR, points VARCHAR)
SELECT sake_tuyas FROM table_29619494_2 WHERE denim_demons = "4th"
What place did the Sake Tuyas come in when the Denim Demons were 4th?
CREATE TABLE table_29619494_2 (sake_tuyas VARCHAR, denim_demons VARCHAR)
SELECT dates__mdy_ FROM table_16331025_2 WHERE gross_sales = "$1,271,451"
What day was the gross sales $1,271,451?
CREATE TABLE table_16331025_2 (dates__mdy_ VARCHAR, gross_sales VARCHAR)
SELECT to_par FROM table_name_98 WHERE margin_of_victory = "2 strokes" AND tournament = "women's british open"
What is To par, when Margin of Victory is "2 Strokes", and when Tournament is "Women's British Open"?
CREATE TABLE table_name_98 (to_par VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT date_of_appointment FROM table_17085981_2 WHERE outgoing_manager = "Jürgen Kohler"
What was the date of appointment when Jürgen Kohler was the outgoing manager?
CREATE TABLE table_17085981_2 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT record FROM table_name_91 WHERE score = "4–4" AND points = 17
Which Record has a Score of 4–4, and Points of 17?
CREATE TABLE table_name_91 (record VARCHAR, score VARCHAR, points VARCHAR)
SELECT SUM(week) FROM table_name_55 WHERE attendance = 49 OFFSET 980
Total weeks of 49,980 attendance?
CREATE TABLE table_name_55 (week INTEGER, attendance VARCHAR)
SELECT COUNT(age) FROM table_26419467_1 WHERE hometown = "Portland, OR"
How many people were from portland, or?
CREATE TABLE table_26419467_1 (age VARCHAR, hometown VARCHAR)
SELECT T1.FullName, T1.Id, COUNT(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id
How many models does each car maker produce? List maker full name, id and the number.
CREATE TABLE MODEL_LIST (Maker VARCHAR); CREATE TABLE CAR_MAKERS (FullName VARCHAR, Id VARCHAR)
SELECT venue FROM table_name_44 WHERE competition = "1986 asian games" AND result = "2-0"
What venue were the 1986 Asian games resulting in 2-0 played at?
CREATE TABLE table_name_44 (venue VARCHAR, competition VARCHAR, result VARCHAR)
SELECT date FROM table_name_7 WHERE delta = "0:40"
On what Date is Delta 0:40?
CREATE TABLE table_name_7 (date VARCHAR, delta VARCHAR)
SELECT venue FROM table_name_62 WHERE goal = 4
Which venue has a Goal of 4?
CREATE TABLE table_name_62 (venue VARCHAR, goal VARCHAR)
SELECT _percentage_buddhist FROM table_name_39 WHERE population = "~2.6 million (2.6million)"
What is the percentage of Buddhist when the Population is ~2.6 million (2.6million)?
CREATE TABLE table_name_39 (_percentage_buddhist VARCHAR, population VARCHAR)
SELECT COUNT(team) FROM table_23285761_11 WHERE high_rebounds = "Channing Frye, Jason Richardson (8)"
How many teams have channing frye, jason richardson (8) as high rebounds?
CREATE TABLE table_23285761_11 (team VARCHAR, high_rebounds VARCHAR)
SELECT COUNT(championship) FROM table_29163303_4 WHERE score = "4–6, 7–6 (7–5) , [5–10]"
How many championships were there where the score was 4–6, 7–6 (7–5) , [5–10]?
CREATE TABLE table_29163303_4 (championship VARCHAR, score VARCHAR)
SELECT user_name, password FROM users GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1
List all the username and passwords of users with the most popular role.
CREATE TABLE users (user_name VARCHAR, password VARCHAR, role_code VARCHAR)
SELECT title FROM table_name_40 WHERE release_date = "1936-08-29"
What was released on 1936-08-29?
CREATE TABLE table_name_40 (title VARCHAR, release_date VARCHAR)
SELECT type FROM table_name_83 WHERE course = "rest day" AND date = "21 may"
What type has rest day as a course and was on 21 may?
CREATE TABLE table_name_83 (type VARCHAR, course VARCHAR, date VARCHAR)
SELECT game FROM table_name_41 WHERE opponents = "14"
In which game did the opponents score 14 points?
CREATE TABLE table_name_41 (game VARCHAR, opponents VARCHAR)
SELECT MIN(earnings___) AS $__ FROM table_name_91 WHERE events = 22 AND rank < 4
Events of 22, and a Rank smaller than 4 involved which of the lowest earnings ($)?
CREATE TABLE table_name_91 (earnings___ INTEGER, events VARCHAR, rank VARCHAR)
SELECT entrant FROM table_name_93 WHERE engine = "gordini straight-6" AND year = 1956
Who used Gordini Straight-6 in 1956?
CREATE TABLE table_name_93 (entrant VARCHAR, engine VARCHAR, year VARCHAR)
SELECT MAX(league_cup) FROM table_name_95 WHERE player = "steed malbranque"
What is the highest League Cup with a Player that is steed malbranque?
CREATE TABLE table_name_95 (league_cup INTEGER, player VARCHAR)
SELECT 2008 FROM table_name_36 WHERE 2009 = "a" AND 2011 = "2r"
What was the 2008 result associated with a 2009 of A and a 2011 of 2R?
CREATE TABLE table_name_36 (Id VARCHAR)
SELECT MAX(attendance) FROM table_name_95 WHERE opponent = "arsenal"
Whose attendance was the highest when the team played Arsenal?
CREATE TABLE table_name_95 (attendance INTEGER, opponent VARCHAR)
SELECT playoffs FROM table_name_50 WHERE head_coach = "brent sutter" AND finish = "4th central" AND points = "82"
What was the playoff status when the head coach was Brent Sutter, the finish was 4th central, and the points were 82?
CREATE TABLE table_name_50 (playoffs VARCHAR, points VARCHAR, head_coach VARCHAR, finish VARCHAR)
SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE townland = "Coomroe"
How many acres in the townland of Coomroe?
CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, townland VARCHAR)
SELECT conventional FROM table_2008069_2 WHERE uyghur___yenɡi_yezik̢__ = "Defter"
Name the conventional for defter
CREATE TABLE table_2008069_2 (conventional VARCHAR, uyghur___yenɡi_yezik̢__ VARCHAR)
SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE enrollment = 6000
Name the current womens lacrosse conference for 6000 enrollment
CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, enrollment VARCHAR)
SELECT money___£__ FROM table_name_96 WHERE country = "ireland"
What Money (£) has a Country of ireland?
CREATE TABLE table_name_96 (money___£__ VARCHAR, country VARCHAR)
SELECT COUNT(losing_hand) FROM table_12454156_1 WHERE year = 2007
How many losing hands are there before 2007?
CREATE TABLE table_12454156_1 (losing_hand VARCHAR, year VARCHAR)
SELECT 2009 FROM table_name_17 WHERE tournament = "us open"
What was the result in 2009 for the US Open Tournament?
CREATE TABLE table_name_17 (tournament VARCHAR)
SELECT country FROM table_name_75 WHERE type = "signed" AND moving_from = "porto"
What country has signed type moving from porto?
CREATE TABLE table_name_75 (country VARCHAR, type VARCHAR, moving_from VARCHAR)
SELECT team_record FROM table_name_34 WHERE attendance = "16,151"
What is Team Record, when Attendance is 16,151?
CREATE TABLE table_name_34 (team_record VARCHAR, attendance VARCHAR)
SELECT top_10 FROM table_2333416_2 WHERE winnings = "$17,695"
How many top 10 finishes did Ken Bouchard get in the year he won $17,695?
CREATE TABLE table_2333416_2 (top_10 VARCHAR, winnings VARCHAR)
SELECT framed_size FROM table_name_10 WHERE nickname = "grand central"
What is the frame size that was nicknamed Grand Central?
CREATE TABLE table_name_10 (framed_size VARCHAR, nickname VARCHAR)
SELECT opponent FROM table_name_6 WHERE result = "w48-0"
What is the name of the Opponent when the Result was w48-0?
CREATE TABLE table_name_6 (opponent VARCHAR, result VARCHAR)
SELECT fleet_size FROM table_name_73 WHERE class = "vanguard 0-6-0dh"
What is the fleet size of the Vanguard 0-6-0dh class?
CREATE TABLE table_name_73 (fleet_size VARCHAR, class VARCHAR)
SELECT away_team FROM table_name_56 WHERE venue = "mcg"
Who was the away team when the VFL played at MCG?
CREATE TABLE table_name_56 (away_team VARCHAR, venue VARCHAR)
SELECT wins FROM table_name_41 WHERE series = "gp2 series" AND season < 2009
What is the value for Wins, when the Series is GP2 Series, and when the Season is before 2009?
CREATE TABLE table_name_41 (wins VARCHAR, series VARCHAR, season VARCHAR)
SELECT MAX(crowd) FROM table_name_56 WHERE venue = "windy hill"
What was the highest crowd at Windy Hill?
CREATE TABLE table_name_56 (crowd INTEGER, venue VARCHAR)
SELECT year_premiered FROM table_24224647_2 WHERE main_presenter = "Behzat Uighur"
What is every year premiered when Behzat Uighur is main presenter?
CREATE TABLE table_24224647_2 (year_premiered VARCHAR, main_presenter VARCHAR)
SELECT artist FROM table_name_70 WHERE draw < 14 AND points < 73 AND language = "turkish"
Which Artist has a Draw smaller than 14, and Points less than 73, and a Language of turkish?
CREATE TABLE table_name_70 (artist VARCHAR, language VARCHAR, draw VARCHAR, points VARCHAR)
SELECT country FROM table_name_2 WHERE score = 66 - 65 - 66 - 72 = 269
What country scored 66-65-66-72=269?
CREATE TABLE table_name_2 (country VARCHAR, score VARCHAR)
SELECT driver FROM table_name_60 WHERE laps < 9 AND grid = 13
Name the driver for Laps less than 9 and a grid of 13
CREATE TABLE table_name_60 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT score FROM table_name_91 WHERE competition = "2014 world cup qualification"
What was the score of the 2014 World Cup Qualification?
CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR)
SELECT status FROM table_23501776_16 WHERE points = 3185
Name the status for points 3185
CREATE TABLE table_23501776_16 (status VARCHAR, points VARCHAR)
SELECT AVG(year) FROM table_name_89 WHERE title = "baka to test to shōkanjū"
what is the average year when the title is baka to test to shōkanjū?
CREATE TABLE table_name_89 (year INTEGER, title VARCHAR)
SELECT attendance FROM table_name_96 WHERE date = "november 25, 1965"
What is the Attendance with a Date that is november 25, 1965?
CREATE TABLE table_name_96 (attendance VARCHAR, date VARCHAR)
SELECT home_team AS score FROM table_name_42 WHERE away_team = "fitzroy"
Who played Fitzroy at their own home?
CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)
SELECT COUNT(oricon) FROM table_name_13 WHERE romaji_title = "rakuen -memorial tracks- (maxi-single)"
How many oricon's have a romaji title of rakuen -memorial tracks- (maxi-single)?
CREATE TABLE table_name_13 (oricon VARCHAR, romaji_title VARCHAR)
SELECT sarasota FROM table_17085724_1 WHERE indianapolis_concerts = "Samantha Sharpe"
Name the sarasota samantha sharpe
CREATE TABLE table_17085724_1 (sarasota VARCHAR, indianapolis_concerts VARCHAR)
SELECT SUM(attendance) FROM table_name_22 WHERE away_team = "macclesfield town"
What is the sum of Attendance when macclesfield town was the way team?
CREATE TABLE table_name_22 (attendance INTEGER, away_team VARCHAR)
SELECT MAX(year) FROM table_name_19 WHERE venue = "doha, qatar"
What's the latest year that Doha, Qatar hosted a tournament?
CREATE TABLE table_name_19 (year INTEGER, venue VARCHAR)
SELECT country FROM table_name_16 WHERE start_source = "bbc sport" AND name = "feeney"
What is the country named feeney with a bbc sport start source?
CREATE TABLE table_name_16 (country VARCHAR, start_source VARCHAR, name VARCHAR)
SELECT founded FROM table_261941_1 WHERE type = "Private/Baptist"
When was the private/baptist school founded?
CREATE TABLE table_261941_1 (founded VARCHAR, type VARCHAR)
SELECT score FROM table_name_95 WHERE date = "september 11, 2006"
What were the scores on September 11, 2006?
CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR)
SELECT pac_10_record FROM table_27862483_3 WHERE date = "April 20"
What was the PAC-10 record of the game played on April 20?
CREATE TABLE table_27862483_3 (pac_10_record VARCHAR, date VARCHAR)
SELECT POSITION FROM match_season GROUP BY POSITION ORDER BY COUNT(*) DESC LIMIT 1
Show the most common position of players in match seasons.
CREATE TABLE match_season (POSITION VARCHAR)
SELECT SUM(rank) FROM table_name_3 WHERE lane > 7 AND athlete = "michael mathieu" AND react > 0.203
How many ranks have more than 7 lanes, and an Athlete of michael mathieu, and a Reaction time larger than 0.203?
CREATE TABLE table_name_3 (rank INTEGER, react VARCHAR, lane VARCHAR, athlete VARCHAR)
SELECT district FROM table_1341604_11 WHERE incumbent = "Larry McDonald"
Name the districk for larry mcdonald
CREATE TABLE table_1341604_11 (district VARCHAR, incumbent VARCHAR)
SELECT attendance FROM table_name_24 WHERE game_site = "fedex field" AND week = 3
What is the attendance that has fedex field as the game site with 3 as the week?
CREATE TABLE table_name_24 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)
SELECT origin FROM table_name_67 WHERE registration = "s5-hpb"
What is the country of origin of the aircraft with a registration s5-hpb?
CREATE TABLE table_name_67 (origin VARCHAR, registration VARCHAR)
SELECT COUNT(type_of_record) FROM table_21436373_12 WHERE result_games = "10 games (29,606 avg.)"
how many records had result/games: 10 games (29,606 avg.)
CREATE TABLE table_21436373_12 (type_of_record VARCHAR, result_games VARCHAR)
SELECT COUNT(first_elected) FROM table_1341472_34 WHERE district = "New York 1"
Name the first elected for new york 1
CREATE TABLE table_1341472_34 (first_elected VARCHAR, district VARCHAR)
SELECT AVG(attendance) FROM table_name_66 WHERE loss = "papelbon (0–1)"
What was the average attendance for games with a loss of papelbon (0–1)?
CREATE TABLE table_name_66 (attendance INTEGER, loss VARCHAR)
SELECT high_rebounds FROM table_name_15 WHERE date = "april 7"
Who had the highest rebounds of the game on April 7?
CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)
SELECT week_2 FROM table_name_73 WHERE week_4 = "chelsie loraine"
Who was the girl on week 2 that was previous to week 4's Chelsie Loraine?
CREATE TABLE table_name_73 (week_2 VARCHAR, week_4 VARCHAR)
SELECT MAX(labour_panel) FROM table_name_46 WHERE university_of_dublin < 2 AND agricultural_panel > 5
What is the highest labour panel when the university of dublin is less than 2 and the agricultural panel is greater than 5?
CREATE TABLE table_name_46 (labour_panel INTEGER, university_of_dublin VARCHAR, agricultural_panel VARCHAR)
SELECT land___sqmi__ FROM table_18600760_7 WHERE water__sqmi_ = "1.701"
If the water square milage is 1.701, what is the land square milage?
CREATE TABLE table_18600760_7 (land___sqmi__ VARCHAR, water__sqmi_ VARCHAR)
SELECT record FROM table_14520977_1 WHERE result = "L 24–22"
Name the record for l 24–22
CREATE TABLE table_14520977_1 (record VARCHAR, result VARCHAR)
SELECT 2011 FROM table_name_99 WHERE 2010 = "1r" AND 2009 = "1r"
Which 2011 has a 2010 of 1r, and a 2009 of 1r?
CREATE TABLE table_name_99 (Id VARCHAR)
SELECT dram_type FROM table_26040604_1 WHERE sm_count = 6
What was the DRAM type of an SM Count of 6?
CREATE TABLE table_26040604_1 (dram_type VARCHAR, sm_count VARCHAR)
SELECT opponent FROM table_name_60 WHERE result = "w 14–6"
Who was the opponent at the game with a result of w 14–6?
CREATE TABLE table_name_60 (opponent VARCHAR, result VARCHAR)
SELECT manager_1 FROM table_name_72 WHERE shirt_sponsor = "hewlett-packard"
Who is the manager with the Hewlett-Packard shirt sponsor?
CREATE TABLE table_name_72 (manager_1 VARCHAR, shirt_sponsor VARCHAR)
SELECT Appelation FROM WINE WHERE YEAR > 2008 EXCEPT SELECT Appelation FROM APPELLATIONS WHERE Area = "Central Coast"
Find the appelations that produce wines after the year of 2008 but not in Central Coast area.
CREATE TABLE WINE (Appelation VARCHAR, YEAR INTEGER, Area VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, YEAR INTEGER, Area VARCHAR)
SELECT partner FROM table_name_10 WHERE outcome = "winner" AND score = "7-6 (7) 5-7 10-7"
Tell me the partner for outcome of winner and score of 7-6 (7) 5-7 10-7
CREATE TABLE table_name_10 (partner VARCHAR, outcome VARCHAR, score VARCHAR)
SELECT position FROM table_14342367_7 WHERE player = "Paul Jones"
What positions did Paul Jones play?
CREATE TABLE table_14342367_7 (position VARCHAR, player VARCHAR)
SELECT season AS :_south FROM table_name_88 WHERE qualities = "cold & wet" AND sign = "scorpio"
What is the south season of the scorpio sign, which has cold & wet qualities?
CREATE TABLE table_name_88 (season VARCHAR, qualities VARCHAR, sign VARCHAR)
SELECT ground FROM table_name_17 WHERE match < 6 AND opponent = "chelsea reserves"
What ground had a match smaller than 6 and Chelsea Reserves as the opponent?
CREATE TABLE table_name_17 (ground VARCHAR, match VARCHAR, opponent VARCHAR)
SELECT score__l__ = _score_in_legs, __s__ = _score_in_sets FROM table_name_51 WHERE year < 2012
Tell me the score for score in legs and year less than 2012
CREATE TABLE table_name_51 (score__l__ VARCHAR, _score_in_legs VARCHAR, __s__ VARCHAR, _score_in_sets VARCHAR, year INTEGER)
SELECT weekly_rank_sky1 FROM table_26826304_2 WHERE _number = 103
What is title numer 103's rank for weekly rank sky1?
CREATE TABLE table_26826304_2 (weekly_rank_sky1 VARCHAR, _number VARCHAR)
SELECT T3.forename, T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Australian Grand Prix" EXCEPT SELECT T3.forename, T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Chinese Grand Prix"
What are the forenames and surnames of drivers who participated in the races named Australian Grand Prix but not the races named Chinese Grand Prix?
CREATE TABLE races (raceid VARCHAR, name VARCHAR); CREATE TABLE drivers (forename VARCHAR, surname VARCHAR, driverid VARCHAR); CREATE TABLE results (raceid VARCHAR, driverid VARCHAR)
SELECT württemberg FROM table_name_42 WHERE year < 1929
What's the Württemberg in the year before 1929?
CREATE TABLE table_name_42 (württemberg VARCHAR, year INTEGER)
SELECT MAX(average) FROM table_name_57 WHERE state = "texas" AND evening_gown > 8.875
What is the highest average of the contestant from Texas with an evening gown larger than 8.875?
CREATE TABLE table_name_57 (average INTEGER, state VARCHAR, evening_gown VARCHAR)
SELECT incumbent FROM table_name_15 WHERE result = "re-elected" AND first_elected > 1884
What incumbent has a re-elected result and first elected larger than 1884?
CREATE TABLE table_name_15 (incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)
SELECT city FROM table_name_39 WHERE date = "june 9, 1976"
Which City has a Date of june 9, 1976?
CREATE TABLE table_name_39 (city VARCHAR, date VARCHAR)
SELECT finished FROM table_14345690_2 WHERE celebrity = "Nell McAndrew"
What position did Nell McAndrew finish?
CREATE TABLE table_14345690_2 (finished VARCHAR, celebrity VARCHAR)
SELECT frequency FROM table_27914076_1 WHERE branding = "103.7 Energy FM Dipolog*"
Name the frequency for 103.7 energy fm dipolog*
CREATE TABLE table_27914076_1 (frequency VARCHAR, branding VARCHAR)
SELECT hanyu_pinyin FROM table_name_65 WHERE density___km²_ = "77"
What is the Pinyin for the item that has a density of 77?
CREATE TABLE table_name_65 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR)
SELECT COUNT(position) FROM table_17357929_1 WHERE points_2 = 31
How many teams finished with a 2nd points total of 31?
CREATE TABLE table_17357929_1 (position VARCHAR, points_2 VARCHAR)
SELECT MAX(top_10) FROM table_name_62 WHERE top_25 = 4 AND top_5 > 1
What is the highest Top-10, when Top-25 is 4, and when Top-5 is greater than 1?
CREATE TABLE table_name_62 (top_10 INTEGER, top_25 VARCHAR, top_5 VARCHAR)
SELECT player FROM table_name_43 WHERE finish = "t41" AND country = "england"
Which player from England finished in T41?
CREATE TABLE table_name_43 (player VARCHAR, finish VARCHAR, country VARCHAR)
SELECT place FROM table_name_97 WHERE to_par = "+1" AND score = 74 - 70 - 69 - 72 = 285
What is the Place of the Player with a To par of +1 and Score of 74-70-69-72=285?
CREATE TABLE table_name_97 (place VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT event FROM table_name_3 WHERE venue = "valencia, spain"
What even was held in Valencia, Spain?
CREATE TABLE table_name_3 (event VARCHAR, venue VARCHAR)
SELECT races FROM table_name_95 WHERE chassis = "reynard 2ki" AND engine = "honda hrk"
Which person drove a Reynard 2ki with a Honda Hrk engine?
CREATE TABLE table_name_95 (races VARCHAR, chassis VARCHAR, engine VARCHAR)
SELECT successor FROM table_2159506_4 WHERE reason_for_change = "Died May 12, 1964"
Who are all successors when reason for change is died May 12, 1964?
CREATE TABLE table_2159506_4 (successor VARCHAR, reason_for_change VARCHAR)
SELECT COUNT(*) FROM HOTELS
How many available hotels are there in total?
CREATE TABLE HOTELS (Id VARCHAR)
SELECT COUNT(position) FROM table_16729063_1 WHERE college = "Washington"
How many positions drafted players from Washington?
CREATE TABLE table_16729063_1 (position VARCHAR, college VARCHAR)
SELECT gold FROM table_name_28 WHERE bronze = 1
What shows for gold when bronze is 1?
CREATE TABLE table_name_28 (gold VARCHAR, bronze VARCHAR)