answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT korean FROM table_name_89 WHERE city = "pohang"
CREATE TABLE table_name_89 (korean VARCHAR, city VARCHAR)
What's the Korean word for Pohang?
SELECT team_nickname FROM table_name_25 WHERE affiliation = "private/catholic" AND enrollment > 3 OFFSET 490
CREATE TABLE table_name_25 (team_nickname VARCHAR, affiliation VARCHAR, enrollment VARCHAR)
What's the team nickname of the private/catholic school whose enrollment is larger than 3,490?
SELECT SUM(enrollment) FROM table_name_62 WHERE location = "buffalo, new york" AND affiliation = "public" AND founded > 1846
CREATE TABLE table_name_62 (enrollment INTEGER, founded VARCHAR, location VARCHAR, affiliation VARCHAR)
What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846?
SELECT SUM(season) FROM table_name_31 WHERE team_1 = "bangkok university" AND score = "0-0" AND team_2 = "chunnam dragons"
CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VARCHAR)
What year did Bangkok University and Chunnam Dragons have a score of 0-0?
SELECT transfer_window FROM table_name_23 WHERE name = "christian nerlinger"
CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR)
What is the transfer window for Christian Nerlinger?
SELECT name FROM table_name_63 WHERE type = "end of contract" AND moving_to = "falkirk"
CREATE TABLE table_name_63 (name VARCHAR, type VARCHAR, moving_to VARCHAR)
What is the name for the end of contract because they're moving to Falkirk?
SELECT type FROM table_name_8 WHERE transfer_window = "winter" AND nat = "ita"
CREATE TABLE table_name_8 (type VARCHAR, transfer_window VARCHAR, nat VARCHAR)
What type of transfer window is winter in Ita?
SELECT nat FROM table_name_32 WHERE type = "loan" AND transfer_fee = "loan"
CREATE TABLE table_name_32 (nat VARCHAR, type VARCHAR, transfer_fee VARCHAR)
What is the type of loan and the transfer fee loan?
SELECT streak FROM table_name_30 WHERE date = "november 14"
CREATE TABLE table_name_30 (streak VARCHAR, date VARCHAR)
On what date did a streak start on November 14?
SELECT score FROM table_name_97 WHERE game = 36
CREATE TABLE table_name_97 (score VARCHAR, game VARCHAR)
What was the score of game 36?
SELECT location FROM table_name_83 WHERE name = "third bridge over panama canal"
CREATE TABLE table_name_83 (location VARCHAR, name VARCHAR)
Where was the third bridge over panama canal?
SELECT comp FROM table_name_71 WHERE name = "smith"
CREATE TABLE table_name_71 (comp VARCHAR, name VARCHAR)
Name the Comp which has a Name of smith?
SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = "brytus" AND rating < 100
CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR)
Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100?
SELECT MAX(comp) FROM table_name_19 WHERE yds_game > 0 AND name = "bostick" AND rating < 91.77
CREATE TABLE table_name_19 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCHAR)
Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77?
SELECT SUM(score) FROM table_name_27 WHERE place = "t5" AND country = "united states" AND player = "jeff maggert"
CREATE TABLE table_name_27 (score INTEGER, player VARCHAR, place VARCHAR, country VARCHAR)
Can you tell me the sum of Score that has the Place of t5, and the Country of united states, and the Player of jeff maggert?
SELECT event FROM table_name_12 WHERE method = "decision"
CREATE TABLE table_name_12 (event VARCHAR, method VARCHAR)
Which event had a decision method?
SELECT location FROM table_name_34 WHERE method = "tko"
CREATE TABLE table_name_34 (location VARCHAR, method VARCHAR)
Where was the method of tko?
SELECT time FROM table_name_30 WHERE nation = "kenya" AND rank = "2"
CREATE TABLE table_name_30 (time VARCHAR, nation VARCHAR, rank VARCHAR)
What is the time of kenya, which is ranked 2?
SELECT race FROM table_name_18 WHERE date = "26 june 2011"
CREATE TABLE table_name_18 (race VARCHAR, date VARCHAR)
What race is on 26 June 2011?
SELECT time FROM table_name_57 WHERE nation = "kenya" AND race = "peachtree road race"
CREATE TABLE table_name_57 (time VARCHAR, nation VARCHAR, race VARCHAR)
What is the time of the peachtree road race in kenya?
SELECT score FROM table_name_64 WHERE team = "chicago"
CREATE TABLE table_name_64 (score VARCHAR, team VARCHAR)
What is the score of team chicago?
SELECT record FROM table_name_61 WHERE team = "utah"
CREATE TABLE table_name_61 (record VARCHAR, team VARCHAR)
What is the record of team utah?
SELECT location_attendance FROM table_name_29 WHERE game = 63
CREATE TABLE table_name_29 (location_attendance VARCHAR, game VARCHAR)
What is the location and attendance of game 63?
SELECT nationality FROM table_name_82 WHERE position = "small forward"
CREATE TABLE table_name_82 (nationality VARCHAR, position VARCHAR)
What is the nationality of the person who played small forward?
SELECT position FROM table_name_87 WHERE player = "rich manning"
CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)
What position did Rich Manning play?
SELECT position FROM table_name_89 WHERE years_for_grizzlies = "2007-2009"
CREATE TABLE table_name_89 (position VARCHAR, years_for_grizzlies VARCHAR)
What position did the player who was with the grizzlies from 2007-2009 play?
SELECT player FROM table_name_26 WHERE draft = 2008 AND pick > 5
CREATE TABLE table_name_26 (player VARCHAR, draft VARCHAR, pick VARCHAR)
Who is the player in the 2008 draft with a pick greater than 5?
SELECT COUNT(pick) FROM table_name_51 WHERE round > 1 AND draft < 2002 AND college_high_school_club = "western kentucky"
CREATE TABLE table_name_51 (pick VARCHAR, college_high_school_club VARCHAR, round VARCHAR, draft VARCHAR)
What is the total pick number of the player from a round greater than 1, a draft before 2002, and with the college/high school/club of western kentucky?
SELECT MIN(draft) FROM table_name_94 WHERE pick = 48
CREATE TABLE table_name_94 (draft INTEGER, pick VARCHAR)
What is the lowest draft number with a 48 pick?
SELECT name FROM table_name_70 WHERE aafc_team = "los angeles dons" AND position = "fb" AND college = "oklahoma a&m"
CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc_team VARCHAR, position VARCHAR)
Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m?
SELECT AVG(round) FROM table_name_78 WHERE college = "tulsa" AND pick > 61
CREATE TABLE table_name_78 (round INTEGER, college VARCHAR, pick VARCHAR)
Which Round has a College of tulsa, and a Pick larger than 61?
SELECT position FROM table_name_75 WHERE round < 5 AND pick = 5
CREATE TABLE table_name_75 (position VARCHAR, round VARCHAR, pick VARCHAR)
Which Position has a Round smaller than 5, and a Pick of 5?
SELECT college FROM table_name_93 WHERE name = "hardy brown"
CREATE TABLE table_name_93 (college VARCHAR, name VARCHAR)
Which College has a Name of hardy brown?
SELECT winner FROM table_name_9 WHERE team = "peter jackson racing" AND circuit = "mallala motor sport park"
CREATE TABLE table_name_9 (winner VARCHAR, team VARCHAR, circuit VARCHAR)
Who was the winner for Peter Jackson Racing at Mallala Motor Sport Park?
SELECT city___state FROM table_name_96 WHERE series = "atcc round 1"
CREATE TABLE table_name_96 (city___state VARCHAR, series VARCHAR)
What city had a series of atcc round 1?
SELECT winner FROM table_name_63 WHERE series = "astc round 8"
CREATE TABLE table_name_63 (winner VARCHAR, series VARCHAR)
Who was the winner for ASTC round 8?
SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)"
CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)?
SELECT AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = "hamilton red wings (oha)" AND position = "rw"
CREATE TABLE table_name_63 (round INTEGER, college_junior_club_team__league_ VARCHAR, position VARCHAR)
Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw?
SELECT AVG(round) FROM table_name_11 WHERE position = "lw" AND college_junior_club_team__league_ = "swift current broncos (wchl)"
CREATE TABLE table_name_11 (round INTEGER, position VARCHAR, college_junior_club_team__league_ VARCHAR)
Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)?
SELECT nationality FROM table_name_55 WHERE round = 10
CREATE TABLE table_name_55 (nationality VARCHAR, round VARCHAR)
What is round 10's nationality?
SELECT driver FROM table_name_57 WHERE chassis = "dallara f306" AND rounds = "8"
CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)
Which driver was in 8 rounds with a chassis of dallara f306?
SELECT rounds FROM table_name_94 WHERE driver = "nil montserrat"
CREATE TABLE table_name_94 (rounds VARCHAR, driver VARCHAR)
How many rounds did Nil Montserrat drive in?
SELECT rounds FROM table_name_34 WHERE chassis = "dallara f308" AND driver = "germán sánchez"
CREATE TABLE table_name_34 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR)
How many rounds did germán sánchez drive in where the chassis was dallara f308?
SELECT chassis FROM table_name_34 WHERE team = "rp motorsport" AND driver = "augusto scalbi"
CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR)
What is the chassis for Augusto Scalbi on Team RP Motorsport?
SELECT MAX(week) FROM table_name_65 WHERE result = "w 24-17"
CREATE TABLE table_name_65 (week INTEGER, result VARCHAR)
In what Week was the Result W 24-17?
SELECT SUM(week) FROM table_name_54 WHERE date = "november 20, 1977"
CREATE TABLE table_name_54 (week INTEGER, date VARCHAR)
What was the Week number on November 20, 1977?
SELECT home FROM table_name_45 WHERE score = "2:1"
CREATE TABLE table_name_45 (home VARCHAR, score VARCHAR)
Who played hte home team when the score was 2:1?
SELECT home FROM table_name_4 WHERE attendance > 1189 AND away = "real juventud"
CREATE TABLE table_name_4 (home VARCHAR, attendance VARCHAR, away VARCHAR)
Who was the home team when real juventud was the away team when there were more than 1189 in attendance?
SELECT AVG(attendance) FROM table_name_6 WHERE away = "marathon"
CREATE TABLE table_name_6 (attendance INTEGER, away VARCHAR)
What was the average attendance when marathon was the away team?
SELECT home FROM table_name_90 WHERE score = "0:1"
CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR)
Who was the home team when the score was 0:1?
SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = "oil and gas" AND profits__billion_$_ = 19.28
CREATE TABLE table_name_86 (company VARCHAR, profits__billion_$_ VARCHAR, industry VARCHAR, assets__billion_$_ VARCHAR, sales__billion_$_ VARCHAR)
Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28?
SELECT SUM(profits__billion_) AS $_ FROM table_name_54 WHERE headquarters = "usa" AND industry = "banking" AND sales__billion_$_ < 98.64
CREATE TABLE table_name_54 (profits__billion_ INTEGER, sales__billion_$_ VARCHAR, headquarters VARCHAR, industry VARCHAR)
How many profits is the company that is headquartered in the USA, in the banking industry, and has sales (billion $) less than 98.64 bringing in?
SELECT test FROM table_name_86 WHERE number_of_students = "49,608"
CREATE TABLE table_name_86 (test VARCHAR, number_of_students VARCHAR)
What test had 49,608 students?
SELECT tie_no FROM table_name_20 WHERE home_team = "ramsgate"
CREATE TABLE table_name_20 (tie_no VARCHAR, home_team VARCHAR)
What was the Tie no when the Home team was Ramsgate?
SELECT tie_no FROM table_name_50 WHERE home_team = "carshalton athletic"
CREATE TABLE table_name_50 (tie_no VARCHAR, home_team VARCHAR)
What was the Tie no when the Home team was carshalton athletic?
SELECT away_team FROM table_name_30 WHERE home_team = "ramsgate"
CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)
Who was the away team when the home team was Ramsgate?
SELECT home_team FROM table_name_31 WHERE tie_no = "60"
CREATE TABLE table_name_31 (home_team VARCHAR, tie_no VARCHAR)
What was the home team when the Tie no was 60?
SELECT tie_no FROM table_name_34 WHERE home_team = "wealdstone"
CREATE TABLE table_name_34 (tie_no VARCHAR, home_team VARCHAR)
What was the Tie no when the Home team was wealdstone?
SELECT format FROM table_name_11 WHERE date = "january 21, 2002"
CREATE TABLE table_name_11 (format VARCHAR, date VARCHAR)
Which format has january 21, 2002 as the date?
SELECT format FROM table_name_72 WHERE region = "france" AND label = "universal licensing music (ulm)"
CREATE TABLE table_name_72 (format VARCHAR, region VARCHAR, label VARCHAR)
What format has France as the region, with Universal Licensing Music (ulm) as the label?
SELECT label FROM table_name_83 WHERE region = "netherlands" AND catalog = "magik muzik 802-1"
CREATE TABLE table_name_83 (label VARCHAR, region VARCHAR, catalog VARCHAR)
What label has the netherlands as the region, and magik muzik 802-1 as the catalog?
SELECT record FROM table_name_71 WHERE time = "3:00"
CREATE TABLE table_name_71 (record VARCHAR, time VARCHAR)
What is the record at 3:00?
SELECT opponent FROM table_name_12 WHERE method = "ko" AND record = "6-0"
CREATE TABLE table_name_12 (opponent VARCHAR, method VARCHAR, record VARCHAR)
What opponent used the Ko method, and a 6-0 record?
SELECT ground FROM table_name_88 WHERE home_team = "adelaide"
CREATE TABLE table_name_88 (ground VARCHAR, home_team VARCHAR)
What is the ground of the game where the home team was Adelaide?
SELECT manufacturer FROM table_name_25 WHERE quantity_made = "2" AND year_made = "1884"
CREATE TABLE table_name_25 (manufacturer VARCHAR, quantity_made VARCHAR, year_made VARCHAR)
What is Manufacturer, when Quantity Made is 2, and when Year Made is 1884?
SELECT quantity_made FROM table_name_3 WHERE manufacturer = "baldwin"
CREATE TABLE table_name_3 (quantity_made VARCHAR, manufacturer VARCHAR)
What is Quantity Made, when Manufacturer is "Baldwin"?
SELECT wheel_arrangement FROM table_name_52 WHERE manufacturer = "baldwin" AND quantity_made = "12"
CREATE TABLE table_name_52 (wheel_arrangement VARCHAR, manufacturer VARCHAR, quantity_made VARCHAR)
What is Wheel Arrangement, when Manufacturer is "Baldwin", and when Quantity Made is 12?
SELECT quantity_made FROM table_name_65 WHERE year_made = "4-4-0 — oooo — american"
CREATE TABLE table_name_65 (quantity_made VARCHAR, year_made VARCHAR)
What is Quantity Made, when Year Made is "4-4-0 — oooo — american"?
SELECT wheel_arrangement FROM table_name_8 WHERE quantity_made = "44"
CREATE TABLE table_name_8 (wheel_arrangement VARCHAR, quantity_made VARCHAR)
What is Wheel Arrangement, when Quantity Made is 44?
SELECT quantity_made FROM table_name_23 WHERE quantity_preserved = "4-4-0 — oooo — american"
CREATE TABLE table_name_23 (quantity_made VARCHAR, quantity_preserved VARCHAR)
What is Quantitiy Made, when Quantity Preserved is "4-4-0 — oooo — american"?
SELECT MAX(game) FROM table_name_10 WHERE record = "2-1"
CREATE TABLE table_name_10 (game INTEGER, record VARCHAR)
What's the highest game found when the record is 2-1?
SELECT date FROM table_name_8 WHERE opponent = "houston"
CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)
What was the game date when the opponent was Houston?
SELECT MAX(season) FROM table_name_8 WHERE home_team = "chonburi" AND away_team = "melbourne victory"
CREATE TABLE table_name_8 (season INTEGER, home_team VARCHAR, away_team VARCHAR)
Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory?
SELECT season FROM table_name_34 WHERE score = "1-0"
CREATE TABLE table_name_34 (season VARCHAR, score VARCHAR)
Can you tell me the Season that has the Score of 1-0?
SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100
CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR)
WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100?
SELECT MIN AS $25___1_4_oz FROM table_name_57 WHERE $10___1_10_oz = "70,250"
CREATE TABLE table_name_57 (MIN VARCHAR, $10___1_10_oz VARCHAR)
WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250?
SELECT model_number FROM table_name_98 WHERE gpu_frequency = "320 mhz"
CREATE TABLE table_name_98 (model_number VARCHAR, gpu_frequency VARCHAR)
What is the model number for the GPU and 320 mhz?
SELECT socket FROM table_name_55 WHERE model_number = "atom e680t"
CREATE TABLE table_name_55 (socket VARCHAR, model_number VARCHAR)
What is the socket of the model atom e680t?
SELECT memory FROM table_name_78 WHERE part_number_s_ = "ct80618005844ab"
CREATE TABLE table_name_78 (memory VARCHAR, part_number_s_ VARCHAR)
What is the memory for ct80618005844ab?
SELECT MAX(average_cards_a_game) FROM table_name_78 WHERE season = "1997/1998" AND games > 38
CREATE TABLE table_name_78 (average_cards_a_game INTEGER, season VARCHAR, games VARCHAR)
Which Average Cards a game has a Season of 1997/1998, and a Games larger than 38?
SELECT MIN(red_cards) FROM table_name_55 WHERE season = "1998/1999" AND games > 41
CREATE TABLE table_name_55 (red_cards INTEGER, season VARCHAR, games VARCHAR)
Which Red Cards has a Season of 1998/1999, and a Games larger than 41?
SELECT AVG(games) FROM table_name_65 WHERE season = "2003/2004" AND red_cards < 5
CREATE TABLE table_name_65 (games INTEGER, season VARCHAR, red_cards VARCHAR)
Which Games has a Season of 2003/2004, and a Red Cards smaller than 5?
SELECT MIN(average_cards_a_game) FROM table_name_22 WHERE season = "2004/2005" AND red_cards > 3
CREATE TABLE table_name_22 (average_cards_a_game INTEGER, season VARCHAR, red_cards VARCHAR)
Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3?
SELECT AVG(yellow_cards) FROM table_name_75 WHERE season = "1999/2000"
CREATE TABLE table_name_75 (yellow_cards INTEGER, season VARCHAR)
Which Yellow Cards has a Season of 1999/2000?
SELECT goals FROM table_name_14 WHERE ends = "30 june 2010" AND since > 2007
CREATE TABLE table_name_14 (goals VARCHAR, ends VARCHAR, since VARCHAR)
Which Goals have Ends of 30 june 2010, and Since larger than 2007?
SELECT name FROM table_name_2 WHERE ends = "30 june 2010" AND nat = "eng" AND since > 2007
CREATE TABLE table_name_2 (name VARCHAR, since VARCHAR, ends VARCHAR, nat VARCHAR)
Which Name has Ends of 30 june 2010, and a Nation of eng, and Since larger than 2007?
SELECT MIN(react) FROM table_name_94 WHERE name = "bryan clay"
CREATE TABLE table_name_94 (react INTEGER, name VARCHAR)
What was Bryan Clay's react time?
SELECT country FROM table_name_92 WHERE name = "dmitriy karpov"
CREATE TABLE table_name_92 (country VARCHAR, name VARCHAR)
What country did Dmitriy Karpov represent?
SELECT plural FROM table_name_33 WHERE singular = "tor (your)"
CREATE TABLE table_name_33 (plural VARCHAR, singular VARCHAR)
What is Plural, when Singular is tor (your)?
SELECT proximity FROM table_name_2 WHERE honor = "p" AND singular = "ẽr (his/her/its)"
CREATE TABLE table_name_2 (proximity VARCHAR, honor VARCHAR, singular VARCHAR)
What is Proximity, when Honor is P, and when Singular is ẽr (his/her/its)?
SELECT MIN(subject) FROM table_name_58 WHERE plural = "tãder (their)"
CREATE TABLE table_name_58 (subject INTEGER, plural VARCHAR)
What is the lowest Subject, when Plural is tãder (their)?
SELECT proximity FROM table_name_67 WHERE plural = "amader (our)"
CREATE TABLE table_name_67 (proximity VARCHAR, plural VARCHAR)
What is Proximity, when Plural is amader (our)?
SELECT honor FROM table_name_97 WHERE singular = "ẽr (his/her/its)"
CREATE TABLE table_name_97 (honor VARCHAR, singular VARCHAR)
What is Honor, when Singular is ẽr (his/her/its)?
SELECT f_laps FROM table_name_16 WHERE season = "2011" AND races = "18"
CREATE TABLE table_name_16 (f_laps VARCHAR, season VARCHAR, races VARCHAR)
what is the f/laps when the season is 2011 and races is 18?
SELECT wins FROM table_name_20 WHERE f_laps = "test driver" AND team = "lotus racing"
CREATE TABLE table_name_20 (wins VARCHAR, f_laps VARCHAR, team VARCHAR)
what is the wins when the f/laps is test driver and team is lotus racing?
SELECT poles FROM table_name_86 WHERE wins = "0" AND points = "0"
CREATE TABLE table_name_86 (poles VARCHAR, wins VARCHAR, points VARCHAR)
what is the poles when the wins is 0 and points is 0?
SELECT score FROM table_name_65 WHERE money___$__ = "36,090"
CREATE TABLE table_name_65 (score VARCHAR, money___$__ VARCHAR)
What score won $36,090?
SELECT score FROM table_name_39 WHERE player = "larry nelson"
CREATE TABLE table_name_39 (score VARCHAR, player VARCHAR)
What was Larry Nelson's final score?
SELECT AVG(attendance) FROM table_name_63 WHERE opponents = 38 AND falcons_points < 14
CREATE TABLE table_name_63 (attendance INTEGER, opponents VARCHAR, falcons_points VARCHAR)
What is the average attendance of the game with 38 opponent and less than 14 Falcons points?
SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = "maac" AND school = "fairfield"
CREATE TABLE table_name_61 (losses VARCHAR, school VARCHAR, conference VARCHAR, games VARCHAR, wins VARCHAR)
What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School?