answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT investment_income FROM table_name_39 WHERE occupational_pensions = "7%" AND working_tax_credit = "2%" AND other_social_security_benefits = "6%"
Occupational pensions of 7%, and a Working tax credit of 2%, and a Other social security benefits of 6% has what investment income?
CREATE TABLE table_name_39 (investment_income VARCHAR, other_social_security_benefits VARCHAR, occupational_pensions VARCHAR, working_tax_credit VARCHAR)
SELECT MIN(green) FROM table_name_82 WHERE year > 2010 AND labour > 29
Name the lowest Green with a Year larger than 2010, and a Labour larger than 29? Question 3
CREATE TABLE table_name_82 (green INTEGER, year VARCHAR, labour VARCHAR)
SELECT sector FROM table_23802822_1 WHERE establishments = 110313
What is the sector is the establishment is 110313?
CREATE TABLE table_23802822_1 (sector VARCHAR, establishments VARCHAR)
SELECT type FROM table_2562572_50 WHERE settlement = "Krušedol Selo"
What type of settlemen is Krušedol Selo?
CREATE TABLE table_2562572_50 (type VARCHAR, settlement VARCHAR)
SELECT headquarter FROM table_name_89 WHERE language = "english" AND type = "independent online news portal"
What is Headquarter, when Language is English, and when Type is Independent Online News Portal?
CREATE TABLE table_name_89 (headquarter VARCHAR, language VARCHAR, type VARCHAR)
SELECT no_2 FROM table_name_56 WHERE no_9 = "mia"
What is No. 2, when No. 9 is Mia?
CREATE TABLE table_name_56 (no_2 VARCHAR, no_9 VARCHAR)
SELECT MAX(earnings__) AS $__ FROM table_name_23 WHERE player = "jim colbert"
What's the most jim colbert got paid?
CREATE TABLE table_name_23 (earnings__ INTEGER, player VARCHAR)
SELECT outgoing_manager FROM table_27225944_3 WHERE manner_of_departure = "Mutual consent" AND position_in_table = "16th"
Name the outgoing manager for mutual consent and position 16th
CREATE TABLE table_27225944_3 (outgoing_manager VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)
SELECT COUNT(home_losses) FROM table_1409106_2 WHERE pf = 13
How many home losses occured when PF 13?
CREATE TABLE table_1409106_2 (home_losses VARCHAR, pf VARCHAR)
SELECT record FROM table_22862203_2 WHERE opp_points = 50
What were the records when the opponents had 50 points?
CREATE TABLE table_22862203_2 (record VARCHAR, opp_points VARCHAR)
SELECT date FROM table_25572118_1 WHERE series = "EMT 9"
When emt 9 is the series what is the date?
CREATE TABLE table_25572118_1 (date VARCHAR, series VARCHAR)
SELECT last_performance FROM table_name_16 WHERE status = "current cast" AND name = "noah parets"
What was the Last Performance when the status is current cast, and a Name of noah parets?
CREATE TABLE table_name_16 (last_performance VARCHAR, status VARCHAR, name VARCHAR)
SELECT construction_completed FROM table_name_1 WHERE cerclis_id = "ard092916188"
What construction has a CERCLIS ID of ard092916188?
CREATE TABLE table_name_1 (construction_completed VARCHAR, cerclis_id VARCHAR)
SELECT class FROM table_name_31 WHERE vehicle = "nissan" AND year = 2007
Which class had a vehicle of Nissan in 2007?
CREATE TABLE table_name_31 (class VARCHAR, vehicle VARCHAR, year VARCHAR)
SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = "21st"
Which T.C. has a Year larger than 2007, and a D.C. of 21st?
CREATE TABLE table_name_26 (tc VARCHAR, year VARCHAR, dc VARCHAR)
SELECT MAX(played) FROM table_name_9 WHERE place > 10
What is listed as the Highest Played and that has a Place that is larger than 10?
CREATE TABLE table_name_9 (played INTEGER, place INTEGER)
SELECT method FROM table_name_38 WHERE opponent = "alessio sakara"
Which method was used when Alessio Sakara was the opponent?
CREATE TABLE table_name_38 (method VARCHAR, opponent VARCHAR)
SELECT transcription__based_on_pinyin_ FROM table_1805919_1 WHERE english_translation = "Alas for the Days Gone By"
What is the Pinyin transcription for "Alas for the Days Gone By"?
CREATE TABLE table_1805919_1 (transcription__based_on_pinyin_ VARCHAR, english_translation VARCHAR)
SELECT Hardware_Model_name, Company_name FROM phone WHERE Accreditation_type LIKE 'Full'
Find all phones that have word 'Full' in their accreditation types. List the Hardware Model name and Company name.
CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, Accreditation_type VARCHAR)
SELECT attendance FROM table_name_47 WHERE date = "august 8"
What was the attendance on August 8?
CREATE TABLE table_name_47 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(year_s__won) FROM table_name_27 WHERE player = "ed furgol" AND to_par > 12
What is the total number of Year(s) Won, when Player is Ed Furgol, and when To Par is greater than 12?
CREATE TABLE table_name_27 (year_s__won VARCHAR, player VARCHAR, to_par VARCHAR)
SELECT college FROM table_11677760_1 WHERE player = "Damon Bailey"
what is the college for the player damon bailey?
CREATE TABLE table_11677760_1 (college VARCHAR, player VARCHAR)
SELECT winner FROM table_name_97 WHERE race_leader = "rest day"
Name the winner for rest day race leader
CREATE TABLE table_name_97 (winner VARCHAR, race_leader VARCHAR)
SELECT home_team AS score FROM table_name_43 WHERE away_team = "south melbourne"
Which team was the home team when playing South Melbourne?
CREATE TABLE table_name_43 (home_team VARCHAR, away_team VARCHAR)
SELECT club FROM table_name_8 WHERE replacement = "alberto malesani"
Tell me the club with a replacement of alberto malesani
CREATE TABLE table_name_8 (club VARCHAR, replacement VARCHAR)
SELECT 2008 FROM table_name_36 WHERE 2009 = "0" AND tournament = "atp tournaments won"
What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament?
CREATE TABLE table_name_36 (tournament VARCHAR)
SELECT name FROM table_1585609_2 WHERE date_of_designation = "2002-04-01"
Name thenames for 2002-04-01
CREATE TABLE table_1585609_2 (name VARCHAR, date_of_designation VARCHAR)
SELECT winning_pct__percentage FROM table_2259285_1 WHERE goals_for = 322
What was the winning % when there were 322 goals?
CREATE TABLE table_2259285_1 (winning_pct__percentage VARCHAR, goals_for VARCHAR)
SELECT label FROM table_name_98 WHERE catalog = "7243 8 49494 2 6"
Which Label has a Catalog of 7243 8 49494 2 6?
CREATE TABLE table_name_98 (label VARCHAR, catalog VARCHAR)
SELECT country FROM table_name_80 WHERE lane = 5 AND react > 0.166
What is Country, when Lane is 5, and when React is greater than 0.166?
CREATE TABLE table_name_80 (country VARCHAR, lane VARCHAR, react VARCHAR)
SELECT origin FROM table_name_15 WHERE train_no = "15929/30"
From where did Train No. 15929/30 originate?
CREATE TABLE table_name_15 (origin VARCHAR, train_no VARCHAR)
SELECT T1.student_id, T2.login_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1
Find the student ID and login name of the student with the most course enrollments
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (login_name VARCHAR, student_id VARCHAR)
SELECT COUNT(*), SUM(student_capacity), gender FROM dorm GROUP BY gender
Find the number of dorms and total capacity for each gender.
CREATE TABLE dorm (gender VARCHAR, student_capacity INTEGER)
SELECT property_taxes FROM table_name_33 WHERE year > 2002 AND total_revenue = "$40,891,700"
What were property taxes in a year when total revenue was $40,891,700 after 2002?
CREATE TABLE table_name_33 (property_taxes VARCHAR, year VARCHAR, total_revenue VARCHAR)
SELECT f_laps FROM table_name_97 WHERE position = "3rd"
What is the F/Laps value associated with a position of 3rd?
CREATE TABLE table_name_97 (f_laps VARCHAR, position VARCHAR)
SELECT directed_by FROM table_2342078_6 WHERE written_by = "George Tibbles"
Name who drected the episode written by george tibbles
CREATE TABLE table_2342078_6 (directed_by VARCHAR, written_by VARCHAR)
SELECT route FROM table_name_27 WHERE winner = "sébastien rosseler"
Name the route with winner of sébastien rosseler
CREATE TABLE table_name_27 (route VARCHAR, winner VARCHAR)
SELECT rank__week_ FROM table_28026156_1 WHERE written_by = "Thomas L. Moran"
Where did the episode rank that was written by thomas l. moran?
CREATE TABLE table_28026156_1 (rank__week_ VARCHAR, written_by VARCHAR)
SELECT 1991 FROM table_name_60 WHERE 1993 = "grand slams"
What is the 1991 finish for the 1993 Grand Slams?
CREATE TABLE table_name_60 (Id VARCHAR)
SELECT team FROM table_name_25 WHERE game = 59
What is Team, when Game is "59"?
CREATE TABLE table_name_25 (team VARCHAR, game VARCHAR)
SELECT customer_status_code, COUNT(*) FROM Customers GROUP BY customer_status_code
List all customer status codes and the number of customers having each status code.
CREATE TABLE Customers (customer_status_code VARCHAR)
SELECT region FROM table_name_77 WHERE country = "laos"
The country of Laos is in what region?
CREATE TABLE table_name_77 (region VARCHAR, country VARCHAR)
SELECT title FROM table_name_78 WHERE director = "chuck jones" AND production_number = "9537"
What is the title with chuck jones as the director and the production number 9537?
CREATE TABLE table_name_78 (title VARCHAR, director VARCHAR, production_number VARCHAR)
SELECT 250 AS _cc FROM table_name_89 WHERE year > 1984
What is the 250 cc with a year bigger than 1984?
CREATE TABLE table_name_89 (year INTEGER)
SELECT COUNT(tie_no) FROM table_20819379_2 WHERE team_2 = "Osijek"
Name the total number of tie number for team 2 osijek
CREATE TABLE table_20819379_2 (tie_no VARCHAR, team_2 VARCHAR)
SELECT MAX(year) FROM table_name_50 WHERE venue = "edmonton, canada"
Which Year is the highest one that has a Venue of edmonton, canada?
CREATE TABLE table_name_50 (year INTEGER, venue VARCHAR)
SELECT MIN(pick__number) FROM table_name_9 WHERE college = "colorado"
What is Colorado College's lowest pick number?
CREATE TABLE table_name_9 (pick__number INTEGER, college VARCHAR)
SELECT MIN(first_elected) FROM table_1341472_49 WHERE district = "Washington 7"
what being the minimum first elected with district being washington 7
CREATE TABLE table_1341472_49 (first_elected INTEGER, district VARCHAR)
SELECT MAX(wins) FROM table_name_77 WHERE losses < 4 AND ties > 0
What is the most wins when the number of losses was less than 4 and there was more than 0 ties?
CREATE TABLE table_name_77 (wins INTEGER, losses VARCHAR, ties VARCHAR)
SELECT orbital_period FROM table_name_69 WHERE center_to_center_distance = "6,900 to 46,300 km"
center-to-center distance of 6,900 to 46,300 km involves which orbital period?
CREATE TABLE table_name_69 (orbital_period VARCHAR, center_to_center_distance VARCHAR)
SELECT semifinalists FROM table_29302781_12 WHERE runner_up = "Pat Du Pré"
Who were the semifinalists when the runner-up was Pat Du Pré?
CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR)
SELECT fa_cup_apps FROM table_19730892_1 WHERE name = "Arthur Morton"
Name the fa cup apps for arthur morton
CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)
SELECT population FROM table_name_30 WHERE height__m_ = 15 AND area___ha__ = "00017 17"
What is the Population of the group that has a Height (m) of 15 and an Area (ha) of 00017 17?
CREATE TABLE table_name_30 (population VARCHAR, height__m_ VARCHAR, area___ha__ VARCHAR)
SELECT SUM(field_goals) FROM table_name_14 WHERE player = "carter" AND extra_points < 0
How many field goals did Carter get when he had 0 extra points?
CREATE TABLE table_name_14 (field_goals INTEGER, player VARCHAR, extra_points VARCHAR)
SELECT player FROM table_name_17 WHERE opponent = "source: . last updated: 28 june 2007."
What is Player, when Opponent is source: . last updated: 28 june 2007.?
CREATE TABLE table_name_17 (player VARCHAR, opponent VARCHAR)
SELECT venue FROM table_name_35 WHERE result = "3-0"
Which venue ended in a 3-0 result?
CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR)
SELECT Population, Region FROM country WHERE Name = "Angola"
What are the region and population of Angola?
CREATE TABLE country (Population VARCHAR, Region VARCHAR, Name VARCHAR)
SELECT escorts FROM table_name_74 WHERE cruisers = "6"
How many escorts does the nation with 6 cruisers have?
CREATE TABLE table_name_74 (escorts VARCHAR, cruisers VARCHAR)
SELECT city_of_license FROM table_name_95 WHERE call_sign = "kcmp"
Name the city of license for call sign of kcmp
CREATE TABLE table_name_95 (city_of_license VARCHAR, call_sign VARCHAR)
SELECT opponent FROM table_name_20 WHERE location = "groves stadium • winston-salem, nc" AND result = "t 17-17"
What is the Opponent when the location was groves stadium • winston-salem, nc, with a result of t 17-17?
CREATE TABLE table_name_20 (opponent VARCHAR, location VARCHAR, result VARCHAR)
SELECT MIN(1 AS st_prize__) AS $__ FROM table_11622562_1 WHERE location = "New Mexico"
What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico?
CREATE TABLE table_11622562_1 (location VARCHAR)
SELECT round FROM table_16741821_9 WHERE opponents = "Jesse Huta Galung Peter Wessels"
What is the name of the round against the opponents jesse huta galung peter wessels?
CREATE TABLE table_16741821_9 (round VARCHAR, opponents VARCHAR)
SELECT opponent FROM table_name_43 WHERE season = "2008–09" AND final_score = "2–3 l"
What team was the opponent in the 2008–09 season, with a final score of 2–3 l?
CREATE TABLE table_name_43 (opponent VARCHAR, season VARCHAR, final_score VARCHAR)
SELECT nationality FROM table_11545282_19 WHERE player = "Kelly Tripucka"
What is the nationality of the player named Kelly Tripucka?
CREATE TABLE table_11545282_19 (nationality VARCHAR, player VARCHAR)
SELECT away_team AS score FROM table_name_74 WHERE venue = "western oval"
What was the away team's score at Western Oval?
CREATE TABLE table_name_74 (away_team VARCHAR, venue VARCHAR)
SELECT AVG(points) FROM table_name_63 WHERE engine = "ford zetec-r v8"
What are the average points for an engine of ford zetec-r v8?
CREATE TABLE table_name_63 (points INTEGER, engine VARCHAR)
SELECT playoffs FROM table_1939214_1 WHERE league = "USISL Pro league"
What was the team's status in the USISL Pro League playoffs?
CREATE TABLE table_1939214_1 (playoffs VARCHAR, league VARCHAR)
SELECT record FROM table_name_97 WHERE game_site = "hoosier dome" AND week = 13
What was the Record on Week 13 at the Hoosier Dome?
CREATE TABLE table_name_97 (record VARCHAR, game_site VARCHAR, week VARCHAR)
SELECT SUM(grid) FROM table_name_39 WHERE driver = "alain prost"
Which Grid did Alain Prost drive on?
CREATE TABLE table_name_39 (grid INTEGER, driver VARCHAR)
SELECT artist FROM table_27932399_1 WHERE release_title = "HH"
Which artist had a release title of HH?
CREATE TABLE table_27932399_1 (artist VARCHAR, release_title VARCHAR)
SELECT home_team FROM table_name_73 WHERE away_team = "footscray"
What home team played against Footscray as the away team?
CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)
SELECT MAX(task_no) FROM table_name_94 WHERE date_given = "january 22, 2010 (day 111)"
What is the task number on January 22, 2010 (day 111)?
CREATE TABLE table_name_94 (task_no INTEGER, date_given VARCHAR)
SELECT 2007 FROM table_name_95 WHERE 2008 = "sf" AND 2010 = "f"
What in 2007 has a 2008 of sf, and a 2010 of f?
CREATE TABLE table_name_95 (Id VARCHAR)
SELECT team FROM table_22297140_3 WHERE outgoing_manager = "Behtash Fariba"
Which team had an outgoing manager of Behtash Fariba?
CREATE TABLE table_22297140_3 (team VARCHAR, outgoing_manager VARCHAR)
SELECT young_rider_classification FROM table_name_66 WHERE mountains_classification = "jesper worre" AND stage = "3"
What is the young rider classification for jesper worre and stage 3
CREATE TABLE table_name_66 (young_rider_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR)
SELECT COUNT(top_10) FROM table_2190919_1 WHERE avg_finish = "23.3"
How many teams finished in the top team with an average finish of 23.3?
CREATE TABLE table_2190919_1 (top_10 VARCHAR, avg_finish VARCHAR)
SELECT country FROM table_name_53 WHERE album = "best of" AND weeks_on_chart < 5
what is the country with the album best of and weeks on chart is less than 5?
CREATE TABLE table_name_53 (country VARCHAR, album VARCHAR, weeks_on_chart VARCHAR)
SELECT MAX(ansi_code) FROM table_name_98 WHERE latitude > 47.623288 AND geo_id > 3805508060 AND land___sqmi__ > 35.66 AND longitude < -102.054248
what is the highest ANSI code with a latitude more than 47.623288 and a geo id more than 3805508060 with land (sqmi) more than 35.66 and a longitude less than -102.054248
CREATE TABLE table_name_98 (ansi_code INTEGER, longitude VARCHAR, land___sqmi__ VARCHAR, latitude VARCHAR, geo_id VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_25 WHERE round < 2 AND nationality = "united states"
What is the name of the team with round less than 2, and the nationality is the United States?
CREATE TABLE table_name_25 (college_junior_club_team__league_ VARCHAR, round VARCHAR, nationality VARCHAR)
SELECT MIN(wins) FROM table_name_67 WHERE position = 4 AND loses < 4
What is the lowest wins the club with a position of 4 and less than 4 losses has?
CREATE TABLE table_name_67 (wins INTEGER, position VARCHAR, loses VARCHAR)
SELECT COUNT(purse___) AS $__ FROM table_name_41 WHERE champion = "sherri steinhauer" AND venue = "woburn golf and country club"
What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club?
CREATE TABLE table_name_41 (purse___ VARCHAR, champion VARCHAR, venue VARCHAR)
SELECT home FROM table_name_23 WHERE record = "36–21–8"
Who was the home team when the record was 36–21–8?
CREATE TABLE table_name_23 (home VARCHAR, record VARCHAR)
SELECT AVG(year_joined) FROM table_name_22 WHERE year_left < 2003
Of all the schools that left before 2003, what is the average year joined?
CREATE TABLE table_name_22 (year_joined INTEGER, year_left INTEGER)
SELECT COUNT(episode) FROM table_11235334_2 WHERE air_date = "October 27, 2008"
How many episodes aired on october 27, 2008
CREATE TABLE table_11235334_2 (episode VARCHAR, air_date VARCHAR)
SELECT 2011 AS _gdp__ppp__billions_of_usd FROM table_2248784_3 WHERE country = "Pakistan"
Name the 2011 gdp for pakistan
CREATE TABLE table_2248784_3 (country VARCHAR)
SELECT COUNT(prefecture) FROM table_221398_1 WHERE area__km²_ = "361.719"
How many prefectures have an area of 361.719 kilometers squared?
CREATE TABLE table_221398_1 (prefecture VARCHAR, area__km²_ VARCHAR)
SELECT party FROM table_name_95 WHERE term_start = "5 august 1999"
Which party had a term start of 5 august 1999?
CREATE TABLE table_name_95 (party VARCHAR, term_start VARCHAR)
SELECT original_air_date FROM table_12722302_2 WHERE no = 2
What is the original air date for no. 2?
CREATE TABLE table_12722302_2 (original_air_date VARCHAR, no VARCHAR)
SELECT outcome FROM table_name_67 WHERE opponent_in_the_final = "all england open"
What is the Outcome when All England Open is the Opponent in the final?
CREATE TABLE table_name_67 (outcome VARCHAR, opponent_in_the_final VARCHAR)
SELECT weight FROM table_name_33 WHERE internal_storage = "16-64 gb" AND wireless_network = "wi-fi, 3g"
What is the weight of the display that has an internal storage of 16-64 GB and uses a wi-fi, 3G wireless network?
CREATE TABLE table_name_33 (weight VARCHAR, internal_storage VARCHAR, wireless_network VARCHAR)
SELECT SUM(silver) FROM table_name_84 WHERE total < 1
What is the sum of Silver, when Total is less than 1?
CREATE TABLE table_name_84 (silver INTEGER, total INTEGER)
SELECT transmission FROM table_name_99 WHERE engine = "2.0l" AND acceleration_0_100km_h__0_62mph_ = "10.5 s"
What is the transmission when the engine is 2.0l, and acceleration 0–100km/h (0–62mph) is 10.5 s?
CREATE TABLE table_name_99 (transmission VARCHAR, engine VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)
SELECT T2.student_details FROM student_course_registrations AS T1 JOIN students AS T2 ON T1.student_id = T2.student_id ORDER BY T1.registration_date DESC LIMIT 1
What is detail of the student who most recently registered course?
CREATE TABLE student_course_registrations (student_id VARCHAR, registration_date VARCHAR); CREATE TABLE students (student_details VARCHAR, student_id VARCHAR)
SELECT actual_title FROM table_name_15 WHERE artist = "tom richmond" AND issue < 508 AND writer = "desmond devlin"
What was the actual title of the show that had an issue number less than 508, was written by Desmond Devlin, and for which Tom Richmond was the artist?
CREATE TABLE table_name_15 (actual_title VARCHAR, writer VARCHAR, artist VARCHAR, issue VARCHAR)
SELECT document_type_code FROM Ref_document_types WHERE document_type_name = "Paper"
What is the document type code for document type "Paper"?
CREATE TABLE Ref_document_types (document_type_code VARCHAR, document_type_name VARCHAR)
SELECT largest_ethnic_group__2002_ FROM table_2562572_44 WHERE cyrillic_name_other_names = "Банатски Карловац"
What was the largest ethnic group in in the settlement with the cyrillic name банатски карловац?
CREATE TABLE table_2562572_44 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT winning_driver FROM table_name_7 WHERE fastest_lap = "ryan hunter-reay" AND most_laps_led = "ryan briscoe"
What is Winning Driver, when Fastest Lap is Ryan Hunter-Reay, and when Most Laps Led is Ryan Briscoe?
CREATE TABLE table_name_7 (winning_driver VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR)
SELECT date FROM table_name_76 WHERE score = "2–3 ot"
Score of 2–3 ot on what date?
CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_43 WHERE attendance < 521
What is Date, when Attendance is less than 521?
CREATE TABLE table_name_43 (date VARCHAR, attendance INTEGER)
SELECT coach FROM table_name_2 WHERE actual_adjusted_record = "0–19"
Who, was the coach with an actual adjusted record of 0–19?
CREATE TABLE table_name_2 (coach VARCHAR, actual_adjusted_record VARCHAR)