answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT T1.name, T2.alid FROM airlines AS T1 JOIN routes AS T2 ON T1.alid = T2.alid GROUP BY T2.alid ORDER BY COUNT(*) DESC LIMIT 10
Find the names of the top 10 airlines that operate the most number of routes.
CREATE TABLE airlines (name VARCHAR, alid VARCHAR); CREATE TABLE routes (alid VARCHAR)
SELECT directed_by FROM table_17467147_1 WHERE us_viewers__million_ = "12.70"
When there are 12.70 million u.s. viewers who is the director?
CREATE TABLE table_17467147_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT nationality FROM table_name_90 WHERE rank = 4
Which nationality has rank 4?
CREATE TABLE table_name_90 (nationality VARCHAR, rank VARCHAR)
SELECT driver FROM table_name_57 WHERE chassis = "dallara f306" AND rounds = "8"
Which driver was in 8 rounds with a chassis of dallara f306?
CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)
SELECT fsb_speed FROM table_name_46 WHERE model_number = "c7-m 765"
Which FSB Speed has a Model Number of c7-m 765?
CREATE TABLE table_name_46 (fsb_speed VARCHAR, model_number VARCHAR)
SELECT record FROM table_17288845_9 WHERE score = "L 77–80 (OT)"
Name the record for score of l 77–80 (ot)
CREATE TABLE table_17288845_9 (record VARCHAR, score VARCHAR)
SELECT COUNT(location) FROM table_2439728_1 WHERE varsity_teams = 17
how many places have 17 varsity teams?
CREATE TABLE table_2439728_1 (location VARCHAR, varsity_teams VARCHAR)
SELECT SUM(population) FROM table_name_68 WHERE simplified = "上杭县" AND area < 2 OFFSET 879
What's the sum of the population for the place simplified 上杭县 with an area smaller than 2,879?
CREATE TABLE table_name_68 (population INTEGER, simplified VARCHAR, area VARCHAR)
SELECT MAX(no_in_series) FROM table_20726262_2 WHERE writtenby = "Kurt Sutter & Jack LoGiudice"
What number episode was written by kurt sutter & jack logiudice?
CREATE TABLE table_20726262_2 (no_in_series INTEGER, writtenby VARCHAR)
SELECT SUM(attendance) FROM table_name_35 WHERE result = "1-0" AND venue = "h" AND round = "sf"
What is the total attendance with a 1-0 result, at Venue H, and Round SF?
CREATE TABLE table_name_35 (attendance INTEGER, round VARCHAR, result VARCHAR, venue VARCHAR)
SELECT rowers FROM table_name_99 WHERE notes = "fc" AND time = "7:41.97"
What is the Rowers of the race with a Time of 7:41.97 and Notes of FC?
CREATE TABLE table_name_99 (rowers VARCHAR, notes VARCHAR, time VARCHAR)
SELECT COUNT(round) FROM table_name_22 WHERE method = "tko (punches)" AND time = "0:40"
what is the total number of rounds when method is tko (punches) and time is 0:40?
CREATE TABLE table_name_22 (round VARCHAR, method VARCHAR, time VARCHAR)
SELECT character FROM table_name_34 WHERE actor = "margot boyd"
Who's the character when Margot Boyd was acting?
CREATE TABLE table_name_34 (character VARCHAR, actor VARCHAR)
SELECT MAX(points) FROM table_name_54 WHERE chassis = "lola thl1" AND year > 1986
What is the most points for a vehicle with a lola thl1, chassis later than 1986?
CREATE TABLE table_name_54 (points INTEGER, chassis VARCHAR, year VARCHAR)
SELECT MAX(date) FROM table_name_19 WHERE partner = "nicklas kulti" AND score = "3–6, 7–6, 6–4"
When was the most recent game that he partnered with nicklas kulti and they scored 3–6, 7–6, 6–4?
CREATE TABLE table_name_19 (date INTEGER, partner VARCHAR, score VARCHAR)
SELECT COUNT(pa) FROM table_24475186_2 WHERE blank_ends = 7 AND l = 5
How many pa were blank ends 7 and 5?
CREATE TABLE table_24475186_2 (pa VARCHAR, blank_ends VARCHAR, l VARCHAR)
SELECT COUNT(fourth_place) FROM table_1149495_1 WHERE year = "2003"
How many fourth places were there in 2003?
CREATE TABLE table_1149495_1 (fourth_place VARCHAR, year VARCHAR)
SELECT player FROM table_name_49 WHERE club_province = "aurillac"
Who is the player from Aurillac?
CREATE TABLE table_name_49 (player VARCHAR, club_province VARCHAR)
SELECT place FROM table_name_49 WHERE player = "john cook"
What is Place, when Player is "John Cook"?
CREATE TABLE table_name_49 (place VARCHAR, player VARCHAR)
SELECT italian FROM table_2077192_2 WHERE english = "orange"
What is the Italian word for "orange" in English?
CREATE TABLE table_2077192_2 (italian VARCHAR, english VARCHAR)
SELECT name FROM table_name_12 WHERE displacement = "8,305 t"
what is the name when the displacement is 8,305 t?
CREATE TABLE table_name_12 (name VARCHAR, displacement VARCHAR)
SELECT paper_type FROM table_11900773_4 WHERE theme = "Duck Decoys, Barrow's Golden Eye"
What kind of paper were the stamps with the theme duck decoys, barrow's golden eye printed on?
CREATE TABLE table_11900773_4 (paper_type VARCHAR, theme VARCHAR)
SELECT department_description FROM Departments WHERE department_name LIKE '%computer%'
What is the description of the department whose name has the substring the computer?
CREATE TABLE Departments (department_description VARCHAR, department_name VARCHAR)
SELECT result FROM table_name_64 WHERE date = "november 8, 2001"
What was the final score of the November 8, 2001 game?
CREATE TABLE table_name_64 (result VARCHAR, date VARCHAR)
SELECT road_team FROM table_name_3 WHERE date = "may 2"
Who was the road team on May 2?
CREATE TABLE table_name_3 (road_team VARCHAR, date VARCHAR)
SELECT 2008 FROM table_name_2 WHERE 2010 = "138"
What shows for 2008 when 2010 is 138?
CREATE TABLE table_name_2 (Id VARCHAR)
SELECT region FROM table_name_67 WHERE date = "early september 1999"
Which Region has a Date of early september 1999?
CREATE TABLE table_name_67 (region VARCHAR, date VARCHAR)
SELECT player FROM table_name_42 WHERE height = "6-3"
What Player(s) have a Height of 6-3?
CREATE TABLE table_name_42 (player VARCHAR, height VARCHAR)
SELECT pages FROM table_name_69 WHERE date = "1987-08"
How many pages does the story from 1987-08 have?
CREATE TABLE table_name_69 (pages VARCHAR, date VARCHAR)
SELECT status FROM table_name_11 WHERE monarch = "henry i" AND reason = "succession unclear 1100-1103"
What is the Status when Henry I is the Monarch and the Reason is succession unclear 1100-1103?
CREATE TABLE table_name_11 (status VARCHAR, monarch VARCHAR, reason VARCHAR)
SELECT gauthier FROM table_name_65 WHERE liscumb = "15"
What Gauthier had a 15 Liscumb?
CREATE TABLE table_name_65 (gauthier VARCHAR, liscumb VARCHAR)
SELECT Num_of_Component, name FROM furniture WHERE Num_of_Component > 10
Find the component amounts and names of all furnitures that have more than 10 components.
CREATE TABLE furniture (Num_of_Component INTEGER, name VARCHAR)
SELECT DISTINCT T3.name FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T2.title = 'Gone with the Wind'
Find the names of all reviewers who rated Gone with the Wind.
CREATE TABLE Movie (mID VARCHAR, title VARCHAR); CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR)
SELECT built_as FROM table_name_28 WHERE ship = "dahlgren"
Where the ship is Dahlgren what is the build as?
CREATE TABLE table_name_28 (built_as VARCHAR, ship VARCHAR)
SELECT t3.characteristic_name, t3.characteristic_data_type FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "cumin"
List all the characteristic names and data types of product "cumin".
CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR, characteristic_data_type VARCHAR, characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)
SELECT AVG(laps) FROM table_name_76 WHERE driver = "andrea de cesaris"
What is the average Laps for andrea de cesaris?
CREATE TABLE table_name_76 (laps INTEGER, driver VARCHAR)
SELECT race_2 FROM table_name_6 WHERE race_1 = "30"
What is Race 2, when Race 1 is 30?
CREATE TABLE table_name_6 (race_2 VARCHAR, race_1 VARCHAR)
SELECT player FROM table_name_28 WHERE year = "2001-2002"
Which player is featured for 2001-2002?
CREATE TABLE table_name_28 (player VARCHAR, year VARCHAR)
SELECT calendar FROM table_name_56 WHERE wysiwyg_editor = "yes" AND unread_message_tracking = "yes"
Which Calendar has WYSIWYG Editor of yes and an Unread message tracking of yes?
CREATE TABLE table_name_56 (calendar VARCHAR, wysiwyg_editor VARCHAR, unread_message_tracking VARCHAR)
SELECT AVG(goals_for) FROM table_name_79 WHERE played > 10
How many goals when more than 10 games played?
CREATE TABLE table_name_79 (goals_for INTEGER, played INTEGER)
SELECT score FROM table_name_42 WHERE date = "4 apr 1997"
The competition that took place on 4 Apr 1997 ended with what as the score?
CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR)
SELECT station_type FROM table_2610582_2 WHERE branding = "ABS-CBN TV-32 Tagaytay"
What is the station type for the branding ABS-CBN TV-32 Tagaytay?
CREATE TABLE table_2610582_2 (station_type VARCHAR, branding VARCHAR)
SELECT remarks FROM table_name_83 WHERE destination_number < 19 AND rank < 5
What were the remarks for a destination under 19 and rank less than 5?
CREATE TABLE table_name_83 (remarks VARCHAR, destination_number VARCHAR, rank VARCHAR)
SELECT others FROM table_name_10 WHERE szdsz = "4%" AND fidesz = "60%"
What percentage of others have an SZDSZ of 4% and a Fidesz of 60%?
CREATE TABLE table_name_10 (others VARCHAR, szdsz VARCHAR, fidesz VARCHAR)
SELECT week_13_nov_30 FROM table_name_36 WHERE week_11_nov_16 = "usc (7-3)"
What is the week 13 Nov 30 standing with USC (7-3) on week 11 Nov 16?
CREATE TABLE table_name_36 (week_13_nov_30 VARCHAR, week_11_nov_16 VARCHAR)
SELECT SUM(erp_w) FROM table_name_40 WHERE call_sign = "w273bs"
How many ERP W is it that has a Call sign of w273bs?
CREATE TABLE table_name_40 (erp_w INTEGER, call_sign VARCHAR)
SELECT record FROM table_name_14 WHERE event = "ufc 27"
What is the record during the event, UFC 27?
CREATE TABLE table_name_14 (record VARCHAR, event VARCHAR)
SELECT opponent FROM table_name_41 WHERE game < 54
Who were the opponents in games before number 54?
CREATE TABLE table_name_41 (opponent VARCHAR, game INTEGER)
SELECT opponents FROM table_15986020_3 WHERE oilers_points = 21
What was the total opponents points for the game were the Oilers scored 21?
CREATE TABLE table_15986020_3 (opponents VARCHAR, oilers_points VARCHAR)
SELECT MAX(points_1) FROM table_name_11 WHERE team = "atherton collieries" AND position < 8
Which Points 1 has a Team of atherton collieries, and a Position smaller than 8?
CREATE TABLE table_name_11 (points_1 INTEGER, team VARCHAR, position VARCHAR)
SELECT winning_score FROM table_name_23 WHERE date = "may 3, 1998"
What was the winning score on May 3, 1998?
CREATE TABLE table_name_23 (winning_score VARCHAR, date VARCHAR)
SELECT COUNT(game) FROM table_27756164_2 WHERE high_rebounds = "Roy Hibbert (16)"
In how many different games did Roy Hibbert (16) did the most high rebounds?
CREATE TABLE table_27756164_2 (game VARCHAR, high_rebounds VARCHAR)
SELECT region FROM table_name_82 WHERE village = "chassagne-montrachet"
Which Reigon has a Village of Chassagne-Montrachet?
CREATE TABLE table_name_82 (region VARCHAR, village VARCHAR)
SELECT 2012 FROM table_name_62 WHERE tournament = "us open"
What was the 2012 finish in the US Open?
CREATE TABLE table_name_62 (tournament VARCHAR)
SELECT frequency FROM table_name_78 WHERE class = "b"
Name the frequency with class of b
CREATE TABLE table_name_78 (frequency VARCHAR, class VARCHAR)
SELECT lead_supporting_vocal FROM table_name_32 WHERE time = "4:54"
Who was the lead supporting vocalist on the song that was 4:54 long?
CREATE TABLE table_name_32 (lead_supporting_vocal VARCHAR, time VARCHAR)
SELECT COUNT(round) FROM table_name_11 WHERE pick = "7"
HOW MANY ROUNDS HAD A PICK OF 7?
CREATE TABLE table_name_11 (round VARCHAR, pick VARCHAR)
SELECT MIN(points) FROM table_name_42 WHERE goal_difference > 29
What is the fewest points that has more than 29 goals?
CREATE TABLE table_name_42 (points INTEGER, goal_difference INTEGER)
SELECT player FROM table_name_24 WHERE previous_team = "new york knicks"
Which player was previously on the New York Knicks?
CREATE TABLE table_name_24 (player VARCHAR, previous_team VARCHAR)
SELECT nationalist FROM table_name_8 WHERE undecided__no_answer = "29.2%"
What is the Nationalist share of the poll for the response in which Undecided/No Answer received 29.2%?
CREATE TABLE table_name_8 (nationalist VARCHAR, undecided__no_answer VARCHAR)
SELECT venue FROM table_name_12 WHERE year = 2008 AND notes = "2:13:10"
What venue held the event in 2008 that has 2:13:10 in the notes?
CREATE TABLE table_name_12 (venue VARCHAR, year VARCHAR, notes VARCHAR)
SELECT record FROM table_name_25 WHERE location_attendance = "the omni" AND date = "april 12"
What's the record on April 12 when the location was The Omni?
CREATE TABLE table_name_25 (record VARCHAR, location_attendance VARCHAR, date VARCHAR)
SELECT donator_name, SUM(amount) FROM endowment GROUP BY donator_name ORDER BY SUM(amount) DESC
List each donator name and the amount of endowment in descending order of the amount of endowment.
CREATE TABLE endowment (donator_name VARCHAR, amount INTEGER)
SELECT one_mora FROM table_name_29 WHERE three_mora_word = "/˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂]"
What is the one mora for the three-mora word /˩haruꜜ/ [hàɽɯ́ ~ hàɽɯ̂]?
CREATE TABLE table_name_29 (one_mora VARCHAR, three_mora_word VARCHAR)
SELECT MAX(no_in_season) FROM table_25716399_1 WHERE directed_by = "Wendey Stanzler"
What season was an episode directed by wendey stanzler?
CREATE TABLE table_25716399_1 (no_in_season INTEGER, directed_by VARCHAR)
SELECT game FROM table_name_80 WHERE location = "philadelphia spectrum" AND date = "april 1"
What Game has a Location of Philadelphia Spectrum and a Date of April 1?
CREATE TABLE table_name_80 (game VARCHAR, location VARCHAR, date VARCHAR)
SELECT COUNT(original_air_date) FROM table_16617011_1 WHERE us_viewers__millions_ = "14.20"
Name the number air date for 14.20 us viewers
CREATE TABLE table_16617011_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
SELECT seat_of_rcm FROM table_214920_1 WHERE density__pop_per_km2_ = "9.7"
What is the seat of the RCM in the county that has a density of 9.7?
CREATE TABLE table_214920_1 (seat_of_rcm VARCHAR, density__pop_per_km2_ VARCHAR)
SELECT start__reg_season_ FROM table_22383603_1 WHERE top_record = "Lindenwood (20–0–0)"
When did the season start that ended with the top record of Lindenwood (20–0–0)?
CREATE TABLE table_22383603_1 (start__reg_season_ VARCHAR, top_record VARCHAR)
SELECT population_under_1_year_old_censo_2007_hab_ FROM table_name_91 WHERE population_censo_2007_hab_ = "112.054*"
What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*?
CREATE TABLE table_name_91 (population_under_1_year_old_censo_2007_hab_ VARCHAR, population_censo_2007_hab_ VARCHAR)
SELECT tour FROM table_21001903_2 WHERE mixed_doubles = "Zheng Bo Ma Jin" AND womens_singles = "Wang Yihan"
when mixed doubles is zheng bo ma jin and womens singles is wang yihan, what was the tour?
CREATE TABLE table_21001903_2 (tour VARCHAR, mixed_doubles VARCHAR, womens_singles VARCHAR)
SELECT COUNT(result) FROM table_16710829_2 WHERE opponent = "New Orleans Saints"
Name the total number of results for new orleans saints
CREATE TABLE table_16710829_2 (result VARCHAR, opponent VARCHAR)
SELECT MIN(wins) FROM table_18607260_6 WHERE losses = 5
Name the least wins for 5 losses
CREATE TABLE table_18607260_6 (wins INTEGER, losses VARCHAR)
SELECT pts FROM table_name_57 WHERE chassis = "brm p25"
How many points were scored when the Chassis is BRM p25?
CREATE TABLE table_name_57 (pts VARCHAR, chassis VARCHAR)
SELECT MAX(series__number) FROM table_17355579_1 WHERE directed_by = "Richard Thorpe" AND written_by = "Dee Johnson"
Name the series number directed by richard thorpe written by dee johnson
CREATE TABLE table_17355579_1 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR)
SELECT COUNT(byes) FROM table_name_31 WHERE losses > 0 AND against = 1526
What is the total number of byes with more than 0 losses and 1526 against?
CREATE TABLE table_name_31 (byes VARCHAR, losses VARCHAR, against VARCHAR)
SELECT area_km_2 FROM table_171236_2 WHERE census_ranking = "1,016 of 5,008"
What is the Area KM 2 of the place that has a Census ranking of 1,016 of 5,008?
CREATE TABLE table_171236_2 (area_km_2 VARCHAR, census_ranking VARCHAR)
SELECT celebrity FROM table_name_91 WHERE finished = "7th"
Who was the celebrity who finished in 7th place?
CREATE TABLE table_name_91 (celebrity VARCHAR, finished VARCHAR)
SELECT drawn FROM table_name_56 WHERE tries_against = "45"
Where there any Draws with 45 tries against?
CREATE TABLE table_name_56 (drawn VARCHAR, tries_against VARCHAR)
SELECT MIN(game) FROM table_name_35 WHERE opponent = "boston bruins"
What is the lowest Game, when Opponent is "Boston Bruins"?
CREATE TABLE table_name_35 (game INTEGER, opponent VARCHAR)
SELECT date FROM table_name_92 WHERE location_attendance = "the spectrum"
What was the date for the game that had a Location/Attendance of the spectrum?
CREATE TABLE table_name_92 (date VARCHAR, location_attendance VARCHAR)
SELECT COUNT(entrants) FROM table_name_21 WHERE year = 2011
How many entrants were there in 2011?
CREATE TABLE table_name_21 (entrants VARCHAR, year VARCHAR)
SELECT name FROM table_name_92 WHERE time = "8:10.1"
What is the Name, when the Time is 8:10.1?
CREATE TABLE table_name_92 (name VARCHAR, time VARCHAR)
SELECT bluetooth FROM table_name_31 WHERE model = "s35"
Does the s35 model have bluetooth?
CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR)
SELECT neck FROM table_name_48 WHERE bullet = "10.566 (.416)" AND base = "14.78 (.582)"
Which Neck has a Bullet of 10.566 (.416), and a Base of 14.78 (.582)?
CREATE TABLE table_name_48 (neck VARCHAR, bullet VARCHAR, base VARCHAR)
SELECT 2003 AS rank FROM table_name_60 WHERE code__iata_ = "sin"
What 2003 rank does the airport IATA code SIN have?
CREATE TABLE table_name_60 (code__iata_ VARCHAR)
SELECT week FROM table_name_62 WHERE air_date = "august 2, 2008"
Which Week has an Air Date of august 2, 2008?
CREATE TABLE table_name_62 (week VARCHAR, air_date VARCHAR)
SELECT T2.property_type_description FROM Properties AS T1 JOIN Ref_Property_Types AS T2 ON T1.property_type_code = T2.property_type_code GROUP BY T1.property_type_code
Show the property type descriptions of properties belonging to that code.
CREATE TABLE Properties (property_type_code VARCHAR); CREATE TABLE Ref_Property_Types (property_type_description VARCHAR, property_type_code VARCHAR)
SELECT away_team AS score FROM table_name_28 WHERE home_team = "north melbourne"
What is the away team's score when north melbourne is the home team?
CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR)
SELECT MIN(draws) FROM table_name_80 WHERE byes < 4
What is the smallest draws for Byes less than 4?
CREATE TABLE table_name_80 (draws INTEGER, byes INTEGER)
SELECT name FROM table_name_49 WHERE year_at_cu = "1st" AND alma_mater = "dayton ('07)"
Who has the alma mater of Dayton ('07), and was in their 1st year at CU?
CREATE TABLE table_name_49 (name VARCHAR, year_at_cu VARCHAR, alma_mater VARCHAR)
SELECT location FROM table_name_88 WHERE score = "38-29"
What is the Location, when the Score is 38-29?
CREATE TABLE table_name_88 (location VARCHAR, score VARCHAR)
SELECT MIN(round) FROM table_name_31 WHERE school_club_team = "southern mississippi"
Where's the first round that southern mississippi shows up during the draft?
CREATE TABLE table_name_31 (round INTEGER, school_club_team VARCHAR)
SELECT COUNT(capacity) FROM table_name_30 WHERE club = "pirin"
What is the total number of capacity for the venue of the club, pirin?
CREATE TABLE table_name_30 (capacity VARCHAR, club VARCHAR)
SELECT home_team AS score FROM table_name_76 WHERE away_team = "essendon"
Which home team has an Away team of essendon?
CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR)
SELECT short_stem FROM table_12784134_24 WHERE imperfect_stem = "garbitzen"
What is the short stem for garbitzen?
CREATE TABLE table_12784134_24 (short_stem VARCHAR, imperfect_stem VARCHAR)
SELECT original_air_date FROM table_26961951_6 WHERE written_by = "Abe Sylvia"
When did the episode written by Abe Sylvia originally air?
CREATE TABLE table_26961951_6 (original_air_date VARCHAR, written_by VARCHAR)
SELECT product_name FROM products WHERE product_type_code = 'Hardware' ORDER BY product_price DESC LIMIT 1
Find the name of the most expensive hardware product.
CREATE TABLE products (product_name VARCHAR, product_type_code VARCHAR, product_price VARCHAR)
SELECT original_club FROM table_26218124_1 WHERE name = "Newcastle Falcons"
Which club was originally named the newcastle falcons?
CREATE TABLE table_26218124_1 (original_club VARCHAR, name VARCHAR)
SELECT MIN(total) FROM table_name_87 WHERE silver > 0 AND nation = "georgia" AND bronze < 1
What is the smallest number of total medals for Georgia with 0 silver and 1 bronze?
CREATE TABLE table_name_87 (total INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)