answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT date FROM table_name_3 WHERE venue = "bucharest"
Which Date has a Venue of bucharest?
CREATE TABLE table_name_3 (date VARCHAR, venue VARCHAR)
SELECT MIN(loses) FROM table_name_83 WHERE position < 8 AND games_played < 30
What is the fewest loses for the club that is below 8 in position, and had played less than 30 games?
CREATE TABLE table_name_83 (loses INTEGER, position VARCHAR, games_played VARCHAR)
SELECT COUNT(detailed_family_information) FROM table_26708105_2 WHERE sequence = "aAGTAct"
What is the detailed family information where the sequence is aagtact?
CREATE TABLE table_26708105_2 (detailed_family_information VARCHAR, sequence VARCHAR)
SELECT record FROM table_name_24 WHERE visitor = "trail blazers"
What was the Record of the game in which the Trail Blazers was the visiting team?
CREATE TABLE table_name_24 (record VARCHAR, visitor VARCHAR)
SELECT 2008 AS _club FROM table_name_71 WHERE name = "francesca piccinini category:articles with hcards"
Which 2008 club has the name Francesca Piccinini Category:Articles with hCards?
CREATE TABLE table_name_71 (name VARCHAR)
SELECT MAX(average) FROM table_name_41 WHERE goals = 34 AND matches < 37
What is the highest Average, when Goals is "34", and when Matches is less than 37?
CREATE TABLE table_name_41 (average INTEGER, goals VARCHAR, matches VARCHAR)
SELECT number_one_single_s_ FROM table_27441210_17 WHERE artist = "Pep's"
What number-one single is performed by artist Pep's?
CREATE TABLE table_27441210_17 (number_one_single_s_ VARCHAR, artist VARCHAR)
SELECT place FROM table_name_38 WHERE score = 70 - 68 - 70 = 208
What place is the player with score of 70-68-70=208 from?
CREATE TABLE table_name_38 (place VARCHAR, score VARCHAR)
SELECT race_time FROM table_2139390_2 WHERE year = 2002
Name the race time for 2002
CREATE TABLE table_2139390_2 (race_time VARCHAR, year VARCHAR)
SELECT MAX(place) FROM table_name_58 WHERE english_translation = "lullaby for my beloved"
Which Place has an English translation of lullaby for my beloved?
CREATE TABLE table_name_58 (place INTEGER, english_translation VARCHAR)
SELECT venue FROM table_name_84 WHERE gross_revenue__2011_ = "$1,325,153"
What venue had gross revenues of $1,325,153 in 2011?
CREATE TABLE table_name_84 (venue VARCHAR, gross_revenue__2011_ VARCHAR)
SELECT venue FROM table_name_43 WHERE away_team = "hawthorn"
Where was the Hawthorn game played?
CREATE TABLE table_name_43 (venue VARCHAR, away_team VARCHAR)
SELECT 2009 FROM table_name_96 WHERE 2003 = "grand slam tournaments"
What is the 2009 value for the 2003 grand slam tournaments?
CREATE TABLE table_name_96 (Id VARCHAR)
SELECT COUNT(DISTINCT city) FROM bank
Find the number of different cities which banks are located at.
CREATE TABLE bank (city VARCHAR)
SELECT COUNT(snatch) FROM table_name_62 WHERE clean_ & _jerk > 132.5 AND total__kg_ = 315 AND bodyweight = 68.63
Tell me the total number of snatches for clean and jerk more than 132.5 when the total kg was 315 and bodyweight was 68.63
CREATE TABLE table_name_62 (snatch VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
SELECT COUNT(graphical) FROM table_22915134_2 WHERE ignition_timing = "68-292-68-292"
When 68-292-68-292 is the ignition timing how many graphicals is it?
CREATE TABLE table_22915134_2 (graphical VARCHAR, ignition_timing VARCHAR)
SELECT COUNT(founded) FROM table_13759592_1 WHERE high_school = "Skyline"
What year was Skyline High School founded?
CREATE TABLE table_13759592_1 (founded VARCHAR, high_school VARCHAR)
SELECT tournament FROM table_name_46 WHERE date = "22 october 2012"
What is the tournament on 22 October 2012?
CREATE TABLE table_name_46 (tournament VARCHAR, date VARCHAR)
SELECT MIN(attendance) FROM table_name_31 WHERE opponent = "green bay packers"
What was the lowest attendance when the Green Bay Packers played?
CREATE TABLE table_name_31 (attendance INTEGER, opponent VARCHAR)
SELECT SUM(year) FROM table_name_5 WHERE music_director_s_ = "anu malik"
WHich Year has a Music director(s) of anu malik?
CREATE TABLE table_name_5 (year INTEGER, music_director_s_ VARCHAR)
SELECT position FROM table_25794532_1 WHERE team = "Eifelland Racing"
Name the position for eifelland racing
CREATE TABLE table_25794532_1 (position VARCHAR, team VARCHAR)
SELECT successor FROM table_1134091_4 WHERE vacator = "Chester E. Holifield (D)"
Who was the successor when the vacator was chester e. holifield (d)?
CREATE TABLE table_1134091_4 (successor VARCHAR, vacator VARCHAR)
SELECT points FROM table_name_21 WHERE home = "detroit"
How many points were scored in the Detroit Home?
CREATE TABLE table_name_21 (points VARCHAR, home VARCHAR)
SELECT SUM(match) FROM table_name_73 WHERE draw < 0
What is the sum for the match with a draw less than 0?
CREATE TABLE table_name_73 (match INTEGER, draw INTEGER)
SELECT outgoing_manage FROM table_name_53 WHERE incoming_manager = "augusto inácio"
Who was the outgoing manager when the incoming manager was augusto inácio?
CREATE TABLE table_name_53 (outgoing_manage VARCHAR, incoming_manager VARCHAR)
SELECT heir FROM table_26460435_5 WHERE monarch = "Wareru"
Who was the heir when the monarch was Wareru?
CREATE TABLE table_26460435_5 (heir VARCHAR, monarch VARCHAR)
SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1
Show publishers that have more than one publication.
CREATE TABLE publication (Publisher VARCHAR)
SELECT name FROM table_name_85 WHERE transfer_window = "summer" AND nat = "ger" AND transfer_fee = "n/a"
Which player from GER has a transfer window of summer, and a transfer fee of n/a?
CREATE TABLE table_name_85 (name VARCHAR, transfer_fee VARCHAR, transfer_window VARCHAR, nat VARCHAR)
SELECT SUM(T1.Order_Quantity) FROM ORDER_ITEMS AS T1 JOIN Products AS T2 ON T1.Product_ID = T2.Product_ID WHERE T2.Product_Name = "photo"
What are the total order quantities of photo products?
CREATE TABLE ORDER_ITEMS (Order_Quantity INTEGER, Product_ID VARCHAR); CREATE TABLE Products (Product_ID VARCHAR, Product_Name VARCHAR)
SELECT MIN(game) FROM table_11964154_2 WHERE high_points = "Damien Wilkins (27)"
How many games was Damien Wilkins (27) the high scorer?
CREATE TABLE table_11964154_2 (game INTEGER, high_points VARCHAR)
SELECT record FROM table_name_79 WHERE date = "september 26"
What was the record on September 26?
CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)
SELECT venue FROM table_name_18 WHERE silver = "united states" AND year = 2010
Where was 2010 tournament where the United States received the silver?
CREATE TABLE table_name_18 (venue VARCHAR, silver VARCHAR, year VARCHAR)
SELECT MAX(heat) FROM table_name_36 WHERE nation = "australia" AND rank > 7
Which Heat has a Nation of australia, and a Rank larger than 7?
CREATE TABLE table_name_36 (heat INTEGER, nation VARCHAR, rank VARCHAR)
SELECT T2.investor_id FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id GROUP BY T2.investor_id HAVING COUNT(*) >= 2
Show the ids of the investors who have at least two transactions.
CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (investor_id VARCHAR)
SELECT transfer_fee FROM table_name_60 WHERE name = "evilasio"
what is the transfer fee for evilasio?
CREATE TABLE table_name_60 (transfer_fee VARCHAR, name VARCHAR)
SELECT AVG(2012) FROM table_name_33 WHERE 2009 < 3.38
Which 2012 has a 2009 smaller than 3.38?
CREATE TABLE table_name_33 (Id VARCHAR)
SELECT opponent FROM table_name_55 WHERE method = "points (4 x 0)"
Who was the opponent when the method was points (4 x 0)?
CREATE TABLE table_name_55 (opponent VARCHAR, method VARCHAR)
SELECT COUNT(season) FROM table_2140071_8 WHERE coach = "Rob Masek"
How many seasons feature Rob Masek?
CREATE TABLE table_2140071_8 (season VARCHAR, coach VARCHAR)
SELECT school_name FROM school ORDER BY enrollment LIMIT 1
List the name of the school with the smallest enrollment.
CREATE TABLE school (school_name VARCHAR, enrollment VARCHAR)
SELECT MIN(year_s_) FROM table_name_29 WHERE games_drawn___tests__ = "0" AND points_against___tests__ = "86"
What is the earliest year when games drawn was 0, points against are 86?
CREATE TABLE table_name_29 (year_s_ INTEGER, games_drawn___tests__ VARCHAR, points_against___tests__ VARCHAR)
SELECT competition FROM table_name_40 WHERE result = "3-2"
What is the event with a result of 3-2?
CREATE TABLE table_name_40 (competition VARCHAR, result VARCHAR)
SELECT city___state FROM table_name_33 WHERE team = "holden racing team" AND winner = "mark skaife todd kelly"
Tell me the city/state for the holden racing team with winner of mark skaife todd kelly
CREATE TABLE table_name_33 (city___state VARCHAR, team VARCHAR, winner VARCHAR)
SELECT MAX(crowd) FROM table_name_7 WHERE venue = "arden street oval"
What is the highest crowd at arden street oval?
CREATE TABLE table_name_7 (crowd INTEGER, venue VARCHAR)
SELECT SUM(T1.attendance) FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year BETWEEN 2000 AND 2010
What is the total home game attendance of team Boston Red Stockings from 2000 to 2010?
CREATE TABLE team (team_id_br VARCHAR, name VARCHAR); CREATE TABLE home_game (attendance INTEGER, team_id VARCHAR, year VARCHAR)
SELECT winning_score FROM table_name_22 WHERE tournament = "joburg open 1" AND date = "17 jan 2010"
What is Winning Score, when Tournament is Joburg Open 1, and when Date is 17 Jan 2010?
CREATE TABLE table_name_22 (winning_score VARCHAR, tournament VARCHAR, date VARCHAR)
SELECT class FROM table_name_20 WHERE stages_won = "2" AND position = "dnf"
What is the class that that won 2 stages and has a position of DNF?
CREATE TABLE table_name_20 (class VARCHAR, stages_won VARCHAR, position VARCHAR)
SELECT MIN(swimsuit) FROM table_name_85 WHERE interview < 8.56 AND evening_gown > 8.54
What is the lowest swimsuit score where the contestant scored less than 8.56 in the interview and greater than 8.54 in the evening gown?
CREATE TABLE table_name_85 (swimsuit INTEGER, interview VARCHAR, evening_gown VARCHAR)
SELECT opponent FROM table_name_22 WHERE date = "october 2, 2005"
Who played the Rams on October 2, 2005?
CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR)
SELECT AVG(overall) FROM table_name_23 WHERE college = "usf" AND round > 5
What is the average overall pick number for the USF player who was picked after round 5?
CREATE TABLE table_name_23 (overall INTEGER, college VARCHAR, round VARCHAR)
SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE lastname = "Heilo" GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1
Which vocal type has the band mate with last name "Heilo" played the most?
CREATE TABLE vocals (bandmate VARCHAR); CREATE TABLE band (id VARCHAR)
SELECT record FROM table_27713583_2 WHERE team = "@ Minnesota"
What is the record for the game against team @ Minnesota?
CREATE TABLE table_27713583_2 (record VARCHAR, team VARCHAR)
SELECT COUNT(sales) FROM table_name_44 WHERE peak_position > 2 AND certification = "3x platinum"
How many sales had a peak position more than 2 and a Certification of 3x platinum?
CREATE TABLE table_name_44 (sales VARCHAR, peak_position VARCHAR, certification VARCHAR)
SELECT MIN(rank) FROM table_name_24 WHERE total < 1
What is the rank when the total is less than 1?
CREATE TABLE table_name_24 (rank INTEGER, total INTEGER)
SELECT athlete FROM table_name_79 WHERE react = 0.185
Who was the athlete with react of 0.185?
CREATE TABLE table_name_79 (athlete VARCHAR, react VARCHAR)
SELECT restaurant_name FROM table_name_85 WHERE designer = "robin de groot" AND location = "cobourg, on"
What is the name of the Cobourg, ON restaurant that had Robin de Groot as designer?
CREATE TABLE table_name_85 (restaurant_name VARCHAR, designer VARCHAR, location VARCHAR)
SELECT name FROM table_name_59 WHERE team = "minardi team usa" AND qual_1 = "1:17.481"
What person on team Minardi Team USA with a qual of 1:17.481?
CREATE TABLE table_name_59 (name VARCHAR, team VARCHAR, qual_1 VARCHAR)
SELECT livery FROM table_name_82 WHERE date < 1936 AND description = "gresley rf"
What livery was worn on the date before 1936, with the description of Gresley RF?
CREATE TABLE table_name_82 (livery VARCHAR, date VARCHAR, description VARCHAR)
SELECT original_air_date FROM table_11075747_4 WHERE series__number = 36
What was the original air date for Series 36?
CREATE TABLE table_11075747_4 (original_air_date VARCHAR, series__number VARCHAR)
SELECT country_territory FROM table_name_33 WHERE miss_international = "małgorzata rożniecka"
What country or territory is małgorzata rożniecka from?
CREATE TABLE table_name_33 (country_territory VARCHAR, miss_international VARCHAR)
SELECT nba_years_[a_] FROM table_name_58 WHERE nationality = "united states" AND previous_team = "los angeles lakers"
How many NBA years did the player from the United States who was previously on the los angeles lakers have?
CREATE TABLE table_name_58 (nba_years_ VARCHAR, a_ VARCHAR, nationality VARCHAR, previous_team VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_70 WHERE player = "carl hagelin"
Tell me the college for carl hagelin
CREATE TABLE table_name_70 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
SELECT head_s__of_government FROM table_name_77 WHERE name = "don stephen senanayake"
What is the head of government for Don Stephen Senanayake?
CREATE TABLE table_name_77 (head_s__of_government VARCHAR, name VARCHAR)
SELECT AVG(league) AS Cup FROM table_name_87 WHERE total = 19 AND league < 15
Which League Cup that has a Total of 19 and a League smaller than 15?
CREATE TABLE table_name_87 (league INTEGER, total VARCHAR)
SELECT pick FROM table_name_98 WHERE nationality = "canada" AND round = 5
Which Pick has a Nationality of canada, and a Round of 5?
CREATE TABLE table_name_98 (pick VARCHAR, nationality VARCHAR, round VARCHAR)
SELECT location FROM table_11658094_1 WHERE joined = "2008"
what are the locations that joined in 2008
CREATE TABLE table_11658094_1 (location VARCHAR, joined VARCHAR)
SELECT score FROM table_name_14 WHERE date = "may 26"
What is the score of the game on May 26?
CREATE TABLE table_name_14 (score VARCHAR, date VARCHAR)
SELECT episode__number FROM table_27846651_1 WHERE viewers__millions_ = "5.46"
Wat episode number had 5.46 million viewers?
CREATE TABLE table_27846651_1 (episode__number VARCHAR, viewers__millions_ VARCHAR)
SELECT country FROM table_name_16 WHERE place = "t4" AND score = 67 - 71 - 73 = 211
What country has t4 place and a 67-71-73=211 score?
CREATE TABLE table_name_16 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT MAX(overall) FROM table_name_38 WHERE round = 3 AND pick__number > 10
With Round 3 and Pick # over 10, what is the higher Overall number?
CREATE TABLE table_name_38 (overall INTEGER, round VARCHAR, pick__number VARCHAR)
SELECT team FROM table_17326036_5 WHERE date = "November 21"
What team was the game on November 21 played against?
CREATE TABLE table_17326036_5 (team VARCHAR, date VARCHAR)
SELECT jasons_team FROM table_23292220_8 WHERE seans_team = "Reginald D. Hunter and Kelly Osbourne"
Who was on Jason's team in the episode where Sean's team was Reginald D. Hunter and Kelly Osbourne?
CREATE TABLE table_23292220_8 (jasons_team VARCHAR, seans_team VARCHAR)
SELECT directed_by FROM table_25923164_1 WHERE us_viewers__million_ = "12.88"
Who directed the episode that had 12.88 million viewers?
CREATE TABLE table_25923164_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT airport FROM table_name_73 WHERE code__iata_ = "ams"
Which airport has an IATA code of AMS?
CREATE TABLE table_name_73 (airport VARCHAR, code__iata_ VARCHAR)
SELECT opponents FROM table_name_80 WHERE partner = "rushmi chakravarthi"
Who were the Opponents in the Match with Partner Rushmi Chakravarthi?
CREATE TABLE table_name_80 (opponents VARCHAR, partner VARCHAR)
SELECT T2.Fname, T2.Lname FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID WHERE T1.CName = "COMPUTER LITERACY"
Find the first name and last name of the instructor of course that has course name
CREATE TABLE FACULTY (Fname VARCHAR, Lname VARCHAR, FacID VARCHAR); CREATE TABLE COURSE (Instructor VARCHAR, CName VARCHAR)
SELECT COUNT(pick) FROM table_name_60 WHERE year < 2009 AND round > 1
What is the pick number in a year earlier than 2009, with a round higher than 1?
CREATE TABLE table_name_60 (pick VARCHAR, year VARCHAR, round VARCHAR)
SELECT decision FROM table_name_42 WHERE series = "3 – 3"
Which Decision has a Series of 3 – 3?
CREATE TABLE table_name_42 (decision VARCHAR, series VARCHAR)
SELECT country FROM table_name_16 WHERE rank < 2
What country is ranked smaller than 2?
CREATE TABLE table_name_16 (country VARCHAR, rank INTEGER)
SELECT AVG(game) FROM table_name_3 WHERE february > 13 AND opponent = "toronto maple leafs" AND points > 47
What is the average game number that took place after February 13 against the Toronto Maple Leafs and more than 47 points were scored?
CREATE TABLE table_name_3 (game INTEGER, points VARCHAR, february VARCHAR, opponent VARCHAR)
SELECT channel_tv___dt__ FROM table_1553485_1 WHERE city_of_license__market = "San Francisco - Oakland - San Jose"
Which channel tv (dt) plays in San Francisco - Oakland - San Jose?
CREATE TABLE table_1553485_1 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR)
SELECT MAX(miss_fire) FROM table_30008638_1
What is the most Miss Fires any country has had?
CREATE TABLE table_30008638_1 (miss_fire INTEGER)
SELECT MIN(season) FROM table_1004033_1 WHERE team = "MetroStars"
When did the Metrostars have their first Rookie of the Year winner?
CREATE TABLE table_1004033_1 (season INTEGER, team VARCHAR)
SELECT date_announced FROM table_1373542_1 WHERE reported_cost = "US$9 million"
On what date was it announced that an asset was acquired for US$9 Million?
CREATE TABLE table_1373542_1 (date_announced VARCHAR, reported_cost VARCHAR)
SELECT player FROM table_name_20 WHERE college = "vanderbilt"
Which player went to Vanderbilt?
CREATE TABLE table_name_20 (player VARCHAR, college VARCHAR)
SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_protected = "8.06"
What is the percentage of total area in the ecozone that the percentage protected is 8.06?
CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_protected VARCHAR)
SELECT tournament FROM table_name_61 WHERE 1990 = "olympic games"
What is the Tournament when the 1990 is Olympic Games?
CREATE TABLE table_name_61 (tournament VARCHAR)
SELECT replaced_by FROM table_17201869_3 WHERE outgoing_manager = "José Ángel Ziganda"
Who replaced outgoing manager José Ángel Ziganda?
CREATE TABLE table_17201869_3 (replaced_by VARCHAR, outgoing_manager VARCHAR)
SELECT us_country FROM table_name_30 WHERE album = "singles only" AND year = 1967
What US Country released an album of singles only in 1967?
CREATE TABLE table_name_30 (us_country VARCHAR, album VARCHAR, year VARCHAR)
SELECT malayalam_name FROM table_20354_7 WHERE zodiac_sign = "Leo"
Name the malayalam name for leo
CREATE TABLE table_20354_7 (malayalam_name VARCHAR, zodiac_sign VARCHAR)
SELECT fencing_victories__pts_ FROM table_name_61 WHERE shooting_score__pts_ = "187 (1180)" AND total < 5640
Which Fencing Victories (pts) has a Shooting Score (pts) of 187 (1180) and a Total smaller than 5640? Question 1
CREATE TABLE table_name_61 (fencing_victories__pts_ VARCHAR, shooting_score__pts_ VARCHAR, total VARCHAR)
SELECT date FROM table_name_88 WHERE format = "cd/dvd"
Tell me the date for format of cd/dvd
CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR)
SELECT season AS premiere FROM table_name_12 WHERE viewer_rank___number_ = "#6"
When did the season premiere that had a viewer rank of #6?
CREATE TABLE table_name_12 (season VARCHAR, viewer_rank___number_ VARCHAR)
SELECT COUNT(cook_islands) FROM table_24807774_1 WHERE bosnian = "Macedonian"
how many bosnian in cook islands is macedonian
CREATE TABLE table_24807774_1 (cook_islands VARCHAR, bosnian VARCHAR)
SELECT score FROM table_name_8 WHERE to_par = "e"
What is Score, when To Par is "E"?
CREATE TABLE table_name_8 (score VARCHAR, to_par VARCHAR)
SELECT name FROM table_name_17 WHERE type = "learning/social difficulties"
Which name is the learning/social difficulties type?
CREATE TABLE table_name_17 (name VARCHAR, type VARCHAR)
SELECT gloss FROM table_name_22 WHERE virtue = "diligence"
What is the Diligence Virtues Gloss?
CREATE TABLE table_name_22 (gloss VARCHAR, virtue VARCHAR)
SELECT laps FROM table_name_87 WHERE points < 1 AND team = "dale coyne racing" AND grid > 13
Waht laps have points smaller than 1, and a team of dale coyne racing, and the grid larger than 13?
CREATE TABLE table_name_87 (laps VARCHAR, grid VARCHAR, points VARCHAR, team VARCHAR)
SELECT location FROM table_name_4 WHERE frequency = "102.5 fm"
Which Location has a Frequency of 102.5 fm?
CREATE TABLE table_name_4 (location VARCHAR, frequency VARCHAR)
SELECT MAX(season__number) FROM table_28019988_5 WHERE us_viewers__million_ = "2.31" AND written_by = "Tom Garrigus"
What episode number of the season was written by Tom Garrigus and had 2.31 million u.s. viewers?
CREATE TABLE table_28019988_5 (season__number INTEGER, us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT MAX(grid) FROM table_name_43 WHERE manufacturer = "aprilia" AND time = "retirement" AND laps > 5
What is the highest grid for Aprilia vehicles, laps over 5, and a retirement finish?
CREATE TABLE table_name_43 (grid INTEGER, laps VARCHAR, manufacturer VARCHAR, time VARCHAR)