answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT colombian FROM table_24807774_1 WHERE bangladeshi = "Serbian"
how many colombia in bangladesh is serbian
CREATE TABLE table_24807774_1 (colombian VARCHAR, bangladeshi VARCHAR)
SELECT score FROM table_27537870_5 WHERE game = 29
Name the score for 29 game
CREATE TABLE table_27537870_5 (score VARCHAR, game VARCHAR)
SELECT name FROM table_name_79 WHERE transfer_window = "winter" AND moving_from = "roma"
What is the name of the player with a winter transfer window moving from Roma?
CREATE TABLE table_name_79 (name VARCHAR, transfer_window VARCHAR, moving_from VARCHAR)
SELECT release_price___usd__ FROM table_name_32 WHERE model_number = "pentium dual-core t2330"
What is the release price (USD) of the microprocessor with a model number pentium dual-core t2330?
CREATE TABLE table_name_32 (release_price___usd__ VARCHAR, model_number VARCHAR)
SELECT venue FROM table_name_85 WHERE league = "gridiron development football league"
Which venue hosted the Gridiron Development Football League?
CREATE TABLE table_name_85 (venue VARCHAR, league VARCHAR)
SELECT home_team AS score FROM table_name_73 WHERE home_team = "carlton"
What did Carlton score when they were the Home team?
CREATE TABLE table_name_73 (home_team VARCHAR)
SELECT employee__real_name_ FROM table_name_67 WHERE pick__number > 9
What is the real name of the Pick # that is greater than 9?
CREATE TABLE table_name_67 (employee__real_name_ VARCHAR, pick__number INTEGER)
SELECT goals_conceded__gc_ FROM table_name_32 WHERE lost__pp_ = 7 AND team__equipo_ = "chepo f.c."
How many goals were conceded against the Chepo F.C. team where they lost 7 games?
CREATE TABLE table_name_32 (goals_conceded__gc_ VARCHAR, lost__pp_ VARCHAR, team__equipo_ VARCHAR)
SELECT MIN(points) FROM table_name_12 WHERE player = "willie heston" AND touchdowns < 3
What is the fewest Points that has Willie Heston as Player and less than 3 as Touchdowns?
CREATE TABLE table_name_12 (points INTEGER, player VARCHAR, touchdowns VARCHAR)
SELECT time FROM table_name_1 WHERE date = "october 8"
Date of october 8 happened at what time?
CREATE TABLE table_name_1 (time VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_name_83 WHERE high_points = "kobe bryant (18)" AND date = "november 18"
What is the location attendance of the game with Kobe Bryant (18) with the highest points on November 18?
CREATE TABLE table_name_83 (location_attendance VARCHAR, high_points VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_77 WHERE attendance = "90,287"
Who was the opponent for the game that had 90,287 in attendance?
CREATE TABLE table_name_77 (opponent VARCHAR, attendance VARCHAR)
SELECT e_greenberg FROM table_name_34 WHERE t_wyka = "10,793 (70%)"
Which E. Greenberg has a T. Wyka of 10,793 (70%)?
CREATE TABLE table_name_34 (e_greenberg VARCHAR, t_wyka VARCHAR)
SELECT T1.club_id, T1.club_name, COUNT(*) FROM club AS T1 JOIN coach AS T2 ON T1.club_id = T2.club_id GROUP BY T1.club_id
How many coaches does each club has? List the club id, name and the number of coaches.
CREATE TABLE club (club_id VARCHAR, club_name VARCHAR); CREATE TABLE coach (club_id VARCHAR)
SELECT score FROM table_name_91 WHERE opponent = "mariners" AND record = "24–25"
Which Score has Opponent of mariners and a Record of 24–25?
CREATE TABLE table_name_91 (score VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT place FROM table_name_18 WHERE country = "new zealand"
What is the Place of the Player from New Zealand?
CREATE TABLE table_name_18 (place VARCHAR, country VARCHAR)
SELECT 2011 FROM table_name_94 WHERE 2010 = "2r"
Name the 2011 when 2010 is 2r
CREATE TABLE table_name_94 (Id VARCHAR)
SELECT song_choice FROM table_21501511_1 WHERE week__number = "Top 13"
What was Lambert's song choice in the top 13?
CREATE TABLE table_21501511_1 (song_choice VARCHAR, week__number VARCHAR)
SELECT high_rebounds FROM table_name_97 WHERE game = 76
Which High rebounds has a Game of 76?
CREATE TABLE table_name_97 (high_rebounds VARCHAR, game VARCHAR)
SELECT candidates FROM table_1342218_17 WHERE party = "Democratic" AND incumbent = "Frank Chelf"
List all candidates in the democratic party where the election had the incumbent Frank Chelf running.
CREATE TABLE table_1342218_17 (candidates VARCHAR, party VARCHAR, incumbent VARCHAR)
SELECT location FROM table_name_91 WHERE stadium = "gortakeegan"
Where is the Stadium of Gortakeegan located?
CREATE TABLE table_name_91 (location VARCHAR, stadium VARCHAR)
SELECT set_3 FROM table_name_1 WHERE week = 6
What is set 3 on week 6?
CREATE TABLE table_name_1 (set_3 VARCHAR, week VARCHAR)
SELECT COUNT(frequency) FROM table_1601792_3 WHERE station = "Hot FM"
What is the frequency of hot fm?
CREATE TABLE table_1601792_3 (frequency VARCHAR, station VARCHAR)
SELECT MAX(total_kurdistan_list) FROM table_24440361_1 WHERE governorate = "Diyala"
Name the most kirdistan list for diyala
CREATE TABLE table_24440361_1 (total_kurdistan_list INTEGER, governorate VARCHAR)
SELECT decision FROM table_name_12 WHERE home = "minnesota"
What was the decision in Minnesota?
CREATE TABLE table_name_12 (decision VARCHAR, home VARCHAR)
SELECT label FROM table_name_23 WHERE date = "2002" AND region = "germany" AND catalog = "dos 195"
What is the label for 2002, in Germany, Catalog Dos 195?
CREATE TABLE table_name_23 (label VARCHAR, catalog VARCHAR, date VARCHAR, region VARCHAR)
SELECT score FROM table_name_96 WHERE money___$__ = 85 AND player = "clarence hackney"
WHAT IS THE SCORE WITH $85 FOR CLARENCE HACKNEY?
CREATE TABLE table_name_96 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)
SELECT camp FROM table_10335_1 WHERE estimated_deaths = "600,000"
what's the camp with estimated deaths of 600,000
CREATE TABLE table_10335_1 (camp VARCHAR, estimated_deaths VARCHAR)
SELECT date FROM table_name_40 WHERE tournament = "memorial tournament" AND runner_s__up = "payne stewart"
Which date was the Memorial Tournament held on, when Payne Stewart was runner-up?
CREATE TABLE table_name_40 (date VARCHAR, tournament VARCHAR, runner_s__up VARCHAR)
SELECT COUNT(year) FROM table_name_74 WHERE record = "73-65"
How many years have a Record of 73-65?
CREATE TABLE table_name_74 (year VARCHAR, record VARCHAR)
SELECT viewers__millions_ FROM table_25391981_20 WHERE episode_number = "10.18"
How many viewers in millions watched the episode with the number 10.18?
CREATE TABLE table_25391981_20 (viewers__millions_ VARCHAR, episode_number VARCHAR)
SELECT result FROM table_name_58 WHERE year = 1970
How did he place in 1970?
CREATE TABLE table_name_58 (result VARCHAR, year VARCHAR)
SELECT date FROM table_name_38 WHERE home_team = "fitzroy"
When did fitzroy play at home?
CREATE TABLE table_name_38 (date VARCHAR, home_team VARCHAR)
SELECT COUNT(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company'
How many car models were produced by the maker with full name American Motor Company?
CREATE TABLE CAR_MAKERS (Id VARCHAR, FullName VARCHAR); CREATE TABLE MODEL_LIST (Maker VARCHAR)
SELECT location FROM table_name_3 WHERE date = "1995-06-15"
What Location has a Date of 1995-06-15?
CREATE TABLE table_name_3 (location VARCHAR, date VARCHAR)
SELECT d_49_√ FROM table_name_19 WHERE d_41_√ = "d 61 √"
What is the D 49 √ number when the D 41 √ is d 61 √?
CREATE TABLE table_name_19 (d_49_√ VARCHAR, d_41_√ VARCHAR)
SELECT COUNT(launch_date) FROM table_22274142_1 WHERE transmission = "Digital"
How many launch dates are there for digital transmission?
CREATE TABLE table_22274142_1 (launch_date VARCHAR, transmission VARCHAR)
SELECT game FROM table_name_80 WHERE home_team = "san francisco" AND date = "april 22"
Which Game has a Home Team of san francisco, and a Date of april 22?
CREATE TABLE table_name_80 (game VARCHAR, home_team VARCHAR, date VARCHAR)
SELECT model_no FROM table_name_28 WHERE manufacturer = "bombardier"
Which model number does bombardier manufacture?
CREATE TABLE table_name_28 (model_no VARCHAR, manufacturer VARCHAR)
SELECT COUNT(established) FROM table_name_58 WHERE league = "ontario provincial junior a hockey" AND championships > 1
What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship?
CREATE TABLE table_name_58 (established VARCHAR, league VARCHAR, championships VARCHAR)
SELECT T1.skill_id, T1.skill_description FROM Skills AS T1 JOIN Skills_Required_To_Fix AS T2 ON T1.skill_id = T2.skill_id GROUP BY T1.skill_id ORDER BY COUNT(*) DESC LIMIT 1
Which skill is used in fixing the most number of faults? List the skill id and description.
CREATE TABLE Skills (skill_id VARCHAR, skill_description VARCHAR); CREATE TABLE Skills_Required_To_Fix (skill_id VARCHAR)
SELECT qual_2 FROM table_name_21 WHERE qual_1 = "1:21.523"
What is the time for the second qualification where the first qualification time was 1:21.523?
CREATE TABLE table_name_21 (qual_2 VARCHAR, qual_1 VARCHAR)
SELECT grid FROM table_name_5 WHERE laps > 0 AND time_retired = "engine" AND driver = "pedro de la rosa"
what is the grid when the laps is more than 0, the time/retired is engine and the driver is pedro de la rosa?
CREATE TABLE table_name_5 (grid VARCHAR, driver VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT _number FROM table_2345558_1 WHERE director = "Whitney Ransick"
What's the number of the episode directed by Whitney Ransick?
CREATE TABLE table_2345558_1 (_number VARCHAR, director VARCHAR)
SELECT year_s__won FROM table_name_5 WHERE to_par = "+2" AND finish = "t22"
What year (s) won was +2 the To par, and t22 the finish?
CREATE TABLE table_name_5 (year_s__won VARCHAR, to_par VARCHAR, finish VARCHAR)
SELECT sub_parish__sogn_ FROM table_name_52 WHERE parish__prestegjeld_ = "hafslo parish" AND location_of_the_church = "urnes"
Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and is located in the Church of Urnes?
CREATE TABLE table_name_52 (sub_parish__sogn_ VARCHAR, parish__prestegjeld_ VARCHAR, location_of_the_church VARCHAR)
SELECT MIN(lost) FROM table_name_27 WHERE _percentage_pts = 93.45
If the points scored were 93.45%, what's the lowest amount of games lost?
CREATE TABLE table_name_27 (lost INTEGER, _percentage_pts VARCHAR)
SELECT date FROM table_name_62 WHERE week > 13 AND attendance = "41,862"
What is the date of the game later than week 13 and 41,862 people attended?
CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT district FROM table_1341663_44 WHERE party = "Republican"
Which district is republican?
CREATE TABLE table_1341663_44 (district VARCHAR, party VARCHAR)
SELECT SUM(crowd) FROM table_name_81 WHERE away_team = "fitzroy"
What was the sum of the crowds that watched Fitzroy play as the away team?
CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR)
SELECT score FROM table_name_34 WHERE country = "england" AND champion = "peter mcevoy" AND runner_up = "paul mckellar"
What is the score of the match played in England where Peter McEvoy was the champion and Paul McKellar was runner-up?
CREATE TABLE table_name_34 (score VARCHAR, runner_up VARCHAR, country VARCHAR, champion VARCHAR)
SELECT regionalliga_nord FROM table_14242137_11 WHERE regionalliga_süd = "1. FC Nuremberg SpVgg Greuther Fürth"
what's the regionalliga nord with regionalliga süd being 1. fc nuremberg spvgg greuther fürth
CREATE TABLE table_14242137_11 (regionalliga_nord VARCHAR, regionalliga_süd VARCHAR)
SELECT first_air_date FROM table_28980706_4 WHERE episode = 11
When 11 is the episode what is the air date?
CREATE TABLE table_28980706_4 (first_air_date VARCHAR, episode VARCHAR)
SELECT bullet_diameter FROM table_name_22 WHERE name = "11.4mm werndl m/73"
Which Bullet diameter has a Name of 11.4mm werndl m/73?
CREATE TABLE table_name_22 (bullet_diameter VARCHAR, name VARCHAR)
SELECT SUM(points_against) FROM table_name_37 WHERE team = "harlequins" AND tries_against < 8
How many Points against that have a Team of harlequins and Tries against smaller than 8?
CREATE TABLE table_name_37 (points_against INTEGER, team VARCHAR, tries_against VARCHAR)
SELECT county FROM table_name_55 WHERE location = "east providence"
In which county is East Providence?
CREATE TABLE table_name_55 (county VARCHAR, location VARCHAR)
SELECT record FROM table_name_32 WHERE round = "3"
What was the score in Round 3?
CREATE TABLE table_name_32 (record VARCHAR, round VARCHAR)
SELECT COUNT(grid) FROM table_name_35 WHERE laps = 18
What is the grid total associated with 18 laps?
CREATE TABLE table_name_35 (grid VARCHAR, laps VARCHAR)
SELECT official_name FROM table_name_38 WHERE population < 1 OFFSET 429
What is the name(s) of the place(s) with a population of less than 1,429?
CREATE TABLE table_name_38 (official_name VARCHAR, population INTEGER)
SELECT electorate FROM table_name_16 WHERE first_elected = "1974" AND party = "country"
Who is the Electorate, when the year for First elected is 1974, and when the Party is Country?
CREATE TABLE table_name_16 (electorate VARCHAR, first_elected VARCHAR, party VARCHAR)
SELECT COUNT(numer_of_jamaicans_granted_british_citizenship) FROM table_11214212_1 WHERE naturalisation_by_marriage = 1060
how many numer of jamaicans granted british citizenship with naturalisation by marriage being 1060
CREATE TABLE table_11214212_1 (numer_of_jamaicans_granted_british_citizenship VARCHAR, naturalisation_by_marriage VARCHAR)
SELECT Carrier, COUNT(*) FROM phone GROUP BY Carrier
Show different carriers of phones together with the number of phones with each carrier.
CREATE TABLE phone (Carrier VARCHAR)
SELECT wysiwyg_editor FROM table_name_75 WHERE image_attachment = "yes" AND calendar = "plugin"
Which WYSIWYG Editor has an Image attachment of yes, and a Calendar of plugin?
CREATE TABLE table_name_75 (wysiwyg_editor VARCHAR, image_attachment VARCHAR, calendar VARCHAR)
SELECT COUNT(number_of_dances) FROM table_19744915_14 WHERE total_points = "50.5"
If the total points is 50.5, what is the total number of dances?
CREATE TABLE table_19744915_14 (number_of_dances VARCHAR, total_points VARCHAR)
SELECT artist FROM table_name_76 WHERE theme = "year of the snake"
Who was the artist for the year of the snake?
CREATE TABLE table_name_76 (artist VARCHAR, theme VARCHAR)
SELECT network FROM table_name_71 WHERE play_by_play = "al michaels" AND color_commentator_s_ = "dan fouts and dennis miller" AND year < 2002
What network hosted Al Michaels, Dan Fouts and Dennis Miller in 2002?
CREATE TABLE table_name_71 (network VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR)
SELECT wins FROM table_name_80 WHERE podiums = "2" AND f_laps = "2"
If Podiums is 2 and F/Laps are 2, what are the wins?
CREATE TABLE table_name_80 (wins VARCHAR, podiums VARCHAR, f_laps VARCHAR)
SELECT class FROM table_name_54 WHERE erp_w > 205 AND frequency_mhz < 93.9 AND call_sign = "k210cb"
Which Class has a ERP W larger than 205, and a Frequency MHz smaller than 93.9, and a Call sign of k210cb?
CREATE TABLE table_name_54 (class VARCHAR, call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT 20 AS _questions FROM table_1566852_4 WHERE interview_subject = "Mike Piazza"
Who was featured in 20 questions when the subject of the interview was Mike Piazza?
CREATE TABLE table_1566852_4 (interview_subject VARCHAR)
SELECT home_team AS score FROM table_name_49 WHERE venue = "mcg"
What is the home team's score at mcg?
CREATE TABLE table_name_49 (home_team VARCHAR, venue VARCHAR)
SELECT round FROM table_name_64 WHERE player = "bryan berard"
What round does Bryan Berard do?
CREATE TABLE table_name_64 (round VARCHAR, player VARCHAR)
SELECT team FROM table_name_94 WHERE pick = 80
What team picked 80?
CREATE TABLE table_name_94 (team VARCHAR, pick VARCHAR)
SELECT ba__place_ FROM table_name_70 WHERE bb_ + hbp > 49 AND team = "seibu lions" AND year = "1992"
In the year 1992 for the Seibu Lions, the BB + HBP which is larger than 49 was this as a BA (Place)?
CREATE TABLE table_name_70 (ba__place_ VARCHAR, year VARCHAR, team VARCHAR, bb_ VARCHAR, hbp VARCHAR)
SELECT first_leg FROM table_name_58 WHERE opposition = "twente"
What was the first leg score in the match against Twente?
CREATE TABLE table_name_58 (first_leg VARCHAR, opposition VARCHAR)
SELECT Name, SurfaceArea FROM country ORDER BY SurfaceArea DESC LIMIT 5
What are the names and areas of countries with the top 5 largest area?
CREATE TABLE country (Name VARCHAR, SurfaceArea VARCHAR)
SELECT result_games FROM table_21436373_11 WHERE attendance = 54741
Name the result/games for 54741
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
SELECT AVG(number_of_electorates__2009_) FROM table_name_77 WHERE constituency_number = "46"
Which Number of electorates (2009) has a Constituency number of 46?
CREATE TABLE table_name_77 (number_of_electorates__2009_ INTEGER, constituency_number VARCHAR)
SELECT report FROM table_1140117_5 WHERE circuit = "Silverstone"
What's the report for the Silverstone circuit?
CREATE TABLE table_1140117_5 (report VARCHAR, circuit VARCHAR)
SELECT location FROM table_name_71 WHERE record = "6-11-8"
What is the location of the game with a 6-11-8 record?
CREATE TABLE table_name_71 (location VARCHAR, record VARCHAR)
SELECT home_team AS score FROM table_name_56 WHERE venue = "kardinia park"
What is the home team score for kardinia park?
CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)
SELECT MIN(lane) FROM table_name_17 WHERE name = "sue rolph" AND rank < 5
What is the lowest numbered lane of Sue Rolph with a rank under 5?
CREATE TABLE table_name_17 (lane INTEGER, name VARCHAR, rank 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 episode FROM table_15026994_3 WHERE viewing_figure = "6.34 million"
Which episode has been viewed 6.34 million times?
CREATE TABLE table_15026994_3 (episode VARCHAR, viewing_figure VARCHAR)
SELECT institution FROM table_262560_2 WHERE joined = "1996-97" AND left = "2011-12"
What school joined the conference in 1996-97 and left it in 2011-12?
CREATE TABLE table_262560_2 (institution VARCHAR, joined VARCHAR, left VARCHAR)
SELECT MIN(SOl) FROM table_1888157_1
What is the lowest SOL?
CREATE TABLE table_1888157_1 (SOl INTEGER)
SELECT venue FROM table_name_40 WHERE opponent = "sunderland" AND result = "1-1"
Which venue had an opponent of Sunderland and a result of a 1-1 draw?
CREATE TABLE table_name_40 (venue VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT MAX(goals_against) FROM table_name_32 WHERE position > 19 AND goals_for < 36
What were the highest goals against when the position was larger than 19 and the goals smaller than 36?
CREATE TABLE table_name_32 (goals_against INTEGER, position VARCHAR, goals_for VARCHAR)
SELECT date FROM table_name_75 WHERE surface = "clay" AND score = "0–6, 0–6"
Name the date for clay surface and score of 0–6, 0–6
CREATE TABLE table_name_75 (date VARCHAR, surface VARCHAR, score VARCHAR)
SELECT res FROM table_name_49 WHERE competition = "friendly match"
What was the result for the friendly match competition?
CREATE TABLE table_name_49 (res VARCHAR, competition VARCHAR)
SELECT tickets_sold___available FROM table_name_51 WHERE gross_revenue__2011_ = "$333,100"
How many tickets were sold / available for the venue that had a gross revenue of $333,100 in 2011?
CREATE TABLE table_name_51 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)
SELECT tournament FROM table_name_25 WHERE outcome = "winner" AND date = "19 october 2008"
Which Tournament has an Outcome of winner on 19 october 2008?
CREATE TABLE table_name_25 (tournament VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT MIN(population__2011_) FROM table_1610301_1 WHERE district = "Prakasam"
What was the minimum population in 2011 of the district of Prakasam?
CREATE TABLE table_1610301_1 (population__2011_ INTEGER, district VARCHAR)
SELECT MIN(grid) FROM table_name_33 WHERE time = "+0.499" AND laps > 21
What is the lowest grid with time of +0.499,when laps are larger than 21?
CREATE TABLE table_name_33 (grid INTEGER, time VARCHAR, laps VARCHAR)
SELECT result FROM table_name_14 WHERE stadium = "rich stadium"
What was the score of the game at RIch Stadium?
CREATE TABLE table_name_14 (result VARCHAR, stadium VARCHAR)
SELECT notes FROM table_name_77 WHERE time = "6:05.21"
what is the notes for the time 6:05.21?
CREATE TABLE table_name_77 (notes VARCHAR, time VARCHAR)
SELECT COUNT(crowd) FROM table_name_5 WHERE away_team = "south melbourne"
What was the attendance of the South Melbourne away game?
CREATE TABLE table_name_5 (crowd VARCHAR, away_team VARCHAR)
SELECT rank FROM table_name_13 WHERE silver = 3
What is the rank for the 3 silver medals?
CREATE TABLE table_name_13 (rank VARCHAR, silver VARCHAR)
SELECT year FROM table_name_78 WHERE total = "0" AND competitors = "4"
In what Year did Yugoslavia have 4 Competitors with 0 medals Total?
CREATE TABLE table_name_78 (year VARCHAR, total VARCHAR, competitors VARCHAR)
SELECT venue FROM table_name_58 WHERE result = "loss" AND opponent = "st george-illawarra dragons"
what is the venue when the result is loss and the opponent is st george-illawarra dragons?
CREATE TABLE table_name_58 (venue VARCHAR, result VARCHAR, opponent VARCHAR)
SELECT division_record FROM table_name_78 WHERE school = "woodbridge"
What is the division record for Woodbridge?
CREATE TABLE table_name_78 (division_record VARCHAR, school VARCHAR)