diff --git a/MANIFEST.in b/MANIFEST.in index 5376e34..0007d7e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include tableqa/Question_Classifier.h5 +include tableqa/Question_Classifier_Bert.h5 prune tableqa/cleaned_data prune tableqa/schema prune tableqa/data diff --git a/setup.py b/setup.py index ab67a01..d4db54f 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ with open("README.md", "r") as fh: long_description = fh.read() -install_requires = ['responder', 'graphql-core==2.3', 'graphene==2.1.8', 'transformers[tf-cpu]==3.0.2', 'rake_nltk', 'nltk','sqlalchemy','sentence_transformers==0.3.0'] +install_requires = ['responder', 'graphql-core==2.3', 'graphene==2.1.8', 'transformers[tf-cpu]==3.0.2', 'rake_nltk', 'nltk','sqlalchemy'] setuptools.setup( name="tableqa", # Replace with your own username diff --git a/tableqa/Question_Classifier.h5 b/tableqa/Question_Classifier.h5 deleted file mode 100644 index 0efb73e..0000000 Binary files a/tableqa/Question_Classifier.h5 and /dev/null differ diff --git a/tableqa/Question_Classifier_Bert.h5 b/tableqa/Question_Classifier_Bert.h5 new file mode 100644 index 0000000..1bd4ca5 Binary files /dev/null and b/tableqa/Question_Classifier_Bert.h5 differ diff --git a/tableqa/clauses.py b/tableqa/clauses.py index 023f7c0..f322807 100755 --- a/tableqa/clauses.py +++ b/tableqa/clauses.py @@ -1,17 +1,28 @@ - +import tensorflow as tf from tensorflow.keras.models import load_model -from sentence_transformers import SentenceTransformer +from transformers import DistilBertTokenizer, TFDistilBertModel from numpy import asarray import os +tokenizer = DistilBertTokenizer.from_pretrained('distilbert-base-uncased') +bert_model = TFDistilBertModel.from_pretrained('distilbert-base-uncased') + class Clause: def __init__(self): - self.bert_model = SentenceTransformer('bert-base-nli-mean-tokens') - self.model=load_model(os.path.join(os.path.abspath(os.path.dirname(__file__)),"Question_Classifier.h5")) + self.model=load_model(os.path.join(os.path.abspath(os.path.dirname(__file__)),"Question_Classifier_Bert.h5")) self.types={0:'SELECT {} FROM {}', 1:'SELECT MAX({}) FROM {}', 2:'SELECT MIN({}) FROM {}', 3:'SELECT COUNT({}) FROM {}', 4:'SELECT SUM({}) FROM {}', 5:'SELECT AVG({}) FROM {}'} + + def get_bert_embeddings(self,x): + emb=[] + for i,sentence in enumerate(x): + input_ids = tf.constant(tokenizer.encode(sentence))[None, :] # Batch size 1 + outputs = bert_model(input_ids) + last_hidden_states = outputs[0][0][1] + emb.append(last_hidden_states) + return asarray(emb) def adapt(self,q,inttype=False,summable=False): - emb=asarray(self.bert_model.encode(q)) + emb=self.get_bert_embeddings([q]) self.clause=self.types[self.model.predict_classes(emb)[0]] if summable and inttype and "COUNT" in self.clause: diff --git a/tableqa/clf.py b/tableqa/clf.py index d6e1e52..8d272ce 100755 --- a/tableqa/clf.py +++ b/tableqa/clf.py @@ -4,12 +4,15 @@ import numpy as np from numpy import asarray from nltk.tokenize import sent_tokenize -from sentence_transformers import SentenceTransformer from sklearn.model_selection import train_test_split from tensorflow.keras.layers import Embedding, LSTM, Dense, Dropout, Lambda, Flatten from tensorflow.keras.models import Sequential, load_model, model_from_config from tensorflow.keras.layers import Dense, Flatten, LSTM, Conv1D, MaxPooling1D, Dropout, Activation +import tensorflow as tf +from transformers import DistilBertTokenizer, TFDistilBertModel +tokenizer = DistilBertTokenizer.from_pretrained('distilbert-base-uncased') +bert_model = TFDistilBertModel.from_pretrained('distilbert-base-uncased') np.random.seed(7) def get_keras_model(): @@ -23,31 +26,34 @@ def get_keras_model(): return model data=pd.read_csv("wikidata.csv",usecols=["questions","types"]) - categories=data["types"] #print(categories.tolist().count(0)) x_train, x_test, y_train,y_test =train_test_split(data["questions"],categories) -bert_model = SentenceTransformer('bert-base-nli-mean-tokens') -# bert_model = SentenceTransformer('average_word_embeddings_glove.6B.300d') -train_embeddings = asarray(bert_model.encode(x_train.tolist()), dtype = "float32") -test_embeddings = asarray(bert_model.encode(x_test.tolist()), dtype = "float32") +# bert_model = SentenceTransformer('average_word_embeddings_glove.6B.300d') +def get_bert_embeddings(x): + emb=[] + for i,sentence in enumerate(x): + print(i) + input_ids = tf.constant(tokenizer.encode(sentence))[None, :] # Batch size 1 + outputs = bert_model(input_ids) + last_hidden_states = outputs[0][0][1] + emb.append(last_hidden_states) + return asarray(emb) +train_embeddings =get_bert_embeddings(x_train.tolist()) +test_embeddings = get_bert_embeddings(x_test.tolist()) y_train=asarray(y_train,dtype="float32") y_test=asarray(y_test,dtype="float32") model = get_keras_model() -model.fit(train_embeddings, y_train, epochs=100,validation_data=(test_embeddings,y_test)) - -print('\n# Evaluate on test data') -results = model.evaluate(test_embeddings, y_test, batch_size=128) -print('test loss, test acc:', results) - +print(train_embeddings.shape) +model.fit(train_embeddings, y_train, epochs=200,validation_data=(test_embeddings,y_test)) +model.save("Question_Classifier_Bert.h5") -model.save("Question_Classifier.h5") diff --git a/tableqa/requirements.txt b/tableqa/requirements.txt index c4c3dcf..f5fe1af 100644 --- a/tableqa/requirements.txt +++ b/tableqa/requirements.txt @@ -5,4 +5,3 @@ transformers[tf-cpu]==3.0.2 rake_nltk nltk sqlalchemy -sentence_transformers==0.3.0 diff --git a/tableqa/wikidata.csv b/tableqa/wikidata.csv index cc4ba1e..9d2c803 100644 --- a/tableqa/wikidata.csv +++ b/tableqa/wikidata.csv @@ -1,21750 +1,9001 @@ -,questions,types -4,how many times is the fuel propulsion is cng?,3 -7,how many times is the model ge40lfr?,3 -8,how many times is the fleet series (quantity) is 468-473 (6)?,3 -19,How many number does Fordham school have?,3 -23,What number is the player that played 1998-2001,2 -38,How many players were with the school or club team La Salle?,3 -41,How many wins were there when the money list rank was 183?,3 -43,What time was the highest for 2nd finishers?,1 -44,When did the Metrostars have their first Rookie of the Year winner?,2 -46,How many teams had a #1 draft pick that won the Rookie of the Year Award?,3 -51,what's the total number of singles w-l with doubles w-l of 0–0 and total w-l of 3–1,3 -55,What is year of construction of spitallamm?,2 -64,"What is the number of chapters listed for the fraternity with a headquarters in Austin, Texas?",1 -68,what is the number of relapsing fever when malaria is 3000,2 -71,what is the number of smallpox when typhoid fever is 293,1 -73,"How many schools are in Bloomington, IN?",3 -74,How many of the schools are designated private/Presbyterian?,3 -75,In what year was Lindenwood University founded?,2 -76,"How many of the schools listed are in Ames, IA?",3 -78,How many countries (endonym) has the capital (endonym) of Jakarta?,3 -82,"The season premiere aired on September 11, 2000 aired on how many networks? ",3 -84,what is the minimum population canada 2011 census with seat of rcm being cowansville,2 -90,How many County Kerry have 53% Irish speakers?,3 -92,What is the the Chinese population for the state that has a Filipino population of 1474707?,2 -93,How many States have an Indian population of 30947?,3 -94,What is the highest Indian population?,1 -97,How many Australians were in the UN commission on Korea?,3 -101,What is the number of season premieres were 10.17 people watched?,3 -104,How many wins happened in 1983?,2 -105,How many top tens had an average start of 29.4?,3 -106,How many poles had an average finish of 19.1?,1 -107,How many starts did Hendrick motorsports have?,2 -118,What was the lowest number of votes Scotland cast?,2 -119,What is the total number of votes if Scotland cast 35?,3 -121,How many votes did Wales cast when Northern England cast 6?,2 -125,"What is the smallest pick for the player, brett lindros?",2 -132,What is the number for t c (k) when the notation is tl-2212?,3 -133,How many 2010 estimations have been done in the city of Cremona?,3 -134,What's the 2001 census of the region of Abruzzo where the 1871 census is bigger than 51092.0?,2 -135,What's the 1991 census of the city of Carpi?,1 -136,How many 2001 censuses are there on number 13?,3 -141,How many nationalities are the pick 193?,3 -143,How many songs received a 10 from Goodman and were rated by Tonioli?,3 -146,"How many scores did Goodman give to ""samba / young hearts run free"", which was in second place?",3 -156,what's the total number of position with driver  robby gordon,3 -157,"what's the maximum position with winnings  $50,000",1 -174,What was the number of nominations for natalia raskokoha?,3 -175,What is the highest value of Total Goals?,1 -176,When FA Cup Apps is 9 what is the smallest number of FA Cup Goals?,2 -177,What is the smallest number of Total Goals?,2 -179,"what is the minimum production code with title ""foreign exchange problem / turn about""",2 -184,Whatis the number of total goals maximum?,1 -185,HOW MANY TEMPERATURE INTERVALS ARE POSSIBLE TO USE WITH ACRYL? ,3 -186,How many matches where played with Jim Pugh?,3 -188,"How many matched scored 3–6, 7–6(5), 6–3?",3 -192,How many birthdays does Earl Hanley Beshlin have?,3 -197,How many playerd Mrs. Darling in the 1999 Broadway?,3 -203,How many years did BBC One rank 20th?,3 -204,"What year was the BBC two total viewing 7,530,000?",2 -205, how many ↓ function / genus → with escherichia being espd,3 -211,How many original titles did Marriage Italian-Style have? ,3 -221,Which overall pick number went to college at Youngstown State?,2 -224,The record of 7-3 had the largest attendance of what?,1 -227,What round was Steve Stonebreaker drafted?,1 -228,Who was the top picki n the draft?,2 -233,What is the greatest round of overall 83?,1 -236,Where does the defensive back position appear first?,2 -237,What is Bruce Cerone overall?,2 -239,What is the highest choice?,1 -243,How many primers annulus colors were there when the color of the bullet tip was white?,3 -244,How many bullet tips colors had other features of a blue band on case base?,3 -245,How many touchdowns were scored in the year with a completion percentage of 56.0?,2 -247,How many years were there with 348 attempts?,3 -248,How many characters is by Babs Rubenstein?,3 -250,How many people play Frank in London?,3 -255,What was the total number of Class AAA during the same year that Class AAA was White Oak?,3 -256,"How many records are listed on Friday, May 25?",3 -257,"How many opponents were played on Saturday, June 9?",3 -258,In what week was the first game played at the Commerzbank-Arena?,2 -260,How many settings where there for episode 29 of the season?,3 -266,What is the total number of lyricist where the lyrics theme is romance and the song lasts 3:50?,3 -268,What is the total number of music genre/style in which the lyrics are a detective story?,3 -270,What is the number of the division for the 1st round?,3 -272,What is the total number of poles for arden international?,3 -273,What is the number of wins for gp2 series for racing engineering?,3 -274,What is the number of podiums for season 2010 for campionato italiano superstars.,3 -276,"How many writers had an US air date of september 25, 1993?",3 -277,How many villians were in No. 25?,3 -278,"what being the maximum year where regular season is 4th, northwest",1 -279,"what is the total number of playoffs where regular season is 6th, southwest",3 -280,what is the maximum division,1 -283,How many titles have the number 11,3 -284,How many have Mrs. briar as a villain,3 -285,how many have the number 8,3 -286,"How many have the title ""the tale of the room for rent""",3 -291,"How many villains appeared in the episode titled ""The Tale of the Virtual Pets""?",3 -293,What is the largest # for an episode that was written by Allison Lea Bingeman?,1 -296,Name the number of species with sepal width of 3.4 and sepal length of 5.4,3 -300,Who is the director and what number is the episode for episode #1 of Are You Afraid of the Dark season 3?,3 -303,Who wrote episode #1 in season 7?,3 -309,What's the report on Penske Racing winning while the pole position was Al Unser?,3 -315,What is the model number introduced May 1999?,1 -320,How many winners are there of farma?,3 -321,What is the most cup goals for seasson 1911-12?,1 -324,what's the minimum attendance with score  10.16 (76) – 9.22 (76),2 -327,what is the minimum attendance with score 8.16 (64) – 8.12 (60),2 -328,How many mileposts are there on Anne Street?,3 -332,What is the minimum amount for wool for 2001-02?,2 -337,How many wheels does the train owned by Texas and New Orleans Railroad #319 have?,3 -345,What is the enrollment for the institution that was founded in 1866 and is a private/(african methodist) type?,1 -346,"That is the year founded for the institution location of Nashville, Tennessee?",2 -354,How many games had a score value of 813.5 in post-season play?,3 -358,"How many institutions are located in wilmore, kentucky and private",1 -360,how many founded dates are listed for carlow university 1,3 -365,"How many episodes were titles ""voicemail""?",3 -374,What is the least number of candidates running were there when 80 seats were won?,2 -375,How many seats were won in the election with 125 candidates?,3 -376,How many weeks are there?,1 -377,How many people attended the game against the indianapolis colts?,3 -379,How many results are there for the 0-4 record?,3 -380,"How many weeks are there that include the date October 11, 1969.",3 -381,"How many weeks are there that include the date November 9, 1969.",3 -382,How many records are there at the War Memorial Stadium?,3 -383,"What was the minimum attendance on December 7, 1969?",2 -384,What week corresponds to the last one to be played at the memorial stadium?,1 -393,what is the maximum pick # where player is anthony blaylock,1 -396,what is the minimum pick # where position is defensive tackle,2 -398,What is Friesland's gdp per capita?,2 -399,What is the area of the place that has a population density of 331.4?,1 -403,What is the highest no. in season?,1 -405,"How many episodes aired in Region 2 beginning May 26, 2008?",2 -407,What is the least amount of season epidsodes?,2 -409,How many points for 2005?,3 -411,how many positions in 2009?,3 -412,what is the least number of poles?,2 -414,What is the total for 10th position?,3 -415,how many reports of races took place on october 16?,3 -421,What is the lowest sex ratio in rural areas?,2 -422,What is the lowest child sex ratio in groups where employment is 31.3%?,2 -426,"How many episodes were titled ""identity crisis""?",3 -429,How many pre-race analysis occur when Allen Bestwick does the lap-by-lap?,3 -430,What's the highest season number of an episode in the series?,1 -434,How many titles got a viewership of 26.53 million?,3 -440,How many titles were there for the 113 episode?,3 -441,What is the number in the season that Marlene Meyer wrote and 20.49 million people watched?,1 -445,How many rounds were there of the Bosch Spark Plug Grand Prix?,3 -447,On how many dates did the Michigan International Speedway hold a round?,3 -448,Name the total number of bids of the sun belt conference,3 -451,What is the number of bids with elite eight larger than 1.0,3 -459,what is the greatest number of wins by japanese formula three?,1 -461,What episode aired on 18 April 2007?,2 -463,How many directors were there for the film Course Completed?,3 -468,How many villages had 21.7% of slovenes in 1991?,3 -480,What's the pick number of the player from Toronto Argonauts?,2 -482,What's the pick number of the player from New Mexico?,1 -484,What is the minimum introduced value for the Departmental region?,2 -485,What is the smallest introduced value?,2 -489,What is the earliest pick listed in the table.,2 -490,What episode number had production code e4423?,1 -491,What's the latest episode in a season where the U.S. viewers totaled 14.37 million?,1 -493,"How many seasons is the season finale on May 26, 2010?",3 -500,What is the lowest ru?,2 -504,What's the minimum total attendance of the Premier League association football?,2 -505,What's the average attendance of the leagues in the season of 2013?,2 -506,What's the total attendance of the leagues in season of 2010?,3 -517,How many are listed under 潮爆大狀,3 -519,"How many people wrote ""Michael's Game""?",3 -529,What's the total number of episodes with the production code 2395113A?,3 -530,"What's the number of the episode called ""Melrose Unglued""?",1 -544,What is McMaster College's pick number?,2 -545,give the least number of times an episode was shown from 1997-1998,2 -547,"how many times does the episode called ""coop de grace"" appear ",3 -548,what is season 6 sum of both the number of times processing ID 2397162 was assigned and the number of times chip chalmers managed an episode ,1 -553,How many colleges have a DB position?,3 -554,What is the maximum number of picks for the CFL team Calgary Stampeders?,1 -555,How many CFL teams are from York college?,3 -558,How many times were players named brett ralph were selected?,3 -560,What is the highest selection number for the saskatchewan roughriders team?,1 -561,How many fb players were drafted?,3 -562,How many players played for adams state school?,3 -568,What is the number of position where the pick number is 43?,3 -574,What rank is 愛のバカ on the Japanese singles chart?,3 -575,How many songs have mi-chemin as their Japanese name and romanji name?,3 -577,How many conditions have an unaffected prothrombin time and a prolonged bleeding time,3 -591,"In Round 6, how many winning drivers were there?",3 -594,What is the listed population from the 2010 census of West Bogor?,2 -595,How many districts have an area of 17.72 KM2?,3 -597,What is the number of colour with the regisration number of mg-509?,3 -599,What episode in the season was directed by Jeff Melman?,2 -600,How many episodes had 16.03 million viewers?,3 -601,"What is the number of interregnum for duration 3 months, 6 days?",3 -606,"What is the percentage for manhattan 45,901?",3 -612,what is the minimum total,2 -626,Which episode in the series drew 3.6 million U.S. viewers? ,2 -628,How many times did episode 79 originally air? ,3 -634,League apps (sub) maximum?,1 -635,When total goals is 11 what was the league apps (sub)?,1 -653,"What is the lowest weekly rank with an air date of november 26, 2007?",2 -658,What is the number of capacity at somerset park?,3 -659,What is the minimum capacity where airdrie united is?,2 -661,What is the highest of ayr united?,2 -662,What is the average?,2 -667,How many times is 3 credits 180?,3 -669,How many 3 credits are there with 5 credits of 5?,3 -670,How many 4 credits is the hand two pair?,3 -679,What is the lowest attendance that East End Park has ever had?,2 -681,What is the lowest attandance recorded at Cappielow?,2 -682,What is the highest attendance at a game played by St. Johnstone?,1 -683,What is the highest attandence at a Hamilton Academical game?,2 -686,what is the total number of semi-finalist #2 where runner-up is east carolina,3 -691, how many numer of jamaicans granted british citizenship with naturalisation by marriage being 1060,3 -694,what is the maximum year with registration of a minor child being 281,1 -695,"How many episodes had their first air date on March 6, 2008?",3 -701,"where title is beginning callanetics , what is the total of format ?",3 -704,"What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)?",3 -709,"What is the compression ratio when the continuous power is hp (KW) at 2,200 RPM and the critical altitude is at sea level?",3 -710,"When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power?",3 -712,"How many episodes aired on october 27, 2008",3 -714,"what is the most # that aired on september 29, 2008?",1 -715,How many seasons did the canterbury bulldogs (8) win?,3 -716,"How many teams lost at the sydney football stadium, sydney (11)?",3 -727,How many characters were portrayed by the informant of don flack?,3 -733,What was the duration of Robert Joy's portrayal?,3 -735,What is the least top division titles?,2 -736,What is the least number of seasons in top division?,2 -737,How many viewers (millions) were there for rank (week) 20?,3 -739,What is the lowest rank (night) for having viewers (millions) 5.25?,2 -740,"How many times was the episode named ""conference call""?",3 -741,How many times was the rank (night) 11?,3 -743,HOW MANY TONS OF CO2 EMISSIONS DID RUSSIA PRODUCE IN 2006?,1 -746,WHAT WAS THE AVERAGE EMISSION PER KM 2 IN INDIA?,1 -748,What is the number of rank with the viewership of 5.96 million?,3 -750,How many platinum points were awarded when 6 gold points were awarded?,1 -752,How many platinum points were awarded for 5th place?,1 -756,What was the share for the first episode that ranked 85?,2 -760,What's the total number of episodes whose original airings were viewed by 1.82 million viewers?,3 -782,What is the number of jews where the rank is 1?,3 -787,how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs,3 -789,how many open 2nd viii had u15 3rd iv being gt,3 -790,How many schools have an enrollment of 850?,3 -792,How many schools are located in South Brisbane?,3 -793,When was SPLC founded?,2 -794,What is the enrollment of STM which has been in competition since 1990?,3 -798,How many on the list are called the Austrian Grand Prix?,3 -805,How many rounds were 2r?,3 -809,what's the overall rank with rating/share 18–49 of 2.1/5,3 -812,What is the number of group b winner for francavilla?,3 -824,whatthe minimum round where grand prix is german grand prix,2 -825,what of the total number of date where grand prix is portuguese grand prix,3 -826,What is the number of pole position with a round of 15?,3 -830,Which rd. occurred on 22 October?,2 -833,Which rd. took place at Hockenheimring?,2 -834,How many drivers had the fastest lap at Silverstone?,3 -843,How many providers were founded in 1964?,3 -845,What is the minimum number for the half marathon (womens)?,2 -846,Whatis the total number of half marathon (mens) that represented kazakhstan?,3 -847,What is amount of countries where half marathon (women) is larger than 1.0?,3 -848,How many times is Moldova the winner of half marathon (womens)?,3 -854,How many events did nigel mansell drive the fastest and a mclaren - honda win?,3 -862,what was the crowd when the scores are 10.12 (72) – 8.11 (59)?,1 -872,what's the total number of race winner with rnd being 10,3 -881,How many rounds did Patrick Tambay record the fastest lap?,3 -890,How many races had the pole position Alain Prost and the race winner Keke Rosberg?,3 -893,what's the minimum rnd with race  italian grand prix,2 -894,what's the total number of report with date  29 april,3 -897,How many days is the Monaco Grand Prix?,3 -898,How many rounds were won with James Hunt as pole position and John Watson as fastest lap?,3 -899,The Dijon-prenois had how many fastest laps?,3 -907,how many times is the pole position niki lauda and the race is monaco grand prix?,3 -916,How many dates have silverstone circuit,3 -917,How many constructors are listed for the XVI BRDC international trophy race,3 -920,What is the total amount of circuts dated 22 april?,3 -925,How many different kinds of reports are there for races that Juan Manuel Fangio won?,3 -932,How many constructors won the III Redex Trophy?,3 -942,How many titles were directed in series 79?,3 -947,When did Shelia Lawrence join the series?,2 -959,How many houses are green?,3 -964,In which week was the game against a team with a record of 3-6 played?,3 -966,"How many opponents were there at the game with 64,087 people in attendance?",3 -968,"How many times was there a kickoff in the September 4, 1988 game? ",3 -969,How many crowds watched the game where the record was 1-3? ,3 -970,What year finished with Daniel Zueras as the runner-up?,3 -971,How many people hosted the show in the year when Chenoa ended up in fourth place?,3 -972,How many fourth places were there in 2003?,3 -976,How many have are model 2.4 awd?,3 -977,How many engine b5204 t3?,3 -978,How many engine b5234 t3?,3 -979, how many power (ps) with torque (nm@rpm) being 240@2200-5000,3 -993,How many positions are for creighton?,3 -997,Which number is the player from Minnesota?,1 -1000,What is the number for years 1985-88,2 -1014,What is the number of school/club teams held by BYU?,2 -1016,What is the largest jersey number for the player from maryland,1 -1019,How many schools did darryl dawkins play for,3 -1021,How many schools are listed for the player who played the years for Jazz in 2010-11?,3 -1022,How many players were names Howard Eisley?,3 -1027,How many players have played for Jazz during 2006-2007?,3 -1029,For how many players from UTEP can one calculate how many years they've played for Jazz?,3 -1030,How many position does Jim Farmer play in?,3 -1033,How many years did Paul Griffin play for the Jazz?,3 -1035,How many players only played for the Jazz in only 2010?,3 -1045,"What year did the University of California, San Diego take 1st place?",1 -1050,"What was the margin of victory over Justin Leonard, phillip price?",3 -1052,How many times did Tiger get second in the year where there were 11 cuts?,1 -1058,"What amount of times is the name, Bok De Korver listed?",1 -1059,What is the total number of goals on the debut date of 14-04-1907?,3 -1063,What is the toatl number of caps where the name is Hans Blume?,3 -1071,How many different scores are there for the Verizon Classic?,3 -1073,How many tournaments were held in Maryland?,3 -1074,How many different locations have the score 207 (-10)?,3 -1075,What is the founding of parsu cimmarons?,2 -1077,What was the number of nickname founded 1918?,3 -1078,What was the number of location of nickname cbsua formerly known cssac?,3 -1092,What is the total of port adelaide,1 -1093,what's the maximum purse( $ ) with score value of 204 (-9),1 -1101,How many scores were at the Northville Long Island Classic?,3 -1103,what is the total number of purse( $ ) where winner is jimmy powell (2),3 -1105,what is the minimum purse( $ ) where tournament is ko olina senior invitational,2 -1107,what is the maximum 1st prize( $ ) where score is 193 (-17),1 -1110,How many tournaments ended with a score of 204 (-12)?,3 -1113,What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico?,2 -1117,How many locations logged a score of 206 (-7)?,3 -1118,How many tournaments recorded a score of 206 (-7)?,3 -1122,How many purses were there for the mar 16?,3 -1124,"What is the production code of ""surprise, surprise""?",1 -1131,What was the season number for the episode with the series number 61?,1 -1135,"How many matches had the result of 6–3, 6–2?",3 -1139,How many celebrities had an 18October2007 Original air Date?,3 -1141,"What is the number of series of the title of ""your wife's a payne""?",1 -1143,"What is the number of series with a title of ""with friends like these""?",3 -1144,What is the number of series with production code 503?,3 -1149,What is the minimum enrollment at barton college,2 -1152,"What is the amount of marginal ordinary income tax rate for single in which the range is $8,351– $33,950?",3 -1156,"What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?",3 -1158,what is the total number of coach where captain is grant welsh and win/loss is 5-15,3 -1160,what is the maximum season where leading goalkicker is scott simister (54),1 -1168,How many different voivodenship have 747 900 citizes?,3 -1169,What year did longwood university leave the conference?,2 -1173,How many times did anderson university leave?,3 -1176,What is the minimum gross tonnage of the Munich? ,2 -1186,what is the maximum tonnage where date entered service is 25 march 1986 ,1 -1190,Where is the first season that Anthony Hemingway appears?,2 -1192,When is the first season there were 14.57 million U.S viewers?,2 -1193,How many champions were there in 2009?,3 -1196,"How many players were from high point, nc?",3 -1198,How many hometowns does the catcher have?,3 -1204,How many schools did Bubba Starling attend?,3 -1218,How many positions did the player from Spring High School play?,3 -1222,How many schools did Mike Jones attend?,3 -1232,HOW MANY PLAYERS PLAY FOR OREGON?,3 -1234,"How many players are from Delray Beach, Florida?",3 -1235,How many schools did Derrick Green attend?,3 -1237,How many positions does Greg Bryant play?,3 -1238,How many schools did Derrick Green attend?,3 -1243,"What position is associated with the hometown of Olney, Maryland?",3 -1246,"How many players are from Indianapolis, Indiana? ",3 -1259,how many times was the player felipe lopez?,3 -1274,Name the total number of nba drafts that went to east side high school,3 -1281,How many years where Neu-Vehlefanz had a number of 365?,3 -1282,How many times did Neu-Vehlefanz occur when Schwante had 2.043?,3 -1283,How many years where Eichstädt had a number of 939?,3 -1284,How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit?,3 -1286,How many manners of departure did peter voets have?,3 -1292,"How many series has the title ""interior loft""?",3 -1296,What is the first series number that Adele Lim wrote?,2 -1306,"Kimball, toby toby kimball is a player; How many times at school/ club team/country was the player present?",3 -1312,what is the total number of player where years for rockets is 1975-79,3 -1313,what is the total number of player where years for rockets is 2004-06,3 -1315,what is the total number of years for rockets where school/club team/country is baylor,3 -1316,How many positions had jersey number 32,3 -1320,What is the lowest date settled for chifley?,2 -1321,What is the density in Garran?,2 -1336,What is the minimum of t20 matches?,2 -1339,What is the maximum fc matches?,1 -1340,What is the maximum fc matches at the racecourse?,1 -1341,What is the maximum t20 on green lane?,1 -1349,How many countries has a gdp (nominal) of $29.9 billion?,3 -1351,What is the area (km²) for the country with a population of 16967000?,2 -1354,How many releases did the DVD River Cottage forever have?,3 -1355,What is the total number of discs where the run time was 4 hours 40 minutes?,3 -1359,Name the number of complement for 4th hanoverian brigade,3 -1361,HOW MUCH WAS THE OVERALL FOR ERIK KARLSSON?,2 -1362,WHAT ROUND WAS FORWARD ANDRE PETERSSON SELECTED?,2 -1364,NAME THE OVERALL FOR THE OMAHA (USHL) CLUB TEAM,2 -1372,How many rounds is the player Matthew Puempel associated with?,3 -1374,How many players had overall 78?,3 -1375,What is the last round with club team Guelph Storm (ohl)?,1 -1376,How many positions did player Ben Harpur play?,3 -1379,Barry University had the highest enrollment of what number?,1 -1382,"If the enrollment is 3584, what's the largest founded?",1 -1383,Barry University had a maximum enrollment of what?,1 -1384,"What was the series number for the episode ""I Forgot to Remember to Forget""?",2 -1387,Which episode number in season 5 was viewed by 3.00 million U.S. viziers?,2 -1389,what is the total number of percent (2000) where percent (1980) is 3.4%,3 -1391,what is the maximum norwegian americans (2000) where norwegian americans (1990) is 9170,1 -1392,what is the minimum norwegian americans (1980) where state is rhode island,2 -1394,What is the smallest track number?,2 -1395,How many tracks are titled Mō Sukoshi Tōku?,3 -1399,How many doubles champions were there for the Serbia f6 Futures tournament?,3 -1400,How many singles tournaments did Ludovic Walter win?,3 -1408,What is the number of nicknames for the meaning of god knows my journey.,3 -1409,What is the number of meaning where full name is chidinma anulika?,3 -1413,what is the total number of location where station number is c03,3 -1420,"What is the earliest year where the mintage (proof) is 25,000?",2 -1423,What is the number of first class team with birthday of 5 december 1970?,3 -1429,How many musical guests and songs were in episodes with a production code k0519?,3 -1430,"How many episodes originally aired on August 31, 1995?",3 -1432,"How many episodes were titled ""Man's best friend""?",3 -1433,"What is the season # when the musical guest and song is lisa stansfield "" you know how to love me ""?",3 -1436,What is the season # where production code is k1505?,2 -1439,How many titles are there for season 8,3 -1445,How many numbers were listed under attendance for March 2?,3 -1449,How many times is the score 98–90?,3 -1450,"What is the game that the location attendance is pepsi center 19,894?",1 -1455,"How many high points were at the wachovia center 18,347?",3 -1461,How many times was the game 39?,3 -1462,What is San Antonio game number?,1 -1466,"When gordon (27) had high points, what was the number of high assists?",3 -1470,How many high points were there in the game 67?,3 -1473,how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)?,3 -1476,How many players had the most points in the game @ Milwaukee?,3 -1479,What was the total number of games where A. Johnson (6) gave the most high assists?,3 -1480,What's the minimal game number in the season?,2 -1492,What is the lowest #?,2 -1503,How many times was the final score l 96–123 (ot)?,3 -1504,How many times was the high assists earl watson (5) and the date of the game was december 2?,3 -1506,"What is the number of the leading scorer for keyarena 16,640?",3 -1507,What is the number of leading scorer of february 21?,3 -1519,what is the maximum game where high points is mickaël gelabale (21),1 -1522,Name the minimum game,2 -1529,How many successors were seated in the New York 20th district?,3 -1531,How many teams placed 4th in the regular season?,3 -1533,How many open cups were hosted in 1993?,3 -1534,"What year did they finish 1st, southern?",1 -1540, how many countries sampled with year of publication being 2007 and ranking l.a. (2) being 7th,3 -1542,How many losingteams were for the cup finaldate 20 August 1989?,3 -1543,How many seasons was the losing team Adelaide City?,3 -1547,How many womens singles winners were there when peter rasmussen won the mens singles?,3 -1552,Name the number of titles written by adam i. lapidus,3 -1556,"When pinyin is xīnluó qū, what is the simplified value?",3 -1560,"How many NHL teams are there in the Phoenix, Arizona area?",3 -1561,What is the media market ranking for the Blackhawks?,3 -1564,How many netflow version are there when the vendor and type is enterasys switches?,3 -1570,Name the minimum for prohibition?,2 -1571,What is the number of jurisdiction for 57.3 percent?,3 -1572,Name the max for prohibition.,1 -1575,How many trains leave from puri?,3 -1580,What is the number of nationality in 1992?,3 -1584,How many times does the rebuilt data contain cannot handle non-empty timestamp argument! 1929 and scrapped data contain cannot handle non-empty timestamp argument! 1954?,3 -1586,How many times was the rebuilt data cannot handle non-empty timestamp argument! 1934?,3 -1588,What is the highest number listed?,1 -1590,The 1.6 Duratec model/engine has how many torque formulas?,3 -1593,How many capacities are possible for the 1.6 Duratec model/engine?,3 -1598, how many president with date of inauguration being 4june1979,3 -1601," how many end of term with age at inauguration being 64-066 64years, 66days",3 -1603,How many games were on May 20?,3 -1606,How many NHL teams does Terry French play for?,3 -1608,How many positions do the players of Chicago Black Hawks play in?,3 -1611,What's Dave Fortier's pick number?,3 -1618,How many teams did Bob Peppler play for?,3 -1620,How many nationalities are listed for the player Glen Irwin?,3 -1626,what is the total number of pick # where nhl team is philadelphia flyers,3 -1639,What's the total number of episodes with production code 2T6705?,3 -1640,What's the total number of directors who've directed episodes seen by 11.34 million US viewers?,3 -1644,What is the number of runner up when the winner of women is norway and third is sweden?,3 -1650,How many episodes were written only by William N. Fordes?,3 -1654,How many classes are taken in the third year when pag-unawa was taken in the first year?,3 -1665,How many years did Peter Mikkelsen win the Mens Singles?,3 -1667,How many Mixed Doubles won when Oliver Pongratz won the Men's Singles?,3 -1675,How many subjects have the pinyin shixun?,3 -1677,How many pinyin transaltions are available for the chinese phrase 釋蟲?,3 -1678,What chapter number is Shiqiu?,2 -1679,How many mens doubles when womens doubles is catrine bengtsson margit borg?,3 -1688,Name the number of mens doubles for 2004/2005,3 -1689,Name the total number for mens single for 2002/2003,3 -1691,How many times was pernell whitaker an opponent?,3 -1694,How many opponents fought on 1982-12-03?,3 -1696,"How many trains call at Castor, Overton, Peterborough East and are operated by LNWR?",3 -1704,what's the minimum production code written by jay sommers & dick chevillat and al schwartz,2 -1705,what's the total number of title for production code 39,3 -1709,"How many episodes were titled ""a pig in a poke""? ",3 -1714,What episode was written by Bobby Bell and Bill Lee?,1 -1715,How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles?,3 -1716,what is the maximum number of hull numbers?,1 -1718,what is the maximum number of hull nunbers where ship name is kri yos sudarso?,1 -1724,How many leaders are there in the intergiro classification in stage 20?,3 -1728,Name the general classification of stage 15,3 -1731,Name the total number of trofeo fast team of stage 16,3 -1739,How many times was the GFR 2006 equal to 53.2?,3 -1740,How many mens doubles took place in 1970/1971?,3 -1750,What is the number of rank of peak fresvikbreen?,3 -1752,When did Chetan Anand win his first men's single?,2 -1753,How many times did Niels Christian Kaldau win the men's single and Pi Hongyan win the women's single in the same year?,3 -1759, how many reverse with series being iii series,3 -1760,How many times did kingfisher east bengal fc win?,2 -1761,How many times did bec tero sasana win?,1 -1763,Nigeria had the fastest time once.,3 -1764, how many runners-up with nation being india,3 -1766, how many winners with # being 4,3 -1767,how many maximum winners,1 -1769,What was the total of arlenes vote when craig voted for brian and karen?,3 -1770,What is the max week where kate and anton are eliminated?,1 -1771,What is the number eliminated when kelly and brendan are safe?,3 -1773,What is the total number of brunos vote when willie and erin are eliminated?,3 -1780,What is the number of locations with the fastest times of 11.13?,3 -1782,What's the number of episodes with a broadcast order s04 e07?,3 -1783,"what's the total number of episodes with a US air date of january 15, 2005?",3 -1784,"What's the series number of the episode titled ""The Quest""?",1 -1786,What's the series number of the episode with a broadcast order s04 e07?,1 -1790,"Which crime rate per 1,000 people is associated with a cost per capita of $152?",1 -1791,"If the number of police officers is 94, what is the lowest population number?",2 -1796,What is the preliminary score associated with the interview score of 8.488?,3 -1797,What swimsuit score did the state of Virginia contestant achieve?,3 -1804,How many results are there with the original title of ani ohev otach roza (אני אוהב אותך רוזה)?,3 -1810,What is the numberof running wiht pamela zapata?,3 -1813,What's the number of the player with 68.46 (1144 pts) in riding?,1 -1817,What is the total number of titles written by Casey Johnson?,3 -1820,How many millions of total viewers watched series #57?,3 -1827,"What is the latest year that 6th, Heartland is regular season?",1 -1829,"What is the lowest year that regular season is 4th, Rocky Mountain?",2 -1830,How many players lost to eventual winner in the season when ASC Jeanne d'Arc lost to eventual runner up?,3 -1831,What's the number of seasons i which USC Bassam lost to eventual runner-up?,3 -1836,How many divisions were listed in 2006?,3 -1838,How many people named Nick Lucas are on the show?,3 -1843,How many networks aired the franchise in 1981 only?,3 -1844,"In how many networks the local name of the franchise was ""in sickness and in health""?",3 -1858,How many losing hands are there before 2007?,3 -1860,"What is the August 15, 2012 population when the population density of 2012 is 307?",1 -1862,"For the sector of Gatunda how many entires are show for the August 15, 2012 population?",3 -1863,When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors?,1 -1864,What is the population density for 2012 for Gatunda sector?,2 -1865,What is the highest population for the ,1 -1866,What is the biggended for 1947?,1 -1867,What is the monto where the total region is 11230?,3 -1868,What is the gayndah when perry is 304?,1 -1869,What is the minimum mundubbera when biggenden is 1882,2 -1873,What is the highest value under the column goals against?,1 -1875,how many times is the date (to) 1919?,3 -1877,how many notes are form the date (from) 14 march 1910?,3 -1881,what is the maximum total region with fitzroy being 8047,1 -1882,what is the minimum rockhampton,2 -1883,How many population figures are given for Glengallen for the year when the region's total is 30554?,3 -1884,What is the maximum population size in the town of Stanthorpe?,1 -1885,What is the maximum population size in the town of Glengallen?,1 -1886,What was the population in Stanthorpe in the year when the population in Rosenthal was 1548?,1 -1887,How many population total figures are there for the year when Allora's population was 2132?,3 -1891,What is the minimum laid down?,2 -1900,"How many master recordings are there for ""Famous for Nothing""?",3 -1901,What is the biggest number of the team who's owned by Jeff Gordon?,1 -1903,What's the total number of crew chiefs of the Fas Lane Racing team?,3 -1905,What is the number for De Vries?,2 -1911,Name the number of constr with the first win at the 1978 brazilian grand prix,3 -1916,How many compound names list a chemical class of depsipeptide and a clinical trials β value of 1/7?,3 -1918,How many trademarks list a molecular target of minor groove of dna and a clinical status value of phase i?,3 -1927,what is the least amount in the tournament?,2 -1936,How many times was Sanger 3730xl $2400 usd?,3 -1941,How was times was the dance the jive and the week # was 10?,3 -1955,How many time is sunday day one is ahad?,3 -1956,What is the least amount of freight carried when the super b capacity reached was February 26?,2 -1957,What is the most number of truck loads north?,1 -1958,What is thea year the road closed April 13?,1 -1967,How many were won with the points against was 450?,3 -1973,What is the number of the name for number 4?,3 -1974,What is the most number?,1 -1975,what amount played tried for 60? ,3 -1979,What amount of points where points were 389?,3 -1985,HOW MANY GAMES WERE LOST BY 12 POINTS?,3 -1987,How many listings are under money list rank wher 2nd' value is larger than 2.0?,3 -1991,How many rain figures are provided for sunlight hours in 1966?,3 -2005,How many races is different distances does Rosehill Guineas compete in? ,3 -2014,"How many backgrounds are there represented from Memphis, Tennessee?",3 -2015,How many people had a prosecutor background?,3 -2017,How many clubs have a tries against count of 41?,3 -2018,How many clubs have won 6 games?,3 -2019,How many clubs have a tries against count of 45 and a losing bonus of 4?,3 -2021,How many clubs have tries for count of 50?,3 -2024,How many electorates are there with Hedmark as a constituency?,3 -2026,List the smallest possible spoilt vote with the sør-trøndelag constituency.,2 -2029,What's the total number of episodes both directed by Tom Hooper and viewed by 8.08 million viewers?,3 -2032,What's the total number of directors whose episodes have been seen by 9.14 million viewers?,3 -2035, what's the no with current club being panathinaikos and position being forward,3 -2042,What year was the player born who is 2.02m tall?,1 -2043,What number does aleksandar ćapin wear?,1 -2044,Name the total number of grupo capitol valladolid,3 -2046,What is the total number that has a height of 2.06?,3 -2049,What is the minimum year born for strasbourg?,2 -2052,What number is Andrea Bargnani?,1 -2054,How many clubs does number 6 play for?,3 -2055, how many player with no being 12,3 -2063,How many different values of total power are there for the unit whose construction started on 01.03.1977 and whose commercial operation started on 01.02.1984?,3 -2066,what is the total viewers where the date of first broadcast is 28 january 2010 and the episode number is 1?,2 -2067,what is the episode number where the total viewers is 614000?,2 -2069,In what year did Easton LL Easton play in Maryland?,3 -2078,How many locations does the team Newcastle Jets come from? ,3 -2081,What is the most points when the won is 9?,1 -2082,What is the number of played when points against 645?,3 -2083,Name the most points for,2 -2084,Name the most points against when points for is 860,1 -2085,How many teams scored 616 points?,3 -2086,How many teams drew the widnes vikings?,3 -2087,How many games did whitehaven win?,2 -2088,What position did the sheffield eagles finish in?,1 -2090,What is the total points for the tean with 8 losses?,3 -2091,How many numbers are given for losses by the Keighley Cougars?,3 -2096,Name the number of australian marquee for travis dodd,3 -2102,What is the number of starts for 1987?,3 -2105,Name the total number of scoring average for money list rank of 174,3 -2109,What is the others# when bush% is 57.0%?,1 -2112, what's the the mole with airdate being 5 january 2012,3 -2120,What is the number of steals for 2012,3 -2123,How many rebounds were there in 2008?,3 -2125,What year has Nerlens Noel (4) as blocker?,2 -2126,What is the most silver medals?,1 -2128,How many numbers were listed under Silver Medals for Portsmouth HS?,3 -2129,What was the smallest total number of medals?,2 -2130,What is the highest number of gold medals Naugatuck HS won?,1 -2131,what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson,1 -2138,How many coins have a diameter of 23mm?,3 -2140,What is the number of population for lithuania?,3 -2142,Name the total number of area for 775927 population,3 -2145,What is Austria's maximum area (km2)?,1 -2147, how many air date with overall being 83/95,3 -2148, how many viewers (m) with overall being 91/101,3 -2154,how many times was the qualifying score 60.750?,3 -2155,how many times is the qualifying score 61.400?,3 -2157,what is the lowest qualifying rank?,2 -2158,"what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100?",1 -2166,What is the most recent year?,1 -2167,What year is Jiyai Shin the champion?,3 -2172,"How many episodes were aired on the Original air date for ""Circus, Circus""?",3 -2173,How many michelob ultra mountains classification for darren lill,3 -2181,What week did the Seahawks play at los angeles memorial coliseum?,2 -2192,"During what weak of the season was the game played on october 4, 1987?",1 -2194,In what week was the record 5-9?,1 -2196,"In what week was November 27, 1977?",1 -2201,How many times during the season were the seahawks 8-6?,3 -2203,How many times did the team play at oakland-alameda county coliseum?,3 -2206,"How many episodes originally aired on April 29, 2008?",3 -2209,How many players weight 95?,3 -2210,What's Enrique de la Fuente's weight?,2 -2215,What is the highest reset points where the events is 23?,1 -2218,How many rounds ended with a score of 16-52?,3 -2227, how many native american with whites being 1.0%,3 -2230,How many episodes have been directed by David Duchovny?,3 -2231,What's the smallest episode number of an episode whose number in the series is 22?,2 -2232,Name the number of shows when there was 2 million views,3 -2233,"What is the episode number for ""here I go again""?",2 -2236,what is the maximum completed for delta bessborough,1 -2238,what is the total number of building for address on 201 1st avenue south,3 -2240,what is the minimum storeys on 325 5th ave n,2 -2242,What is the number of region 4 for the series of the complete seventh series?,3 -2247,How many numbers were listed under losing bonus when there were 68 tries for?,3 -2254,what is the prod.code of the episode with original air date 01/12/1968?,3 -2260,How many times was the incumbent mike capuano,3 -2262,What was the earliest year someone was first elected from Massachusetts 3,2 -2265,How many candidates ran in the election where Wayne Gilchrest was the incumbent?,3 -2269,What year was Luis Gutierrez election,2 -2271,What is the lowest first elected?,2 -2272,Name the first election for john mchugh,3 -2275,Name the number of party for new york 29,3 -2277,How many districts have Bart Stupak as the incumbent?,3 -2279,what is the earliest first elected with the results re-elected in the district south carolina 3?,1 -2287,How many party were listed for district oklahoma 5?,3 -2291,How many parties is the incumbent Bob Brady a member of?,3 -2292,How many candidates were there in the district won by Joe Hoeffel?,3 -2294,What's the first elected year of the district whose incumbent is Jim Greenwood?,1 -2298,When was the first election in the district whose incumbent is Ron Kind?,2 -2299,What year was the first election in the district whose election now was won by Ron Kind?,2 -2312,When did the elections take place in district Maryland 2?,2 -2319,How many elections have resulted in retired democratic hold?,3 -2322,How many incumbents were first elected in 1984? ,3 -2324,How many candidates ran in the election where Mike Doyle was the incumbent? ,3 -2330,What year was Bob Clement first elected? ,2 -2335,How many districts does gary condit represent?,3 -2341,What's the first elected year of the district who's been the last one to do so?,1 -2344,How many districts was Robert Livingston incumbent in?,3 -2345,What is the first election year listed?,2 -2347, how many party with district being washington 7,3 -2348,what's the latest first elected year,1 -2350,what being the minimum first elected with district being washington 7,2 -2356,"what's the total number of candidates for first elected in 1948 , 1964",3 -2359,Name the number of first elected for new york 11,3 -2360,Name the first elected for new york 1,3 -2364,How many districts are respresented by Alex McMillan?,3 -2367,What's Georgia5's first elected year?,1 -2372, how many first elected with district being new york2,3 -2373, how many district with candidates being eliot l. engel (d) 85.2% martin richman (r) 14.8%,3 -2374, how many candidates with party being democratic and dbeingtrict being new york5,3 -2375, how many first elected with result being re-elected and incumbent being gary ackerman redistricted from the 7th district,3 -2379,How many republican incumbents first elected in 1974?,3 -2383,In how many districts was the democratic incumbent elected in 1974? ,3 -2384,What year was incumbent Martin Lancaster elected? ,2 -2389,How many incumbents represent district California 34?,3 -2409,"In the district called Tennessee 6, how many in total of first elected are there?",3 -2411,How many candidates are listed all together for the incumbent named bob clement?,3 -2419,what is the maximum first elected with incumbent being gus yatron,1 -2421, how many district with incumbent being lindy boggs,3 -2423, how many candidates with result being retired to run for u. s. senate republican hold,3 -2429,Name number first elected for tennessee 2?,3 -2431,How many districts have Mac Sweeney as incumbent?,3 -2450,What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%?,2 -2460,How many candidates won the election in the district whose incumbent is Bud Shuster?,3 -2465,How many parties does the incumbent Donald A. Bailey a member of?,3 -2475,What year was the earliest first elected?,2 -2477,How many sitting politicians were originally elected in 1972?,3 -2481,How many parties are there in races involving Dawson Mathis?,3 -2488,When was the first elected for district missouri 7?,2 -2489,When was the earliest first election?,2 -2490,How many times was the candidates dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?,3 -2493,When was Stephen J. Solarz first elected?,2 -2496,How many outcomes were there in the elections in California 38?,3 -2499,How many times did an election feature the result robert l. leggett (d) 50.2% albert dehr (r) 49.8%?,3 -2500,What year was incumbent mark w. hannaford elected?,2 -2508,How many incumbents are there in district Louisiana 5?,3 -2509,How many incumbents resulted in a lost renomination republican gain?,3 -2511,What year was Otto Passman (d) unopposed first elected?,1 -2519,How many times was the candidates paul tsongas (d) 60.6% paul w. cronin (r) 39.4%?,3 -2521,How many instances are there of party in the situation where Robert Bauman is the incumbent politician?,3 -2528,How many parties won the election in the California 23 district?,3 -2529,What republican candidate was first elected most recently?,1 -2536,How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed?,3 -2537,What is the last year that someone is first elected?,1 -2540,what was the year first elected for district illinois 7?,1 -2541,how many times was the candidates phil crane (r) 58.0% edward a. warman (d) 42.0%?,3 -2542,how many times was it the district illinois 18?,3 -2544,When was the first elected when the party was republican and the candidate were robert h. michel (r) 66.1% rosa lee fox (d) 33.9%?,2 -2548,What is the highest year that a candidate was first elected?,1 -2551,How many districts does Donald D. Clancy represent?,3 -2569,How many parties won the election in the Louisiana 5 district?,3 -2570,How many candidates were elected in the Louisiana 4 district?,3 -2573,how many party with district being tennessee 1,3 -2575, how many incumbent with district  being tennessee 5,3 -2580,How many times was frank m. clark the incumbent?,3 -2589,How many districts represented Edwin E. Willis?,3 -2601,How many candidates represent the district of kenneth a. roberts?,3 -2604,When was James William Trimble first elected in the Arkansas 3 district? ,2 -2608,How many candidates were there in the election for William Jennings Bryan Dorn's seat?,3 -2609,What is the earliest year that a candidate was first elected?,2 -2615,What year were the latest elections?,1 -2618,How many districts have W. Arthur Winstead as elected official?,3 -2620,What is the most first elected for james c. davis?,1 -2626,Name the candidates for l. mendel rivers,3 -2630,Name the number of party with the incubent james william trimble,3 -2632,What is the number of party in the arkansas 1 district,3 -2637,What is the latest year listed with the Alabama 4 voting district?,1 -2639,How many results are listed for the election where Noah M. Mason was elected?,3 -2643,How many candidates ran in the race where the incumbent is J. L. Pilcher?,3 -2644,John W. Heselton was first elected in what year?,1 -2645,Thomas J. Lane is the incumbent of how many parties?,3 -2652, how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%,3 -2657,Name the minumim first elected for alvin bush,2 -2659,What are the candidates for noah m. mason?,3 -2662, how many first elected with incumbent being charles edward bennett,3 -2666, how many party with candidates being charles edward bennett (d) unopposed,3 -2667, how many first elected with incumbent being william c. lantaff,3 -2677,Name the number of candidates for 1941,3 -2680,In the District Tennessee 7 what is the number of first elected?,1 -2683,"How many parties match the canididates listed as howard baker, sr. (r) 68.9% boyd w. cox (d) 31.1%?",3 -2692,How many results does the California 29 voting district have?,3 -2695,How many candidates ran against barratt o'hara?,3 -2697,How many results for minimum first elected incumbent Noble Jones Gregory?,2 -2698,How many results for incumbent Noble Jones Gregory?,3 -2703,what is the minimum number first elected to district louisiana 5?,2 -2706,What is the number of candidates for pennsylvania 3,3 -2707,What is the number of candidates for pennsylvania 21,3 -2709,How many candidates were there in the race where Cecil R. King is the incumbent?,3 -2710,How many districts have an incumbent first elected in 1944?,3 -2712,How many people on this list are named thomas abernethy?,3 -2713,How many times was w. arthur winstead first elected?,3 -2714,How many times was william m. colmer winstead first elected?,3 -2718,What year was incumbent Michael A. Feighan first elected? ,2 -2729,Which party is associated with the candidate Albert Sidney Camp (D) unopposed?,3 -2737,what the the end number where albert rains was running,3 -2739,Name the total number of first elected for sol bloom,3 -2745, how many result with candidates being richard j. welch (r) unopposed,3 -2751,How many parties does incumbent carl vinson represent?,3 -2752,How many parties does incumbent stephen pace represent?,3 -2757,How many districts have an incumbent first elected in 1940?,3 -2758,How many races involve incumbent Pat Cannon?,3 -2764,How many partys have a candidate first elected in 1923?,3 -2765,what was the number of candidates when Leon Sacks was incumbent?,3 -2769,How many polling areas are there with John Taber as the sitting Representative?,3 -2773,How many sitting Representatives are there in the New York 10 polling area?,3 -2778,How many candidates were in the election featuring brooks hays (d) unopposed?,3 -2780, how many party with candidates being john j. phillips (r) 57.6% n. e. west (d) 42.4%,3 -2784,what was the maxiumum for the first elected?,1 -2787, how many party with dbeingtrict being alabama 6,3 -2790,what is the maximum first elected with district being alabama 5,1 -2792,In how many districts was the incumbent Estes Kefauver? ,3 -2793,What is the latest year any of the incumbents were first elected? ,1 -2796,William Fadjo Cravens is the only candidate who was first elected in 1939.,3 -2801, how many dbeingtrict with candidates being william b. bankhead (d) 71.3% e. m. reed (r) 28.7%,3 -2804,How many incumbents were first elected in 1930?,3 -2805,"In how many districts is the incumbent Dave E. Satterfield, Jr.",3 -2807,How many parties does william b. cravens represent?,3 -2812,When was incumbent Leo E. Allen first elected?,2 -2814,How many districts does riley joseph wilson?,3 -2815,How many districts for rené l. derouen?,3 -2819,How many first elections have Claude Fuller as incumbent?,3 -2820,How many winners were there in the Georgia 1 district?,3 -2825,What year was the first election when Fritz G. Lanham was elected?,1 -2830, how many incumbent with first elected being 1932,3 -2832, how many district  with incumbent being david delano glover,3 -2842, how many first elected with district is kansas 3,3 -2845,How many candidates ran in the election in the Arkansas 4 district? ,3 -2846,How many districts does william b. oliver represent?,3 -2847,What is the last year that someone is first elected?,1 -2848,How many people were elected in 1929,3 -2849,how many people won in 1914,3 -2851,Name the number of incumbents for texas 12 ,3 -2852,How many parties were represented for Charles R. Crisp?,3 -2857,How many of the first elected were listed when Hatton W. Sumners was incumbent and re-elected?,3 -2862,How many districts does john j. douglass represent?,3 -2863,how many areas were in the election in 1912,3 -2866,When was incumbent William B. Oliver first elected?,1 -2873,What was the last year that incumbent joseph t. deal was first elected?,1 -2874,What year was someone first elected?,2 -2876,How many times was incumbent cordell hull first elected?,3 -2877,"How many times was the election joseph w. byrns, sr. (d) unopposed?",3 -2878,What is the least first elected for jeff busby?,2 -2880,Name the total number of result for mississippi 4?,3 -2884,How many candidates won the election of john n. sandlin?,3 -2889,Name the lowest first elected for chester w. taylor,2 -2891,How many candidates were there when Henry Garland Dupré was the incumbent? ,3 -2894,How many different original air dates did the episode number 6 have? ,3 -2898,How many teams have an eagles mascot?,3 -2899,How many teams have the titans as a mascot?,3 -2900,WHat year was north college hill high school founded?,1 -2902,Which party was the incumbent from when the cadidates were henry e. barbour (r) 52.1% henry hawson (d) 47.9%? Answer: Democratic,3 -2905,Which District was the incumbent Julius Kahn from? Answer: California 4th district,3 -2910, how many city with name being providence tower,3 -2914, how many date with score being w 113–87,3 -2928,How many rankings did the 5th season have?,3 -2929,How many times did the 2nd season have a finale?,3 -2930," how many county with per capita income being $20,101",3 -2933,"what is the maximum rank with per capita income being $17,013",1 -2935,how many people work with N Rawiller,3 -2936,How old is Daniel Morton,1 -2937,How many serial branches have radio electrial = rea-iv?,3 -2941,How many branches have radio electrical=hon s lt(r)?,3 -2943,"What number episode in the series is the episode ""things that fly""?",1 -2944,What is the production code for season episode 8?,2 -2945,How many episodes have a series number of 35?,3 -2946,What is the series number for season episode 24?,2 -2947,how many have times of 6,3 -2950,tell the number of times where kansas was the location,3 -2954,"How many entries are listed under ""current status"" for the WJW-TV ++ Station?",3 -2955,How many stations have fox as the primary affiliation and have been owned since 1986?,3 -2958,"How many channel tv (dt)s are in austin, texas?",3 -2963,what's the minimum 180s value,2 -2971,what is the highest number where people got done at 31.1,1 -2975,how many turns were completed to make a mean of 34.0,3 -2984,How many leading scorers were there in the game against Utah?,3 -2985, how many location attendance with team being charlotte,3 -2988, how many high assbeingts with score being l 90–98 (ot),3 -2990,How many pairs of numbers are under record on April 12?,3 -2991,Name total number of won for tries for 92,3 -2995,Name the total number of points for when try bonus is 10,3 -2996,Name the number of won for maesteg harlequins rfc,3 -3000,what amount of try bonus where the game was won by 11?,3 -3001,what is the total amount of tries where the points were 325?,3 -3007,How many communities had a total renewable generation of 1375?,3 -3009,What is the lowest numbered hydroelectric power when the renewable electricity demand is 21.5%?,2 -3011,How many races were for a distance of 2020 m?,3 -3026,How many people named gloria moon were on the 2002 and 2012 commissions?,3 -3028,what is the maximum bush# with others% being 1.57%,1 -3029, how many bush% with total# being 191269,3 -3030,What is the highest game number?,1 -3031,How many entries are there for weight when the winner is 1st - defier and venue is randwick?,3 -3035,What was head count in 2010 where the farm production is 6.9?,1 -3036,How many districts had an depravity level of 27.7,3 -3040,what is the total score for the date of january 3?,3 -3043,How many players led Game #66 in scoring?,3 -3049,How many records are there for the games that took place on January 14.,3 -3059,what is the maximum total population with % catholic being 1.17%,1 -3060, how many total population with catholic being smaller than 31370649.1405057 and region being north africa,3 -3063, how many title and source with pal -295- being yes and jp -210- being yes,3 -3065, how many na -350- with title and source being bokumo sekai wo sukuitai: battle tournament,3 -3074,What was the least amount for Goals Olimpia?,2 -3075,How many goals Olimpia recorded for 32 matches?,3 -3084, how many equivalent daily inflation rate with time required for prices to double being 3.7 days,3 -3085, how many country with currency name being republika srpska dinar,3 -3086, how many equivalent daily inflation rate with currency name being republika srpska dinar,3 -3088,How many grand final dual television commentators were there in 1961?,3 -3090,What year was Thierry Beccaro the spokesperson?,2 -3091,How many games played on june 25?,3 -3096,On what position number is the club with a w-l-d of 5-7-4?,3 -3097,What's the position of the club with w-l-d of 6-2-8?,1 -3099,How many films titled Gie have been nominated?,3 -3102,"How many years have a film that uses the title ""Nagabonar"" in the nomination?",3 -3120,"What is the production number of ""rain of terror""?",2 -3125,How many clubs had 7 wins? ,3 -3138,What's the season number of the episode directed by Dan Attias? ,2 -3140,What year was Skyline High School founded?,3 -3141,How many enrollment figures are provided for Roosevelt High School?,3 -3147,What is the lowest numbered game on the list?,2 -3149,How many people had the high rebound total when the team was 19-13?,3 -3154,How many players scored the most points when the opposing team was New Orleans/Oklahoma City?,3 -3155,How many players scored the most points on game 4?,3 -3156,What was the last game where the record was 6-3?,1 -3158, how many local title with televbeingion network being tv nova website,3 -3163, how many chroma format with name being high profile,3 -3170, how many song title with artbeingt being chubby checker,3 -3171,what is the minimum points with highest position being 1,2 -3172,What is the maximum number of trnsit passeners when the total number of international passengers is 4870184?,1 -3173,What is Edinburgh's airport's freight in metric tonnes?,1 -3174,How many different total number of transit passengers are there in London Luton?,3 -3183,what being the maximum total passengers 2008 with change 2008/09 being 6.5%,1 -3185,what is the maximum aircraft movements 2009 with change 2008/09 being 18.2%,1 -3187,Name the rank of birmingham airport,1 -3188,Name the transit passengers for 171078,1 -3189,Beata syta is the minimum year for womens singles.,2 -3190,what is the maximum aircraft movements with international passengers being 21002260,1 -3191,what is the maximum freight (metric tonnes) with airport being liverpool,1 -3193,what is the maximum aircraft movements with airport being liverpool,1 -3195, how many airport with rank being 4,3 -3196, how many mens singles with mens doubles being pontus jantti lasse lindelöf,3 -3202,What is the smallest rank number of those used to rank the islands? ,2 -3212,How much audience did the 7th Pride of Britain Awards ceremony have?,3 -3219,How many classes between senior and junior year for world history,3 -3221,"what is the maximum # with original airdate being march 14, 2001",1 -3222, how many original airdate with writer(s) being becky hartman edwards and director being adam nimoy,3 -3225, how many height m ( ft ) with frequency mhz being 100.1,3 -3227, how many height m ( ft ) with notes being via wccv; formerly w236aj,3 -3231,what is the maximum lowest with average being 734,1 -3232, how many highest with team being forfar athletic,3 -3239,How many of the elected officials are on the Economic Matters committee?,3 -3250,What was the number of rounds on the Hidden Valley Raceway?,3 -3252,what the highest number for the opposite of offense for the green bay packers,1 -3253,"How many counties have an area of 1,205.4 km2?",3 -3257, how many capital with population census 2009 being 284657,3 -3259,"what is the minimum code with area (km 2 ) being 12,245.9",2 -3271,How many stations own Bounce TV?,3 -3277, how many tries against with lost being 11,3 -3283, how many points for with points against being 177,3 -3294,tell how many wins there was when the score was 490,3 -3304, how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi,3 -3306,how many big wins does peru state college have,3 -3308,how many overall championships does concordia university have,2 -3314," how many primary payload(s) with shuttle being columbia and duration being 13 days, 19 hours, 30 minutes, 4 seconds",3 -3319, how many class with poles being bigger than 1.0,3 -3325,What is the lowest enrollment value out of the enrollment values I'd the schools with a 3A WIAA clarification? ,2 -3327,When was Mount Tahoma established? ,1 -3331,What is the last year that Howard A. Wassum was in the 5th district?,1 -3333,What is the highest number of students with a teacher:student ratio of 20.8?,1 -3336, how many mean elevation with lowest point being gulf of mexico and state being texas,3 -3343,How many family friendly games are in the 1990s?,3 -3348,When altos hornos zapla is the home (1st leg) what is overall amount of 1st leg?,3 -3350,How many 2nd legs had an aggregate of 2-4?,3 -3351,How many home (2nd leg) had a 1st leg 1-1?,3 -3367,Name the most bits 14-12 for output from accumulator to character bus,2 -3368,what is smallest number in fleet for chassis manufacturer Scania and fleet numbers is 3230?,2 -3370,Chassis model Scania K360ua has what minimum number in fleet?,2 -3372,Name the maximum clock rate mhz,1 -3374,Name the least clock rate mhz,2 -3375,Name the least clock rate mhz when designation is rimm 4200,2 -3376,Name the number of clock rate mhz when bandwidth mb/s is 2400,3 -3382,How many locations had a density (pop/km²) of 91.8 in the 2011 census?,3 -3383,"When the 2006 census had a population of 422204, what was the density (pop/km²) ?",3 -3384,"When the % change is 8.4, what is the population rank?",2 -3386,How many teams scored exactly 38 points,3 -3387,In what year did Italy begin playing?,2 -3388,"For teams that played 5 games, what was the smallest number of wins?",2 -3389,How many games did the team that began in 2011 and scored 36 points play?,3 -3392,How many episodes had a broadcast date and run time of 24:43?,3 -3393,How many members gained university status in 1900?,3 -3394,What is the largest number of students?,1 -3395,How many members have professor edward acton as vice-chancellor?,3 -3396,What is the year leicester was established?,1 -3399,when did new zealand last compete?,1 -3400,How many new pageants does Aruba have?,3 -3403,what is the number of teams where conmebol 1996 did not qualify?,3 -3406,What's the maximum crowd when scg is the ground?,1 -3416,How many incumbents for the district of South Carolina 5?,3 -3420,When mixed doubles is didit juang indrianto yayu rahayu what is the most current year?,1 -3423,Name the total number of publishers for flushed away,3 -3425,What is the highest total number?,1 -3428,What is the Closure date of Hunterston B,2 -3429,How many power stations are connected to grid at Heysham 2,3 -3431,When did construction start on the Power station with a net MWE of 1190,2 -3432,Name the most extra points for john heston,1 -3433,Who scored the most points?,1 -3435,How many extra points did Paul Jones score?,3 -3438,What is the least amount of field goals made by a player?,2 -3439,How many extra points did Paul Dickey received,1 -3440,How many 5 points field goals is minimum,2 -3441,How many player with total points of 75,3 -3442,Name the most field goals,1 -3443,Name the number of points for right halfback and starter being yes,3 -3444,"Na,e the number of field goals for right tackle",3 -3445,Name the most extra points for right halfback,1 -3449,How many points did the player who was right guard score?,3 -3451,How many touchdowns were there when Heston was in play?,1 -3452,How many maximum points were there when the left tackle was played and there were 5 extra points?,1 -3453,Who are the UK co-presenters that have Joe Swash as a co-presenter and Russell Kane as a comedian?,3 -3464,How many people finished 9th?,3 -3465,What was the least amount of camp mates?,2 -3466,Who directed series #4 that was teleplayed by David Simon?,3 -3481,Name the maximum height for yury berezhko,1 -3482,Name the least points where 1989-90 is 31,2 -3487,Name the total number of 1991-92 for 1992-93 for 44,3 -3492,Name the total number of 1stm when 2nd m is 125.5,3 -3494,Name the number of nationality is tom hilde,3 -3497,What is the lowest production number?,2 -3507,How many full names are provided for the jumper whose 2nd jump was 96.0m?,3 -3512,Name the number of date for shea stadium,3 -3514,How many home team scores have a time of 4:40 PM?,3 -3516,What is the total number of attendees where the home team was Port Adelaide?,3 -3521,what is the minimum pos with clubs being 16,2 -3522,what is the maximum value for afc cup,1 -3523, how many pos with member association being china pr,3 -3524, how many points (total 500) with pos being 11,3 -3527,What is the lowest number of games played for deportivo español?,2 -3529,How many points total for san lorenzo?,3 -3532,Name the total number of telephone 052 for 362.81,3 -3535,How many of the cmdlets are the 2008 version?,3 -3539,how many points did the team that scored 27 points in the 1987-88 season score?,3 -3541,how many points did the team that scored 38 points in the 1986-87 season score during the 1988-89 season?,2 -3542,what is the maximum number of matches played by a team?,1 -3556,How many hosts were on Seven Network?,3 -3560,What is the area of Tuscany?,1 -3561,Name the minimum for 2500-3000 ft for scotland,2 -3562,Name the most of 2500-3000ft,1 -3563,Name the minimum total for ireland,2 -3569,How many entries are there for date of situation for #4?,3 -3570,How many # entries are there for the date of situation of 23 January 2003?,3 -3574,Name the maximum discs,1 -3575,"Name the most epiosdes when region 4 is march 13, 2008",1 -3577,what is the value for minimum total wins,2 -3580,When 1934 wsu* 19–0 pullman is the 1894 wsu 10–0 moscow how many 1899 wsu* 11–0 pullmans are there?,3 -3584,"What is the total amount o teams where winnings is $1,752,299?",3 -3586,What is the totl amount of years where avg start is 27.3?,3 -3590,Name the number of class aa for bridgeport and 1999-2000,3 -3594,Name the number of class aaaaa for 1988-89,3 -3601,How many times was there a class A winner when Gregory-Portland was the class AAAA?,3 -3602,How many Class AAAA winners where in 2002-03?,3 -3624,Name the number of branding for 31 physical,3 -3625,Name the number of virtual for NBC,3 -3626,Name the virtual for Fox,3 -3627,Name the owners for prairie public,3 -3628,Name the total number of class aaa for 2006-07,3 -3635, how many winning team with circuit being road america,3 -3640,"What is the number of appearances where the most recent final result is 1999, beat Genk 3-1?",3 -3641,"What is the number of runner-up results for the years (won in bold) 1984, 2010?",1 -3648,How many socialists correspond to a 7.5% People's Party?,3 -3651,How many percentages of Left Bloc correspond to a 32.1% Social Democratic?,3 -3655,How many colleges did pick number 269 attend?,3 -3656,How many picks played Tight end?,3 -3658,What position does Robert Brooks play?,3 -3663,What is the highest pick number?,1 -3668, how many college with player being rich voltzke,3 -3675,Find the least value of attendance?,2 -3677,How many times was obamacare: fed/ state/ partnership recorded for Louisiana?,3 -3678,"How many numbers were recorded under revenue when revenue per capita was $6,126?",3 -3679,How many times was presidential majority 2000/2004 recorded when obamacare: fed/ state/ partnership was Utah shop?,3 -3682,"How many times was revenue in millions recorded when the spending per capita was $6,736?",3 -3683,What is the largest number of DVDs?,1 -3684,What is the highest number of episodes?,1 -3685,What is the most recent release date?,1 -3686,How many release dates does volume 4 DVD have?,3 -3689,what amount of stations have station code is awy?,3 -3692,How many stations in 2011-12 had volume of 11580 in 2008-09?,3 -3693,What was the least volume recorded in 2011-12 when 2008-09 had 21652?,2 -3694,How many years was the total 402?,3 -3697,Who won the points classifications in the stage where Matteo Priamo was the winner?,3 -3700,What is the first number in series that had the production code 1ACX03?,1 -3704,How many people directed the show written by Chris Sheridan?,3 -3706,What is the largest numbered?,1 -3707,How many positions does rene villemure play?,3 -3708,What is the pick# for the medicine hat tigers (wchl)?,2 -3711,Lorne Henning has the lowest pick# of?,2 -3718,Name the number of teams for college/junior club for philadelphia flyers,3 -3721,How many positions did 1972 NHL Draft pick Rene Lambert play?,3 -3725, how many player with nhl team being vancouver canucks,3 -3733,How many class AA in the year 2002-03,3 -3747,When the 1 is the rank what is the overall amount of international tourist arrivals in 2012?,3 -3762,What is the total number of population in the year 2005 where the population density 35.9 (/km 2)?,3 -3766,Name the total number of list votes for 20.95%,3 -3768,What was the highest number on money list rank for Angela Stanford's career?,1 -3769,"In the year where Angela Stanford had a scoring average of 71.62, how many times did she take second place?",3 -3772,Namw the minimum production code for 16.04 million viewers,2 -3774,What is the highest number of cuts made when her best finish is t4?,1 -3775,How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average?,3 -3776,What is the lowest number of cuts made when her best finish is t4?,2 -3777,How many years has she ranked 56 on the money list?,3 -3778,What is the lowest number of wins?,2 -3782,Name the most 3 credits,2 -3783,Name the least 2 credits for straight hand,2 -3784,Name the least 2 credits for flush,2 -3786,Name the most 1 credit for three of a kind,1 -3789,"How many episodes were put out in Region 4 on March 4, 2010?",1 -3790,How many episodes were released in the season 1 DVD?,2 -3799,How many scores were there in week 11?,3 -3800,What is the highest win for the team Nacional?,1 -3801,What is the smallest conceded value for the team 12 De Octubre?,2 -3802,What is the smallest draws value with 21 points?,2 -3803,What is the largest loss for the Tacuary team?,1 -3805,How many first downs were there when the attendance was 13196?,2 -3807,What was the attendance in week 8?,1 -3810,How many different skippers of the yacht City Index Leopard?,3 -3819,Name the number of wins for when points is 17,3 -3820,Name the number of draws for when conceded is 25,3 -3821,Name the most conceded when draws is 5 and position is 1,1 -3824,What is the production code for episode 229?,1 -3828,How many points when 15 is scored is considered the minimum?,2 -3829,"When a team wins 4, how much is the Maximum amount of points?",1 -3830,How may draws did libertad have?,3 -3833,Name the number of men doubles for 2007,3 -3835,Name the number of years for womens doubles being diana koleva emilia dimitrova and jeliazko valkov,3 -3843,HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY?,3 -3848,What was the earliest year Þorvaldur Ásgeirsson Lovísa Sigurðardóttir won mixed doubles,2 -3850,How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles,3 -3852,What was the last year árni þór hallgrímsson drífa harðardóttir won mixed doubles,1 -3855,How many games were played?,2 -3859,Name the least wins,2 -3861,how many years has сенки been nominated?,3 -3862,how many directors for the film мајки,3 -3864,How many times was performer 3 Kate Robbins?,3 -3867,How many episodes was Jimmy Mulville performer 4?,3 -3868,"How many instruments did Stuart play on ""We Got Married""?",3 -3870,What was the total number of seats won where the % of votes is equal to 20.29?,3 -3876,available subnets leading total is?,1 -3877,When the network mask is 255.255.255.128 what is the lowest available subnet?,2 -3878,When the network mask is 255.255.255.224 what is the highest total usable host?,1 -3880,"What is the total number of values for attendance for the date October 1, 1978?",3 -3881,What was the highest attendance?,1 -3883,How many games had the attendance of 60225?,3 -3890,On which week was the attendance 74303?,1 -3894,Name the french actor with javier romano,3 -3904,How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?,3 -3905,How many different Leagues are associated with Billy Meredith Category:Articles with hCards?,3 -3906,How many separate values for Years are associated with FA Cup of 5?,3 -3908,What was the GDP (in millions USD) of Indonesia in 2009?,3 -3909,What was the GDP (in millions USD) of Hong Kong in 2009?,1 -3911,what class is Braxton Kelley in?,3 -3912,how many hometowns use the position of fs?,3 -3914,How many games were played against the Chicago Bears?,3 -3920,Where is California Lutheran University located?,3 -3925,How many different jockeys ran on 17 Feb 2007?,3 -3927,How many jockeys are listed running at the Sir Rupert Clarke Stakes?,3 -3928,How many venues had a race called the Australia Stakes?,3 -3932,Name the number of weeks for 50073 attendance,3 -3940,Name the number of weeks for san francisco 49ers,3 -3941,Name the most attendance for game site for los angeles memorial coliseum,1 -3944," how many result with date being october 25, 1964",3 -3945," how many opponent with date being october 25, 1964",3 -3947,Name the total number of population 2000 census for mesquita,3 -3949,Name the number of area where population density 2010 for 514,3 -3950,Name the number of population density 2010 for duque de caxias,3 -3952,How many losses did 12 de Octubre have ? ,2 -3957,Name the santee sisseton for híŋhaŋna,3 -3959,What was the last round the team drafted?,1 -3961,How may women doubles winner were there when Philippe Aulner was mens singles winner?,3 -3962,How many mixed doubles were won in 1996?,3 -3968,How many mixed doubles were there in the year that Olga Koseli won the women's singles?,3 -3969,What is the # for the episode with viewing figures of 7.02 million ?,1 -3970,What is the lowest rank for puerto rico?,2 -3971,What is the highest rank for the country with 6 2nd runner ups?,1 -3972,How many different directors are associated with the writer Gaby Chiappe?,3 -3977,Who wrote the episode that David Tucker directed?,3 -3980,"Which numerical entry corresponds to ""Episode 9""?",3 -3981,How many licenses have version 1.2.2.0?,3 -3983,How many licenses have mind workstation software?,3 -3995,What is the number of students in Fall 09 from the state that had 3940 in Fall 07?,1 -3996,What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?,1 -3997,What is the lowest number of students from a state during the Fall 06 semester?,2 -4000,What is the highest value of PF when Ends Lost is 51?,1 -4001,What is the total of all Shot PCT occurrences when the value of Blank Ends is 8?,3 -4003,What is the lowest value of Blank Ends when Stolen Ends is 7. ,2 -4005,How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi,3 -4007,How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?,3 -4008,"How many times were the winnings $3,816,362?",3 -4009,How many wins were there when the position was 26th?,3 -4011,How many teams had a 76th position finish?,3 -4012,What is the maximumum number of wins?,2 -4014,How many entries arr there for the top 10 for the 78th position?,3 -4015,Where does team #55/#83 robby gordon motorsports rank in the top 10?,1 -4016,How many entries are shown for winnings for team #07 robby gordon motorsports?,3 -4024,"How many categories are there when the attribute is ""onreset""?",3 -4025,"How many descriptions are there when the attribute is ""ondragstart""?",3 -4028,In how many stages did Jose Vicente Garcia Acosta won?,3 -4029,What is the minimum stage where Sergei Smetanine won?,2 -4030,what is the minimum stage where mountains classification is aitor osa and aitor gonzález won?,2 -4031,How many seasons in the top division for the team that finished 005 5th in 2012-2013,3 -4032,How many countries does honoree Roberto de Vicenzo represent?,3 -4036,What year was the most recent US Open championship?,1 -4041,How many nominees had a net voice of 15.17%,3 -4043,How many nominee's had a vote to evict percentage of 3.92%,3 -4044,How many eviction results occurred with a eviction no. 12 and a vote to save of 2.76%?,3 -4061,Name the total number of segment c for pressure cookers,3 -4066,In what episode was segment D ned Can Corn? ,1 -4067,Name the segment c for crash test dummies,3 -4070,Name the total number of episodes for s fire extinguisher,3 -4071,Name the total number of segment b for s banjo,3 -4072,Name the total number of segment d for wooden s barrel,3 -4073,How many segment A were in series episode 14-05,3 -4078,How many episodes have the Netflix episode number S08E04?,3 -4080,What episode number is the episode with a segment on thinning shears?,2 -4081,Which episode has segment D on custom motorcycle tanks?,2 -4082,How many segment C are there in the episode where segment D is bicycle tires?,3 -4083,What is the first episode number?,2 -4084,How many segment b's when segment a is filigree glass,3 -4089,Name the number of episods for segment c being s oyster,3 -4090,Name the least episode for fibre cement siding,2 -4092,Name the number of sement d for solar water heaters ,3 -4097,What is the last episode which has segment d as blown glass?,1 -4098,What is the first episode with a netflix episode code of s02e20?,2 -4106,Name the number of episode for phyllo dough,3 -4118,"What is the number of the bowl game when attendance was 79,280?",1 -4120,Name the total number of median income for population 2006 for 365540,3 -4121,Name the minimum derby county goals,2 -4122,Name the most derby county,1 -4124,How many times was leather introduced before pedal steel guitars in episode 111?,3 -4132,Name the least leabour for social and liberal democrats being 14,2 -4139,If 0.52% is the percentage of the population in chinas tujia what is the overall amount of tujia population?,3 -4142,If the country is fenghuang how many provinces are there? ,3 -4156,How many stages were there where the winner and the points classification were Alberto Contador?,3 -4157,"When the winner was Alessandro Ballan, how many total team classifications were there?",3 -4158,"When the team classification was quick step, what was the total number of general classifications?",3 -4165,What is the coordinate velocity v dx/dt in units of c total number if the velocity angle η in i-radians is ln[2 + √5] ≅ 1.444?,3 -4173,When are all dates in the year 2006?,3 -4178,What is the maximum purse prize of the Northeast Delta Dental International Championship?,1 -4179,How many prizes were available when Jenny Shin became the champion?,3 -4181,How many games did the team with 29 for win?,3 -4182,How many games did Palmeiras win?,1 -4184,Name the number of lost for against being 46,3 -4185,Name the number of against for portuguesa santista,3 -4187,Name the most losst for corinthians,2 -4191,What is the most recent census year?,1 -4193,Name the most pa for ontario ,1 -4195,Name the most w when ends lost is 49,1 -4196,Name the number ends won when L is 4 and stolen ends is 17,3 -4204,How many dates of polls occur in the Madhya Pradesh state?,3 -4205,How many under the category of Against have a Difference of 11,3 -4208,If the difference is 11 how much is for?,1 -4210,What is the highest number won with a difference of 1?,1 -4211,What the highest position when there is 28 against?,1 -4212,What is the highest number won when the number of points is 31?,1 -4213,What is the smalledt position when the difference was 6?,2 -4214,How many were the show's average weekly ranking when it reached No. 2 in average nightly ranking?,3 -4218,What is the maximum goal after 1979?,1 -4222,Name the number of februaries,3 -4224,How many points are listed when the position is 2?,1 -4225,When there is a lost of 2 what is the mumber drawn?,1 -4226,How many games are played?,2 -4227,When the position is 2 what is the number lost?,2 -4228,When the team is ypiranga-sp what is the number of won games?,2 -4229,Name the lease for when points is 19,2 -4231,Name the most against for minas gerais,1 -4236,How many figures are there for wheels for LMS numbers 16377-9?,3 -4238,What is the maximum number for the Saffir-Simpson category in the Carvill Hurricane Index?,1 -4239,What is the maximum miles per hour recorded when the CHI (Carvill Hurricane Index) is equal to 13.5,1 -4241,What is the maximum number of miles reached in a Texas landfall when the Saffir-Simpson category is smaller than 3.0?,1 -4249,How many original air dates were there for episode 17?,3 -4253,How many seasons did Peter Deluise direct Stargate SG-1?,1 -4254,"Which number episode of season 6 was the title ""Sight Unseen""?",2 -4259,Name the number for fifth district for richard houskamp,3 -4261,What was the top ends lost where the ends won 47?,1 -4266,How many school/club teams have a player named Manuel Luis Quezon? ,3 -4267,How many players are listed for the school/club team Washington? ,3 -4268,How many players with a position are listed for the 2009 season? ,3 -4274,How many teams have 62 tries against?,3 -4276,How many teams have 21 tries for?,3 -4277,How many chassis used number 34?,3 -4279,How many cars used number 48?,3 -4281,Name the total number of years where runner-up and championship is us open,3 -4287,Name the total number of qualifiying for race 3 being 3,3 -4291,Name the total number of positions for race 1 being 2,3 -4295,how many winners were in round 8,3 -4296,How many episodes air on Wednesday at 12:00pm?,3 -4304,How many years has station KPIX been owned?,3 -4308,"How many entries for prothrombin time are there where platelet count is ""decreased or unaffected""?",3 -4315,How large is the Boreal Shield in km2?,3 -4322,"How many wrestlers were born in nara, and have a completed 'career and other notes' section?",3 -4327,Name the number of proto austronesian for *natu,3 -4332,What is the largest mass(kg)?,1 -4338,Name the total number of air dates for 102 episode,3 -4345,When the stolen ends equal 5 whats the amount of pa?,1 -4349,What was the earliest season recorded for any team,2 -4350,Name the number of points for october 11,1 -4356,Name the least purse for 2011,2 -4357,Name the number of wheel arrangement when class is d14,3 -4358,Name the most number of pyewipe,1 -4365,Name the number of players from arizona,3 -4367,Name the number of players for louisiana state,3 -4373,What is the number of the player who attended Delta State?,1 -4378,How many stamps have a face value of 37¢ and were printed in the banknote corporation of america?,3 -4382,"How many values for result correspond to attendance of 74,111?",3 -4383,How many locations have the Sun Life Stadium?,3 -4384,What is the highest season for a bowl game of the 1993 Independence Bowl?,1 -4385,"What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?",2 -4386,How many values for attendance correspond to the 1986 Peach Bowl?,3 -4388,Who were all the pictorials when the centerfold model was Rebekka Armstrong?,3 -4390,Who was the interview subject when the centerfold model was Sherry Arnett?,3 -4392,What is the date of the issue where the pictorials is of Female s disk jockey?,3 -4396,"IN THE ISSUE WHERE LENNY KRAVITZ ANSWERED THE 20 QUESTIONS, HOW MANY PICTORIALS WERE IN THE MAGAZINE?",3 -4397,IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT?,3 -4401,How many centerfold models were there when the cover model was Torrie Wilson?,3 -4403,How many centerfolds were in the 9-98 issue?,3 -4408,How many times was Jillian Grace the centerfold model?,3 -4410,How many total interview subjects wererthere when the centerfold model was Tamara Witmer?,3 -4425,HOW MANY MODELS WERE ON THE COVER OF THE ISSUE WHERE THE CENTERFOLD WAS STEPHANIE LARIMORE?,3 -4427,HOW MANY TIMES WAS LUDACRIS THE INTERVIEW SUBJECT FOR THE 20 QUESTIONS COLUMN?,3 -4432,what is the total rank where the rank is 58?,3 -4434,what is the total number of rank where viewers is 9.38?,3 -4436,How many platforms have a southern opertator and the pattern is all stations via clapham junction?,3 -4438,"When London Bridge is the destination, how many lines are there?",3 -4442,What is the most recent year where team made it to 2nd round of the Open Cup?,1 -4444,Name the number of numbers for howard clark,3 -4447,Name the most runs conceded,1 -4449,Name the most maidens when e.r. 5.11,1 -4450,Name the least runs conceded for brett lee,2 -4452,How many players named sanath jayasuriya?,3 -4454,How many overs bowled for muttiah muralitharan?,3 -4456,What is the lowest number of wickets for farveez maharoof?,2 -4459,how many games has kansas state and depaul played against each other,3 -4469,"Name the number of advocate #1 that aired on april 2, 2008",3 -4470,"Name the poll winner for march 19, 2008",3 -4477,How many times did drinking games win the poll?,3 -4489,"What season began on december 5, 1953?",1 -4492,"How many episodes aired on february 13, 1954?",3 -4496,What is the total number of CFL teams in the college Wilfrid Laurier,3 -4498,Name the least matches for year 2008,2 -4499,Name the maximum wins for 68.75%,1 -4501,Name the least tied,2 -4502,Name the least wins of 56.25%,2 -4503,How many locomotives have a name of City of Birmingham,3 -4504,How many locomotives have a livery that is highland railway green,3 -4506,What is the maximum number of points against when the attendance was 47678?,1 -4507,What was the total number of first down on October 23?,3 -4508,Name the most series number for giula sandler,1 -4509,Name the number of season number for jeff truman,3 -4510,Name the minimum enrollment for montana tech of the university of montana,2 -4518,Name the total number of japanese for amagasaki,3 -4526,How many teams are listed for February 18?,3 -4531,How many players had the most assists against New Jersey?,3 -4532,How many games were played in the season?,1 -4543,How many values of HDTV apply when television service is elite shopping tv?,3 -4544,How many countries have content of arte?,3 -4545,How many values of HDTV correspond to television service of la sorgente sat 1?,3 -4548,Name the least number for mydeejay,2 -4549,Name the number of package options for music box italia,3 -4554,Name the total number of hdtv for eurotic tv,3 -4556,How many times was something listed under content when the television was R-light?,3 -4563,How many different contents are offered by the Qualsiasi Tranne Sky HD package?,3 -4565,How many PPV values are listed for when television service Sky Cinema 1?,3 -4570,Name the total number of dar for disney channel and number is 613,3 -4573,What is the highest number of maidens when the bowling best was 1/13?,1 -4575,What is the highest number of 5w when there was a 21.33 average?,1 -4577,How many countries had a per capita withdrawal (m 3 /p/yr) of 372?,3 -4578,How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?,3 -4581,In how many countries was the total freshwater withdrawal (km 3 /yr) 169.39?,3 -4584,Name the total number when date is 30 may 2010,3 -4586,Name the most number when tournament is madrid masters,1 -4588,Name the number of panelists for 20 january 2006 air date,3 -4589,Name the number of music guests for jade goody and kenzie,3 -4591,Name the most episode numbers of 6 january 2006,1 -4596,How many validations are listed for the iin range 36?,3 -4600,What episode did Pamela Anderson guest host.,3 -4605,Name the total number of panelists for 19 january 2007,3 -4611,What is the effective exhaust velocity in a Space Shuttle Vacuum?,3 -4612,What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?,1 -4624,Name the number of regular judge when host is bernie chan,3 -4625,Name the most number for 74 runs margins,1 -4626,Name the number of team for 35 runs margin and india winner,3 -4631,"On Sept. 17, how many first downs did the oilers have?",3 -4632,How many games were against the los angeles rams?,2 -4637,What is the maximum total in which the average is 28.5?,1 -4638,What is the minimum number of perfect 40s?,2 -4647,How many headphone classes have a US MSRP of $150?,3 -4648,How many values for earpads correspond to the headphone class Prestige and a US MSRP of $79?,3 -4659,What was the minimum attendance against the New Orleans Saints?,2 -4662,"What was the minimum crowd on January 24, 1987?",2 -4665,When is the latest game the bills had 21 first downs,2 -4666,How many first downs did the bills have when their opponent had 6,2 -4668,What is the minimum number of points given up to the Baltimore Colts,2 -4672,Name the least position,2 -4673,Name the most goals scored for position 4,1 -4678,What is the largest population in regions where the average family size is 2.8 people?,1 -4679,What is the total number of regions where the average family size is 2.8?,3 -4681,What is the most number of families in regions where average family size is 2.7?,1 -4682,How many total families are there in regions with 5.8 percent of the population being made up of deportees?,3 -4683,What is the most number of families among regions where the population is made up of 5.8% deportees?,1 -4685,How many lengths of line 3 are given?,3 -4688,"Name the total number of hangul chosongul for 8,352",3 -4691,Name the number of region for 경상남도,3 -4694,Name the population density people where population % eu for 1.7%,3 -4695,Name the number of area km 2 for population density is 87,3 -4697,How many networks are there that have a channel number 7?,3 -4699,What year was the team named the Raiders established?,1 -4701,"How many Universities were founded in Tacoma, Washington?",3 -4703,"What year was the university that is located in Ellensburg, Washington established?",2 -4705,What is the total number of viewers where the share is 7 and the week rank is 64?,3 -4706,How many episodes have a share bigger than 7.0?,3 -4707,How many episodes have a weekly rank tba and are broadcast at 8:00 p.m.?,3 -4709,What broadcast dates have a weekly rank of 73?,3 -4713,What is the result for salmonella spp. if you use citrate?,3 -4727,How many Ford Focus electric vehicle emission test scores were recorded in California?,3 -4729,What was the lowest no. of attendance on record?,2 -4734,What was the minimum population in 2011 of the district of Prakasam?,2 -4739,What is the nominal GDP per capita when the population is 63.056 million?,2 -4745,How many years was the operating profit (s$m) 717.1?,3 -4750,Name the total number of pinyin for hsin-yüan-i-ma,3 -4754,How many frequency figures are given for next station service pattern?,3 -4756,How many tournament wins were at Volvo Masters Andalucia?,3 -4760,Name the maximum founded for blue hose,1 -4761,Name the maximum enrollment for st. andrews university,1 -4763,What is the total number of episodes where alexa wyatt is the writer?,3 -4768,How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ?,3 -4779,"How many times did the team achieve an overrall record of mu, 21-19?",3 -4786,Name the total number of opponets venue for oklahoma,3 -4787,Name the total number of last 5 meetings for texas tech,3 -4788,Name the total number of series sorted for when released is april 2010,3 -4797,How many feet in length are there when the length is 106.1 meters? ,3 -4798,When the kilometers from kingston is 105.4 what is the minimum amount of length in feet? ,2 -4803,Name the most number for new england blazers,1 -4804,Name the most attendance,1 -4805,Name the most attendance for number 4,1 -4814,What is the minimum population of the region in which Roskilde is the largest city?,2 -4815,How many languages for the 2001 (74th) awards?,3 -4825,NJame the total number of population for towns/villages for 217,3 -4827,Name the least area for vas,2 -4839,How many numbers were listed under area with a population of 240075 as of 2009?,3 -4842,Name the dates for margin of victory being 5 strokes,3 -4852,Who many dates are in position 9 and the sellout is 81%?,3 -4853,What is the position of tickets sold/available when the sellout is 82%?,3 -4859,How many years did he have an average finish of 29.2?,3 -4860,How many years did he finish in 59th?,3 -4861,How many instances do you see the year 2003?,3 -4862,What is the maximum number of top 10s when he finished in 63rd?,1 -4867,What is the maximum number of wins in the season with 22 starts?,1 -4877,Name the maximum enrollment for niagara university,1 -4879,Name the total number of nicknames for st. bonaventure university,3 -4880,Name the total number of affiliation for enrollment being 14898,3 -4886,How many schools have the team nickname bobcats? ,3 -4889,What's the earliest year anybody joined the hockey league? ,2 -4891,"For the flyers, what's the minimum capacity? ",2 -4892,Name the number of pinyin where simplified is 河西区,3 -4898,Name the most crowd for saturday 16 february,1 -4900,How many days did Hawthorn play as a home team?,3 -4903,How many days was the away team's score 11.8 (74)?,3 -4913,What was the maximum crowd size against St Kilda?,1 -4915,How many crowd sizes were recorded at the game when the home team scored 7.8 (50)?,3 -4916,"When the home team scored 7.8 (50), how many away team scores were recorded?",3 -4923,Name the total number of ground for essendon,3 -4924,Name the most crowd for essendon,1 -4925,When ground is manuka oval what is the home team score?,3 -4939,What is the largest crowd when essendon is the home team?,1 -4946,How many locations does Elon University have?,3 -4947,Private/Catholic school's minimum enrollment is?,2 -4951,How many release prices are there for the Pentium iii 550?,3 -4956,what is the latest episode in season 2 directed by jamie babbit?,1 -4957,"what is the number of the episode titled ""magic jordan""?",2 -4961,What is the maximum pages per minute for the Xerox Travel Scanner 100?,1 -4967,how many teams won at golf when wooster won soccer,3 -4973,Total enrollment at the school with the nickname Blue Hens,3 -4976,"How many nicknames does the school in Newark, DE have",3 -4991,Who was the lowest picked LB,2 -4992,How many players named Jeff Brown were drafted,3 -4993,How many feet per second does a shell move where the height range is 23500?,2 -4997,What is the maximum foot per second speed where time to feet ratio is 22.1 at 55 degrees?,1 -5000,How many times is a score for stolen ends recorded for France?,3 -5001,How many ends were lost by the country whose points for (PF) was 87?,1 -5002,What is the 25 to 29 maximum if 30 to 34 is 1357?,2 -5004,How many seasons was Dave Reid treasurer?,3 -5007,What is the fewest number of losses?,2 -5009,What is the lowest number of losses for teams that lost 52 ends?,2 -5010,When 1509 is the c/w 15+ how many results of 15 to 17 are there?,3 -5011,When 2275 is 70+ how many results of 40 to 44 are there?,3 -5013,When 2073 is 65 to 69 how many results of 25 to 29 are there?,3 -5015,When voronezh is the oblast\age what is the lowest result of 65 to 69?,2 -5017,what is the minimum of 60 -64?,2 -5018,what is the maximum 18 to 19 and 30-34 is 1203?,1 -5019,what is the maximum 65-69 and 35-39 is 1606?,1 -5020,What province has the Chinese translation 重庆?,3 -5021,What is the total administrative population of Shanghai?,3 -5022,What is the maximum administrative population of the city with Chinese translation 昆明?,1 -5023,What is the total urban population of the city with the pinyin translation chángchūn?,3 -5027,How may players played for the Grizzlies from 2000-2002?,3 -5032,How many directors were there in total for the episode with series #62?,3 -5033,"What season was the episode titled ""Harlequin"" in?",1 -5034,What are the nationalities of players who attended duke?,3 -5035,How many nationalities does athlete Casey Jacobsen have?,3 -5037,How many athletes play the position of guard?,3 -5039,How many players went to depaul?,3 -5043,What number does the player who was with the grizzles in 1999 wear?,2 -5046,Name the most losses for leslie mann,1 -5050,what is the total number for reason for change is district michigan 3rd?,3 -5058,"How many episodes have the title ""the world of who""?",3 -5063,"How many appointed archbishops were ordained as priests on December 20, 1959",3 -5066,How many players Bowled 4/125?,3 -5067,What number of wickets were there when the average was 22.66?,1 -5070,How many matches had 11 wickets?,1 -5071,How many wickets did Alec bedser have?,1 -5074,Where did Brendon Labatte get picked?,2 -5078,Name the most pick number for cfl team being edmonton eskimos,1 -5079,How many days are associated with production code 210?,3 -5080,How many titles have a production code of 211?,3 -5081,How many seasons have a production code of 204?,3 -5087,How many tree species are there when the total plant species is 113?,3 -5088,What is the size of Itwara central forest reserve?,2 -5095,"What was the minimum area in square kilometers that produced 3,200,000 (12th) bbl/day?",2 -5096,What is the highest poplulation in July 2012 in the country with an area of 2149690 square kilometers?,1 -5101,How many targets are there with an approval date of 1997?,3 -5105,What is the urban population % when the rural percentage is 43?,2 -5106,What is the rural population percentage in 1979?,2 -5107,How many percentage figures are given for the urban population when the total population number is 14685?,3 -5108,For how many years was the urban population 57%?,3 -5110,How many had a length of 455?,3 -5111,What is the average climb for Tenbosse?,2 -5113,How many have a length of 375?,3 -5120,How many opponents did the team play in week 13?,3 -5121,How many points did the opponent score on Sept. 14?,1 -5124,When 12743 is the spelthorne what is the largest gore hundred?,1 -5126,What is the lowest overall year?,2 -5128,When within the walls is larger than 56174.0 what is the lowest amount without the walls?,2 -5129,When 272966 is the tower division what is the highest holborn division?,1 -5131,What is the maximum number of stolen ends against for Japan? ,1 -5133,Name the most glucolse where cl is 154,1 -5140,How many teams are listed for 3rd wickets?,3 -5141,How many total batting partners were most successful in the 2006 season?,3 -5149,Name the max game for attendance being 54774,1 -5150,Name the total number of results for new orleans saints,3 -5151,What is the total number of opponents for the game recorded as 1-3?,3 -5154,How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season?,3 -5155,In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored?,2 -5158,What is the lowest number of poles?,2 -5159,Name the least top 5,2 -5161,name the total number of top 10 also where the position is 51st ,3 -5163,Name the total number of winnings for 1995,3 -5164,Name the max top 5 for 5.0 avg finish,1 -5166,Name the total number of teams for top 10 being 5,3 -5167,How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones?,3 -5174,How many games were played at Cleveland Stadium?,3 -5175,In what week number was the attendance 74716?,3 -5179,How many weeks had an attendance of 60038?,3 -5180,Name the least points for daniël willemsen / kenny van gaalen,2 -5197,"ON JUNE 11, WHAT WAS THE NUMBER OF RNDS ?",2 -5198,FOR AUGUST 13 WHAT IS THE RND ?,1 -5200,How many figures are there for Rank 07-11 when the world ranking is 4?,3 -5201,How many figures are given for pubs 2011 in Chennai?,3 -5202,Name the number location of georgia perimeter college,3 -5205,Name the total number of nicknames for andrew college,3 -5206,Name the most enrollment when nickname is hawks,1 -5216,"On November 14, 2007, how many different Republican: Jeff Sessions are there?",3 -5220,"When the poll source is research 2000/daily kos, what is the total number of dates administered? ",3 -5221,"On July 17, 2008, what was the total number of lead maragin? ",3 -5226,How many teams had 632 points against?,3 -5228,How many times did Public Policy Polling under Republican: Jack Hoogendyk?,3 -5230,What was the smallest lead margin when the source of polls came from Strategic Vision and Democrat Carl Levin had 57%?,2 -5232,How many dates were recorder administered when poll were sourced from Strategic Vision and the Republican Jack Hoogendyk had 29%?,3 -5234,How many longitudes have a diameter of 224.0?,3 -5237,How many longitudes have a latitude of 9.9n?,3 -5238,What is the maximum points against when team's points are 10?,1 -5239,What are the tries against when they played against Bridgend?,1 -5240,What is the smallest number of tries for in a game?,2 -5243,how many points scored by sportivo luqueño,3 -5245,"If team two is San Lorenzo, how many were on team one?",3 -5246,"If team two is Lanús, what was the total number of points?",3 -5252,How many numbers are listed under diameter with a lattitude of 5.0n?,3 -5256,What is the highest year named for the name Tie Fluctus?,1 -5261,When was the most recently named feature named?,1 -5266,"Name the total number of year named for athena , greek goddess of wisdom .",3 -5269,How many schools are named otafuku tholi?,3 -5270,What year was Norterma Tholus created?,1 -5272,What was team Toshiba's round 4 score?,2 -5273,What was the highest score for round 2?,1 -5275,What is the score for round 2 for team Toshiba?,3 -5278,How many years have a longitude measure of 20.0e?,3 -5284,What is the ranking of BNP Paribas?,2 -5289,Name the total number of index weighting % at 17 january 2013 for bouygues,3 -5293,How many headquarters are there listed for HSBC?,3 -5295,What is the highest rank of a company in the oil and gas industry headquartered in Netherlands?,1 -5296,What is the lowest rank of a company with 248.44 billions of dollars in assets?,2 -5298,Name the number of rank for 9.52 profits,3 -5305,What is the largest number of seats won?,1 -5306,How many percentages are listed for the election in 1983?,3 -5311,"What is the species with the common name ""mouse""?",3 -5319,Name the number of judges for dré steemans ann van elsen,3 -5321,Name the year started where car number is 55,1 -5323,Name the nickerie for marowijne being 4.7%,3 -5326,Name the least amount of races for 2 poles,2 -5328,Name the number of flaps for 63 points ,3 -5329,Name the least flaps,2 -5330,How many p.ret are there when kr avg is 11.3 ? ,3 -5343,Name the least age 30-39 where age 20-29 is 593,2 -5344,Name the least age 40-49,2 -5347,How many numbers were recorded for Chester when the religion was Hindu?,3 -5348,what was Casey Martin's minimum yearly earnings?,2 -5350,how many times did Casey Martin win?,1 -5351,Name the total number of air dates for 05 cycle,3 -5354,Name the total number of immunity for cycle number of 13,3 -5362,"How much were the shares during the episode ""113""?",1 -5363,How many were the shares when the viewers reached 3.11 million?,3 -5368,Name the number of gregorian calenda rof gemini,3 -5377,How many scores are listed for game 37?,3 -5380,what is the nightly rank where the episode number production number is 06 1-06?,3 -5381,what is the number of weekly rank where the total is 1980000?,3 -5387,Name the tongyong for qiaotou,3 -5392,How many values are in the PF cell when Jennifer Jones is skip?,3 -5393,How many points for did the team with Shannon Kleibrink as skip score?,1 -5394,"Of the teams that lost 5 games, what is the highest number of wins?",1 -5395,What is the highest number of ends lost?,1 -5396,How many values are in the ends won cell corresponding to a PA of 39?,3 -5397,"When the skip is Glenn Howard, what the minimum PF?",2 -5399,What is the top Points Allowed?,1 -5400,"When the blank ends at 1, what is the PA?",3 -5401,How many times did the team play charlotte?,3 -5408,In how many locations did Game 13 take place?,3 -5411,How many games was game 43?,3 -5412,Name the total number of high rebounds for february 10,3 -5416,On how many dates did the Timberwolves play Phoenix? ,3 -5425,What is the Q1 order for Felipe Massa?,1 -5427,How many Q1 figures are given for Alexander Wurz?,3 -5433,For team #40 chip ganassi racing which top 5 is the highest where top 10 is 5?,1 -5440,How many athletes completed a trans 1 within 0:26?,3 -5446,what is the total number of attendance where the date is december 29?,3 -5450,How many appointment dates were recorded when Jürgen Kohler was the replaced by?,3 -5453,Number of participants with a score 8.895 in preliminary,3 -5458,What is the total number of population in the land with an area of 149.32 km2?,3 -5459,What is the maximum population of the land with an area of 276.84 km2?,1 -5464,Name the number of location attendance for l 141–143 (ot),3 -5467,"Name the least game for arco arena 13,330",2 -5474,Name the number of high assists for july 1,3 -5480,How many dates have a Match number of 5?,3 -5486,Name the high rebounds for score of 64-74,3 -5497,"What is the highest rank when Garry Kasparov, 2879 is the 1-year peak?",1 -5499,"What is the highest rank when Anatoly Karpov, 2820 is the 15-year peak?",1 -5509,How many farmers were included by the department with 32 projects?,1 -5513,What number was the game resulting in a 5-11 record?,2 -5514,How many high assists are listed for the game with a score of 68-60?,3 -5517,What was the attendance at the game where Neil Liddiard was Man of the Match?,2 -5520,How many attendance figures are given for the game where the final score was lost 5-3?,3 -5530,How many dates did David Savage get man of the match?,3 -5538,What was the record against Washington?,3 -5552,How many statuses are listed for the parish officially named Gagetown?,3 -5557,How many population values are listed for the community with an area of 10.25 sq.km.?,3 -5561,How many episodes have the season number of 1?,3 -5568,what is the total number of model wehre the status is named geneva?,3 -5573,How many years was the original title was স্বপ্নডানায় (swopnodanay)?,3 -5581,How many figures are given for total number of South Asians in 2001 for the area where they were 4.4% of population in 2011?,3 -5583,What is the greatest number of Pakistanis admitted to Canada during those times when the number of Nepalis admitted was 627?,1 -5584,What is the most number of Indians admitted to Canada when the number of Sri Lankans admitted was 3104?,2 -5585,"Name the number of tv seasons for season finale being may 24, 1994",3 -5586,"Name the number of tv seasons for season finale of may 23, 1995",3 -5587,Name the driver/passenger for 30,3 -5588,Name the max bike number of position for 30,1 -5590,"Name the number of going to for thurlby, braceborough spa at departure being 16.50",3 -5594,how many records were made on the game that ended with score w 121–119 (ot),3 -5598,Scott Dixon had how many Grid positions?,3 -5600,How many positions did the car with a final time of +10.8098 finish in?,3 -5601,Darren Manning finished in what position?,2 -5603,How many poles did the player have during the Formula BMW Pacific race?,1 -5604,Which season did he have 0 points and 31st position?,1 -5608,On how many different dates was event 1 Suspension Bridge?,3 -5609,On which episode number is event 4 The Wall and event 1 the Pendulum?,3 -5612,Which position earned 50 points?,1 -5613,How many drivers on the grid are called Vitor Meira?,3 -5614,"If the equation is 0 × 9² + 3 × 9 + 3, what is the result?",2 -5615,"If the equation is 6 × 9² + 6 × 9 + 6, what is the 3rd throw?",1 -5616,"If the equation is 8 × 9² + 8 × 9 + 8, what is the 2nd throw?",2 -5618,"If the equation is 6 × 9² + 6 × 9 + 6, what is the 2nd throw?",1 -5620,"When they played Universidad de Chile, what was the score of the first leg?",3 -5623,What was the score on the 1st leg if the team 2 is botafogo?,3 -5627,"How many different items appear in the high points column when the location attendance was US Airways Center 18,422?",3 -5631,How many times did Ron Artest (24) receive the record for high points?,3 -5633,"At what game number was the attendance at Conseco Fieldhouse 14,486?",1 -5634,What is the number of the game that was played on January 19?,1 -5641,"How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6–2, 3–6, 5–7?",3 -5646,High points earned by Josh Howard (19) resulted in how many high rebounds?,3 -5652,How many upstream speeds are there for downstream of 20 mbit/s and bandwidth of 40 gb?,3 -5661,"Of the times the Broncos played the Cincinnati Bengals, what was the highest attendance?",1 -5664,How many pressure figures are given for the .380 acp cartridge?,3 -5674,Name the total number of assists for 77 blocks,3 -5679,In what game did Miami play Charlotte? ,1 -5681,What is the highest number of laps led with 16 points?,1 -5682,How many drivers were there for Samax Motorsport?,3 -5684,How many drivers where there when the time/retired +3 laps and points were 24?,3 -5685,What is the highest number of laps for Darren Manning?,1 -5686,How many car numbers were recorded when the time/retired is +4.0019?,3 -5693,How many scores are listed for the game against Houston,3 -5699,How many games was High Points andre iguodala (29)?,3 -5700,How many games were played on March 15?,3 -5706,"How many players had high points in the location/attendance FedexForum 11,498 respectively?",3 -5712,What is the total number of high points on January 21?,3 -5717,How many games occur on the date December 12?,3 -5718,How many high assist are on the date December 13?,3 -5723,How many assists were made in the game against San Antonio?,3 -5729,How many location attendance was recorded for December 5?,3 -5731,How many games were recorded when the team was @ Memphis?,3 -5737,How many vacancies happened on 25 May?,3 -5738,how many 1391 carelia where 1398 donnera is 2397 lappajärvi,3 -5744,"If the points is 15, what is the fin. pos?",3 -5745,What is the car number for driver Hélio Castroneves,2 -5746,"If grid is 2, what is the minimum fin. pos number?",2 -5748,How many winning scores were there in the rr donnelley lpga founders cup?,3 -5750,What was the winner's share in the wegmans lpga championship?,1 -5752,Name the minimum kerry # for bush % for 50.9%,2 -5754,Name the maximum kerry # for where others is 47,1 -5762,What are the records of games where high rebounds is amar'e stoudemire (11),3 -5776,What game was the record 2-3?,3 -5793,Name the series number directed by richard thorpe written by dee johnson,1 -5796,What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes?,1 -5797,"If Arthur Albert is the director, what is the maximum series number?",1 -5798,What was the number of seasons that was directed by Joanna Kerns?,3 -5801,How many titles are given for the episode directed by Joanna Kerns?,3 -5803,"What is the season number for ""Impulse Control""?",2 -5807,How many episodes were there in season 19?,3 -5808,In which season did Paul McCrane first direct an episode?,2 -5811,What is the fewest number of games lost?,2 -5813,How many teams finished with a 2nd points total of 31?,3 -5814,How many games drawn for the team that had 72 goals for?,1 -5815,How many games with record 1-3-3,3 -5816,How many attended on mathches against atlanta thrashers,3 -5819,What is the minimum attendance on games of record 0-2-1,2 -5823,How many points were scored when the record was 6-8-6?,3 -5830,How many locations were recorded when the opponent Columbus Blue Jackets?,3 -5831,What was the attendance when the opposing team was the Ottawa Senators and the record was 24-35-17?,1 -5835,How many were won when the points were 12? ,3 -5841,How many games or records were played on the Miami Orange Bowl?,3 -5846,How many seasons in Tamil occur when the season in Sanskrit is Grishma?,3 -5848,How many faculty members have 20 years of experience? ,3 -5857,How many schools won their last occ championship in 2006?,3 -5859,What is the fewest number of occ championships for the team that last won an outright occ championship in 2006?,2 -5879,How many different meanings does the verb with part 4 gegeven have?,3 -5881,How many different classes of verbs are there whose part 3 is lucon?,3 -5883,How many different part 3 verbs are there that mean to freeze?,3 -5899,How many verbs mean to bear,3 -5900,"How many verbs mean to grow, to produce",3 -5902,"What is the original air date of episode 8? Answer: Dec. 21, 2006",3 -5915,Name the number of builders for number 96,3 -5921,How many writers are listed for the episode with a production code of 5008?,3 -5923,How many locations have the call signs dxjp-fm? ,3 -5935,What is the last year that had sideline reporters rob stone and monica gonzalez?,1 -5938,The Eyserweg race was which race #?,1 -5940,The Keutenberg race had what race length?,1 -5941,"In the Champions league, what is the Minimum",2 -5942,In the Champions league is the forward position smaller than 6.0,3 -5943,when the total is 8 and copa del rey is 0 what is the minimum league,2 -5944,when the position is forward and the league is 5 what number is the Champion league,3 -5945,if p is bigger than 4.0 what is total number,3 -5948,How many districts had republican Bob Goodlatte as a candidate?,3 -5950,How many won when points against is 410?,3 -5952,How many clubs have 62 points?,3 -5956,What is the highest possible level?,1 -5958,What is the fewest number of shuttles where the shuttle time is 6.55 seconds?,2 -5959,What is the distance (in meters) when the shuttle time is 6.86 seconds?,2 -5960,Name the number of lead margin for republican joe kenney being 31%,3 -5964,Name the most lead margin for republican joe kenney being 23%,1 -5965,How many 3rd ru does Costa Rica have? ,1 -5966,How many 3rd ru does Canada have? ,3 -5967,What is the least number of miss united continents? ,2 -5970,"How many different lead margins were stated in the poll administered on September 11, 2008?",3 -5975,Name the number of color for furcifer pardalis,3 -5976,Name the number of international frieghts for domestic mail of 260,3 -5977,Name the total number of domestic mail for 7853 for total frieght and mail,3 -5978,Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260,3 -5979,What was the highest vote for others?,1 -5982,What was the highest vote number for Bush?,1 -5984,How many transfer windows coming from Crystal Palace?,3 -5997,what ist he total number of ages where the start date is 6 november?,3 -6000,"How many seasons did ""strangled, not stirred"" air?",3 -6001,How many episodes did Alison Maclean direct?,3 -6005,"How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?",3 -6010,Name the total number of county seat or courthouse for april 1 2010 denisty is 2205,3 -6011,Name the total number of states for july 1 2010 density is 1209,3 -6012,What is the lowest season?,2 -6013,How many values for number of clubs have Shandong as the runner-up?,3 -6014,How many total wins with Shanghai as runner-up?,3 -6016,Name the number of lost where tries for is 109,3 -6025,How many points categories are there when the losing bonus is 2 and points for are 642?,3 -6026,How many people wrote the episode that had 6.34 million viewers?,3 -6029,How many episodes of 30 minutes were written by John Sullivan?,3 -6031,"What is the total length when the title is "" one man's junk """,3 -6034,How many episodes aired on 22january2009,3 -6035,Name the least transfers out when transfers is 21,2 -6036,Name the least total transfers for romania,2 -6037,Name the least internal transfers,2 -6038,How many status are there for Moncton?,3 -6044,"If the laps is 191, what is the maximum laps led?",1 -6046,"If the time/retired is +1 lap, what is the amount of maximum laps?",1 -6048,How many stages were won by Robbie McEwen?,3 -6049,How many car numbers were listed for Rusty Wallace?,3 -6050,In what season did Rusty Wallace win?,1 -6056,When 2005 is the season how many drivers are there?,3 -6061,What tie number featured Chelsea as the home team?,2 -6062,In what tie were Leeds United the away team?,1 -6064,what is the lowest year represented?,2 -6071,What is the total number of semi-final losses for the Kitchener Rangers? ,1 -6072,How many wins do the Red Deer Rebels have? ,1 -6075,In how many years was Tom Fleming the final television commentator? ,3 -6076,What was the latest year that Colin Berry was the spokesperson? ,1 -6079,What is the latest year that the final television commentator was David Jacobs? ,1 -6083,"This constellation, abbreviated as 'oph' has how many right ascension (in hm)?",3 -6085,This constellation with a ranking of 51 has how many percentages on record?,3 -6091,How many times did the Denver Broncos face the Dallas Texans this season?,3 -6092,What year was the winning race time 1:55:13?,1 -6106,Who many votes did E. Greenberg receive in Morris County?,3 -6108,Name the slope length for 1966 groundstation,3 -6110,Name the slope length for gondola,2 -6111,Name the least capacity for persons hour for 1983,2 -6113,How many categories of new entries this round are there for the fourth round proper? ,3 -6114,How many runner-ups were there when the show went to Japan?,3 -6115,How many won the prize when Regina was the runner-up?,3 -6120,"How many RolePlay actors played the role requiring a ""male, younger"" actor?",3 -6121,How many RolePlay actors played the same role as FlatSpin's Tracy Taylor?,3 -6126,"On how many locations is there a church named Askrova Bedehuskapell, built in 1957?",3 -6134,When turquoise is the map colour how many avg. trips per mile (×1000) are there?,3 -6136,What is the latest year a division was established?,1 -6138,How many capitals had brest litovsk voivodeship as voivodeship after 1569?,3 -6139,What is the latest year established that had 5 powiats?,1 -6142,What is the year that the oldest church was built in Jostedal? ,2 -6144,Name the number of parish for vilnes kyrkje,3 -6146,Name the maximum year built for holmedal kyrkje,1 -6147,What is the week where the game site is Shea Stadium?,2 -6149,In how many weeks was the game played on November 3 played?,3 -6159,how many division southwest was there when division east was babi,3 -6162,what is the series # for the episode directed by Kelly Sandefur?,1 -6163,how many production codes were there for the episode that was 32 in the series?,3 -6165,How many years was the film The Blossoming of Maximo Oliveros entered?,3 -6166,How many directors were there for the film with the original title of The Moises Padilla Story?,3 -6175,"What series number was the ""rebuilding new york city's subway"" project?",2 -6180,Name the number of weeks for october 26,3 -6181,What is the attendance record for week 6?,3 -6188,Name the total number for co 2 for atd/axr,3 -6212,For the chinese name 盧奕基 how many in total is the govt salary?,3 -6213,"For the name romanised name is lo yik-kee, victor what is the total number foreign nationality that is listed?",3 -6215,Name the most played when points is 105,1 -6216,Name the total number of points for newell's old boys,3 -6219,"If the second leg is Instituto, what is the total number of aggregate?",3 -6228,Where is riverfront stadium the game site for the week?,2 -6229,How many number of lakes are there in the Valdez-Cordova (CA) area?,2 -6231,How many dams are there in the Lake and Peninsula area?,1 -6232,How many dams are there in the Nome (CA) area?,2 -6233,How many comments are there in the Bethel (CA) Borough area?,3 -6234,How many total numbers of attendance are there during the game in October 27?,3 -6237,How many total number of attendance were there when the game was held in Anaheim Stadium?,3 -6238,How many were in attendance when the game was held in Arrowhead Stadium?,2 -6239,What is the highest position a team with 7 draws earned?,1 -6242,Name the total number directed by for uk viewers being 6.86,3 -6243,Name the least ai %,2 -6244,What is the highest number of games played?,1 -6245,"In the game with 31 points, how many goals were conceded?",3 -6246,How many games had 22 points?,3 -6248,How many clubs had 29 points?,3 -6250,How many draws were there when the conceded goals was numbered at 45?,3 -6251,What is the least amount of games played with 21 losses?,2 -6252,How many games did each team played?,2 -6253,HOw many points where there when the number of goals scored was 47?,1 -6255,How many losses occurred when the club team was ekranas-2 panevėžys,1 -6256,What was the highest number of wins for any team?,1 -6264,how many times did estudiantes de la plata participate in 2008 suruga bank championship,3 -6266,how many teams were first round eliminated by estudiantes in 2008 copa sudamericana,3 -6287,What are the results of incumbent dave weldon?,3 -6288,"How many districts have the incumbent, Charles Rangel? ",3 -6290,"In the district of Pennsylvania 1, what is the total number of political parties?",3 -6291,What year was Tim Holden first elected?,2 -6292,How many parties were first elected in 1994?,3 -6293,"In district Pennsylvania 11, what was the total numbers of results?",3 -6294,During what year was Representative Spencer Bachus first elected?,3 -6297,How many categories of first elected are in Washington 4 district? ,3 -6302,How many people were first elected with an incument of diane watson?,3 -6305,Which place in the order is the Pinyin transcription She Jiang?,2 -6306,"What is the place of ""A Lament for Ying""?",1 -6307,"How many traditional Chinese for the translation of ""Crossing the River""?",3 -6308,What is the place of the Pinyin transcription Xi Wangri?,1 -6314,How many zodiac signs does the month by the Thai name of กันยายน belong to?,3 -6318,how many times was 27 missing kisses used in nomination,3 -6329,When the earning per share is listed as 22.0 what is the year to april?,3 -6333,Name the total number of director for oro diablo,3 -6334,Name the number of result for maroa,3 -6335,Name the number of director for huelepega: ley de la calle,3 -6347,how mnay greek designation in tampa,3 -6352,How many episodes were shown on Friday if 210 Kirby's Epic Yarn was shown on Wednesday?,3 -6353,How many episodes were shown on Friday if 190 Boardwalk Empire was shown on Wednesday?,3 -6356,In which season was the average league attendance 2.572?,1 -6360,How many years was he car number 92?,3 -6361,How many years was the chassis a lotus-ford 38/7?,3 -6364,What is the largest laps led with the lotus-ford 34/3 chassis?,1 -6365,What was the population of Minneapolis in 2012?,1 -6368,How many cities were there in 2012 where the rate of burglary was 224.8?,3 -6371,How many different numbers for Afinsa when value is 5p?,3 -6374,How many orders when the species is Pavo Cristatus?,3 -6376,"If the spectral type is g1v, what is the total distance amount?",3 -6377,What is the hd designation for arrival date of February 2070?,3 -6379,"If the arrival date is January 2059, what is the total amount of signal power?",3 -6383,List the total numbers of Evian Masters tournaments. ,1 -6386,How many series had viewers totaling 23.93 million?,3 -6387,How many original air dates totaled 26.06 million viewers?,3 -6389,How many digital terrestrial channels are there for channel 4?,3 -6394,How many years was the pageant miss globe international and delegate was karen loren medrano agustin?,3 -6395,"How many pageants were in san fernando, pampanga?",3 -6396,How many pageants were margaret ann awitan bayot the delegate of?,3 -6400,how many porphyria have substrate δ-aminolevulinic acid,3 -6403,How many episodes had a viewership of 2.65 million?,3 -6405,How many winners of Binibining Pilipinas-International when Nina Ricci Alagao?,3 -6408,How many winners of binibining pilipinas-International when Maria Karla Bautista won binibining pilipinas-world?,3 -6409,Who is the second runner up when Janina San Miguel won binibining pilipinas-world?,3 -6410,"When Margaret Ann Bayot won binibining pilipinas-international, how many winners of Miss Universe Philippines were there?",3 -6411,What's the minimal number of population served?,2 -6413,How many votes Khuzestan were there when the percentage was 34.50?,2 -6414,How many figures for votes Khuzestan were there when the percentage was 34.50?,3 -6417,Name the total number of year to april for ebit being 24.5,3 -6425,How many missions countries have notability with president of burundi?,3 -6431,What is the longest length of mandatory secondary school?,1 -6434,"How many cover dates does the story ""Devastation Derby! (part 1)"" have?",3 -6437,What is the minimum number which is for title The Enemy Within part 1?,2 -6440,what is the maximum number of pinorinol in wheat bran?,1 -6442,what is the minimum number is lariciresinol where matairesinol number is 440?,2 -6449,Name the most played for 140 plus is 13,1 -6451,how many callings of trains arriving at 09.06,3 -6458,How many clubs remain in the fourth round?,2 -6472,Name the number in series for number 38,2 -6477,When 2005 is the year played what is the lowest year drafted?,2 -6478,When winter pines is the fcsl team how many mlb teams are there?,3 -6488,What is the maximum number of episodes in the series listed?,1 -6489,What is the total number of episodes listed with a production code of 306?,3 -6496,"With a per capita income of $30,298, what was the total number of households?",3 -6500,"How many production codes have the title ""the better man""?",3 -6502,How many air dates where directed by jim donovan?,3 -6503,What is the smallest number?,2 -6505,In what district is the city listed in Serial number 9?,3 -6506,What is the area of the city in the Sargodha district?,3 -6507,What is the smallest city area?,2 -6509,What is the population (2010 census) if s barangay is 51?,3 -6510,What is the population (2010 census) if the area is 66.11?,2 -6518,What is the minimum stations owned since kero-tv?,2 -6524,How many reasons were given when A. Willis Robertson (D) resigned?,3 -6529,When bat out of hell is the album what is the lowest number?,2 -6536,How many seasons were directed by Bryan Spicer?,2 -6541,how many people commentated where broadcaster is orf,3 -6547,"List the total number of institutions founded in Rock Island, Illinois.",3 -6565,"How many different season have an Army - Navy score of 10 dec. 2016 at Baltimore, MD (M&T Bank Stadium)?",3 -6571,how many 2nd episodes for u.s. acres episode the orson awards,3 -6578,How many original airdates is Garfield episode 1 is cute for loot?,3 -6580,How many u.s. episodes have Garfield episode 2 the picnic panic?,3 -6589,Name the tourism receipts 2003 for tourism competitiveness 3.26,3 -6591,Name the total number of tourism receipts 2011 where tourism receipts 2003 13.5,3 -6594,When vista radio is the owner how many call signs are there?,3 -6595,When fm 97.3 is the frequency how many formats are there?,3 -6601,When 1008/1009 is the production code how many directors are there?,3 -6613,How many titles were released on 21 October 1992?,3 -6614,What rank is Super Mario Land 2: 6 Golden Coins?,2 -6617,"If new entries this round is 65, what is the round?",3 -6618,"If leagues entering this round is Süper Lig, what is the maximum amount of clubs remaining?",1 -6621,How many losses for the team atl. colegiales?,1 -6622,How many points when the score is 14?,2 -6623,How many draws are there when the score is 13?,1 -6624,How many wins have conceded as 18?,1 -6625,How many draws occurred when 25 points were scored? ,3 -6626,What is the least number of poins for San Lorenzo? ,2 -6628,What is Inaba's maximum score?,1 -6629,How many sets of marks does Tonioli get in week 3?,3 -6630,"When columbia, south carolina is the hometown what is the lowest age?",2 -6631,"When austin, texas is the hometown what is the lowest age?",2 -6637,how many latitudes have 0.081 (sqmi) of water?,3 -6638,what is the lowest geo id?,2 -6639,What is the geo ID for the township with 0.771 square miles of water?,1 -6640,What is the geo id for Logan county?,1 -6642,What is the geo id for Joliette?,1 -6647,What is the geo id when water is 0.457?,2 -6648,What is the geo id of the land at 35.999?,1 -6650,What is the population associated with latitude 48.676125?,1 -6651,How many places associated with latitude 48.247662?,3 -6653,What is the smallest ansi code?,2 -6655,What is the geo id for malcolm township?,3 -6658,What is the ANSI code of the township where the area is 35.737 square miles?,2 -6659,What is the GEO ID of the township with area of 32.532 square miles?,1 -6663,How many ansi codes are there for longitude 46.415037?,3 -6665,How many ansi codes are there for latitude 48.142938?,3 -6669,Name the number of county for 90 population,3 -6678,"How many round of 32 results are followed by Polidori ( Ita ) w 6-1, 3-6, 6-3 in the round of 16?",3 -6679,Name the maximum points for libertad,1 -6680,Name the least wins for 5 losses,2 -6681,Name the most draws,1 -6682,Name the least played,2 -6685,When 1.67 is the height how many contestants are there?,3 -6686,"When baoruco is the province, community what is the lowest age?",2 -6688,When toronto is the hometown how many height measurements are there?,3 -6690,"How many years was the 2nd place team merchants, tampico, il?",3 -6693,When scorpion is the sankrit gloss how many qualities are there?,3 -6694,When धनुष is the sankrit how many western names are there?,3 -6709,"What is the production code number for episode named ""chilly scenes of winter golf""?",2 -6710,How many percentages were recorded under 2006 when in 2001 was 14.6%?,3 -6712,How many numbers were recorded under 2001 when 2006 was 18.9?,3 -6715,How many positions was the United States in?,3 -6717,"If the rings number is 60.000, what is the number for the vault?",3 -6718,"If the parallel bars numbers is 61.500, what is the total number for the flood?",3 -6720,When 3 is the rank what is the highest combo?,1 -6722,When 155 is the jersey what is the highest amount of different holders?,1 -6733,How many penalties are there when Eric Vigeanel is the rider?,3 -6740,Name the least amount of losses for 23 points,2 -6741,Name the most wins for sport colombia,1 -6742,Namr the total number of played for 5 losses,3 -6744,What is scored with the position of 6?,2 -6747,How many wins?,1 -6749,What is the show episode number of the episode that reached 1.215 millions views?,2 -6751,How many times was team 1 the wykeham wonderers?,3 -6755,How many series were directed by Rob Renzetti?,3 -6757,Did this driver have any winnings the season he had 32 starts,3 -6759,What is the lowest number of top 10 finishes,2 -6760,How many poles in the year 2000,1 -6762,What is the maximum starts that result in an average finish of 16.5?,1 -6763,"How many starts were there when the winnings are $690,321?",2 -6767,"For period September 2009, what is the other Mozilla total number?",3 -6768,Name the total number of production code by david richardson and todd holland,3 -6769,"Name the total number of series for march 19, 2000",3 -6778,How many times did Keith Downing depart a position?,3 -6788,Name the number of number in series for production code of 06-04-621,3 -6789,"Name the total number of written by for original air date for may 8, 2005",3 -6796,"How many categories for, replaced by, exist when the outgoing manager is Alan Buckley? ",3 -6798,How many podiums for the driver with 18 stage wins?,3 -6799,What is the highest pos for a driver with 1 podium?,1 -6807,"In 2009, how many were runner-up?",3 -6810,what is the [a] (mol/l) where [hpo 4 2− ]/[a] (%) is 0.612?,3 -6815,"How many points did the opposing team score on Dec. 19, 1982?",1 -6818,What is the greatest number of bills sponsored in any year?,1 -6819,What is the lowest cr number?,2 -6822,When (river garry) is the hr name how many builts are there?,3 -6823,What is the highest cr number?,1 -6824,When river ness is the hr name how many builts are there?,3 -6825,How many opponents are at Minnesota Vikings?,1 -6832,What is the first yar that someone won with a score of 68-66-68-71=273?,2 -6833,How many socialist have a lead of 12.6%?,3 -6835,What is the lowest SOL?,2 -6836,What is the highest GA when GF is 39?,1 -6838,How many different records were there in the games that ended in w 70-66?,3 -6846,Name the least game for 8-3,2 -6855,How many opponents was a game with a record 17-6 played against?,3 -6865,What was # of the first game played on August 20?,2 -6866,What were the high points for the game played at the MCI Center?,3 -6868,What is the col (m) of the Barurumea Ridge peak? ,1 -6869,What is the elevation (m) of the Mount Wilhelm peak? ,1 -6870,What is the col (m) of the Bewani Mountains High Point peak? ,2 -6873,When mount kobowre is the peak what is the highest elevation in meters?,1 -6874,When mount gauttier is the peak what is the highest prominence in meters?,1 -6879,Name the number of traditional chinese for album number 6th,3 -6882,How many samples were taken of 嬰幼兒配方乳粉2段基粉 ?,3 -6884,What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ?,2 -6892,What is the highest value for col(m) when prominence(m) is 3755?,1 -6893,What is the highest value for col(m) at North Island?,1 -6894,What is the lowest elevation(m) for the peak Mount Taylor?,2 -6895,How many values of prominence(m) occur at rank 5?,3 -6900,"Name the asian american population 2010 for kansas city-overland park-kansas city, mo-ks csa",1 -6903,When buffalo narrows is the name how many measurements of population density per kilometer squared are there?,3 -6905,When 6.00 is the land area in kilometers squared what is the highest population of 2011?,1 -6906,When beauval is the name what is the lowest population of 2011?,2 -6907,When 4.5 is the percentage of change how many population counts were made for 2011?,3 -6911,What is the least obesity rank for the state of Utah?,2 -6912,How many states or District of Columbia have 65.4% overweight or obese adults?,3 -6919,What is the lowest population(2011)?,2 -6920,What is the lowest population(2006) when there is a 1.06% in 2011?,2 -6921,How many values for population(2011) correspond to a 1.40% in 2006?,3 -6928,How many original Australian performers are there when the Original West End Performer is Jordan Dunne?,3 -6934,Name the minimum wins,2 -6936,Name the number of poles for stefano livio category:articles with hcards,3 -6938,Name the number of wins for michele rugolo category:articles with hcards,3 -6941,Name the number of apps for total g is 8,3 -6944,In how many countries is Itaipu a supply point for electricity?,3 -6948,"what row is the population of Latin America/Caribbean when Asia is 4,894 (46.1%)?",3 -6950,What is population in the world when 788 (8.1%)?,2 -6951,what is the worlds smallest population?,2 -6952,What is the first year in the competition?,2 -6954,What is the first year that she competed?,2 -6956,When joj agpangan* is the name how many duration's are there?,3 -6957,When davao city is the home or representative town or province and clash 2010 is the edition how many ages are there?,3 -6959,When days 1-86 is the duration how many names are there?,3 -6961,"When guiguinto, bulacan is the home or representative town or province how many names are there?",3 -6966,What's the match number where Bill Hoffman plays for Team USA?,2 -6967,How many different scores did Team Europe get when Mika Koivuniemi played for them?,3 -6972,How many years did Florida finish in 4th place?,3 -6973,"What is the total number of 3rd placed teams when the host is University of Manitoba, Winnipeg, Manitoba?",3 -6976,When 14 is the match number how many usa teams are there?,3 -6977,When chris barnes is on team usa how many europe teams are there?,3 -6984,How many clubs achieved the 5th position in 2012-13?,3 -6988,When zachary sanders is the performer what is the lowerst first aired?,2 -6990,What's the number of starts in the year with 19.3 average finish?,2 -6993,What's #14 FitzBradshaw Racing's top 5 result?,1 -7005,What is the dma when the format is rhythmic contemporary?,2 -7008,What is dma?,2 -7011,What is the total number of gentle personalities?,3 -7021,"If -750 is 45.505, what is the maximum rank?",1 -7024,How many Bangladeshi citizens are there in the borough ranked at number 7?,2 -7026,How many boroughs with different ranks have a total Asian population of 33338?,3 -7028,How many Asians live in the borough with 8109 Chinese population?,2 -7029,How many Bangladeshi citizens live in the borough ranked at number 14?,1 -7032,What is the minimum number of members Europe had at the time Africa had 7375139?,2 -7033,What is the minimum number of members Africa had in 2001?,2 -7034,What is the most members Europe had when Australia had 94615?,1 -7035,What is the latest year that Europe had 471895?,1 -7036,What's the bus width (in bit) of the model whose core is 650 MHz?,3 -7046,Featherstone Rovers club played a total of how many games?,3 -7047,How many games were lost when the club got 34 points,2 -7049,What is the first year she played in the french open?,2 -7050,"How many times was the score 6–7(5), 6–2, 6–3?",3 -7054,"state the number of surface where championship is australian open and score in the final is 6–3, 4–6, 11–9",3 -7060,how many first performances where performer is wilfred engelman category:articles with hcards,3 -7064,"How many different finales had the English title ""Beyond the Realm of Conscience""?",3 -7065,What was the maximum average of the episode with a Chinese title 古靈精探b?,1 -7071,How many conflicts started in Afghanistan?,3 -7076,"When middle prut valley is the land formation what is the highest of which currently forests, km² ?",1 -7079,What's the series number of the episode with season number 2?,2 -7081,How many different original air dates does the episode with series number 13 have?,3 -7082,Name the number for viewers being 1.87,1 -7089,"When the launch date is 14.09.2005, and the frequency is 900mhz and 1800mhz, how many carriers are there?",3 -7090,"How many standards are there, when the launch date was 17.04.2006?",3 -7092,Name the most 3 car sets,1 -7093,Name the 4 car sets for 6 car sets being 44,2 -7094,Name the least 4 car sets,2 -7098,How many servers have a kernel version 3.11?,3 -7104,How many color systems has a bit rate of 5.734?,3 -7105,What was the max character (per page row) of the encoding with a bit rate of 6.203?,1 -7107,"For episode number 7, what was the numbers of original air dates?",3 -7111,"How many teams won $2,089,556?",3 -7112,HOw many top 5 starts did the team with an average start of 17.7 have?,3 -7114,What is the tie when team 2 is koper?,2 -7115,How many 1st leg have team 1 ofk belgrade?,3 -7122,what is the least current,2 -7123,how many total where last/current driver(s) is narain karthikeyan ( 2010 ),3 -7124,How many numbers were recorded for Qatari female when Qatari male was 97?,3 -7125,How many years were there 97 qatari male births?,3 -7127,How many runner-ups when Jason Crump placed 3rd?,3 -7130,How many placed 4th on April 25?,3 -7137,Name the best uk team for university of birmingham,3 -7139,Name the total location for dynamic events winner,3 -7142,When 5th is the regular season what is the highest season?,1 -7146,Name the original air date for production code of 3t7501,3 -7151,What's the series number of the episode seen by 9.35 million people in the US?,2 -7157,How many places did the rank change since 22006 for County Leitrim? ,3 -7163,How many attempts for Bobby Layne?,2 -7164,What is the highest number of interceptions?,1 -7165,How many total yards for Bobby Layne?,1 -7167,How many QB ratings for the player with 1069 completions?,3 -7168,How many yardage figures for the player with 72.3 QB rating?,3 -7169,In how many locations was the game against Barcelona Dragons played?,3 -7170,how many posiitions did saudi arabia land on,3 -7172,which group stage was there 0 play-offs and 12 clubs played in it,3 -7175,"how many people directed the episode that is called ""dead inside""",3 -7179,At what position is the association with 279 points?,2 -7180,What is the lowest position?,1 -7181,What is the earliest year a house opened?,2 -7182,How many house colours are associated with house names of Hillary?,3 -7184,How many house mascots are associated with yellow house colours?,3 -7186,What is the minimum losses for the Kansas City Chiefs?,2 -7189,How many townships are there in region number 2?,1 -7190,How many townships are there in the region with 376 village groups?,1 -7191,How many poles for the Netherlands?,1 -7194,When 1180 am is the frequency how many call signs are there?,3 -7198,How many drivers does India have/,3 -7199,How many championships does Pakistan have?,3 -7200,"How many countries have 2 current drivers as of March 20, 2010?",3 -7202,What in the minimum number of championships won by a nation?,2 -7214,Name the number of developed by for solid edge,3 -7216,"Name the number of application for modeling, computer aided design, animation",3 -7218,What series number started production on June 6?,2 -7221,What series number had the local title of Fort Boyard?,1 -7222,What was the minimum number of episodes in any of the series? ,2 -7228,What is the largest series number? ,1 -7229,What is the latest episode number with the title of Jerusalem? ,1 -7236,What is the series number for the episode written by Kristen Dunphy and David Ogilvy?,1 -7237,"If the title if the Lost Boy, how many directors were there?",3 -7240,"If the team in the New England Patriots, what is the super bowl championship minimum number?",2 -7241,What is the maximum number of AFC championships?,1 -7242,How many authors are present when the original was Carry On?,3 -7244,What is the highest draw represented?,1 -7246,What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich?,3 -7250,What are the minimum indoor results that have a 5 for inspection? ,2 -7251,What was the maximum number in written when the standard was 2? ,1 -7252,How many point categories are there for the 3 mile run? ,3 -7254,What is the indoor number for the NER region? ,3 -7259,How many scorecards are there for the match on October 28? ,3 -7260,How many venues were there for the match on November 6? ,3 -7269,What is the total number of capitals that have an area of exactly 1104 square km?,3 -7271,How many populations have a capital of Hong Kong?,3 -7273,What is the least value for total population in 2001 with a growth rate in 1991-01 of 33.08?,2 -7279,How many % same-sex marriages are there for the year 2008?,3 -7280,How many % same-sex marriages are marriages between men for 923? ,3 -7284,What was the highest season number?,1 -7287,What is the minimum number of the bmw championship tournament.,2 -7288,What is the total number of John Merrick as a runner up?,3 -7290,How many numbers have sp of 20/1 and a finishing position of fence 19?,3 -7304,Name the least pick # for doug gibson,2 -7305,How many nationalities does Tom Colley have?,3 -7307,What's the number of positions of the player playing in Minnesota North Stars?,3 -7308,What's the smallest pick number of a player playing in Minnesota North Stars?,2 -7313,"When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there?",3 -7315,How many positions for denis patry?,3 -7318,Name the most joined for molloy college,1 -7319,how many times was total considered when hancock # was 1394,3 -7320,how many times was hancock % considered when starky % was 20.96%,3 -7321,How many times was country considered when starky % was 20.96%,3 -7323,what is the least total in gila,2 -7327,How many averages are there when the economy rate is 2.26?,3 -7329,How many figures for wickets when the strike rate is 54.0?,3 -7331,How many areas (km 2) have 151511 as the census 2006 population?,3 -7335,What is the maximum 2006 census population of LGA name Opobo/Nkoro?,1 -7336,What's the minimal enrollment of any of the schools?,2 -7337,When was the school whose students are nicknamed Rams founded?,1 -7340,What was the total number of votes in the 2005 elections?,2 -7341,How many elections had 1423 average voters per candidate?,3 -7343,What is the modified torque (lb/ft) when the standard hp n/a?,3 -7344,"When the standard speed (6th gear) is 114, what is the minimum rpm?",2 -7347,when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98,1 -7351,what is the lowest number of blocks,2 -7352,what is the lowest points scored by a player who blocked 21 times,2 -7354,what is the highest number of goals did the player with 27 asists score,1 -7359,What's the highest enrollment among the schools?,1 -7363,How many different enrollment numbers are there for the school whose students are nicknamed Barons?,3 -7364,"In how many different years did schools located in Logan Township, Pennsylvania join the Conference?",3 -7365,How many different isolation numbers does the Jack Mountain peak have?,3 -7367,"How many different isolation numbers does the peak with an elevation of 2782.622 = 9,127feet 2782m have?",3 -7371,How many rebounds did Rhonda Mapp make?,1 -7372,What is the largest amount of assists that Nicole Levandusky made?,1 -7373,What is the maximum number of blocks where rebounds equal 35?,1 -7375,Name the total apps for eddie carr,1 -7378,Name the total number of position for don clegg,3 -7382,Name the most founded for sea gulls,1 -7385,Name the least new points for steffi graf,2 -7386,"Name the most points for champion, won in the final against amélie mauresmo",1 -7389,Name the number of direction for győr-moson-sopron,3 -7391,Name the number of direction for debrecen,3 -7393,On how many locations is the Saint Joseph's College of Maine located?,3 -7394,"On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?",3 -7405,What was the number of races in the season in which the team placed on the 14th position?,2 -7406,What is the lowest number of wins of a team?,2 -7407,What's the minimal number of wins of a team?,2 -7417,"How many terms began when the term ended in January 3, 1989?",3 -7418,How many different total points does the couple ranked at number 5 have?,3 -7420,How many judges points did the couple ranked at number 5 have?,1 -7422,What was the total result for couple Ellery and Frankie?,3 -7423,"If the vote percentage is 2.111%, what was the minimum rank?",2 -7424,"If the total is 17, what was the maximum rank amount?",1 -7427,When roxanne and daniel are the couple what is the highest rank?,1 -7428,When ellery and frankie are the couple what is the highest total?,1 -7430,When 8 is the public and the result is safe what is the highest rank?,1 -7436,"How many basketball arenas are there that belong to a school with a capacity of 3,000?",3 -7445,Name the total party for north carolina 7,3 -7449,What's Babson College's enrollment?,1 -7450,When has Clark University joined the Conference?,1 -7452,"When was the school in Springfield, Massachusetts founded?",1 -7455,How many different pairs of candidates were there for the district first elected in 1988?,3 -7458,What is the first round that had #67 the racer's group with the fastest lap?,2 -7459,How many races had #99 gainsco/bob stallings racing in round 10?,3 -7474,What is the least total votes?,2 -7476,How many players are on this list?,1 -7479,How many times did Roy Emerson win the Australian Open?,3 -7480,At what age did Roy Emerson complete the Grand Slam?,1 -7481,Name the least rank for 2,2 -7483,Name the total number of club worl cup for djibril cisse,3 -7484,What's the post code of the county with the Chinese name 潜山县 / 潛山縣?,2 -7489,On how many different dates was a game against Houston played?,3 -7490,How many different players did the high assists in games where the high rebounds were done by Sales (10)?,3 -7491,What's the number of the game played on June 22?,1 -7496,how many verbs have the yo form as sienta?,3 -7499,How many have the Till Agra of 500?,3 -7501,"If the till aligarh is 150, what the mac till mathura?",1 -7502,"If the till agra is 1050, what is the max round trip?",1 -7503,"If the vehicle category is multi-axle vehicle, what is the till aligarh?",2 -7504,What's the lowest number of a game where S. Johnson (3) did the most high assists?,2 -7509,how many callsigns are for the branding telemundo 47,3 -7512,Name the district for newtown square,2 -7514,Name the term ends for bethlehem,3 -7515,Name the total number of districts for rob teplitz,3 -7518,For how many contestants was the background internet dreamer? ,3 -7522,"If the rating/share is 3.8/10, what is the total number of rating?",3 -7523,"If the night rank is 9, what is the total share number?",3 -7528,How many cities had a census of 400000 in 1940?,3 -7529,"Name the season number for ""the night of the feathered fury""",3 -7531,"Name the series number for ""the night of the flying pie plate""",1 -7532,"Name the season number for herr ostropolyer, pastry chef",2 -7538,"Writer Max Ehrlich, what is the minimum series number?",2 -7539,"From writer Denne Bart Petitclerc, what is the maximum season number?",1 -7540,"From writer Max Ehrlich, what is the total amount of series numbers?",3 -7542,How many winning drivers are there when the winning team is Bryan herta autosport?,3 -7545,"What is top ep number for ""missile bound cat""?",1 -7546,How many Huckleberry Hound episodes were aired on 1960.09.18?,3 -7549,"What episode includes ""Cop and Saucer""?",2 -7557,When 1992 is the year how many divisions are there?,3 -7560,When 2008 is the year how many divisions are there?,3 -7561,what is the least number of stumps in a game with 13 dismissals,2 -7562,what is the highest number of dismissals in a match with 8 innings,3 -7563,what is the rank of adam gilchrist,3 -7565,How many locations have been used for ballparks named Memorial Stadium?,3 -7566,When was the park demolished in 1994 closed?,2 -7569,Farr Yacht Design designed boats for how many country/flags?,3 -7571,In how many locations was the episode with the Bailey family filmed?,3 -7572,How many episodes with different season numbers had the Jeans family in them?,3 -7575,What's the season number of the episode with series number US6?,2 -7577,How many locations featured the Webb Family?,3 -7578,What episode in the season was episode us17 in the series?,3 -7579,What episode in the season was episode us18 in the series?,3 -7585,how many original air date where family/families is the ryder family and the schwartz family,3 -7590,Name the number of families for uk30,3 -7591,Name the number in series for in the ward family and the wren family,1 -7593,Name the least number in series,2 -7594,Name the number of locations for uk32,3 -7597,What is the number of the truck that has the crew chief Billy Wilburn?,1 -7600,How many teams does Jeff Wyler own?,3 -7606,In how many teams is Waqar Younis the head coach?,3 -7610,How many case deflectors are there for the Colt 646? ,3 -7614,How many episodes had the series number of 38?,3 -7615,How many different numbers of people in the US who'd seen the episode with a season number 8 are there?,3 -7616,Name the rufus guest for 15 december 2008,3 -7624,"Name the total number of timeslot for august 9, 2007 finale",3 -7626,How many items were under ranking l.a.(2) when the world ranking was 21st?,3 -7628,How many years were listed under index when there were 157 countries sampled?,3 -7630,How many years were recorded when world ranking was 21st?,3 -7636,on 19 april 1985 how many of number last flew,3 -7639,how many number is located at registration f-bvff?,3 -7642,What is the year when the spoksperson is Ruslana?,2 -7645,"How many different series number does the episode titled ""Skate or Die"" have?",3 -7647,How many episodes with different series numbers were seen by 8.69 people in the US?,3 -7649,"For language Aymara Simi, what was the maximum San Javier municipality percentage?",1 -7650,"If the San Antonio de Lomerio municipality percentage is 5.480, what is the total percentage for the San Julian municipality?",3 -7654,How many total number have robert young as the director?,3 -7655,"How many numbers have Charles Salmon as the producer and January 27, 2007 was the television premiere?",2 -7656,How many dvd releases where directed by david decoteau?,3 -7661,how many high points where date is february 19,3 -7662,state the number of location attendance where record is 15–10 (5–7),3 -7663,how many dates where high assists is stu douglass (5) – 4,3 -7664,how many records were made on february 22,3 -7665,Name the most applications for 1986,1 -7668,What was the latest season with 20 contestants?,1 -7669,What season was won by Ashutosh Kaushik?,2 -7680,Name the most round for michael goulian,1 -7686,On how many different dates did the episode with series number 35 air for the first time?,3 -7689,How many people lived in bulac in the year 2000?,1 -7692,How many people lived in the city which has 1.2530 km² in the year 2000?,1 -7693,How many people lived in san gabriel in the year 2000?,3 -7694,"How many different titles does the representative whose mission was terminated on August 5, 1984 have?",3 -7700,Name the championship for winner and judy tegart dalton lesley turner bowrey,3 -7703,Name the least year for evonne goolagong helen gourlay,2 -7706,How many rounds were there in Karlskoga Motorstadion with Roger Eriksson at the pole position?,3 -7709,how many drivers driving toyota corolla,3 -7710,what is the lowest position of brendan sole,1 -7711,how many vehicles where top 13 time is 1:18.72,3 -7714,What is the game number with 385:33 mins?,2 -7721,What's the number of the horse weighting 10-5?,2 -7725,What's the number of the horse whose trainer is Kim Bailey?,1 -7727,What is the lowest production code,2 -7731,How many directed have the product code of 2.8?,3 -7732,"When ""helpful tracy"" is the original title how many numbers are there?",3 -7735,When 1.17 is the production code how many air dates are there?,3 -7738,state the wins of the team with 2 top 10,3 -7755,What number pick did the CFL team bc lions (via hamilton via winnipeg ) have?,1 -7756,How many different release dates are there for the audio book with a story number 7?,3 -7761,how many companies released an audiobook titled deadly download,3 -7764,"how many formats of books authored by day, martin martin day",3 -7765,How many players were drafted from laval?,3 -7771,"how many notes were read by reader varma, idria indira varma?",3 -7779,What's the oil rig of the song with a draw number 9?,2 -7780,"How many points did the song ""Stille før stormen"" get?",2 -7781,How many press jury points did the song by Frank Aleksandersen get?,2 -7786,What is the most divisional titles won by a school with an enrollment of 30049?,1 -7787,What is the maximum enrollment of the Sooners?,1 -7788,What is the minimum enrollment of the cyclones?,2 -7792,In which year were the authors or editors Delia Sherman?,1 -7793,How many authors or editors are there for the book title elf child?,3 -7809,How many different popular vote counts were there for the candidate Rick Perry?,3 -7811,How many different popular vote counts are there for Rick Perry?,3 -7813,How many states-first place are there for the office of Governor?,3 -7834,how many matches did wayne mardle play,3 -7836,How many different results are there for the season with a 4-3 conference record?,3 -7838,How many different conference records are there for season 2006?,3 -7840,In what season was the conference record 4-3?,2 -7841,What is the highest number of third place runners up held by any of the countries competing in the Mr. International competition?. ,1 -7842,"The country, competing in the Mr. International competition, that holds a rank of 3, has how many 2nd runners up?",3 -7843,"For the country that holds a rank of 2, in the Mr. International Competition, what is the total number of competitors listed as 2nd runner ups?",3 -7844,"How many competitors in total, for the Mr. International competition, does Brazil have? ",1 -7846,What's the 100+ score of the player with 6 won legs?,1 -7854,How many votes did McCain get in the county where Obama got 50.7% of the votes?,1 -7856,How many people voted in Cabarrus county?,2 -7857,How many different results were there for the number of votes fro Obama in the county where he got 27.8% of the votes?,3 -7858,How many episodes directed by ben jones and written by paul dini?,3 -7863,state the earliest year li xuerui won womens singles,2 -7864,state the earliest year li xuerui won womens singles,2 -7867,How many county councils for the communist party of norway,1 -7869,How many parties are named the Center Alliance,3 -7870,Name the most withdrawn for 37 lstr no.,1 -7873,when the points for is 139 is points difference?,3 -7877,what is the highest mccain # where obama got 33.7%,1 -7881,Name the number of season for team bruichladdich,3 -7882,Name the least podiums for 49 points,2 -7883,Name the least f/laps,2 -7885,Name the least podiums for 0 wins and 2005 season for 321 points,2 -7888,How many couples have an average of 25.3?,3 -7889,How many different numbers of total dances are there for the couple ranked at number 6?,3 -7891,What's the minimal number of dances a couple has danced?,2 -7892,What's the highest number a couple has ranked at?,1 -7894,"What is the panchayat when the public property damage was 1,03,049.60",1 -7895,What is the largest village that had 103279 houses affected? ,1 -7896,What is the smallest district that had 33.25 in animals,2 -7897,"How many districts had crib damage of 1,164.50?",3 -7900,What's the number of McCain votes in the county where Obama got 35.7% and others got 1.9% of the votes?,2 -7903,How many players had 6 180s?,3 -7909,How many dates are associated with a guest 4 being Jim Jeffries (debut)?,3 -7913,Name the guest 2 for colin murray 6 april,3 -7916,How many seasons featured 29 conversions?,3 -7917,Lowest number of drop goals?,2 -7918,What is the point total for the season with 2 drop goals?,2 -7919,Name the most obama number for mccain being 38.86%,1 -7920,Name the most abama number for mccain being 29266,1 -7922,In how many counties di McCain win 41.62% of the vote?,3 -7931,What was the attendance for the game when the challenge leader was at Big East (4-2)?,1 -7941,What is the total number of entries for Leif Olson?,3 -7942,What is the total number of players who had a money list rank of 96?,3 -7946,When 30% is scott mcadams (d) percentage how many poll sources are there?,3 -7947,Name the revenue for eps being 1.19,1 -7950,How many different production codes does the episode directed by Dominic Polcino have?,3 -7954,Name the most weight,1 -7967,"How many values of periselene when epoch is November 15, 2004, 17:47:12.1?",3 -7968,How many times did the Bruins play Tennessee?,3 -7971,What is the most years that tournaments held in Rome have lasted?,1 -7973,How many different shareholders have 2.39 % of capital?,3 -7976,How many different numbers of B shares does Handelsbanken fonder have?,3 -7977,What's the green (SW) of the model with charcoal/white interior/roof?,2 -7978,How many different results for red (e8) does the model with parchment/saddle interior/roof have?,3 -7979,How many different total results are there for the model with parchment/black interior/roof?,3 -7982,Name the number for new mexico,2 -7983,Name the number for db,3 -7990,How many GICS sectors have a free float of 0.2391?,3 -7991,How many values of free float for the BSE code of 4EH?,3 -7993,How many polls taken on different dates show an undecided percentage of 25%?,3 -7999,How many different heights are there for the contestants from Warsaw?,3 -8000,What is the total of countys where Obama is popular by 35.44%?,3 -8002,What is McCains percent when Obamas is 39.13%,3 -8003,What is the maximum Obama supporters in Wayne county?,1 -8005,Name the total number of district for population may being 478,3 -8008,What series was directed by Mark Roskin?,2 -8009,How many were written by Peter Winther?,3 -8010,How many directors were in Season 2?,3 -8019,What is the moment of intertia in torsion (j) Cm4) for the beam height (mm) 120??=,3 -8022,What is the number for the moment of intertia in torsion (j) (cm 4) for the 4.7 web thickness (mm)?,3 -8024,What is the flange width (mm) for cross section area (cm 2) 16.4?,3 -8026,How many items were recorded marseille (32 draw) was a 2 seed?,3 -8027,What is the seed for lyon (32) was DNQ?,1 -8030,What was McCain's vote when Obama had 48.35%,2 -8031,How many votes did Obama have at 32.12%,2 -8033,What is the total number of votes McCain had in Webster?,1 -8037,What number episode was written by kurt sutter & jack logiudice?,1 -8041,How many numbers in the season were written by Brett Conrad & Liz Sagal?,3 -8042,what i the maximum number in the series where the production code is 3wab07?,1 -8043,what is the maximum number in the season wher the us viewers is 2.59?,1 -8048,"What is the 2003 seat number, when seats contested was at 38.23%",2 -8049,How many seats were forfeited in the revolutionary socialist party?,3 -8054,How many results finished in a loss?,3 -8055,How many games were against Furman?,1 -8056,How many times were Duke the opponents?,3 -8057,How many losses were there when the record was 4-0?,1 -8065,What game did the Bruins have 56 points?,1 -8073,What is the minimum enrollment for Plainfield?,2 -8075,When was Southern Vermont College founded?,1 -8078,Name the number of spring enrollment for sioux falls seminary,3 -8080,Name the total number of founded for yankton,3 -8082,How many French words does zinnapòtamu in Central-Southern Calabrian translate to?,3 -8085,How many Phonetic Greek words translate to grenouille in French?,3 -8094,What was the largest founded year for schools having enrollment of exactly 696?,1 -8096,What is the total number of schools founded that have an enrollment of 5634?,3 -8103,Name the most previous br number,1 -8104,Name the total number of previous br number for number 21,3 -8113,How many figures are given for McCain's % in Davidson county?,3 -8117,How many votes did Obama get in Lake County?,2 -8118,In how many counties did McCain get 65.72% of the votes?,3 -8119,How many people voted for Obama in the county where McCain got 72.75% of the votes?,2 -8121,How many votes did McCain get in Scott?,2 -8124,When n/a is the cash fate and n/a is the 31-day pass how many types of fare are there?,3 -8129,"Where total goals is 1 and total apps is 33, what is the smallest no.?",2 -8131,How many values for small power demand occur when medium power demand is 11.07?,3 -8134,What position is the boat with 20.12 LOA (metres)?,1 -8137,How many LOA (metres) reported for Black Jack?,3 -8139,How many sail numbers for boat skippered by Geoff Ross?,3 -8143,What is the weight of Eben Britton?,1 -8147,What is the number of Mike Thomas?,3 -8152,In what round did the player who weights 192lb (87kg) play?,1 -8153,What's the choice score of the player who weights 303lb (137kg)?,2 -8154,How many different engines are there for the model with model designation 97G00?,3 -8166,What is the height if de is the position?,3 -8169,How many engines are there for model 97H00?,3 -8174,how many players played running back where status is made 53-man roster at start of 2009 season,3 -8175,"howe many positions did wallace, mike mike wallace play for ",3 -8180,How many touchdowns were scored when QB rating was 82.7?,1 -8182,How many attempts did Charley Johnson have?,3 -8184,Name the number opponent for loss result,3 -8189,How many opponents were in North Carolina state game?,3 -8190,How many 125cc winners were in the same events as when the Moto2 winner was Shoya Tomizawa?,3 -8191,After how many opponents was the overall record 1-0-0?,3 -8193,Which game number was played against Georgia?,2 -8194,How many games were played against Tulane?,3 -8197,How many connection catagories are there for Tampa? ,3 -8201,What is the high checkout when played is 2 and 36 is 100+?,2 -8202,How many 180s have legs won of 45?,1 -8204,The player who had 145 yards had how many touchdowns?,3 -8208,"What is the episode number in the series for ""graduation"" that was directed by Don Corvan?",2 -8211,How many episodes had a production code of 5m13?,3 -8215,"Name the least episode for november 29, 1985",2 -8218,When 5a06 is the production code what is the highest episode?,1 -8222,How many titles were directed by Alex Chapple?,3 -8226,Name the most number for air date 2009/12/29,1 -8231,What is the greatest number of valves?,2 -8242,"What was the episode number for ""Going Bodmin""?",1 -8244,How many episodes were written by Kirstie Falkous & John Regier?,3 -8253,What was the numer of the game when the record was 4-0?,1 -8254,How many opponents led to an exactly 7-0 record?,3 -8256,How many episodes ran 24:33?,3 -8259,"On broadcast date is 21march1970, how many people tuned in?",3 -8261,What was the least amount of points scored by the golden bears when the opponent scored 15 points?,2 -8262,What is the total number of opponents played against the bears in game 4?,3 -8269,How many figures are given for Walker's percentage in Kenosha county?,3 -8271,How many total figures are given for Milwaukee county?,3 -8275,How many games did they play when their record 0-2-0?,3 -8278,Name the total episode for runtime of 24:11,3 -8289,How many times did the Wildcats play a game 11 regardless of points scored?,3 -8290,Name the number of black knights points for 3 game,3 -8295,Name the number of date for 1-0 record,3 -8297,Name the most game,1 -8298,How many games have a record of 3-4-0?,1 -8299,How many dates have boston college as the opponent?,3 -8300,How many games have Air Force as the opponent?,1 -8301,How many records have black knights points as 17?,3 -8303,How many results have a game of 5?,3 -8312,Name the black knights points for loss result,1 -8314,Name the opponents for record being 2-0,1 -8318,What was the smallest numbered rank for Michael Bevan?,2 -8321,"When the value rank is 23, what is the value?",2 -8323,"When the production (mt) is 650000, what is the total number of rank?",3 -8327,What rank does Rodney Marsh have?,1 -8329,What is the rank for a strike rate of 91.67?,1 -8331,How many innings does rank 3 have?,1 -8332,What was the goals for in the season that the pct % was 0.604?,1 -8338,Name the most top 10s for 2 best finish,1 -8339,Name the tournaments played for 2004,2 -8340,How many submission of the night occurred when the fighter was matt wiman?,1 -8342,What is the smallest number of episodes in a season?,2 -8350,Name the most gdp per capita latvian,1 -8352,what is all the broadcast date when viewers were 8.4 millions,3 -8353,how many episode have 8.4 millions viewer.,3 -8356,"What was the series# with the original airdate of october 23, 1967?",1 -8358,"How many of the series # when the original airdate is september 25, 1967?",3 -8368,Name the number in season for 4300062,1 -8369,Name the number of cancelled for turnham green,3 -8370,Name the number of details for emlyn road,3 -8371,What episode number in the series was directed by John Behring?,1 -8372,How many original air dates were there for episodes with a production code of 4398016?,3 -8373,"How many dates did the episode ""out of sight"" originally air on?",3 -8376,Name the number of rank for season 6,3 -8379,"How many items are listed under the column of U.S. viewers for episode ""Bite Me""?",3 -8386,When circuit ricardo tormo is the circuit what is the round?,3 -8387,How many opponents were there when the record was 6-0?,3 -8394,Name the number of song for scoreboard being 3rd,3 -8396,how many venues were played on in round 1,3 -8399,how many rounds had the score 44-22,3 -8401,How many Small catagories are there for the department that has a medium of 17101? ,3 -8404,How many total catagories are there for La Paz? ,3 -8405,What is the largest micro when the big is 1080? ,1 -8409,Name the least total for 1500m for 2,2 -8410,Name the max javelin for 200m for 5,1 -8411,Name the number of long jump for 1500m being 2,3 -8414,Name the total number of date for round 26,3 -8416,Name the total number of opponets for 05/09/2009,3 -8422,"If there are 18 villages, what is the minimum area ?",2 -8424,How many villages have a density persons/ha of 5.5?,3 -8426,"How many years had scores of 10–12, 6–1, 6–3?",3 -8429,What is the earliest year?,2 -8437,What is the gross capacity where the net capacity is 1380?,2 -8442,How many episodes had the us viewers (millions) figure of 5.0?,3 -8445,What is the latest episode in the season directed by Chris Long?,1 -8448,How many results were there on 19/06/2009?,3 -8453,What is the smallest pick number for McGill?,2 -8455,David Kasouf plays for how many colleges? ,3 -8461,How many players are at the DT position? ,3 -8463,What is the highest number any of the players were picked at? ,1 -8466,How many clf teams have a pick # of 5?,3 -8467,How many total positions are there for utah college?,3 -8470,What is the pick # for player wes lysack?,1 -8471,"When ""i feel good"" is the title and joe sachs is the writer how many series numbers are there?",3 -8472,How many stages of the rally took 14:33.9 for the leader to finish?,3 -8475,"What is episode is ""Bouncy Ball""?",2 -8476,How many locations have #12 Michigan State as the big ten team?,3 -8481,How many dates have a big ten team of #10 purdue?,3 -8484,Name the least age for cibao central and santo domingo,2 -8485,How many different results of the population count in 2001 are there for the census division whose population in 1996 is 880859?,3 -8487,What is the largest population count in any of the census divisions in 2006?,1 -8490,"How many have the name, ""The Fire Engine""?",3 -8495,"How many results have 14,381 as the attendance?",3 -8500,How many opponents did they play on 17/05/2009?,3 -8502,Name the artist for 7 points,3 -8503,Name the number of artists for panel points being 5,3 -8504,Name the total number of televote points for cry on my shoulders,3 -8509,What is the number of external links with a coach named Katie Kansas?,3 -8510,What is the minimum number of seasons?,2 -8515,Name the number of episode summary for jesse csincsak,3 -8516,Name the number of coach for full episode deshunae is made into a volleyball player.,3 -8520,"How many seasons have a premier date of January 6, 2005? ",3 -8521,What is the last season? ,1 -8533,What is the maximal number of people that attended any of these games?,1 -8538,"how many records had result/games: 10 games (29,606 avg.)",3 -8539,what is the highest attendance for a total attendance-regular season record,1 -8540,When 2005 is the date/year how many measurements of attendance are there?,3 -8551,What is the number of attendance with the pre-season game as the type of record?,3 -8556,What was the populati in 2000 for Panlicsian? ,2 -8557,What was the population in 2010 for Minane,1 -8559,What is the 2010 population when the 2000 population is 5720? ,1 -8562,Name the least number for 君のそばで~ヒカリのテーマ~(popup.version),2 -8563,Name the number of vocalists for which one ~ is it?,3 -8565,Name the number for margin of victory being 3 strokes,3 -8566,Name the winning score for 8 feb 2009,3 -8571,Name the most races,1 -8572,Name the most races,1 -8573,Name the most rr 1 pts,1 -8574,Name the number of total pts for gbr challenge,3 -8575,"What is the total number of second place finishes when the city & nation was Chicago, USA?",3 -8576,"What is the total number of third place finishes when the city & nation was Vancouver, Canada?",2 -8577,What is the largest third place finish when first place winning year(s) (if applicable) was n/a?,1 -8578,What is the smallest third place finish?,2 -8588,When 20 is the rr4 points what is the lowest rr3 points?,2 -8592,Name the innings for 5088 runs scored,3 -8593,Name the matches for mark taylor category:articles with hcards,1 -8594,Name the most runs scored,1 -8595,Name the least matches for not out being 44,2 -8602,How many song titles belong to the artist Ratt?,3 -8611,How many weeks featured duffy as the original artist?,3 -8615,"With an original artist names Bette Midler, what is the order number?",3 -8622,How many points does Swedish America's Cup Challenge have for rr1?,3 -8630,How many calibers require the type LB/RN?,3 -8633,What is the fewest shots a glazing can handle?,2 -8642,Name the total number of production code for episode by steve cohen & andrew dettman,3 -8647,"What is the GDP (PPP) (USD, per capita) for Algeria? ",2 -8649,Name the number of cab size for 4 medium tanker,3 -8653,How many kids go to Brechin High School?,1 -8654,What year did Negro American League join?,2 -8655,What year did the team who played at the Scottrade Center leave the city?,2 -8658,When samai amari is the asian rider classification how many asian team classifications are there?,3 -8663,How many titles were written by Don Shank and Genndy Tartakovsky?,3 -8673,How many champions are shown for the runner-up of stefan edberg?,3 -8678,"How many weeks are shown for the champion of john mcenroe 6–2, 6–3?",3 -8688,"How many people vacated to successor Dave E. Satterfield, Jr. (d)?",3 -8694,"Name the number of reason for change on may 11, 1939",3 -8700,how many persons got the third position whan sanyo electric tokushima got the fourth position?,3 -8701,how many persons got the fourth position when the regional was shikoku?,3 -8706,How many figures are named for security forces in 1998?,3 -8709,How many tournaments were at sime darby lpga malaysia?,3 -8721,How many number in series's are written by Greg Haddrick?,3 -8724,whatis the year the first establishment had research grants in the amount of 4.027?,1 -8725,what is the total number of established univeristy receiving research grants in the amount of 2.203?,3 -8728,what is the minimum student population where the research grants is 2.203?,2 -8732,How many countries did Utah Bulwark's owner come from?,3 -8733,How many horses are mentioned competing in 1985?,3 -8734,"If the headquarters is Bharatpur, what is the maximum area?",1 -8737,What is the minimum area id the 2011 population is 3067549?,2 -8739,How many different municipal mayors were there in the municipality with an area of 42.66 km2?,3 -8742,How many different counts of the population in Cavinti in 2010 are there?,3 -8746,How many different episode numbers are there for episodes directed by Wayne Rose?,3 -8749,How many wins does he have?,1 -8761,How many destinations have a weekly frequency and are named AC Express?,3 -8762,What is the number of frequencies that have a destination of Jaipur?,3 -8763,What is the pick # for player david grannis?,1 -8767,How many positions is player Tom Glavine?,3 -8769,what is the total number o production code where us viewers is 2.76?,3 -8773,How many maac are there that have 14th as the ncaa and the overall is 20-10?,3 -8774,How many overall in the year 2010-2011?,3 -8777,How many drivers had a time of 3:09:45?,3 -8778,How many drivers drove 300 laps at average speed of 103.594?,3 -8779,How many dates had an average speed of 102.003?,3 -8787,What was the number of season number entries that had US Viewers of 12.30 million?,3 -8790,What was the total number of weeks where the game played Ivor Wynne Stadium?,3 -8794,What's the lowest rating with 11.2 million viewers?,2 -8797,Which season received 10.2 million viewers?,3 -8799,"When ""virgen del perpetuo socorro"" is the name what is the highest year?",1 -8800,When 2008 t is the original number what is the lowest year?,2 -8812,How many rounds were on July 10?,3 -8813,Name the number of years for 18.5,3 -8814,Name the max top 5 for avg finish being 27.6,1 -8815,Name the number of wins for 30 starts,3 -8818,Name the position for 23.7 avg start,3 -8819,What is the car number for the Chevrolet Monte Carlo that Teresa Earnhardt owns and Paul Menard is her driver?,2 -8821,How many cars does Gregg Mixon own?,3 -8823,What number is on the car that Geoffrey Bodine drives?,2 -8825,How many episodes in the season were directed by Jeremy Podeswa?,3 -8827,How many episodes in the series were directed by Alan Taylor?,3 -8828,How many different teams had an average start of 12.9?,3 -8830,How many different amounts of winnings were there for the year when the team had an average finish of 17.4?,3 -8831,What was the top 5 in the year with an average finish of 8.2?,2 -8833,How many years was the position 97th?,3 -8834,How many wins when the average start is 29.0?,3 -8842,"How many partners were there when the score was 7–6 (7–4) , 6–3?",3 -8845,Name the least wins,2 -8857,What is the rank of the company known for retailing?,3 -8860,What is the national rank of Windstream?,2 -8864,Name the most number for automóvil club argentino for benedicto campos,1 -8868,The Maserati 4cl's minimum no was?,2 -8869,How many entrants was yves giraud-cabantous?,3 -8871,How many drivers did Bob Gerard Racing have?,3 -8872,"For the team with 7 points, how many points were scored against this season?",3 -8873,What is the maximum number of points scored against?,1 -8875,What is the total number of January (°C) temperatures when the July (°C) temperatures were 22/13?,3 -8876,What is the total number of January (°C) temperatures when the July (°C) temperatures were 23/15?,3 -8880,Name the most points agst,1 -8881,Name the least lost,2 -8883,what is the biggest series episode number whose production code is 2t7211?,1 -8884,what is the smallest series episode number whose production code is 2t7211?,2 -8886,how many maximum series number have 2apx05 prod. code.,1 -8887,What are all the title directed by reginald hudlin,3 -8893,What is the 07 points minimum if the 08 points is 50?,2 -8896,"If the average is 1.2803, what is the total points maximum?",1 -8902,What is the rank when 36.5 is tumbling?,3 -8903,What is the rank when 64.5 is tosses/pyramids?,1 -8904,How many different outcomes of the French Championships were there?,3 -8905,How many different final scores were there in 1963?,3 -8908,What are the results for the film titled 'Joki'?,3 -8913,How many values for founded when enrollment is 850?,3 -8918,How many categories for elapsed time exist for the $16.50 fixed-limit badugi game?,3 -8919,"How many elapsed times were recorded for the game that had a prize pool of $1,678,200?",3 -8922,HOw many films did martin repka category:articles with hcards direct?,3 -8925,"How many original titles were listed as ""If the Sun Never Returns""?",3 -8928,"How many films are titled ""Dans la Ville Blanche""?",3 -8929,How many of the writers had 5.35 viewers?,3 -8934,Name the total number 1980 mil for soviet union,3 -8937,How many languages have elles as the film title used in nomination?,3 -8938,How many languages is refractaire as the film title used in nomination?,3 -8939,How many languages have le roman de renart as the original title?,3 -8946,What was the maximum number of wins?,1 -8948,How many times did Tim Macrow and Joey Foster both got the fastest lap and pole position respectively?,3 -8950,What's the series number of the episode whose writer is David North?,1 -8951,What's the series number of the episode seen by 17.04 million people in the US?,1 -8965,How many english titles were directed by carlos moreno?,3 -8966,How many years was their W/L/D record 13:10:0?,3 -8968,"How many number of site have May 1, 2004 as the date?",3 -8975,"How many directors have vietnamese titles of Gate, Gate, Paragate?",3 -8978,What is the highest number of fai space flights when max mach is 5.65?,1 -8980,How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?,3 -8984,Name the parishes for beira baixa province,3 -8985,Name the most municipalities for alto alentejo province (partly ribatejo),1 -8990,How many outcomes were there for matches played with Chuck McKinley on grass in 1962?,3 -8992,What round did they face fc st. gallen?,3 -8994,How many dfb-pokal did kevin-prince boateng have?,3 -8999,How many scores are there when the championship game opponent is Miami University?,3 -9003,How many time does the platelet count occur when prothrombin time and bleeding time are prolonged?,3 -9004,What is the bleeding time for the disseminated intravascular coagulation condition?,3 -9007,"What is the lowest top 50 ranking that the episode titled ""the god-why-don't-you-love-me blues"" received?",2 -9009,"The episode titled ""Epiphany"" received what scripted show ranking?",2 -9010,"How many of the episodes in the top 50 rankings were originally aired on June 28, 2010?",3 -9012,How many locations are there for the athletic nickname is blue crusaders?,3 -9013,"How many entries are shown for school colors for the location of naga , camarines sur?",3 -9014,For the athletic nickname of golden knights how many entries are shown for enrollment?,3 -9017,How many original airdates did season 20 have?,3 -9022,"How many total viewers have April 21, 2010 as the original airing on channel 4?",3 -9025,"How many position in channel 4s ratings a have February 24, 2010 as the original airing on channel 4?",3 -9031,What is the latest season number that Eric Tuchman directed? ,1 -9032,"How man seasons have the air date of October 2, 2001? ",3 -9049,How many number of series have the production code of 1.11?,1 -9056,Name the number of number in season for 3.09,3 -9057,when was the episode premiere if the production code is 11.19? ,3 -9061,how many episodes has been directed by Mark K. Samuels ?,3 -9066,Who is the writer of episode 13?,3 -9067,Which series number has the production code 7.07?,3 -9068,How many seasons have the production code 7.01 for an episode? ,1 -9070,How many seasons had episode 158?,2 -9073,How many episodes have the production code 8.04,3 -9080,How many launch dates are there for digital transmission?,3 -9097,What is the biggest number for county population 18 years+?,1 -9103,How many teams did Farhad Kazemi leave?,3 -9105,What is the minimum possible for the NJCAA championships?,2 -9108,What is the minimum possible NJCAA championships?,2 -9109,On how many different dates was the race at the Silverstone circuit?,3 -9112,"If the name is Timo Higgins, what is the total date of birth amount?",3 -9114,"If the home team is UMBC and the weight is 78kg, what the the name total number?",3 -9118,Which series number had 1.98 million viewers?,2 -9122,Name the number of number in season for 26,3 -9124,How many directors are there for the episode that had 1.59 million U.S. viewers?,3 -9126,What episode number in the series had a production code of 3x7554?,2 -9128,Who has the minimum number of silver?,2 -9132,What is the maximum number of golds?,1 -9133,What is the smallest amount of silver?,2 -9135,Name the silver for ronald weigel category:articles with hcards,1 -9136,What's the minimal rank of a athlete shown in the chart?,2 -9137,which is the minimun amount of gold medals?,2 -9138,which is the minimun amount of silver medals?,2 -9139,What is the lowest overall number for total(min. 2 medals)?,2 -9140,What is the maximum rank of the nation that won 4 gold medals?,1 -9141,Name the most rank,1 -9142,Name the most rank for 2 gold,2 -9143,Name the most total ,1 -9144,Name the silver for baseball,2 -9146,Name the most tier 1 capital for irish nationwide,1 -9149,Name the total number of tier 1 capital for allied irish banks,3 -9163,How many pick # are there for the goaltender position?,2 -9164,How many college/junior/clubteams have John garrett as the player?,3 -9168,How many production stage managers worked with Gabriel di Chiara as the Male Rep?,3 -9169,How many production stage managers worked with secretary Rachel Hartmann?,3 -9174,How many different drivers were there for the team when the manufacturer was Toyota?,3 -9175,In how many different years did the race happen on February 27?,3 -9178,Name the total number of race time for kevin harvick,3 -9180,How many wins are with Dodge vehicles?,3 -9184,How many different cities are represented by contestants whose height stands at 1.80?,3 -9188,How old is contestant Valerie Chardonnens Vargas?,1 -9197,Name the number of master recording for doobie brothers the doobie brothers,3 -9206,"how many times has Aaron Ogden (f), been a successor and has had a formal installation? ",3 -9207,How many 5th venue cities were there when Doha was the 1st venue city?,3 -9208,"When Qingdao was the 1st venue city, how many 2nd venue cities were there? ",3 -9209,"In 2010, how many 1st venue cities were there? ",3 -9212,How many seats became avaliable in Massachusetts 3rd district?,3 -9216,List the number of builders where the withdrawn is 1951 and number is 42.,3 -9227,What is the smallest Asian rank?,2 -9230,How many asian rank have 1 as a mideast rank?,3 -9235,Name the most world rank for asian rank being 31,1 -9236,Name the least rank subcontinent for bangladesh,2 -9240,Name the number of rank world for bhutan,3 -9241,How many items were listed under world rank under the nation of Nigeria?,3 -9242,How many items are listed under gdp per capita under the nation of Burkina Faso?,3 -9243,"What is the total gdp world rank when the gdp per capita was listed at $1,163?",2 -9244,Name the least world rank for south american rank 3,2 -9245,Name the south american rank for venezuela,2 -9246,"How many weight stats are there for players from San Francisco, CA?",3 -9247,What was rickie winslow's number?,1 -9248,"How many height entries are there for players from lagos, nigeria?",3 -9250,How many height entries are there for players from bayside high school?,3 -9251,How many reasons for change were listed when Edward Hempstead was the successor?,3 -9252,How many Vacators were listed when the district was North Carolina 3rd?,3 -9259,How many entries are shown for date of successors formal installation where successor is john w. walker (dr)?,3 -9265,How many trophy presentations where in the year 1987?,3 -9266,In which year were howard cosell and jack whitaker reporters and s analyst is bill hartack?,2 -9273,Name the number of reporters for heywood hale broun,3 -9276,How many elevations are listed for Paratia? ,3 -9279,Name the total number for race caller for bob costas and charlsie cantey,3 -9281,How many reporters for the year 1993?,3 -9284,HOw many jockeys had eoin harty as a trainer,3 -9289,Name the total number of reason for change for not filled this congress,3 -9294,Name the number of nat for total g of 6,3 -9296,Name the least total apaps for txema,2 -9297,"when administrative centre is egilsstaðir, what is the pop./ km²?",3 -9300,What is the max pop of 2008 for selfoss?,1 -9303,Name the least total apps for jaime,2 -9304,Name the total number of lg for cg is larger than 1.0 for c apps is 3,3 -9312,How many written by have wendey stanzler as the director?,3 -9323,In what position was Mike Ray ranked in 1993-1994?,2 -9326,What position was Drew Kachtik ranked at in 1993-1994? ,1 -9328,what is the total number of 2006-2007 and 2007-2008 for jack huczek?,3 -9329,what isthe total number of seasons for chris crowther?,3 -9338,Name the least year for walter hagen,2 -9342,What was the partner count when the opponents in the final was forget leconte?,3 -9343,"What was the year date when one of the opponents in the final was bahrami leconte and score in the final is 7–6 2 , 6–1?",2 -9344,"Name the number of year for score being 6–3, 6–2, 6–4",3 -9356,How many entries for 1983-84 when 1984-85 is Terri Gilreath?,3 -9357,How many heights are listed for Jesse Holley in the WR position? ,3 -9363,"If the security issues is 99-025 and the distribution mechanism is the Microsoft website, what is the release date total number?",3 -9367,How many locations are listed for the winner Temple?,3 -9368,How many locations are listed for the Big 12 Conference?,3 -9375,How many games were there on May 1?,3 -9377,How many games were played on May 11?,3 -9380,"Name the high points for mo williams , lebron james , j.j. hickson (6)",3 -9384,How many scores are associated with a record of 27-9?,3 -9385,How many games are associated with a record of 29-10?,3 -9389,Name the total number of date for l 85–86 (ot),3 -9390,Name the network for 2007 total,3 -9415,What is the total number of winners when the team classification leader was Kelme-Costa Blanca and the combativity award was won by Jacky Durand?,3 -9417,What is the total number of team classifications when the young rider classification leader was Salvatore Commesso and the combativity award winner was Jacky Durand?,3 -9418,In what round did Al Unser win at Wisconsin State Fair Park Speedway? ,2 -9419,"How many races are in College Station, Texas and won by Johnny Rutherford? ",3 -9424,How many races took place on October 1?,3 -9425,How many types of tracks are there on the Phoenix International raceway?,3 -9426,Daily Empress Indy Silverstone took place on which round?,1 -9427,How many races took place on the Indianapolis Motor Speedway track?,3 -9430,How many laps have a 3:34:26 race time?,3 -9434,How many years was Pontiac the manufacturer for Joe Gibbs Racing? ,3 -9436,How many average speeds are listed in the year 2003? ,3 -9440,Name the total number of stage for lloyd mondory,3 -9441,Name the most stage for alejandro valverde and astana greg henderson,1 -9457,What is the total membership for the metropolitan area in the city of Manchester?,1 -9460,When 19th is the position what is the highest amount of poles?,1 -9462,Name the most margin for nco party and p. ramachandran won,1 -9465,Name the total number of runner up a for perambalur,3 -9467,How many margins have a winner of S. Singaravadivel?,3 -9468,How many winners have a runner-up of A. Karthikeyan?,3 -9474,How many margin results are listed in the election that was won by L. Adaikalaraj C and the party was the Indian national congress? ,3 -9475,What is the margin when k. balathandayutham is the winner?,1 -9481,Name the least projected opening,2 -9484,How many park and rides are proposed for Overlake Village?,3 -9485,How many neighborhoods have a station proposed at a Hospital?,3 -9496,What is the fewest points opponents have scored when the Cowboys score 36?,2 -9499,How many names have a country of civ?,3 -9507,Nam the total number for bruce coulter award for 9th game,3 -9509,How many opponents were there when the opponent was Arizona State?,2 -9510,How many records show Utah as the opponent?,3 -9512,How many records were there when opponents were 9?,3 -9513,Name the number of record for 12 cowboys points,3 -9514,Name the most game for record 4-0,1 -9515,Name the result for cowboys points being 23,3 -9517,Name the unemployment rate for 34024,3 -9518,Name the total number of population for craig,3 -9523,"What is the lowest population in a county with market income per capita of $24,383?",2 -9532,"What is the production code of the episode titled ""Lenny""?",1 -9535,How many counties have a population of 2266?,3 -9536,How many statuses are listed for Wayne county? ,3 -9541,What is the population maximum?,1 -9545,Name the most share for 2.76 million viewers ,1 -9548,Name the least europa league,2 -9549,Name the max total for aiden mcgeady,1 -9551,Name the total number of r for josh thompson,3 -9552,What was the total number of rebounds on november 27?,3 -9554,List the location and number of fans in attendance for game 7/,3 -9556,How many steals for the player who had 121 rebounds?,2 -9559,How many rebound did the person who scored 147 points have?,3 -9560,"Of the players with 50 free throws, what is the lowest number of three pointers?",2 -9562,"Of the players who scored 5 three pointers, what is the highest number of games played?",1 -9567,"How many values for number occur with the hometown of Canton, Illinois?",3 -9571,Name the total number of player for 51 points,3 -9572,Name the most rebounds for larry smith,1 -9574,Name the least points,2 -9576,When nd 2 fe 14 b (bonded) is the magnet how many measurements of tc (°c)?,3 -9581,Name the number of road record for team ole miss,3 -9583,What is the most number of blocks kendall gill had?,1 -9584,What is the lowest number of three pointers in games where the number of rebounds was 178?,2 -9585,How many steals were the in games that andy kaufmann played?,3 -9586,What is the lowest number of three pointers in games that kendall gill played?,2 -9587,How many games had three pointers where the number of points was 581?,3 -9588,"How many timeslots were available for the season finale on August 29, 2009?",3 -9589,What was the highest amount of episodes for the season with 5.74 million viewers?,1 -9591,"How many rankings were there for the season with a finale on August 20, 2011?",3 -9592,"How many episodes had a season premiere on December 11, 2010?",3 -9593,"What was the season number that had a premiere on December 11, 2010?",1 -9595,"How many outcome have a score of 7–6 (9–7) , 6–3?",3 -9597,What is the last year that Andre Agassi was the final opponent?,1 -9598,"How many years have a final score of 6–3, 6–2?",3 -9600,How many years had a total earnings amount of 2254598?,3 -9601,What is the latest year that data is available for?,1 -9605,In what year was his money list rank 3? ,2 -9606,What was his money list rank in 2001? ,2 -9607,How many atp wins did he have when his money list rank was 4? ,1 -9608,What is the maximum total wins he had for any year? ,1 -9616,"What is the most recent year where the final score is 4–6, 3–6, 6–4, 5–7?",1 -9619,What is the possible maximum money list rank?,1 -9626,Name the most population 2002,1 -9627,Name the total water resources m3 for rainfall being 650,3 -9629,What is the amount of US open runner-up score?,3 -9630,What is the year where the runner-up outcome was at its basic minimum?,2 -9632,How many opponents have wimbledon (2) as the championship?,3 -9636,How many high rebound catagories are listed for game number 5? ,3 -9641,What is the highest number of terps points in games where the opponent made 53 points?,1 -9643,Name the high points for 21-45 record,3 -9647,Name the total number for score l 110-112,3 -9652,How many high rebounds are in series 3-3?,3 -9653,How many games are on the date of April 30?,2 -9659,What is the most assists for points 129-3.9?,1 -9662,Name the number of location for 22-1,3 -9664,Name the max irish points for eastern michigan,1 -9666,Name the number of high rebounds for l 92–96 (ot),3 -9669,what is the total number of high rebounds for minnesota?,3 -9673,How many high rebounds were there on April 7?,3 -9677,Name the number of high points for ford center,3 -9684,What was the total score for january 18?,3 -9689,What is the highest game number where the team was Cleveland? ,1 -9690,What is the highest numbered nightly rank for any episode? ,1 -9691,How many attended on december 2?,3 -9696,Name the number of date for dallas,3 -9699,"What episode number in the series originally aired on April 27, 1999?",1 -9700,How many people wrote episode 68 in the series?,3 -9701,"How many writers were there for episode named ""embassy""?",3 -9710,"which is the number of the season episode whose premiere was in january 3, 1997?",3 -9715,"How manu original airdates have ""a cellar full of silence"" as the title?",3 -9716,How many product # have episode 1?,1 -9718,"Name the number of scm system for nant, visual studio",3 -9719,"Name the number of other builders for nant, visual studio",3 -9720,What is the minimum for 2nd runner-up?,2 -9721,What is the total number of 4th runner-up where the 2nd runner-up is smaller than 1.0 and the 1st runner-up is smaller than 1.0 and the total is 2?,3 -9724,What is the maximum number in the series for the episode directed by Harvey S. Laidman?,1 -9727,What is the # when u.s. viewers (million) is 17.44?,3 -9728,How many # were written by david hoselton?,1 -9729,How many race 3 winners were there when Mitch Evans won race 2?,3 -9733,In how many years did Pat Bradley became the champion?,3 -9735,How many different countries did the champion Se Ri Pak (2) represent?,3 -9737,What was the winner share (in $) in the year when Se Ri Pak (2) was the champion?,2 -9739,How many points did the opponents score at the game in Knoxville?,2 -9741,How many points did the opponents score on the game where Sooners' record was 16-5?,1 -9742,List the number of shows that had 12.04 million viewers in the united states,3 -9748,When 68-292-68-292 is the ignition timing how many graphicals is it?,3 -9750,When 1-1-0-0-1-1-0-0- is the graphical how many ignition timings are there?,3 -9751,Name the least total for sergio ramos,2 -9752,Name the least copa del rey,2 -9753,Name the most copa del rey for karim benzema,1 -9754,"If the total is 6, what is the maximum R?",1 -9755,"If the player is Marcelo, what is the minimum R?",2 -9758,"If the position is AM and the league is larger than 7.0, what is the total R number?",3 -9759,What is the maximum possible Copa Del Rey?,1 -9765,How many states had a population density of 10188.8?,3 -9766,Name the number of left for cardinals,3 -9770,"Name the least 10,000+ places for louisville",2 -9772,Name the number of rank for stone park,3 -9777,"If the winner is Bernhard Eisel, what is the stage maximum?",1 -9787,How many bowlers were there when david hussey azhar mahmood gurkeerat singh was the batsmen?,3 -9790,How many sesason were there when for is deccan chargers and bowler is amit mishra?,3 -9791,What is the number when against is rajasthan royals?,1 -9792,Name number of stellar classification for 3 neptune planets < 1 au,3 -9797,Name the number of names for exeter chiefs,3 -9803,How many different brief descriptions are there for crashes with 0/161 fatalities?,3 -9807,What class year was Vencie Glenn from? ,2 -9809,What class year was the player whose highlights were 35 career INTs from?,2 -9810,What class year was the player who played for Buffalo from? ,2 -9811,Name the gore number for others # 6.6%,2 -9815,Name the number of bush % for elko,3 -9817,If the position of 26th what is the season total number?,3 -9819,"If the primary (South) winners is Inter The Bloomfield, what is the season total number?",3 -9820,What is the season total number if the primary (South) winners is Ridings High 'A'?,3 -9823,What isthe minor (South) winners total number is the primary (South) winners is Mendip Gate?,3 -9827,What number missile led to damage to the Islamic University campus?,2 -9828,Name the number of year for mark martin,3 -9829,Name the number of year for june 30,3 -9832,How many frequencies have a model number of core i5-655k?,3 -9837,How many KEI catagories are listed when the economic incentive regime is 2.56? ,3 -9847,"How many series premieres did the season ""All-stars"" have?",3 -9849,"when the number of spectator are 5.28 millions, which is the smallest number of the episode in series? ",2 -9850,"which is the biggest number of episode in the season, where the number of the episode in series is 20?",1 -9853,"which is the biggest number of episode in the season, when the director of the episode was Constantine Makris?",1 -9857,Name the least number in season for jessica ball,2 -9858,How many flaps did he have when he had 109 points?,1 -9859,How many wins did he have with carlin motorsport?,3 -9860,What was the most races he had in a season?,1 -9864,What stage number had the general classification Rory Sutherland?,3 -9868,How many Mountains Classifications were in the race with Mike Northey as Youth Classification?,3 -9869,How many foundation dates were there when the television channels is canal nou canal nou dos canal nou 24 tvvi?,3 -9870,If the radio stations is radio nou si radio radio nou música; what were the total number of television channels?,3 -9871,What is the total number of television channels when one of the radio stations is onda madrid?,3 -9878,How many villains were in episode 3 (13)?,3 -9880,Name the most three pointers for dewanna bonner,1 -9881,Name the least field goals for chantel hilliard,2 -9882,Name the most minutes for morgan jennings,1 -9883,Name the most free throws for 4 steals,1 -9885,What is the road record for Vanderbilt?,3 -9888,Name the number of three pointers for 67,3 -9889,Name the field goals for alexis yackley,1 -9890,Name the number of assists for 321 minutes ,3 -9891,Name the number of players for field goals being 25 and blocks is 6,3 -9894,Name the number of high points for record 5-17,3 -9896,Name the cardinal points for 19-4 record,2 -9898,Name the total number of step 6 for 11 gs grade,3 -9900,as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat,3 -9903,At what # does 10 3 bbl/day (2006) equal 5097?,2 -9904,In how many importing nations is 10 3 m 3 /day (2006) equivalent to 150? ,3 -9905,What is the highest number in 10 3 m 3 /day (2011) where 10 3 bbl/day (2006) is equivalent to 787?,1 -9906,Name the most 10 3 bbl/d (2008) for present share being 1.7%,1 -9910,How many games were played against houston?,3 -9920,"If the total points is 5, what is the 2005-2006 points total number?",3 -9921,What is the 2006-2007 points minimum is the team is Overmach Parma?,2 -9923,What is the 2006-2007 points total number if the team is Saracens?,3 -9924,"If the points is 1, what is the total points minimum?",2 -9934,What is the maximum season number for the episode written by Jonathan Greene?,1 -9937,How many positions are there in Canadian Nascar? ,1 -9938,How many drivers have 1942 points?,3 -9939,How many starts are there?,2 -9940,How many wins did Andrew Ranger have?,3 -9941,What are the winnings for position 7?,1 -9947,What episode number of the season was also number 75 in the series?,1 -9952,How many different series numbers are there for the episode seen by 7.84 million people in the US?,3 -9954,What's the series number of the episode written by Dan Vebber?,1 -9955,How many different titles are there of episodes that have been seen by 7.84 million people in the US/,3 -9957,"What's the season number of the episode titled ""Dungeons and wagons""?",2 -9958,What's the season number of the episode originally seen by 6.64 million people in the US?,2 -9963,How many different people did different scores of high assists during the December 11 game?,3 -9967,How many values for high assists when the game is 81?,3 -9968,How many times was the high points david lee (30),3 -9971,How many times was the record 19–34,3 -9973,What was the game when high points was david lee (30),2 -9974,"If the population density is 7,447.32, what is the population total number?",3 -9976,"If the area is 66.34, what is the minimum (2010 census) population?",2 -9978,When birkenhead is the city/town and merseyside is the county and england is the country how many ranks are there?,3 -9981,When fleetwood is the city/town how many sets of population are there?,3 -9982,When 142900 is the population what is the highest rank?,1 -9994,How many people had high rebounds during the game with a record of 34-32?,3 -9995,How many people led in assists on game 71?,3 -10001,How many different high assists results are there for the game played on February 24?,3 -10009,When vince carter (24) has the highest points how many teams are there? ,3 -10012,On what year did Newcombe first face Clark Graebner in a final match?,2 -10014,How many writers were there in the episode directed by Charles Haid?,3 -10017,How many original air dates did episode 12 have?h,3 -10019,Name the number of date for w 107–97 (ot),3 -10023,"How many models have maximum power output is 162kw (220 ps) at 6,300 rpm?",3 -10031,"Which season used production code ""am10""?",3 -10033,What seasons in series 7 did David E. Kelley write ?,3 -10034,Name the total number of date for score being l 106–116 (ot),3 -10036,Name the most game for w 113–96 (ot),1 -10040,How many percentages (2006) are there for the population whose mother tongue is French?,3 -10041,What was the minimum population in 2011?,2 -10048,Name the score for december 27,3 -10049,"Name the total number of high points for pepsi center 19,756",3 -10053,Name the number of records for 30 game,3 -10059,When the clippers are the team how many games are there?,3 -10063,When carmelo anthony (42) has the highest amount of points how many measurements of highest rebounds are there?,3 -10069,How many players has the highest points in the game against the Heat?,3 -10081,When 78 is the game and brandon roy (6) has the highest amount of assists how many locations/attendances are there?,3 -10084,"What is the highest series number of the episode ""The New Day""?",1 -10085,How many episodes were directed by Sarah Pia Anderson?,3 -10088,How many episodes had a series number of 95?,3 -10089,Name the total number of season for production code 3m17,3 -10092,Name least series number for writers david e. kelley & jill goldsmith,2 -10093,How many episodes are numbered 12x03?,3 -10101,In how many episodes was Dave's team made up of David Walliams and Louis Walsh?,3 -10103,How many daves team entries are there on 27 october 2006?,3 -10108,Name the number of scores for 5x06,3 -10110,Name the number of jons team for 15x10,3 -10112,Name the total number of jons team for 15x07,3 -10114,In how many episodes were Vanessa Feltz and Lee Mack the team for Sean? ,3 -10116,What round does Duncan Tappy drive in?,1 -10117,How many racing points did England get?,1 -10120,What is the highest episode number?,1 -10122,"What's the number of the episode seen by 2.99 millions of people in the US, where performer 2 was Heather Anne Campbell?",2 -10124,Name the number of scores for episode 7x05,3 -10126,Name the total number of seans team being 7x04,3 -10127,Name the total number of scores for 7x10,3 -10128,How many dates have a total points for race of 180?,3 -10130,What is the lowest number of total race points for the country of Belgium?,2 -10132,What is the highest value for SF round for the country of England?,1 -10135,How many opponents were there with the record of 3-2-2?,3 -10138,How many points were there scored on October 27?,1 -10139,How many different scores are there for the game with 10-3-4 record?,3 -10141,What's the minimal number of points scored in any game?,2 -10142,How many different games against Florida Panthers were played in Verizon Center?,3 -10144,How many times was there a record of 49-15-11?,3 -10145,How many scores had a date of March 6?,3 -10152,"Calculate the highest points where the win,loss, tie ratio is 28-12-6",1 -10158,"If the average is 45.65, what is the total number of innings?",3 -10161,"If the runs is 5028, what is the matches maximum?",1 -10162,Name the least dismissals for sammy carter,2 -10163,Name the number of dismissals for adam gilchrist,3 -10164,Name the least dismissals for 4 rank,1 -10167,How many seasons did Ken Bouchard finish in 38th place?,3 -10168,What is the greatest number of wins Ken Bouchard had in a season?,2 -10169,How many races in 2012 season have 0 podiums?,3 -10170,How many seasons have motopark team?,3 -10173,"If the amount of rebounds is 0, what is the maximum minutes?",1 -10174,What is the points total number if the assists is 7?,3 -10176,"If the player is Jasmine Wynne, what is the minimum number of steals?",2 -10177,What is the blocks total number if the points is 4?,3 -10179,How many games did janae stokes play?,1 -10180,How many rebounds did crystal ayers have?,3 -10183,How many points did the Orangemen score in game 1?,1 -10186,Display the lowest score for candidate Mir-Hossein Mousavi when candidate Mohsen Rezaee scored 44809 votes,2 -10187,What is the highest score for candidate Mohsen Rezaee when candidate mir-hossein mousavi scored 837858 votes?,1 -10189,"What was the highest score of candidate mir-hossein mousavi in the location known as azarbaijan, west?",1 -10191,What was the highest number of votes for mir-hossein mousavi when the number of invalid votes is 5683,1 -10195,What is the lowest position for a driver with 2 points?,1 -10197,What is the power stage wins total number if the wins is 10?,3 -10198,"If finishes is 10, what is the POS minimum?",2 -10199,What is the finishes maximum number?,1 -10203,When dxcc-tv is the call sign how many station types are there?,3 -10204,When dwhr-tv is the call sign how many station types are there?,3 -10205,What date did Episode 22 originally air?,3 -10218,"How many rankings (timeslot) were there for the episode that aired on May 2, 2010?",3 -10224,When the pos equals 18 what is the max amount of points?,1 -10225,How many drivers used lola t92/00/ buick for their chassis/engine?,3 -10226,"What's the series number of the episode with a season number 5, written by Bernie Ancheta?",2 -10231,How many values for 24 mountains when the bearing or degrees is 67.6 - 82.5 82.6 - 97.5 97.6 - 112.5?,3 -10235,What were the total career titles of the player who led for 5 years?,3 -10236,"Of the players whose lead began at the australian championships, what was the shortest span of years led?",2 -10240,What is the highest episode# with the writer Paul West?,1 -10242,What is the highest episode number written by Harry Winkler?,1 -10245,Name the production code # for episode 109,3 -10247,"How many different people directed the episode titled ""Fright Night""?",3 -10248,"What's the number of the episode titled ""Everyone can't be George Washington""?",2 -10249,"How many original air dates are there for the episode titled ""Everyone can't be George Washington""?",3 -10251,"What's the production code of the episode titled ""The subject was noses""?",2 -10257,"During the act, Performance of ""Lost"" by Anouk, what was the result?",3 -10258,How many imr* have 64.3 life expectancy males?,2 -10261,How many imr* have tfr* 5.35?,3 -10270,Name the opponents for december 3,3 -10271,How many games did they play the carolina hurricanes?,3 -10284,What is the attendance?,1 -10287,How many contestants of whatever age are there whose hometown of Andujar?,3 -10289,What's the service number of the Jammu Duronto train? ,1 -10294,What was the game number when the opposing team was the Buffalo Sabres?,2 -10297,What is the number in the season of the episode with a production code of 2-05?,3 -10299,What is the total number of titles for the episode numbered 29 in the series?,3 -10302,How many episodes in the series are also episode 18 in the season?,3 -10308,How many officers o/s were there on the day when the number of USAAF was 2373882?,1 -10309,How many different numbers of Tot enlisted are there on the dates when the number of Enlisted o/s was 801471?,3 -10311,How many Tot enlisted were there on the day when the number of total USAAF was 2329534?,1 -10312,How many contestants where from mitteldeutschland?,3 -10316,"If seed number is 2, what is the maximum amount of points?",1 -10319,"If the speaker is Munu Adhi (2) K. Rajaram, what is the election year maximum?",1 -10320,"If the speaker is R. Muthiah, what is the election year maximum?",1 -10322,"If the assembly is the sixth assembly, what is the maximum election year?",1 -10327,What is the lowest series episode with a production code of 406?,2 -10340,"When hittite middle kingdom , new kingdom of egypt is the ubaid period in mesopotamia how many early chalcolithics are there?",3 -10341,When the second intermediate period of egypt is the ubaid period in mesopotamia how many early calcolithics are there?,3 -10346,What is the lowest numbered division Cleveland played in? ,2 -10353,How many shows did team David consist of vernon kay and dara ó briain,3 -10358,What week did September 29 fall in?,3 -10362,How many different horse-powers does the Cochrane have?,3 -10364,How much does the Independencia weight?,2 -10365,In how many different years was the warship that weights 1130 tons built?,3 -10382,Name the number of regular season for 2007,3 -10383,Name the most year for conference finals,1 -10385,Name the least division,2 -10390,How many different players got drafted for the Ottawa Renegades?,3 -10393,How many different percentages of immigrants in 2006 can there be for Morocco?,3 -10396,How many different percentages of immigrants are there for the year of 2007 in the countries with 1.2% of the immigrants in the year of 2005?,3 -10404,Name the total number of african record,3 -10410,How many season had Melgar as a champion?,3 -10414,Name the total number of open cup for 1996,3 -10423,What is the date of birth for basket baller called ido kozikaro,1 -10424,"How many positions are available for players who are 6' 07""?",3 -10427,How many averages were listed for the couple who had 12 dances?,3 -10428,How many total points were earned from the couple that averaged 29.0 points?,1 -10437,How many players have a height of 2.07?,3 -10438,What is the latest year born when the current club is Barons LMT?,1 -10439,How many current clubs have the player Aigars Vitols?,3 -10442,Name the most high schools for 31851,1 -10443,Name the most district wide for 1639 other programs,1 -10444,Name the total number of elementary schools for 31851,3 -10445,Name the most middle schools for 2005-2006,1 -10448,How many polling percentages were there in October 2008 when is was 30.8% in Aug 2008?,3 -10454,List the full amount of week 36 results when week 32 is 13.2%.,3 -10457,How many towns exist on the government area with a surface of 110 square kilometers?,2 -10460,During what week was the game attended by 20114 people?,1 -10466,What is the smallest amount of WSOP bracelets anyone had?,2 -10468,What is the high 10 profile number when the high profile is 80?,1 -10469,What is the baseline extended and main profiles when level is 1.3?,2 -10477,What is the production number for episode 23?,2 -10481,"How many different matchup/results appear in San Diego, California?",3 -10482,"How many different items appear in the television column when the results where Iowa State 14, Minnesota 13?",3 -10483,How many different items appear in he attendance column at Sun Devil Stadium?,3 -10488,How many north american brands have world headquarters in sagamihara?,3 -10490,Which company name has a 2008 rank of n/a?,3 -10497,What number episode had a rating of 4.7?,2 -10498,"What was the share for the ""Lisa Kudrow"" episode? ",2 -10500,What number episode had a 4.2 rating? ,2 -10501,What is the winning coach total number if the top team in regular season (points) is the Kansas City Spurs (110 points)?,3 -10504,How many figures for Other in the district where the GN division is 95?,3 -10506,What was the rank of operator whose technology is CDMA EVDO?,2 -10507,What was the production code for the episode directed by Michael Morris?,2 -10509,What the production code for the episode with 16.10 U.S. viewers?,1 -10512,What is the rating/share total number if the total viewers is 12.75 million?,3 -10516,How many shows had 12.46 total viewers?,3 -10518,"If the establishment is 49319, what is the sales, receipts or shipments maximum amount?",1 -10521,How many different Leagues had average attendance of 3589?,3 -10522,"How many people saw the 3rd, Central regular season on average?",2 -10524,When was the average attendance 789?,2 -10526,if the 3fg-fga is 1-20 what is the number in ft pct,3 -10527,in the ft pct .667 what is the number of gp-gs,3 -10540,"How many ""k_{\mathrm{h,cc}} = \frac{c_{\mathrm{aq}}}{c_{\mathrm{gas}}}i if its 'k_{\mathrm{h,px}} = \frac{p}{x}' is 14.97 × 10?",3 -10549,"How many values of last year in QLD Cup if QLD Cup Premierships is 1996, 2001?",3 -10562,Name the number of lines for porta nolana - ottaviano- sarno,3 -10564,Name the number of stations for 15 minutes travel time,3 -10567,How many different provinces is Baghaberd the center of?,3 -10568,How big is the province with the Armenian name of փայտակարան?,2 -10570,How many different numbers of cantons does the province with the Armenian name վասպուրական have?,3 -10572,what are the maximum wins where the poles are 2?,1 -10581,How many power kw have a frequency of 93.7 mhz?,3 -10583,How many directors worked on the episode written by Brent Fletcher & Miranda Kwok?,3 -10585,How many episodes were viewed by 1.29 million people?,3 -10590,"What is the highest series number of the episode ""Til Death do us part-and make it soon""?",1 -10592,"How many people directed ""through the looking glass""?",3 -10593,How many people directed episode 7 In the season?,3 -10594,How many original air dates were there for the episode with production code 212?,3 -10596,What is the production code for episode 31 in the series?,2 -10597,How many seasons did Barking Birmingham & Solihull Stourbridge were relegated from league?,3 -10599,How many were the minimum team that participated in the league?,2 -10600,How many teams participated (maximum) when Cornish All Blacks Pertemps Bees were relegated to the league?,1 -10602,How many were promoted from the league when Esher was relegated to the league?,3 -10603,What is the smallest 08-09 GP/JGP 2nd value when WS points equals 3197?,2 -10604,What is the number of 07-08 oi best values associated with 08-09 i/o bests of exactly 202?,3 -10605,What is the smallest 07-08 oi best value?,2 -10606,"Name the number of partners for 5-7, 6-7 (5-7)",3 -10610,"Name the number of surfaces for 4-6, 2-6",3 -10611,What is the least 08-09 gp/jgp 2nd was when the 07-08 gp/jgp best is 223?,2 -10612,What is the least 08-09 i/o best?,2 -10613,How many times is keauna mclaughlin / rockne brubaker ranked?,3 -10621,What is the lowest number of carriers?,2 -10624,What episode was watched by 10.81 million US viewers?,2 -10625,"How many episodes are titled ""Cops & Robbers""?",3 -10629,How many different writers have written the episode with series number 8?,3 -10635,How many release dates are there for year of 1988 and additional rock band 3 features is none?,3 -10638,"How many single / pack names are there for the song title of "" rockaway beach ""?",3 -10639,"What is the year for the genre of emo and artist is all-american rejects and song title is "" move along ""?",1 -10642,What is the most amount of goals any of the players had? ,1 -10650,How many episodes had Yutaka Ishinabe as the iron chef specializing in french cousin?,3 -10651,"What episode number originally aired on November 21, 1993?",1 -10653,How many iron chefs were there when the challenge specialty was Japanese cuisine?,3 -10658,How many qualifying start dates for the Concacaf confederation?,3 -10661,How many of 3:26.00 have a championship record?,3 -10662,How many of 3:26.00 when hicham el guerrouj ( mar ) is hudson de souza ( bra )?,3 -10666,"What is the 26 July 1983 total number if Munich, West Germany is Beijing, China?",3 -10667,"If the world record is the African record, what is the 1:53.28 total number?",3 -10669,"How many episodes have the title ""a perfect crime""?",3 -10671,Name the least finish for larry dickson,2 -10675,Name the total number of kenesia for african record,3 -10676,List the number of runners up when albertina fransisca mailoa won the putri pariwisata contest?,3 -10691,How many different counts of tue number of Barangays are there for the municipality with 13824 citizens in 2010?,3 -10694,How many circuits had a winning team of #1 patrón highcroft racing ang gtc winning team #81 alex job racing ?,3 -10698,What is the minimum capacity for Sangre Grande Ground?,2 -10699,"What is the capacity for Sangre Grande Ground, home of the North East Stars?",3 -10704,How many matches were 44?,3 -10705,What is stumped when matches is 14?,2 -10707,Name the total number of monarchs for 23 may 1059 crowned,3 -10711,"What was the earliest year where USL PDL played in 3rd, Southeast season?",2 -10713,What is the highest total for evm votes,1 -10718,How many players came from Los Angeles?,3 -10725,How many times is kenenisa bekele ( eth ) is marílson gomes dos santos ( bra )?,3 -10730,"How many production codes have an original airdate of November 16, 1990?",3 -10731,"What series number had an original airdate of March 1, 1991?",2 -10733,How many production codes were in series 39?,3 -10735,What is the production code for episode number 86 in the series?,2 -10736,"What episode number in the series is ""dance to the music""?",2 -10737,"What is the production code for the episode that originally aired on January 8, 1993?",1 -10743,"When ""body damage"" is the title how many air dates are there?",3 -10747,"How many people directed ""odd man in""?",3 -10752,"How many region 4 dates are associated with a region 2 date of July 9, 2007?",3 -10757,"How many seasons included an episode titled ""all the wrong moves""?",3 -10759,In which series was season 18?,3 -10772,What's the smallest number for cores of any of the processor models?,2 -10776,What is the earliest number in before?,2 -10777,What is the latest after when the player is Steve Stricker?,1 -10779,Name the least events for number 7,2 -10780,Name the number of events for 3031,3 -10782,Name the least points for number 6,2 -10783,Name the most number for steve stricker,1 -10784,Name the total number of points for 800 reset,3 -10786,How many votes did kennedy win when coakley won 66.2%,2 -10788,How many votes did kennedy win when coaklely won 2139 votes?,3 -10789,How many locations did the team play at on week 7?,3 -10791,Name the number of dates for alouettes,3 -10792,Name the least attendance for l 36–1,2 -10794,Name the number of record for week 11,3 -10796,Name the total number of opponent for october 3,3 -10800,"What episode in the season was ""easy as pie""?",2 -10801,What in the series number of the episode written by Lauren Gussis?,2 -10802,On how many different dates did the episode directed by Marcos Siega and written by Scott Buck air for the first time?,3 -10804,What's the series number of the episode written by Tim Schlattmann?,2 -10810,What is he smallest numbered week?,2 -10814,What is the biggest number of basses suggested in either one of the references?,1 -10841,"List the number of vacators when successors were formally installed on June 22, 1868.",3 -10851,How many hometowns have a height of m (ft 10 1⁄2 in)?,3 -10856,How many episodes were broadcast in 2010?,3 -10861,List the number of locations for the team known as the billikens.,3 -10862,"How many people are enrolled at the university in milwaukee, wisconsin",2 -10863,In what year did the teams leave the conference?,1 -10866,When 9:47:38 is the time (utc) how many measurements of latitude are there?,3 -10867,When 42.903° n is the latitude how many measurements of longitude are there?,3 -10871,What is the highest year premiered for the TV2 network when main present is øyvind mund?,1 -10872,How many years premiered have Sa Beining as main presenter?,3 -10874,What is the highest year premiered when Benjamin Castaldi is main presenter?,1 -10884,How many times was the date of vacancy 14 february 2011?,3 -10886,What is the lowest amount of L in any season? ,2 -10888,Name the total number of votes for 3rd voted out day 9,3 -10908,Name the team ranked 4,3 -10910,Name the most overall rank for nl/ua league,1 -10911,Name the total number of pitcher for 9 overall rank,3 -10912,Name the most season for old hoss radbourn,1 -10913,What week did they play the amsterdam admirals?,1 -10919,how many times was third place held by drnovice?,3 -10926,"Name the total number directed by for "" france : cap gris-nez to mont-saint-michel """,3 -10928,How many directors worked on the episode with 2.27m (5) is the ratings?,3 -10934,Name the number of rank for april 2013 for 2012 ran kbeing 225,3 -10936,Name the number of assets for australia,3 -10939,What is the score in the 6 atlas stones event of the player who got 2 (6 in 30.89s) in the 3 dead lift event?,3 -10942,When 0 is the top 10's what is the highest amount of cuts made?,1 -10943,What is the lowest overall amount of times they've been in 3rd?,2 -10944,When 2011 is the year what is the lowest money list rank?,2 -10945,What is the lowest overall money list rank?,2 -10946,When t3 is the best finish what is the lowest amount of tournaments played?,2 -10947,"What is the latest amount of won legs in the payoffs when the prize money was £2,350?",1 -10949,"What is the highest amount of group legs won when the prize money was £21,850?",1 -10950,"How many play-off legs were won when the prize money was £10,300?",3 -10951,What is the least amount of playoff legs won?,2 -10955,What episode number in the series had 2.77 million U.S. viewers?,1 -10956,Name the most times contested for montgomeryshire,1 -10958,what is the least number of podiums for a formula BMW Americas series? ,2 -10959,What is the maximum number of wins in the formula 3 euro series? ,1 -10960,How many positions were given when 30 points were won? ,3 -10961,How many pole positions were there for the 2011 season? ,1 -10967,"List the number of tournament winners when iona , siena & niagara won in the regular season.",3 -10968,What is the population of Mogilev?,2 -10970,What is the population of polish where guberniya is grodno?,2 -10975,What is the minimum 2007 USD in Kabardino-Balkaria?,2 -10984,How many times did the sounddock series II aux in?,3 -10986,How many connections aux in using FIrewire?,3 -10987,how many video out connections does the sounddock portable have?,3 -10991,"how many varsity teams are in west roxbury, ma?",1 -10994,when was lawrence academy at groton established? ,2 -10996,how many places have 17 varsity teams?,3 -10997,Which episode had bbc ranking and canle ranking of n/a?,3 -11000,How many individuals watched the show that had a bbc ranking of 6?,3 -11001,How many times did episode number 8 air?,3 -11003,How many items are listed under viewers column when the bbd three weekly ranking was 1?,3 -11004,What episode number had a cable ranking of 8?,2 -11012,What are the lowest points when poles were 0 and races were 10?,2 -11013,What was the highest number of points when flaps were 0?,1 -11020,How much power covers dumaguete central visayas region?,3 -11023,How many production codes are there for episode 10 in the season?,3 -11027,How many episodes in the series has a production code of 111?,3 -11028,"Name the total number of payout for december 28, 2009",3 -11035,What was david ferrer seeded?,1 -11037,How many players named victor hănescu played?,3 -11038,Name the kurdistan democratic party for kurdistan list being 10,2 -11039,Name the most kirdistan list for diyala,1 -11040,Name the governorate seats for hewler,2 -11041,Name the least total kurdistan list,2 -11042,Name the most total governorate seats for hewler,1 -11044,List the year that mimilannie p. lisondra was the 3rd place winner.,1 -11045,List the number of years where ritchie ocampo was the mutya ng pilipinas winner.,3 -11046,Name the number of awardees for english and hindi,3 -11049,Name the number of awardees for best cinematography,3 -11050,Name the least flaps,2 -11051,Name th most poles for macau grand prix,1 -11052,Name the total number of races for 15th position,3 -11053,Name the most races for flaps larger than 2.0,1 -11054,Name the number of poles for 15th position,3 -11060,In which week was the team record 7–2?,2 -11061,How man fans showed up to watch the game versus the raleigh-durham skyhawks?,1 -11064,What is Australia's Disposable USD growth?,1 -11065,What is the lowest disposable USD 2011?,2 -11066,Name the most minutes and starts being 12,1 -11069,Name the rank for switzerland,3 -11072,Name the total number of overall fht points for simon ammann,3 -11076,How many ships were named Carysfort?,3 -11079,How many ages for player Amy Cato?,3 -11081,How many age figures for the player fired in week 6?,3 -11087,Name the least listed owner for pete raymer,2 -11089,"What episode number in the series is ""mean teacher""?",1 -11090,"What episode number in the series is ""guitar""?",2 -11091,What is the production code for episode 3 in the season?,1 -11094,What is the lowest score of all games for match 2?,2 -11095,What is the highest score for match 2 where the score for match 4 is 0 and the total score is 5?,1 -11097,"How many sockets are listed that have a brand name of ""Core i3-2xx7m""?",3 -11104,Where was the player from se missouri state drafted?,3 -11108,How many players attended SE missouri state?,3 -11110,How many dates was knockhill?,3 -11118,How many sets were lost with a 3-dart average of 87.55?,1 -11119,How man players checked out at 84?,3 -11120,How man 3-dart averages did gary anderson have?,3 -11126,What was the minimum number for opponents?,2 -11127,What is the minimum number of opponents' points for the game at Michigan State?,2 -11129,How many opponents' points numbers are associated with the game at Ole Miss?,3 -11130,Name the total number of period for yvon le roux,3 -11132,Name the number of position for democratic republic of the congo,3 -11133,How many names correspond to the value 101 for appearances?,3 -11136,How many periods had 15 goals?,3 -11137,at least how many times was Pierre Vermeulen at a game?,2 -11140,Name the number of appearances for yugoslavia,3 -11143,Name the most goals for algeria,2 -11144,What was the lowest score.,2 -11145,List the minimum impressions for sammy traoré,2 -11147,Name the number of goals for mauricio pochettino,3 -11152,Name the most appearances for bernard allou,1 -11153,What is the highest number of goals scored,1 -11154,What is the lowest number of appearances a player had,2 -11158,how many time is the final record is 9–16–5?,3 -11162,Name the number of gn divisions for mannar,3 -11163,Name the sinhalese for manthai west,1 -11164,Name the least indian tamil for population density being 240,2 -11166,Name the total number of sinhalese for indian tamil being 177,3 -11167,Name the least area ,2 -11168,When westcott is in division one how many leagues are in division 5?,3 -11171,When racing epsom is in division two how many seasons are there?,3 -11172,When westcott 1935 is in division two how many leagues are in division three?,3 -11181,"Name the duration for vladimir vasyutin , alexander volkov",3 -11183,What was the least amount of wins when he had 10 poles? ,2 -11186,Name the most wins,2 -11187,Name the least races for carlin,2 -11190,Name the least number of believers,2 -11191,Name the most number of believers for ܓܘܝܠܢ,1 -11193,Name the number of believers for patavur,3 -11196,Name the most released for the in crowd,1 -11197,Name the most released for apologize,1 -11198,"Name the most released for right here, right now",1 -11200,When bmw activee is the vehicle type how many clean electric grid california (san francisco) measurements are there?,3 -11202,When 100 g/mi (62 g/km) is the clean electric grid california (san francisco) how many vehicles are there?,3 -11205,When 87 mpg-e (39kw-hrs/100mi) is the epa rated combined fuel economy how many operating modes are there?,3 -11211,Name the most year for money list rank is 74,1 -11216,Name the total number of top 10 for avg start being 37.3,3 -11218,what is the maximum number that entered when the eliminator was Triple H? ,1 -11219,How many wrestlers are recorded for the chamber that's method of elimination was pinned after being hit by a lead pipe? ,3 -11232,How many original air dates for the episode written by David H. Goodman & Andrew Kreisberg?,3 -11233,What is the most recent episode number written by Matthew Pitts?,1 -11234,How many records for number of viewers is listed for episode number 8? ,3 -11237,How many episodes had 11.47 million viewers? ,3 -11239,"What was the production code for the episode that debuted October 1, 1993?",1 -11249,When 15 is the number in season what is the highest number in series?,1 -11254,"How many victors where there in the War of 1730–1736 , first stage?",3 -11261,What is the last year total for the team with a lowest of 23578?,1 -11262,How many highest figures for the team with lowest of 16415?,3 -11265,How many episodes had celebrity guest stars Frank Skinner and Lee Mack?,3 -11285,"How many final score datas are there on Sunday, May 12?",3 -11286,"The game on Saturday, May 25 took place on which week?",2 -11289,When 6.66 is the amount of viewers what is the lowest production code?,2 -11290,When 7.55 is the amount of viewers what is the lowest number?,2 -11291,"How many figures are given for the New Democratic for the polling range May 11–31, 2010?",3 -11293,"When ""gary is a boat guy"" is the title how many sets of viewers are there?",3 -11295,When 3 is the number what is the highest total?,1 -11297,When 7.08 is the amount of viewers how many directors are there?,3 -11299,"How many dates originally aired episodes located in Philadelphia, pennsylvania?",3 -11301,How many original air dates were there for episode 22?,3 -11302,What was the lowest goals ever achieved?,2 -11304,how many bosnian in cook islands is macedonian,3 -11310,What is the assists total number if the minutes is 1?,3 -11311,What is the appearance maximum if the starts is 18?,1 -11313,What's the maximum wickets taken by players named Bill Lockwood?,1 -11318,How many turbine manufacturers installed a capacity of 189 MW?,3 -11323,What was the largest attendance at the Rheinstadion?,1 -11333,How many assists did the player who had 121 rebounds have? ,1 -11334,How many field goals did the player who had 8 blocks have? ,2 -11335,How many assists did the player who had 863 minutes have? ,2 -11340,How many results did the GT1 Winning Team No. 50 Larbre Compétition on the Algarve circuit?,3 -11341,How many winning teams are there on LMP2 if Gabriele Gardel Patrice Goueslard Fernando Rees was the GT1 Winning Team on the Algarve circuit?,3 -11343,What was the maximum round where Marc Lieb Richard Lietz was on the GT2 Winning Team?,1 -11344,How many won the LMP1 on round 4 if No. 42 Strakka Racing was the LMP2 Winning Team?,3 -11346,How many blocks did tye'sha fluker have?,2 -11347,What is the highest number of steals for a player with 324 minutes?,1 -11348,What is the lowest number of minutes for a player with 47 steals?,2 -11356,What is the highest tie that had 19129 attendance?,1 -11359,How many dates are there for tie number 12?,3 -11360,When 556 is the amount of points how much equipment is there?,3 -11363,What is the maximum number of minutes associated with exactly 70 field goals?,1 -11364,What is the minimum number of field goals associated with exactly 84 assists?,2 -11366,List the number of takeaways with 1 rejection.,3 -11367,How many long range shots did tonya edwards make.,3 -11368,List the number of long range shors where the score is 171.,3 -11380,How many episodes received rating of 8.2?,3 -11382,"How many share figures are there for the episode that aired on October 17, 2007?",3 -11383,"How many episodes aired on October 17, 2007?",3 -11384,How many timeslots received a rating of 5.7?,3 -11385,How many writers are listed when the U.S viewers are 11.21 million?,3 -11390,How many titles are listed with 8.44 million viewers?,3 -11392,"When the episode called ""the parent trap"" airs, what is the weekly rank",3 -11393,"What is the share value of the episode ""sins of the father""",1 -11395,How many field goals had 597 points?,3 -11396,How many minutes were played by Sue Bird?,2 -11397,What is the maximum number of rebounds for players having exactly 35 steals?,1 -11399,How many numbers of rebounds are associated with exactly 18 points?,3 -11400,What is the maximum number of assists for players named Anastasia Kostaki?,1 -11401,What is Tiffani Johnson's maximum steals?,1 -11403,How many field goals does the player with 84 rebounds have?,2 -11406,Name the most number,1 -11408,Name the most number,1 -11427,What was the maximum week that had attendance of 10738?,1 -11437,"How many episodes had the title ""Rise and Fall""?",3 -11441,How many weeks total are there?,1 -11443,What is the lowest overall number of 09-10 oi 2nd?,2 -11444,What is the lowest overall number for 09-10 oi 2nd?,2 -11445,What was the maximum 09-10 i/o best?,1 -11446,"If 09-10 i/o best is 972, what is the 09-10 gp/jgp 2nd maximum?",1 -11457,How many entries are there for vote when the air date was 15 november 1997?,3 -11459,How many values for Macedonian correspond to Slovianski value of Veliki?,3 -11467,Name the least pick number for steven turner,2 -11472,How many episodes were numbered 5?,3 -11481,Name the first elected for alabama 3,3 -11488,In what year was cumulus founded?,2 -11493,how many models produced where the plant is castle bromwich?,3 -11499,Name the number of district for tom marino,3 -11503,Name the number of district for bill shuster,3 -11504,List the total play time for 11 starts.,1 -11513,How many regions had 153 women prison inmates?,3 -11514,How many regions had an incarceration rate for females of 63?,3 -11515,What is the male incarceration rate of maule?,1 -11523,How many regions have 0.5% solar panels?,3 -11525,What is the production number of 3-04?,1 -11527,When don inglis and ralph smart are the writers how many episode numbers are there?,3 -11528,Name the number of schools for 1011/12 is 26,3 -11530,Name the number of regions for 2013/14 being 27,3 -11531,Name the most 2012/13 for university of cambridge,1 -11537,"If the episode was directed by Michael Offer, what was the episode number?",2 -11538,"How many directors directed the episode titled ""Incoming""?",3 -11542,How many draft picks were for Winnipeg blue bombers?,3 -11543,How many colleges provided players with positions LB?,3 -11547,What number pick was Danny Walters in the 1983 NFL draft?,3 -11553,How many colleges have the NFL Team Buffalo Bills?,3 -11556,Name the least pick number for the denver broncos,2 -11558,Name the total number of pick number being henry ellard,3 -11560,Name the number of players for georgia tech,3 -11561,Name the most pick number for guard and kansas city chiefs,1 -11564,Name the most pick number for illinois,1 -11565,Name the total number for nfl team for ellis gardner,3 -11568,how many l2 cache has a clock speed to tdp ratio of 46.7?,3 -11571,How many players were the running back draft pick for the New England Patriots?,3 -11574,What is the Cuchumela Municipality minimum?,2 -11576,What is the language total number if the Tacachi Municipality is 3?,3 -11577,"If the language is another native, what is the San Benito Municipality total number?",3 -11578,"If the language is Spanish, what is the Vinto Municipality minimum?",2 -11579,"If the Vinto Municipality is 18630, what is the Quillacollo Municipality?",1 -11580,What is the Sipe Sipe Municipality minimum if the language is Quechua?,2 -11581,"If the language is Native and Spanish, what is the Vinto Municipality minimum?",2 -11582,"If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum?",2 -11584,Name the most padilla municipality for quechua,1 -11586,Name the number of tomina for villa alcala for 176,3 -11587,Name the least tomina for el villar being 4,2 -11589,Name the total number of games for goals against being 352,3 -11590,Name the total number of games for lost being 41,3 -11591,Name the most goals for 56 points,1 -11592,Name the number of won for goals for being 274,3 -11599,"What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma?",2 -11603,Name the most number for notre dame prep,1 -11605,Name the stolen ends for germany,2 -11606,Name the least ends won for pf being 78,2 -11609,What is the largest capacity for a stadium?,1 -11611,How many capacities are given for FF Jaro club?,3 -11612,How many managers for club in Turku where kitmaker is Puma?,3 -11613,How many times was episode 5 in the series aired on Fox int.?,3 -11616,How many competitions had a final score of 15.650?,3 -11623,What are the number of points for associated with exactly 3 stolen ends?,3 -11624,How many position did a player took while weighing 170?,3 -11631,"If the registered voters is 66.8%, what is the minimum population?",2 -11634,"If the city is Santa Clara, what is the population total number?",3 -11636,How many previous years did Maebashi Ikuei high school have a total number of 1 participation?,3 -11643,How many datas were recorded on January 15-16 if August 21-22 is 155?,3 -11645,How many data are on points for if the percentage is 94.29?,3 -11647,What was the minimum points against if the opponent is Port Adelaide?,2 -11649,What is the Tuesday 1 June total number if Monday 31 May is 20' 15.35 111.761mph?,3 -11651,"If Tuesday 1 June is 21' 05.27 107.351mph, what is the rider total number?",3 -11652,"If Tuesday 1 June is 20' 59.60 107.834mph, what is the rank maximum?",1 -11655,How many times are listed for 31 May for the rider ranked 5?,3 -11658,"How many times does November 3rd occur when January 15, 1991 does?",3 -11660,"How many times does an occurance happen in June when it happens on NOvember 3, 1975?",3 -11662,How many numbers are there for August when March is 139?,3 -11663,How many teams have been in Topperserien for 8 seasons? ,3 -11664,What is the maximum number of seasons for any team? ,1 -11669,How many data was given the total electricity in GW-h if the renewable electricity w/o hydro (GW-h) is 3601?,3 -11670,How many data was given the total electricity in GW-h if % renewable is 92.3%?,3 -11671,What was the maximum rank of the source with renewable percentage w/o hydro is 2.17%?,1 -11672,How much was the minimum renewable electricity (GW-h) that is ranked 36?,2 -11679,How many different original U.S. air dates appear where the U.S. viewers were 2.5 million?,3 -11682,Name the least rank,2 -11684,Name the total number of rank for east midnapore,3 -11685,Name the total number of rank for growth raate for 14.47,3 -11688,What was the largest index the year/s forcible rapes numbered 1084? ,1 -11689,How many violent catagories are listed for the year forcible rapes were 1156? ,3 -11690,What was the largest number of aggravated assaults when there were 3811 robberies? ,1 -11695,"What episode number in the series is ""tough love""?",1 -11696,"""It's not my job"" is the minimum title in no. in season.",2 -11722,"How many solar eclipse during August 21-22 where June 10-11 on June 11, 1983?",3 -11726,Name the fastest lap for round 14,3 -11731,How many laps where the position is 10th and the races is smaller than 9.0?,3 -11732,What is the lowest amount of races?,2 -11742,What was the highest share?,1 -11744,What is the lowest attendance?,2 -11746,How many players 89 points?,3 -11747,"If the Steals are 20, what are the blocks?",1 -11751,How many episodes were directed by Michael McCullers?,3 -11752,When 3rd is the position what is the lowest amount of points?,2 -11753,When art grand prix is the team and 2010 is the season how many wins are there?,3 -11755,What is the lowest overall amount of poles?,2 -11760,What is the capacity for a facility opened in 1956?,3 -11763,What is the fewest steals any player had?,2 -11764,How many steals did Kelly Miller have?,2 -11768,How many years did the school have a mathetmatics score of 98.02?,3 -11771,How many values for points have Sophia Witherspoon as the player?,3 -11772,What is the highest value for points?,1 -11778,how many times is march 27-29 is 129?,3 -11784,How many entries are shown for november 3 when january 15-16 is 141?,3 -11789,Name the number of teams for 11th position september 10,3 -11791,Name the most number for charvez davis,1 -11792,Name the most height,1 -11793,Name the number of home town for number being 32,3 -11794,Name the total number of height for number 32,3 -11797,How many wins did Canterbury Wizards have?,1 -11799,What's the largest number of abandoned games by any of the teams?,1 -11800,How many different net run rates did the team with 19 total points have?,3 -11802,What was the earliest season where a team got a 29th position?,2 -11805,How many team position scored 56 points?,3 -11807,How many game sites are there where the team record is 1–7?,3 -11813,How many letters were given to the organization with a founding date of 1997-12-12? ,3 -11814,What is the song choice where the original artist is Gino Paoli?,3 -11821,how many types of organization were founded in san diego state university? ,3 -11823,Name the season for position 4th,3 -11824,Name the least f/laps,2 -11825,Name the least podiums for 9th position,2 -11826,How many results are listed for shot PCT Where PA is 79?,3 -11831,How many f/laps did Pedro Nunes have when he was in 20th position?,3 -11833,What is the fewest number of races Pedro Nunes completed in any series?,2 -11834,What is the most podiums Pedro Nunes had when in 17th position?,1 -11845,What is the rank by average for the team who averaged 22.8?,2 -11848,What is the smallest rank by average for a team averaging 22.8?,2 -11851,How many entries for Italian correspond to the Conservative Central Italian of Unu?,3 -11856,"If the location is Yangon, Myanmar, what is the opponent total number?",3 -11857,How many provinces are named 青海省 qīnghǎi shěng?,3 -11858,What is the area of the province with a density of 533.59?,1 -11859,How many provinces have a density of 165.81?,3 -11861,How many gb's have an iso number of cn-65?,3 -11863,What is the fewest amount of races in any season? ,2 -11864,How many races were there when Sigachev had 38 points?,2 -11867,what is distance for the 7th position?,3 -11879,How many casinos are associated with a FY2009 $mil value of exactly $279?,3 -11882,What is the smallest height associated with Honduras?,2 -11884,What is the number of contestants who are aged exactly 18?,3 -11885,"What is the number of contestants who are 5'7"" and exactly 26 years of age?",3 -11888,How many games were played on november 27?,3 -11891,How many rounds did João Victor Horto achieved the fastest lap?,3 -11893,How many rounds did Alex Ardoin achieved a fastest lap?,3 -11895,How many time is the theme rotary international : 100 years in canada?,3 -11898,How many times is the theme roadside attractions: wawa goose?,3 -11909,How many picks are there with an affiliation is the University of California Norcal Lamorinda United?,3 -11911,How many players have an affiliation with University of Maryland?,3 -11914,When was the University founded that joined in 1978?,1 -11915,When was Piedmont College founded?,1 -11916,When were the Avenging Angels founded?,1 -11926,Name the horizontal number for number 10,3 -11927,How many teams drafted players from the University of Maryland?,3 -11931,"How many inputs joined this institution located in Franklin, Indiana?",3 -11932,How many times this institution was founded that was nicknamed Beavers?,3 -11944,Name the year for open cup did not qualify and national final,3 -11949,Name the total number of tests won by australia for series 10,3 -11950,How many winners were there when the mountains classification was not awarded? ,3 -11953,"What is the production code for he episode titled ""my best friend's baby's baby and my baby's baby""",2 -11954,List the number of episodes directed by linda mendoza.,3 -11956,What is the series number that had 5.31 million viewers?,1 -11964,What is the minimum number of barangays where the type is component city?,2 -11967,What is the population density where area is 48.67?,3 -11969,What was the number of dances for the competition finish of 3?,1 -11970,What was his minimum number wins in a single year?,2 -11980,How many elapsed times were posted for the yacht with 27.38 LOA meters? ,3 -11986,How many winners were there for stage 5?,3 -11987,What is the 2007 population of Gigmoto?,3 -12003,How many races was Loki in?,3 -12014,How many states is Grant Wharington from?,3 -12015,How many times are provided for the boat with LOA of 20.49?,3 -12016,The date first lit is 1853 total number of current status.,3 -12030,How many episodes directed by david carson?,3 -12034,How many populations are listed for mladenovo? ,3 -12037,What is the enrollment for the hawks? ,1 -12038,What is the enrollment for the institution that joined in 1987? ,2 -12040,How many 2011 populations have a Cyrillic name of футог?,3 -12041,What is the number of 2002 populations having a 2011 population of exactly 5399?,3 -12042,What is the number of 1991 populations named Bečej?,3 -12044,What is the number of 2011 populations having a 2002 population of 29449?,3 -12045,What is the number of cities/municipalities having an urban settlement of Srbobran?,3 -12053,How many places have as their cyrillic name and other names његошево?,3 -12064,Name the population for александрово,3 -12067,How many entries are there for type for the cyrillic name other names is падина (slovak: padina)?,3 -12071,How many entries are there for cyrillic name other names where settlement is idvor?,3 -12074,What is the largest ethnic group in the settlement with a 2011 population of 5082?,3 -12077,What is the population of the settlement with the cyrillic name of добрица?,1 -12080,What was the population in 2011 of the settlement with the cyrillic name of ватин?,1 -12086,How many types of settlement if Neradin?,3 -12089,How many different types of settlements does Nova Pazova fall into?,3 -12092,How many dominant religions were in the settlement that had a population of 17105?,3 -12093,What was the population of сурдук in 2011?,3 -12094,When extending eminent domain over roads and ways is the description what is the highest means number?,1 -12095,When restoring capital punishment is the description how many types are there?,3 -12096,What is the lowest overall amount of no votes?,2 -12098,What is the population (1991) where population (2002) was 14250?,3 -12099,What is the population (1991) when cyrillic name is панчево?,2 -12102,How many items appear in the population 2011 column for the krčedin settlement?,3 -12104,What is the lowest population in 2011 for the settlement of čortanovci?,2 -12106,What was the lowes population of 2002 when the 2011 population was 30076?,2 -12113,What is the largest number of yest votes for the measure with 61307 no votes?,1 -12116,What is the lowest measure number for the measure with a 33.57% yes percentage?,2 -12119,List the total number of constitutional amendments for a five cent gasoline tax bill.,3 -12123,What is the number of the tax supervising and conservation bill?,2 -12124,How many ballot measures had a percentage yes of 52.11%?,3 -12126,How many measures had a yes vote of 216545?,3 -12127,What is the highest measure number?,1 -12129,How many types are there for the measure where there were 312680 yes votes?,3 -12130,How many figures are there for No votes for the Forest Rehabilitation Debt Limit Amendment?,3 -12133,How many votes passed are listed on the measure that had 390338 yes votes? ,3 -12135,What is the aggregate number of yes votes where no votes is littler than 299939.1619948521 and % yes is 66.49%,3 -12137,What is the highest measure number?,1 -12138,How many measures numbered 8 were a constitutional ammendment?,3 -12139,"How many type classifications are given to the measure with the description, calling convention to revise state constitution? ",3 -12142,"When the no votes was 322682, what was the max meas. number?",1 -12144,How yes votes were there for measure 4? ,1 -12146,What was the lowest measure number? ,2 -12149,How many data are there under NO vote with a description of $1500 tax exemption amendment?,3 -12151,How many type catagories are listed when the percentage of yes is 68.91%?,3 -12154,How many points did art renner have?,3 -12155,How many touchdowns did bill culligan have?,3 -12156,What was the highest number of touchdowns by a player?,1 -12157,How many points did robert stenberg have?,2 -12162,"When ""the 37-year itch"" is the title what is the lowest series number?",2 -12163,When 12 is the season number how many series numbers are there?,3 -12166,How many stages are there?,1 -12167,How many sprint classifications are there where marco frapporti is the winner?,3 -12169,What is the maximum ITV1 weekly ranking?,1 -12172,What is the minimum ITV1 ranking for the episode having viewership of 5.42 million?,2 -12173,What episode number in the series was viewed by 13.66 million people in the U.S.?,1 -12178,How many episode numbers are there on the show whose first couple was Stuart and Pegah>?,3 -12181,How many races went for 10 rounds?,3 -12187,Name the number of finishes for 15 entries 15 and l'esprit d'equipe,3 -12188,Name the most legs for steinlager 2,1 -12196,"How many introductory phrases are there with ""the wørd"" is ""unrequited gov""?",3 -12199,What is the episode # when the guests were julie nixon eisenhower and david eisenhower?,2 -12202,What was the smallest production code for August 11's original episode?,2 -12203,How many introductory phrases were there on David Finkel's guest episode?,3 -12204,What was the minimum number of the episode that first aired August 11?,2 -12208,How many production codes were there for the episode that aired on November 15?,3 -12213,How many types of valves were used on this engine that was built on 1902-05?,3 -12221,"What is the highest birth/2013 when the death/2012 is 14,1?",1 -12222,"What is the highest death/2013 when the death/2012 is 12,7?",1 -12224,How many figures for birth/2013 when January-September is Oryol Oblast?,3 -12226,How many maximum points did Curtis scored?,1 -12227,How many touchdowns did the left guard took?,1 -12228,How many numbers were recorded on the fields goals of the Left End player?,3 -12229,What was the minimum touchdowns of the Fullback player?,2 -12230,How many touchdowns did the fullback score?,2 -12231,How many figures are provided for Weeks' field goals?,3 -12232,What is the most points recorded for a right halfback?,1 -12236,What season was an episode directed by wendey stanzler?,1 -12240,what season was written by jonathan collier?,1 -12241,How many episodes were written by Tom Scharpling and Daniel Dratch?,3 -12242,How many people directed the episode that Joe Toplyn wrote?,3 -12243,How many titles does the episode written by Joe Toplyn have?,3 -12244,How many directors of episode 55?,3 -12245,How many titles are there for the episode written by Tom Scharpling? ,3 -12246,Which episode number aired on 18 october 2012?,2 -12247,What is the lowest cable rank of an episode with 1464000 viewers?,2 -12248,What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers?,1 -12249,How many episodes aired on 25 october 2012?,3 -12253,How many region 1's did back to earth have?,3 -12254,How many field goals did Walter Rheinschild have? ,1 -12256,How many points did Donald Green score?,3 -12257,How many field goals did Donald Green score?,3 -12258,What was the least amount of points scored?,2 -12259,How many extra points did Stanfield Wells make?,3 -12260,What are the most points listed?,1 -12263,What were the least amount of field goals when Frederick L. Conklin played?,2 -12264,What is the least number of extra points? ,2 -12266,How many touchdowns did the player with 10 points have?,2 -12267,How many points does George M. Lawton have?,1 -12269,Name the least extra points,2 -12270,Name the least extra points,2 -12274,How many episodes with the production code CA106 are there?,3 -12276,How many episode were written by Brett Conrad?,3 -12277,How many episodes were directed by Tim Matheson?,3 -12278,How many episodes were directed by Rod Hardy?,3 -12280,How many original air dates are there for the episode with code CA210?,3 -12282,How many episodes had rating/share (18-49) of 0.7/2 and a rating of 2.1?,3 -12283,What is the lowest episode number that had a ratings/share (18-49) of 1.1/3?,2 -12285,What is the lowest rank of an episode with a rating/share (18-49) of 1.3/4?,2 -12287,error (see notes),2 -12292,How many rounds were played on May 8?,3 -12296,Name the least episode number for anne brooksbank and vicki madden,2 -12305,"What is largest series number for the episode that aired February 16, 1957?",1 -12309,"What is the season # for the episode with air date february 2, 1970?",1 -12316,How many directors worked on #158?,3 -12317,How many writers were for season #1?,3 -12320,Name the number of title for number in series being 25,3 -12321,What was the latest stage won by Mikhail Ignatiev? ,1 -12330,How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter?,3 -12331,How many entries are shown for an air date when the team guest captain was stephen k amos?,3 -12337,"What is the series # of ""tanarak""?",2 -12340,how many times was the exposures 53?,3 -12347,How many notes are there for the Devon Alexander vs. Shawn Porter fight?,3 -12350,"What was the division number for Verona, USA?",3 -12352,How many opengl have the ironlake ( clarkdale ) code name?,3 -12354,What's the minimum number of execution units?,2 -12355,How many shader models have a 900 core clock ( mhz )?,3 -12356,What is the population for the place with an area of 2.33 km2?,1 -12357,How many places named asan-maina?,3 -12358,How many places named mongmong-toto-maite?,3 -12359,What is the population density of mongmong-toto-maite?,2 -12362,How many POS when the average is 1.8529?,1 -12363,How many 07 A points for the team with 1.4902 average?,1 -12364,How many figures for 08 A points for the team with 1.1863 average?,3 -12365,What is the largest number of 10 C points for a team with 39 total points?,1 -12368,What episode number was written by Anthony Sparks?,2 -12370,What episode number was written by Karin Gist?,1 -12377,What year was the school with green and white colors founded?,1 -12379,How many catagories for denominations does Austria have? ,3 -12383,how many times is the name of film narmeen?,3 -12387,What is the highest Jews and others 1?,1 -12388,What is the lowest jews and others 1 for the localities 11?,2 -12390,What is the lowest total when arabs is 4000?,2 -12392,How many cash prizes were given for the hindi language film jodhaa akbar?,3 -12393,How many films were in hindi?,3 -12394,How many films were in assamese?,3 -12397,Name the total number of dates for toshiba classic,3 -12399,Name the total number of winners for allianz championship,3 -12402,How many dances did John Barnes have? ,2 -12403,What is the age of the celebrity who had a 402 aggregate? ,1 -12404,What was the aggregate for Ricky Groves?,1 -12413,What is the number of wounded figures associated with a complement of 22 off 637 men?,3 -12414,What is the number of commanders that had 0 off 63 men killed?,3 -12416,How many regions had rainfall infiltration (km 3/year) of 9.3?,3 -12422,"How many wins did Parsons have in the year where his winnings were $90,700? ",1 -12426,How many mountains classifications when Rui Costa is the winner?,3 -12429,what is the latest episode in the series that had 16.17 million u.s. viewers?,1 -12431,What Nature reserve number was established on 19961220 20.12.1996,2 -12432,How many reserves were established on 19740329 29.03.1974?,3 -12435,"How many reserves are in Herzogtum Lauenburg with an area of 123,14?",3 -12436,How many names does nature reserve 54 have?,3 -12439,What is the highest localities?,1 -12440,What is the least arabs when the metropolitan ring is inner ring 3?,2 -12441,How many time is the population density (per km²) is 2.5?,3 -12443,What is the number of stages where the teams classification leader is Cervélo Testteam?,3 -12444,How many stages did Team Sky lead the teams classification?,1 -12446,How many production codes are there for episode number 45?,3 -12449,"How many production codes does the episode ""keg! max!"" have?",3 -12456,"How many episodes are titled ""like mother, like daughter""?",3 -12463,What is the minimum die size for an SM count of exactly 2?,2 -12464,How many die sizes have a texture of exactly 34?,3 -12469,What is the MDR number of Rait Charhi Dharamshala?,2 -12470,What is the Sr. number of Banikhet Dalhouse Khajiar?,1 -12471,What is the smallest number of runs?,2 -12472,How many innings are there when the average is 32.3?,2 -12474,What is the catches maximum number?,1 -12475,"If the player is Hashan Tillakaratne, what is the catches minimum?",2 -12477,What is the ranktotal number if the Hashan Tillakaratne?,3 -12478,"If the catches is 131, what is the rank total number?",3 -12479,What was the maximum burglary statistics if the property crimes is 168630?,1 -12481,How many vehicle thefts data were recorded if forcible rape is 1232?,3 -12482,How many vehicle theft data were recorded for a year with a population of 4465430?,3 -12483,What was the minimum property crimes stats if the burglary committed was 45350?,2 -12487,What is the lowest number of matches for a record holder?,2 -12496,Name the total number of peletier for shortscale comparison billion,3 -12506,What was the earliest year?,2 -12513,How many city/municipalties have an area (km2) of 506.64?,3 -12514,How many places have an area of 409.41 (km2)?,3 -12516,How many places are named manolo fortich?,3 -12521,What episode number in the season had 1.05 million U.S. viewers?,1 -12539,"How many titles are there for the original air date April 3, 2012?",3 -12541,What's the whole range of united states where road race is ottawa marathon,3 -12543,How many times a year is the Brighton Marathon held?,3 -12545,How many times a year is the Paris 20k road race held?,3 -12552,what is the number of teams where the record is 0-1,3 -12557,"How many races were in fukuoka, japan?",3 -12558,How many times is the vessel operator canadian coast guard?,3 -12561,How many episodes had the production code 66210?,3 -12563,How many episodes were directed by james quinn?,3 -12565,What is the lowest brup when long is 94?,2 -12566,What is the lowest gp?,2 -12567,What is the highest ff when solo is 56?,1 -12570,what are the maximum f/laps?,1 -12572,what are the minimum poles?,2 -12577,How many titles have directors of matthew Penn and number in series of 143?,3 -12578,How many numbers in series were for the number in season of 8?,3 -12580,Which season had k0104?,1 -12587,How many have the colors blue & gold?,3 -12591,What is the highest enrollment schools that joined the mac in 1997?,1 -12592,What is the enrollment at delaware valley college?,1 -12593,What year did the the school with the nickname eagles join the mac?,2 -12600,"How many different items appear in the enrollment column that joined in 1931, 1949 1?",3 -12602,When was the earliest founded university?,2 -12605,How many values for joined occur at Guilford College?,3 -12608,What is the least value of joined?,2 -12612,What numbered episode had 11.96 million US viewers?,1 -12613,"How many episode numbers were directed by Steven DePaul and titled ""Sudden Flight""?",3 -12618,What is the weeks rank for the episode with the production code 1alf05? ,1 -12619,How many air dates does the episode with 15.50 million viewers have? ,3 -12621,How many points were scored against the Toronto Rebels?,1 -12622,How many points did the Toronto Downtown Dingos score?,2 -12625,How many losses does Central Blues have?,1 -12626,"if the estimated exposure ( mrem )/hr* is 0.28, what is the specimen weight/size?",3 -12629,"If the specimen weight/size is 1000 g / 8.79 cm, what is the calculated activity?",3 -12631,How many times is player Stanislas Wawrinka on the list?,3 -12633,how many time was points 6675?,3 -12634,What is the lowest points won from player victoria azarenka?,2 -12636,What is the highest sd when the status is second round lost to iveta benešová?,1 -12637,How many clubs were founded in the westfalenstadion stadium?,3 -12639,How many clubs were founded in belo horizonte?,3 -12641,What is the minimum number of f/laps?,2 -12642,How many seasons have points totals of N/A?,3 -12643,What is the maximum number of wins?,1 -12644,"How many production codes does ""number one"" have?",1 -12646,How many different starts had an average finish of 17.9?,3 -12649,How many directors were there for season 3 episode 1?,3 -12650,"How many times did the episode ""team impossible"" originally air?",3 -12655,"how mant different day names in old English were coined from the Latin day name ""dies iovis""?",3 -12656,how many different meanings does Wednesday have?,3 -12663,When was alfred university founded?,1 -12666,Name the number of locations for geneva college,3 -12668,How many season 4 appearances are there by Mrs. Jennifer Knight?,2 -12669,How many season 3 appearances by Morgan the Dog?,1 -12671,How many season 3 appearances by the character played by Stefan Van Ray?,2 -12675,How may results had the theme inspirational?,3 -12680,How many times is the original artist Alicia keys?,3 -12690,What is the number of song choices where the original artist was Bright Eyes?,3 -12693,"What was the number of weeks that had a Billboard Hot 100 Hits theme, an order number of 3, and an original artist of Sixpence None the Richer?",3 -12694,How many joined the Warriors?,3 -12699,How many results are there with the theme Group Round?,3 -12701,How many themes are there where the order # is 9?,3 -12704,Name the total number of founded for public and 780 enrollment,3 -12708,what is the total number of nicknames for southwestern college?,3 -12713,how many series had 6.55 u.s. viewers (million) and were directed by pete michels,3 -12715,how many u.s. viewers (million) have seen a production written by chris sheridan & danny smith,3 -12720,How many schools left in 2002-03?,3 -12723,How many locations have a school that is nicknamed the Panthers?,3 -12724,How many sprints classifications were associated with an overall winner of Joaquin Rodriguez?,3 -12728,How many winning constructor catagories are there when Mark Webber had the fastest lap? ,3 -12730,What year was the institution of St. Catharine College founded?,2 -12733,How many times was the result is hired by serepisos?,3 -12734,What is the age when the result is fired in week 8,2 -12736,How many times was the background self-employed - media agency?,3 -12737,How many times was the background university student?,3 -12744,How many dates are there in round 3?,3 -12745,Name the least series number written by brenda hampton and directed by burt brinckerhoff,2 -12749,How many top 10's did Pearson have the year he was in 8th position? ,2 -12752,how many times was the episode directed by maury geraghty originally aired? ,3 -12760,Name the number of semi final results for 12 performance order,3 -12769,How many names correspond to an area of 8.12?,3 -12774,How many times was lakpa tashi sherpa ( bhu ) w pts 12-5 in round of 32?,3 -12779,What date was the district incumbent Saxby Chambliss elected? ,1 -12781,How many elected catagories are there for the district with Saxby Chambliss as the incumbent? ,3 -12783,how many party classifications are there for the incumbent Mac Collins? ,3 -12791,What is the maximum date for a mintage of 150 and a KM number of S66?,1 -12799,How many years are there where the the under-15 is Arturo Salazar Martinez and the under-19 is Moises Galvez?,3 -12801,What is the election date for those politicians who left office on 1850-11-15?,3 -12806,When united arab emirates is the country how many fastest qualifying are there?,3 -12813,List the lowest number of assists.,2 -12820,How many couples had a vote percentage of 9.5%?,3 -12821,What was the lowest judge rank for danny and frankie?,2 -12824,What is the change in population since 1993 in the region where the % of country's population was 4.2? ,3 -12828,What is the channel number for TBS?,2 -12829,How many channels are there in the Greater Tokyo area?,3 -12831,How many times is the voting percentage 10.7%,3 -12835,How many judges were there when the result is safe with a vote percentage of 10.7%?,2 -12836,How many times was the vote percentage 15.0%?,3 -12837,What is the least place when the couple is Keiron & Brianne?,2 -12838,How many numbers of dances for place 1?,3 -12839,How many ranks by average when Keiron & Brianne are the couple?,3 -12841,How many ranks by average for the couple Tana and Stuart?,3 -12845,Name the total number for 3 public,3 -12846,What is the number of directors for the film title Eldra?,3 -12854,How many different years was the name/designation cetme?,3 -12856,How many singles does Lisa Stansfield have?,3 -12859,Name the least week for l 26–42,2 -12861,Name the most attendance,2 -12864,How many times were the 2010 candidates Judson hill (r) unopposed?,3 -12867,"what number is the episode ""there will be bad blood"" in the series?",2 -12871,How many cast members had sydney walker as their fresh meat partner?,3 -12874,"How many people were from portland, or?",3 -12878,How much absorption in nm does the orange dye have?,2 -12880,What is the lowest dye absoprtion in nm?,2 -12882,"What is the code of production in the chapter ""high top fade-out""",3 -12884,How many different production codes are there for the episode with 4.69 million US viewers?,3 -12888,How many times was mj rodriguez cast?,3 -12893,What season number in the season has production code 210?,2 -12897,How many air dates had 3.2 million viewers?,3 -12898,What is the highest production code?,1 -12900,What is the total number of times points were listed when the distance was 41.05 metres?,3 -12902,What is the highest rank where the distance is 52.73?,1 -12904,What is the most adjusted points for Great Britain?,1 -12909,Name the total number of rank for tom churchill,3 -12911,What is the number of monarchs that had Yan Maw la Mon as the heir?,3 -12917,How many times was the monarch singu?,3 -12927,How many new conferences are in the NCLL deep south conference?,3 -12934,Name the most join date,1 -12935,Name the least join date,2 -12938,"How many ""series"" were in the 12th ""position?",3 -12939,How many teams were at 10 points?,3 -12941,Where did he finish when he started at 21.6?,3 -12944,How many vocal parts are there when the year of songs original release date as listed in rock band 3 was 2000?,2 -12945,How many different genres appear for the Jimi Hendrix Experience?,3 -12951,"How many different people wrote the episode ""Beautifully Broken""?",3 -12952,How many episodes were written by Alexander Woo and directed by Scott Winant?,3 -12953,Name the most round for jordan cameron,1 -12965, What is the lowest Nick production number? ,2 -12967,What was the latest season with a nick production number of 942?,1 -12976,When 2012 (85th) is the year (ceremony) how many results?,3 -12986,How many are directed by episodes with the production code 3T5009?,3 -12997,How many incoming managers did Burnley have?,3 -13002,How many Spanish word is there for the Portuguese bem-vindo?,3 -13014,What is the lowest overall amount of rainfall totals (million m 3)?,2 -13015,When cabarita river is the hydrographic basin what is the lowest groundwater discharge (million m 3)?,2 -13020,Name the number of average for steals per game,3 -13024,how many times is the jewel malachite?,3 -13027,How many different circuits had Gary Gibson has the Lites 1 race two winning team?,3 -13033,WHat is the highest difference?,1 -13035,What is the highest lost?,1 -13037,How many times is the nation [[|]] (19)?,3 -13041,How many people won the election in the Pennsylvania 11 district?,3 -13042,How many times did the incumbent was first elected and then lost re-election anti-masonic gain?,3 -13045,How many incumbents was first elected in the Anti-Masonic party?,3 -13047,Name the number of first elected for thomas maxwell (j) 60.1% david woodcock (aj) 39.9%,3 -13054,How many times was the result was re-elected and the party was anti-masonic in the district Pennsylvania 24?,3 -13056,"In Ghent in 2011, what was the rank-qualifying value when the score-qualifying value was 14.850",1 -13057,What was the maximum rank-final score on the floor exercise?,1 -13058,What was the maximum rank-final value for a score of 14.975?,1 -13060,"how many ""Party"" are in district south carolina 2?",3 -13064,How many people were first elected when john roane was the incumbent?,3 -13071,How many district has a candidate that was first elected on 1811?,3 -13083,How many people won the election in the district of Virginia 4?,3 -13088,Name the result for north carolina 9,3 -13090,Name the result for thomas h. hall (dr) 53.0% william clarke (f) 47.0%,3 -13095,How many times is the candidates charles f. mercer (f) 100%?,3 -13096,how many times was the incumbent is john b. yates?,3 -13099,how many times were the candidates thomas h. hubbard (dr) 51.5% simeon ford (f) 48.4%?,3 -13103,Name the most first elected,1 -13104,Name the number of candidates for samuel d. ingham,3 -13111,How many districts have John C. Calhoun as the incumbent?,3 -13116,How many districts first elected someone in 1808 and had george smith as the incumbent?,3 -13119,How many parties were first elected in 1805?,3 -13124,How many incumbents are there in Pennsylvania 5?,3 -13135,Name the number of first elected for john smith,3 -13139,When was the earliest person elected?,2 -13141,What is the latest first elected?,1 -13142,How many times were the candidates leven powell (f) 63.8% roger west (dr) 36.4%?,3 -13145,How many were in district virginia 6?,3 -13148,In how many different parts was the incumbent Abraham B. Venable?,3 -13154,How many productions are shown for rd 2?,3 -13159,What is the detailed family information where the sequence is aagtact?,3 -13160,What occurence has 0.925 listed as the matrix sim?,1 -13161,What is the number listed in from for the Krueppel Like Transcription Factors?,2 -13162,What is the smallest number listed in the from category? ,2 -13168,How many times is the accession number xp_001843282?,3 -13169,How many titles have U.S. viewers 1.66 million.,3 -13171,What is the highest number in series with director as Phil Abraham?,1 -13172,How many entries for number in series when director is Bryan Cranston?,3 -13173,What is the earliest episode that was watched by 1.32 million viewers?,2 -13174,What is the latest episode written by John Shiban & Thomas Schnauz?,1 -13175,"What is the series number of the episode ""Fly""?",3 -13177,How many episodes are there for the three darts challenge with Sharon Osbourne?,1 -13182,Name the least ends won for anna kubešková,2 -13183,Name the number of ends lost for 6 stolen ends,3 -13187,When гн(иј)ездо / gn(ij)ezdo is the serbo-croatian how many proto-slavics are there?,3 -13188,When рыба (rýba) is the belarusian how many slovenes are there?,3 -13189,When вуха (vúkha) is the belarusian how many slovaks are there?,3 -13193,What is the number of participating parties when registered voters totaled 643629?,3 -13195,What is the number of seats in congress when the electoral district is Ucayali?,3 -13196,What is the number of seats in congress when the candidates per party is 6?,3 -13199,What district is the court located in Tolland?,1 -13206,How many players were drafted by the Philadelphia Flyers?,3 -13207,How many picks did the Chicago Black Hawks get?,3 -13223,What is the highest number of poles?,1 -13224,How many f/laps were there when he scored 170 points?,3 -13228,What is the number of the series written by Teresa Lin? ,3 -13229,Which series # had 0.852 U.S. viewers(millions)?,1 -13231,Which series # had 0.645 U.S. viewers(millions)?,1 -13234,When 24th is the final placing how many wins are there?,3 -13235,What is the lowest overall amount of wins?,2 -13247,How many districts have t/vap values of 67.0%?,3 -13250,How many total votes values are associated with t/vap values of 45.3%?,3 -13251,How many vap values are associated with 140469 valid votes?,3 -13255,Name the number of time for uab,3 -13267,"How many times was the site wallace wade stadium • durham, nc?",3 -13271,How many times was Louisiana-Monroe a visiting team?,3 -13298,"What was the first numbered episode in the series titled ""the wind beneath our wings""?",2 -13299,"What numbered episode in the series is directed by tim van patten and titled ""black like monica""?",2 -13300,"What episode number in the series is ""millennium""?",2 -13304,"What is the first series episode number for ""the christmas watch""?",2 -13308,How many episodes are directed by ricardo mendez matta?,3 -13309,Name the leaast points for standing 5th,2 -13310,"If puma is 12, what is camper?",2 -13311,In how many events was Puma 20 and abu dhabi 30?,3 -13312,How many time was the distance Abu Dhabi?,3 -13313,When czech republic is the country what is the lowest amount l?,2 -13314,What is the largest amount of ends lost?,1 -13316,When chen lu'an is the skip what is the lowest amount l's?,2 -13319,How many entries are there for u.s. viewers (millions) for the episode directed by rob bailey?,3 -13323,How many teams had gary megson as an incoming manager,3 -13330,Name the tigrinya for χams-,3 -13345,What is the % identity to C7orf38 of the animal whose genus & species is Mus Musculus?,1 -13346,What is the length (AA) of the animal whose NCBI accession number is CAM15594.1?,2 -13347,What is the % similarity to C7orf38 of the animal whose % identity to C7orf38 is 81?,1 -13349,What is the % identity to C7orf38 of the animal whose common name is rat?,2 -13351,How many episodes were written by Alison McDonald?,3 -13354,What is the p max ( bar ) for the 6876 f bolt ( kgf )?,2 -13358,How many external (cm 2 ) are there for the .338 lapua magnum chambering?,3 -13362,What is the p max (bar) in the pistol where the chambering is .45 ACP?,1 -13367,How many date of appointments are there when the date of vacancy was 2 october 2010?,3 -13372,What is the total attended for kilmarnock?,2 -13373,How many times was the time 19' 38.87 115.219mph on Fri Aug 27?,3 -13377,How many times was the time 20' 05.19 112.703mph on Thurs Aug 26th?,3 -13379,How many times was tues 24 aug 19' 19.83 117.110mph?,3 -13380,how many time is fri 27 aug 19' 38.87 115.219mph?,3 -13392,"The episode with production code 693-002, has how many original airdates?",3 -13396,How many entries have a speed of exactly 2.53 GHz?,3 -13403,How many different FSB are there for the 7140N model?,3 -13404,How many different L2 cache numbers are there for the 7130M model?,3 -13405,What's the maximal L3 cache for any of the models given?,1 -13406,What's the TDP for the 7130N model?,2 -13408,what is the cfl team where college is waterloo?,3 -13412,What was Barry Jamieson's pick number?,1 -13419,How many CFL teams drafted someone from mount allison college?,3 -13423,How many times was player brian currie picked?,3 -13432,What is the lowest population in which 28.0% are democrat?,2 -13438,How many trains depart at 17:30?,3 -13439,How many trains arrive at 11:00?,3 -13447,How many incumbents were the result of sanford bishop (d) 57% joseph mccormick (r) 43%?,3 -13451,how many times is the production code is 201a?,3 -13452,Name the most overall rank for czech republic,1 -13453,Name the total number of male rank for fiji,3 -13454,Name the most female life expectancy for djibouti,1 -13455,Name the most female life expectancy for overall rank of 61,1 -13456,Name the most male life expectancy for pakistan,1 -13466,How many production codes did the episode number in series 46b have?,3 -13467,"How many viewer data were given for episode ""If at First You Don't Succeed, Lie, Lie Again""?",3 -13468,How many directors directed an episode that reached 2.48 million viewers?,3 -13477,"if the completed is 2010, what is the number of floors?",2 -13479,How many positions does building Costanera Center Torre 1 have?,3 -13481,How many date of appointment entries are there when the team is khazar lankaran?,3 -13489,how many times is the week # is audition?,3 -13490,How many episodes are numbered 14 in the series?,3 -13491,"How many writers for the episode ""peace, brother""?",3 -13493,How many times did episode 17 originally air?,3 -13504,What is the overall total for the Omaha Nighthawks?,2 -13506,What was the highest home total?,1 -13507,How many games had an average of 12796?,3 -13512,what is the greatest stage number in which suhardi hassan is the stage winner?,1 -13527,How many different players does the Washington Redskins have?,3 -13533,What is the total number of production code listings of episodes written by Matthew Lau?,3 -13535,How many prizes were available in the competition where 696 people entered?,3 -13541,What was the minimum % funded of the project that was closed on 2012-05-18?,2 -13542,What was the maximum total USD collected by Pebble Technology?,1 -13544,Project Name Pebble: E-Paper Watch for Iphone and Android was ranked how many times?,3 -13546,What is the lowest number of total goals for a player with 6 league goals?,2 -13547,What is the lowest number of fa cup goals by a player?,2 -13550,How many program data on Asia was written if the organization launched 14 programs iin the Americas?,3 -13551,How many times did Australasia received a program if the Americas received 115 program?,3 -13555,Name the number of episodes for sam snape,3 -13557,What was the minimum vertical measurement if the aspect ratio is 16:9 and scanning is interlaced?,2 -13558,What was the maximum vertical measurement if the horizon measurement is 640?,1 -13561,Name the number of outgoing manager for rijeka,3 -13562,Name the least horizontal for smpte 259m three quarters,2 -13568,How many times did an episode with a production code of 12003 was aired?,3 -13570,"Name the number of bowl for lee corso, gene chizik and chip kelly",3 -13572,What is the highest series number with 9.17 million US viewers?,1 -13574,Name the number of poles for fastest laps being 6,3 -13575,Name the least podiums for 2009,2 -13577,Name the most starts for 6 wins,1 -13578,How many matches were wickets 16?,3 -13579,What is the lowest wickets?,2 -13583,"When Denizli was the province, what was the total number of valid votes?",3 -13585,How many registered voters were there when 36.32% of people voted yes?,2 -13587,How many people voted yes when the percentage of yeses was 95.17?,1 -13593,How many pole position achieved 0 points from Mexico?,3 -13595,Name the number of v core for model number mobile athlon 64 3000+,3 -13596,Name the total number of points for for played,3 -13597,Name the total number of points for 46 tries for,3 -13598,Name the total number of club for lost being 16,3 -13607,How many semifinals did ferhat pehlivan attend?,3 -13618,What is the lowest league cup?,2 -13620,How many times was the r 4?,3 -13622,What is the elevation for the peak wildspitze in Austria?,2 -13623,What is the elevation for number 39?,1 -13628,How many times is the title am/pm callanetics?,3 -13629,How many times was the catalog number cal04 / 0091037553546?,3 -13630,how many times was the catalog number cal04 / 0091037553546?,3 -13631,how many times was the catalog number cal01 / 0091037137319?,3 -13632,how many times was the catalog number cal05 / 0091037137357?,3 -13654,How many times did outgoing manager Bart de Roover vacated a position?,3 -13657,how many maximum # when viewers (m) is 8.01,1 -13661,How many outgoing managers were replaced by Bob Peeters?,3 -13669,How many head coaches named Darius Mikaeili?,3 -13672,How many times is the incoming head coach abdollah veysi?,3 -13678,"For the #19 car, what was their finish position?",1 -13679,How many constructors had a grid of 13?,3 -13680,"What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin?",1 -13682,What's the highest season number with a series number of 47?,1 -13698,What is the fewest amount of Pro Bowl appearances any of the players had? ,2 -13700,"How many U.S. viewers in millions watched the episode titled ""The Truth About Dads and Moms""?",3 -13708,In what year is australia/oceania listed? ,3 -13711,what was the lowest elevation in april 2006?,2 -13712,what is elevation of tanzania?,3 -13717,List the series number for season 12.,3 -13718,How many years was the country Belgium?,3 -13721,In how many different audition cities were the Bridgestone arena auditions held?,3 -13726,How many episodes did Eve Weston write?,3 -13728,"What is the series episode number of ""Taxi Dance""?",2 -13737,How many episodes have 18.73 million viewers?,3 -13753,How many seasons have a sacks of 39?,3 -13757,How many game entries are there when the points are 57?,3 -13758,What is the smallest año?,2 -13759,"How many premio are there when ""Artist of the Year"" was the categoria?",3 -13765,How many games were numbered 69?,3 -13766,How many times did they play the pittsburgh penguins?,3 -13767,What is the earliest quarterfinal week when the genre is dancing and the act is 32?,2 -13768,What is the quarterfinal week for Austin Anderson?,2 -13772,"How many semi-final weeks are there for acts from Pittsburgh, Pennsylvania?",3 -13776,"How many courses are located in carmel, indiana?",3 -13777,How many status figures does James Finch have?,3 -13781,what is the oldest and lives in veraguas,1 -13785,"If the best winning average is 7.3-71, what are the total points?",2 -13788,"If the player is William Jakes, what are the total points?",2 -13790,How many players had a best winning average of 20?,3 -13792,What was the 6-4 score's maximum attendance?,1 -13809,Name the most points for 1-3-1 record,1 -13811,"Name the number of record for hp pavilion - 17,562",3 -13812,On how many days in October was the score 6-1?,3 -13814,How many times was the sabres record 2-5-1?,3 -13816,On what day of January was the record 10-29-2?,1 -13817,What are the most points scored in a game where the score was 1-2?,1 -13818,On what day in January was the record 15-29-3?,1 -13821,How many games were played against a team with a 9-19-6 record against the Islanders?,3 -13822,How many games did they play on october 9?,3 -13823,What is the lowest number of points for game 32?,2 -13826,What is the smallest numbered episode in the series listed?,2 -13832,How many season premieres had 15.27 million viewers?,3 -13836,What episode number had 14.41 million viewers?,1 -13837,What is the minimum rnd at Laguna Seca?,2 -13838,Name the gt 2.0 winning team for sports 2.0 winning team for #16 trans ocean motors for castle rock,3 -13839,Name the rnd for hap sharp,2 -13840,Name the results for #23 lotus,3 -13846,Name the post poles for 4 podiums,1 -13852,When did the earliest tournament happened?,2 -13855,"How many episodes titled ""Blue in the face"" were directed by Sean McNamara?",3 -13857,What is the maximum production code of the episode directed by Sean McNamara?,1 -13858,"How many audition city's are there with an episode air date of June 24, 2010?",3 -13861,How many episode air dates are there for auditioning city Rio De Janeiro?,3 -13869,How many different weeks are there in order number 4 that were judge's choice?,3 -13879,"how many directors had the episode called ""magic unmasked""?",3 -13886,Name the number of countries that have the us dollar,3 -13888,How many teams have a head coach named mahdi ali?,3 -13889,How many captains have the kitmaker as n/a?,3 -13890,How many kitmaker correspond to team ittihad kalba?,3 -13892,How many captains when the shirt sponsor is toshiba?,3 -13895,How many entries are there for points for the 6th position?,3 -13896,How many season are shown for the 2nd position?,3 -13899,How many different PPI does the model with ppcm of 87 have?,3 -13904,What is the smallest number for old membership total?,2 -13905,What is the lowest number of members lost when the net change is −1?,2 -13906,What is the new membership total if the members lost is bigger than 1.0?,1 -13910,How many dates of vacancy were on 30 october 2010?,3 -13915,how many people come to visit when the 1654 exhibitions,3 -13916,what is the most time where exhibitions is 1701,1 -13920,How many players held the high point records for game 34?,3 -13922,How many people led in points during the game on October 5?,3 -13924,Name the least game for l 109–116 (ot),2 -13929,How many record data were written when Devin Harris (6) was High Assists?,3 -13930,How many games were held on January 5?,3 -13934,In how many games were the high rebounds made by Derrick Favors (8)?,3 -13936,"Which game number was located in Prudential Center 15,086?",2 -13937,In how many games did Terrence Williams (9) have High assists?,3 -13943,How many games were numbered 13?,3 -13949,What game number was played on april 8?,2 -13956,How many data were given on 2010/2011 in Brazil?,3 -13957,how many overall goals were scored at moses mabhida stadium?,1 -13958,how many matches were played that average goals scored 1.25?,3 -13959,what is the minimum overall attendance where the goals scored were 19?,2 -13967,what was the game number where the record was 46–24?,2 -13968,What was the game number on march 27?,2 -13969,What is the largest game number?,1 -13970,How many high rebounds took place on December 8?,3 -13972,"How many entries are shown for high rebounds for the philips arena 20,024 game?",3 -13976,How many different items appear in the high rebounds column in game 80?,3 -13978,Which game was played on October 13?,1 -13981,What game in the season does this list start?,2 -13983,How many games were held on March 12?,3 -13991,What is the last episode in the series written by Gregory S. Malins?,1 -13994,What is the maximum production code of an episode written by Patty Lin?,1 -13995,What is the episode number of the episode whose production code is 226407?,2 -13996,"What episode number in the series is ""the one where everybody finds out""?",1 -13997,Wha episode number in the series had 24.8 million u.s. viewers?,2 -13998,What is the production code that had 24.8 million u.s. viewers?,1 -14003,How many records are there for the game on november 24?,3 -14013,What's the maximum game in the javale mcgee (5) high rebounds?,1 -14014,What's the score in andray blatche (17) high points?,3 -14017,What's the team number with John Wall (9) in high assists and a w 97–83 (ot) score?,3 -14024,How many games are shown against Houston?,3 -14025,How many teams listed for game 45?,3 -14028,Name the total number of record for 61,3 -14034,What number was the first game?,2 -14040,How many people are listed for high rebounds on game 30?,3 -14051,Who had highest assists at game on December 21?,3 -14061,How many locations did the game that was on April 8 take place at?,3 -14062,what is the overall number of times when the calendar showed october 6,3 -14071,What's the score in al jefferson (24) high points?,3 -14076,How many games did they play on january 7?,3 -14078,List the highest number of assists when zaza pachulia (6) had the most rebounds. ,3 -14083,How many records where in January 2?,3 -14090,How many scores where achieved on January 19?,3 -14097,How many times was the high assists andre miller (7)?,3 -14098,How many times was the high rebounds by marcus camby (18)?,3 -14107,"How many people directed ""the one with rachel's dream""?",3 -14108,How many episodes in the season had production code of 175255?,3 -14109,"What episode number in the series is ""the one with the blind dates""?",1 -14113,"What was the game number when the location attendance was the Palace of Auburn Hills 15,166?",2 -14115,What numbered game did they play on april 5?,1 -14118,For how many games on December 19 is there information on who scored the most rebounds?,3 -14124,What is the highest game number?,1 -14127,Name the number of score for january 12,3 -14129,"Name the number of date for stephen curry , dorell wright (27)",3 -14133,How many teams have hight points listed as David Lee (31)?,3 -14139,In how many different games did Roy Hibbert (16) did the most high rebounds?,3 -14143,How many people scored the most points during the game on December 10?,3 -14145,What is the score when the team is Orlando?,3 -14150,How many high assists where there for the team of caja laboral?,3 -14153,"Name the total number of high assists for fedexforum 11,283",3 -14154,"Name the most game for us airways center 16,470",2 -14156,How many times did the Centurions play the Rhein Fire?,3 -14159,How many total catches did the player with no. 46 have?,3 -14165,How many total dismissals did the player for Guyana have?,1 -14167,What is the most amount of stumpings any player had? ,1 -14169,How many catches did Clifford McWatt have? ,2 -14181,For player is jamal mayers mention the minimum pick,2 -14182,For player is john jakopin mention the total number of position ,3 -14185,How many values are displayed under pick for Vlastimil Kroupa?,3 -14186,How many positions does Janne Niinimaa play?,3 -14187,How many teams does Lee Sorochan play for?,3 -14189,How many teams does Maxim Bets play for?,3 -14190,What was the minimum pick by the Florida Panthers?,2 -14193,How many different nationalities is pick number 179?,3 -14196,How many weeks in the top 10 was spent by a song performed by Peter Kay?,1 -14197,How long has the longest song spent in the top 10?,1 -14201,How many pac-12 sports are shown for california polytechnic state university?,3 -14204,When was the Titans founded?,1 -14207,Name the least games played for 6 points,2 -14210,What's the highest series number ? ,1 -14212,When yidu 宜都 is the commandery what is the lowest number of countries?,2 -14223,How many different riders are there that won riding Omr Tsunami?,3 -14226,How many series numbers are there when there were 15.8 u.s. viewers (millions)?,3 -14232,How many hebrew forms are there for the arabic form yuktibu يكتب?,3 -14235,How many Arabic forms are there for the 1st. plur. perfect category?,3 -14238,How many games did UCLA's baseball team win with a score 7-6 during May of 2010?,3 -14241,What is the highest channel number?,1 -14247,Name the total number of games for w 112-94,3 -14251,"For score 7–6 (7–3) , 6–4 please mention total number of outcome",3 -14261,How many games did they play on january 11?,3 -14263,"How many people are high assists when location attendance is Seattle Center Coliseum 14,180?",3 -14269,"what was the participation for saturday, may 12",1 -14271,What is the highest number for 140+?,1 -14272,How many legs were lost when the high checkout was 101?,3 -14274,How many legs were own by alan tabern?,1 -14277,Name the total number of high asists for 34-27,3 -14279,Name the number of location attendance for 36-29 record,3 -14282,How many episode numbers had US viewership of 4.26 million?,3 -14284,How many episodes were directed by Ken Fink?,3 -14287,How many items are listed for U.S. viewers for episode number 5 in the series?,3 -14290,What is the season number of the show written by both Kari Lizer and Jeff Astrof?,3 -14293,"how many times was the episode ""the old maid of honor"" originally aired?",3 -14294,"the episode ""a change in heart/pants"" had a maximum of what number in the series?",1 -14298,Name the number of coverage for 106.7 energy fm,3 -14304,How few runs does the 97.00 average have?,2 -14305,What is the minimum number of 50s scored?,2 -14307,What is the fewest number of wickets recorded?,2 -14309,What is the least amount of wickets?,2 -14310,What is the least amount of matches?,2 -14311,How many players had 12 wickets?,3 -14312,How many innings for the player with an average of 30.03?,2 -14314,What is the lowest episode number that had 4.03 million viewers?,2 -14318,What is the release date of catalogue number DW023?,1 -14326,Name the total number of moto2 winners for laguna seca,3 -14328,Name the number of rounds for brno,3 -14334,"Name the total number of rnd for kim baker, bobby archer, tommy archer",3 -14335,"Name the total number of b winning car and bobby archer, tommy archer",3 -14336,How many institutes have the team name Spartans?,3 -14337,How many states were there when there was an enrollment of 2789?,3 -14339,How many people enrolled for the institute with the Pioneers?,2 -14343,"How many people wrote the ""the beast in me""?",3 -14348,How many viewers in millions were there for episode 4 of this season?,3 -14350,Name the total number of rank for percentage change yoy 13.1%,3 -14353,What is the lowest numbered episode in the series?,2 -14354,"What numbered episode in the series is ""remember me""?",2 -14355,How many episodes were written by david j. north & janet tamaro?,3 -14361,What was the episode number veiwed by 7.43 million viewers?,1 -14364,"What is the episode number with a title ""baby's a rock 'n' roller""?",2 -14365,How many times is the new entries this round is none?,3 -14367,What is the lowest number of fixtures?,2 -14370,What number in series was the episode written by Eric Gilliland?,1 -14371,how many total number of points margin when brive is the winners,3 -14374,When brive is the proceed to quarter final how many were eliminated from competition? ,3 -14378,What is the production code of the episode written by Jeff Filgo?,1 -14380,"What is the production code of the episode titled ""Halloween""? ",2 -14382,Name the least production code for bryan moore & chris peterson,2 -14384,"Name the total number in season for ""the battle of evermore""",3 -14385,How many dates did the episode with a production code of 804 originally air on?,3 -14393,What is the last year a sponsorship ended?,1 -14394,How many countries played in the city of ljungskile?,3 -14400,How many numbers are there for kam wa7ed fina?,3 -14402,How many sound engineers were there for law hakon '3er leek?,3 -14407,How many event dates occurred when event details were women's sabre?,3 -14410,How many items appear in the viewers column when the draw is 2?,3 -14411,How many viewers are the when the draw is 3?,1 -14412,How many juries are there when the draw is 3?,1 -14413,How many juries are there for Brolle?,1 -14415,How many statuses are there for the Durham district?,3 -14417,What is the SDLP of Belfast?,1 -14418,What is the smallest Alliance where the total is 25?,2 -14420,What series number is the episode with production code bdf101?,1 -14421,"What series number is the episode entitled ""Booty""?",1 -14427,What number episode in the series was watched by 10.96 million U.S. viewers? ,2 -14430,How many times did tonioli score a 9 when horwood scored a 6?,3 -14445,How many production codes are there for the episode that had 4.36 million u.s. viewers?,3 -14446,How many people wrote the episode that had 7.26 million u.s. viewers?,3 -14451,How many pick# for CFL team of Toronto Argonauts?,3 -14457,What draft pick number was Andy Brereton?,2 -14460,What is the highest numbered draft pick?,1 -14462,How many positions does Trent Bagnail play?,3 -14471,how many people wrote the episode directed by rob schrab?,3 -14477,List the number of assists for the DF.,1 -14478,List the lowest super league for a 0 champion league.,2 -14479,What is the minimum sum?,2 -14484,How many words are there in rusyn for the bulgarian word купува (kupuva)?,3 -14486,Name the number of new adherents per year for confucianism,3 -14487,"Name the least births for conversion being 26,333",2 -14488,Name the least amount of new adherents per year,2 -14492,How many breadth entries are there when the vessel is marianarray?,3 -14494,How many breadth entries are there when propulsion is jet?,3 -14505,How many womens singles entries are there when womens doubles is li xiaodan wen jia?,3 -14508,How many year locations are there for the womens doubles in jing junhong li jiawei?,3 -14509,How many players are there for mens singles when chen qi ma lin played mens doubles?,3 -14512,How many years did lin gaoyuan wu jiaji play mens doubles?,3 -14513,How many people are shown for mens doubles when guo yue played womens singles?,3 -14518,How many times was the womens doubles in china?,3 -14519,How many times did li ju win the womens singles and wang liqin win the mens singles?,3 -14521,Name the number of womens doubles for 2011 rio de janeiro,3 -14524,Name the number of womens singles for 1999 rio de janeiro,3 -14532,"How many different people directed the episode titled ""Fail Fish""?",3 -14534,"How many different pairs of people did the story and storyboard of the episode titled ""Milo's big idea""?",3 -14538,how many managers left sunshine stars?,3 -14539,how many new managers replaced manager(s) who resigned? ,3 -14540,how many times did tunde abdulrahman leave the team?,3 -14541,How many platforms have celsius calibur as mystic arte?,3 -14543,How many mystic arte have hisui (jadeite) hearts 1 as the character?,3 -14544,How many platforms have nanaly fletch as the character?,3 -14548,What is the largest number of points in a season?,1 -14560,What is the total number of modern grannies performed?,3 -14564,"How many different production codes does the episode originally aired on October 18, 1984 have?",3 -14566,"How many different titles does the episode originally aired on September 27, 1984 have?",3 -14567,"What's the production code of the episode originally aired on February 21, 1985?",2 -14571,When semi final (2nd leg) is the round what is the highest attendance?,1 -14575,What is the series number for the episode written by janet leahy?,2 -14577,"What is the series number for the episode directed by jay sandrich that aired October 23, 1986?",2 -14580,What was the number of episodes whose production code is 7ABB21?,3 -14584,Name the most points for when tries against is 8,1 -14585,What is the most recent year shown for Betty Stove?,1 -14587,What is the lowest number of drawn games by a team?,2 -14590,When gray wolves is the team nickname how many institutions are there?,3 -14596,How many different partners played in the finale in 1973?,3 -14606,How many people are women's singles in the season of 2000/01?,3 -14611,"How many different people wrote the episode titled ""Reflection of Desire""?",3 -14612,How many episodes had 11.86 million US viewers?,3 -14615,"How many episodes were titled ""second chances""?",3 -14616,how many producers are responsible for the song 'calling out to marlboro?,3 -14617,what was the first year that kid creole and the coconuts recorded with I Too Have Seen The Woods / Sire Records?,2 -14618,How many seasons are there with Formula Holden?,3 -14619,How many poles are there with 2 races?,1 -14620,What's the most amount of point finishes for v8supercar?,1 -14621,How many people had high rebounds in game 14?,3 -14623,What was the highest number of students in attendance for the university of north texas?,1 -14626,"How many mascotts are there for college station, texas",3 -14627,List the highest number of students in attendance for the institution that started in 1923.,1 -14628,How many next in lines had heirs of Archduke Karl?,3 -14631,How man teams have a writer named harry angus?,3 -14633,How many team songs does fremantle have?,3 -14635,In how many different years was the team nicknamed Comets founded?,3 -14639,Name the number of tenants for russia at the saransk stadium,3 -14643,Name the country for athens,3 -14647,How many items are listed under caps when burnley is the club team?,3 -14649,How many goals did the player from Ipswich town score?,2 -14653,When tommy smith category:articles with hcards is the player and 1 is the goal how many cap(s) are there?,3 -14660,How many site entries are there at 3:30pm and the visiting team is coastal carolina?,3 -14662,When svein tuft is the winner what is the highest stage?,1 -14663,when svein tuft is the winner how many stages are there?,3 -14669,How many Connecticut home games were broadcast?,3 -14677,How many episodes were directed by Jeff Melman and 1.21million viewers?,2 -14686,Name the least number for xle02007,2 -14693,How many Area's are there for Armstrong?,3 -14696,"How many areas are there for the corporation named fort st. john, city of?",3 -14700,what is the number of the episode in the season whose production code is 101? ,3 -14706,How many entries for conference tournament are listed when Texas Western is the regular season winner?,3 -14709,what is the overall number of chosen ideas where the person is scott parker,3 -14710,what is the number of the chosen club where the hc dukla trenčín (slovakia) is from,3 -14711,How many players were drafted by the Edmonton Oilers?,3 -14714,What is the minimum pick of a centre from the Czech Republic?,2 -14716,What is the fewest minutes played for the player with exactly 638 good passes?,2 -14717,What is the most number of assists for players with exactly 25 games played?,1 -14718,What is the largest number of passes for players starting exactly 34 games?,1 -14720,When 1873-12-25 is the founding date how many organizations are there?,3 -14722,"When 1 active, 1 inactive is the canadian chapters how many founding dates are there?",3 -14724,what was the lowest number that auburn triumphed where the activities took part was 92,2 -14728,What is the earliest round where the gt winning car is max angelelli?,2 -14731,"How many writers wrote the episode ""Woke Up Dead""?",3 -14735,How many 7th season episodes had 2nd season viewerships of 6 594 469?,3 -14736,How many first tournaments were winter sports with exactly 1 division?,3 -14738,How many first tournaments are associated with bowling?,3 -14739,How many times is the player vaughn taylor listed?,3 -14740,What is the lowest after when the player is adam scott?,2 -14745,What is the before for the score of 63-67-66-71=267?,2 -14748,What is the after for geoff ogilvy?,1 -14749,what is the most number where the person is luke donald,1 -14752,what is the number of pieces where the person is charley hoffman,3 -14753,what is the number of people where the pieces is 3015,3 -14760,What is Timo Lehkonen's highest pick number?,1 -14762,How many college/junior/club teams are from Sweden?,3 -14765,What is Michal Pivonka's pick number?,3 -14768,What is Graeme Bonar's lowest pick number?,2 -14770,how many parts does detroit red wings person urban nordin play,3 -14779,How many college/junior/club teams are ther when nhl team is edmonton oilers?,3 -14781,How many nhl teams are listed when college/junior/club team is listed as newton north high school (ushs-ma)?,3 -14786,Who was the young rider classification when Diego Ulissi won? ,3 -14792,What's the number of the 1.0.9 release version?,3 -14793,What's the number of the 1.0.12 release version?,3 -14796,What's the smallest season number?,2 -14799,What was the latest episode number that Meredith Averill wrote?,1 -14800,What is the latest episode number that was directed by Tom Dicillo?,1 -14801,"How many years did Germany participate, when the team from Italy was Naples LL Naples and the team from England was London Area Youth London?",3 -14803,How many times has the 100s record been 1?,3 -14804,What is the maximum number of matches in a game?,1 -14805,What is the highest score in those games where the average is 9.88?,2 -14809,How many networks run on virtual channel 23.4?,3 -14815,"When ime exchange (including spot, credit and forward transactions) is oil products - value (billion rials) what is the 2008/09 number?",3 -14820,Name the least number for nello pagani,2 -14821,What is the largest number of consecutive starts for jason gildon?,1 -14824,How many consecutive starts for the linebacker who played from 9/21/1975 – 12/16/1984?,1 -14827,How many seasons had 16.15 million viewers?,3 -14830,How many items appear in the average column when the totals were 105-161?,3 -14834,How many times was taiwan 3rd runner-up?,1 -14835,How many miss universes did south africa have?,3 -14836,How many placements in total does russia have?,1 -14839,What is the minimum number of points for teams averaging 1.412?,2 -14841,How many averages are associated with a 2003-2004 value of 62/38?,3 -14843,How many teams have a 2004-05 value of 49/38?,3 -14844,How many 2003-04 values have a 2004-05 value of 73/38?,3 -14856,What is listed in tor floysvik when karianne gulliksen is 6?,2 -14857,How many music entries are there when tor floysvik is 3?,3 -14858,What is listed under chister tornell when karianne gulliksen is 7?,2 -14859,What is listed under tor floysvik when couple is maria & asmund?,2 -14860,What are Unit 2's dates of commissioning?,3 -14862,Name the trine dehli cleve for english waltz,2 -14865,Name the most for fløysvik for 8,1 -14866,how many for floysvik and christer tornell is 7?,3 -14867,how many for christer tornell where the total is 30?,3 -14870,What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8?,1 -14871,"What is the total score received by the couple that danced to "" ymca ""— village people?",1 -14872,"How many different scores did Christer Tornell give to the couple that danced to "" song triste ""— charlie chaplin?",3 -14873,What is the largest number for trine dehli cleve?,1 -14874,"How many couples are there for the song "" i wonder why ""— curtis stigers?",3 -14875,What is the largest number for karianne gulliksen?,1 -14876,"How many entries arr there for christer tornell for the song "" you light up my life ""— whitney houston?",3 -14877,How many styles had a total score of exactly 33?,3 -14879,What is the smallest total score for the Pasodoble style?,2 -14886,"How many episodes in the series were titled ""a little death""?",3 -14887,"How many people directed ""a little death""?",3 -14888,How may players have a passing yard score of 208?,3 -14890,What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson?,1 -14891,What is the number of total offense when the opponentis Penn State?,1 -14903,How many track numbers were called song 2?,3 -14909,What is the highest value for multi lane if category wise is major district roads?,1 -14910,What is the least total?,2 -14923,How many values were used to express the years at school of the Maryland team?,3 -14925,How many values reflect the overall record of the team coached by Frank Beamer?,3 -14927,what year did north carolina institution join the acc?,1 -14932,What is the most amount of games played this season?,1 -14938,What is the maximum number of 2nd places for Tajikistan?,1 -14939,What is the maximum number of 1st places for the country with exactly 1 third place?,1 -14940,How many values of total top 3 placements does Taiwan have?,3 -14943,What is listed in Network station when the country is Brunei?,3 -14944,How many television station listing have a radio station as lao national radio?,3 -14945,How many television station listings have a ioc code as mas?,3 -14951,"How many games have high assists as earl watson (11) and location attendance as Keyarena 16,841?",3 -14955,"What is listed in game when the location attendance is listed as Keyarena 16,841?",1 -14957,"How many numbers in the season have an air date of June 3, 2012?",3 -14958,What is the highest production code of the episodes having a US viewership of exactly 2.3?,1 -14967,How many locations have the callsign DXGH?,3 -14970,"How many times is there a golden tickets entry when the callback venue is rcti studio, jakarta?",3 -14972,"When 3.29% was the average per candidate, what was the number of average votes per candidate?",2 -14974,How many shows were launched on CBS (2002)?,3 -14975,How many IRST figures for the show that premiered on Canale 5 (2006)?,3 -14978,How many economy stats for the player with 2/19 BBI?,3 -14983,How many runs are there when the highest score is 228*?,2 -14985,What is the innings when the highest score is 72?,1 -14986,What is the highest number listed for matches?,1 -14988,How many runs are there when the 50s column is 3?,2 -14990,what is the minimumfor 5wi?,2 -14991,how many 10wi and bbi is 6/101,3 -14993,how many 5wi with an average of 33.13?,3 -14998,What the number of matches when the BBI is 3/27?,2 -15002,How many goals scored entries are listed when the year is verano 2001?,3 -15008,"What is the highest series number for ""The Devil Made Me Do It""?",1 -15009,"What is the episode series number for ""The Devil Made Me Do It"" ?",3 -15010,"What is the production code for ""State of Grace""?",1 -15013,How many episode titles have series number 4?,3 -15014,How may college/junior/club team has a the nhl team listed as Colorado Avalanche?,3 -15021,What is the minimum MotoGP/500cc ranking?,2 -15026,how many drumsets of drumstand (oftenoptional) with hd-1/3stand and tom-tom pads is 3xcloth-head are,3 -15029,for the drumset name td-15k how many snare pads are,3 -15034,How many dates did Daniel Ruiz win the Spanish Grand Prix?,3 -15036,When james rutherford is the incumbent how many dates are there?,3 -15044,How many literate males are there in the taluka name nevasa?,1 -15045,How many literate male (%) are there in the district that has a population of 3.28?,3 -15052,How many runners-up were there when Joanne Wheatley won?,3 -15061,"How many episodes are titled ""the suspension""?",3 -15065,How many figures are provided for the team when the position drafted is center?,3 -15066,What was the pick number when Paul Krake was selected?,2 -15071,How many positions drafted for the Minnesota North Stars?,3 -15075,How many nationalities does Alex Nikolic come from?,3 -15076,How many NHL teams have a pick number of 128?,3 -15077,Name the opponents for anabel medina garrigues,3 -15092,Name the most serial number for feb 1994,1 -15095,How many month names are there for the tenth numbered month?,3 -15097,What is the month sequence for the month name of av?,2 -15098,What is the defective year for the regular year of 29 days and month sequence of 2?,1 -15105,"How many different results were there for the scores 6–7 (2–7) , 6–2, 7–6 (7–3)?",3 -15109,What is the earliest round where collingswood lost by 36 points?,2 -15111,"What is the round number of the round against melbourne on saturday, 4 april 2:10pm?",2 -15115,What is the lowest listed number for a player?,2 -15117,What is the highest number a guard from brophy college prep wore?,1 -15118,How many directed by entries have UK viewership over 6.16 million?,3 -15129,What is the season # when ther are 5.3 million U.S viewers?,1 -15134,"What is the highest numbered episode where the title is ""The Ruff Ruff Bunch""?",1 -15139,How many home teams are there when the away team score was 4.2 (26) and away team was footscray?,3 -15141,How many scores were there for the home team when the away team was fitzroy?,3 -15148,Name the number of ratings for bruce forsyth,3 -15159,How many scores had an episode of 03x06?,3 -15164,How many items are listed under 'andrew and georgies guest lee mack replaced andrew flint as team captain for one week' for episode 04x04?,3 -15167,how many broadcaste dates features the overtones,3 -15168,how many guest stars did the episode that was broadcasted 11september2012 have,3 -15170,which episode did sarah millican and grayson perry appear in,2 -15173,How many episodes are 122 in the series?,3 -15176,What is the last episode in the season that had 3.91 million viewers in the US?,2 -15178,How many episodes were written by Warren Leight?,3 -15182,"How many championships were there where the score was 4–6, 7–6 (7–5) , [5–10]?",3 -15184,"How many times has the score been 6–4, 3–6, [11–13]?",3 -15190,What is the earliest year in which the result is championship US Open (2)?,2 -15193,on how many days did the episode written by harold hayes jr. & craig s. phillips originally air,3 -15195,"how many episodes originally aired january19,2013",3 -15196,"which episode of the season aired on october20,2012",1 -15203,How many figures are provided for December 28 for Rosario?,3 -15208,How many people wrote episode 9 in the season that was directed by Ernest Dickerson?,3 -15210,"How many episodes in the season had the title, ""first blood""?",3 -15217,what is the score in the 1st leg where the contest and round was in europa league play off round,3 -15221,How many distance places have brisbane at $3.80?,3 -15222,How many listings under Melbourne has a distance at 15km?,3 -15225,How many scores did Helen Sildna give when Iiris Vesik gave a 3?,3 -15226,What is the maximum points received when Peeter Vähl gave a 9?,2 -15229,How many stadiums have haka as the club?,3 -15233,On how many different dates was the episode written by Charlie Day aired for the first time?,3 -15236,How many different titles does the episode with production code IP02003 have?,3 -15241,What is the least amount in each season? ,2 -15242,What is the least number in a season?,2 -15248,"When itogon, benguet is the city/municipality and 1st class is the income classification how many measurements of population in 2010?",3 -15251,How many episodes have the production code ip04004?,3 -15252,"What season number is the episode ""The Gang Cracks The Liberty Bell""?",2 -15253,"How many people wrote ""Paddy's Pub: The Worst Bar in Philadelphia""?",3 -15270,"How many runner ups were there for the cologne , germany carpet – $75,000 – s32/d16 when the champion was matt doyle 1–6, 6–1, 6–2?",3 -15274,how many trains run daily to lonavla and arrive at 12:25,3 -15275,how many trains have the number 99808,3 -15281,How many years saw 3 hurricanes wherein the strongest storm was level three?,3 -15282,What is the largest overall number of major hurricanes?,1 -15283,When the death is none what is the number of major hurricanes?,3 -15284,What is the lowest overall number of hurricanes?,2 -15287,How many deaths did the eyar with exactly 6 hurricanes have?,3 -15288,What is the maximum number of tropical storms in the year that had exactly 34 deaths?,1 -15290,Name the number of episodes that jim barnes wrote for 1.82 million viewers,3 -15291,Name the least number for production code 3x6266,2 -15292,How many characters does Maurice Dean Wint play in the movie Cube?,3 -15296,How many prisons is Joan Leaven connected with?,3 -15298,Thomas de Gendt performed on what stage as aggressive rider?,1 -15309,"When sweden is the country what is the highest production in 2010 (1,000 ton)?",1 -15313,What is the fewest number of 2005 subscribers for Vodafone?,2 -15314,What is the maximum number of 2006 subscribers for Glo Mobile?,1 -15315,What is the maximum number of 2006 subscribers for Mobilis?,1 -15317,How many 2006 subscribers are named Vodafone?,3 -15318,Name the number of captains for barcelona,3 -15322,"What is the series # for the episode titled ""words""?",1 -15333,how many countries have remittances in 2008 of 9.07?,3 -15334,how many remittances in 2010 where the remittances is 19.73?,3 -15336,how many countiers had 2009 remittances of 6.02?,3 -15337,What is the highest year with field reporter Steve Lyons?,1 -15341,"How many episodes are titled ""dick's big giant headache (part 1)""?",3 -15342,"What is the episode number od ""Dick Vs. Strudwick""?",1 -15343,How many teams came in fourth when Otsuka Pharmaceuticals won?,3 -15345,How many seasons did Otsuka Pharmaceuticals come in third?,3 -15346,How many episodes were written by Gregg Mettler?,3 -15349,"What is the production code when the title is ""you don't know dick""?",2 -15352,How many years of introduction does the Neal Submachine Gun have?,3 -15355,in how many of the arkansas colomel the county was pope,3 -15361,"When ""speed metal"" is the episode title what is the lowest number?",2 -15364,how many representatives from hanover twp were first elected in 2008,3 -15367,which district does andy thompson represent,3 -15370,What was Reid's rolex ranking in the year that her money list rank was 3?,1 -15372,How many cuts did Reid make in the year when her earnings were n/a?,1 -15373,"In what year were Reid's earnings €4,050 1?",2 -15375,What is the maximum start record for player of Jeff Brehaut?,1 -15378,What is the money list rank for player Doug Barron?,1 -15379,How many athletes were named federico muller?,3 -15384,How many people directed episode 2?,3 -15388,When 8.9% is the electricity reduction percentage how many sets of tonnes of co2 saved is there?,3 -15392,When 10% is the percentage of electricity reduction how many sets of universities are there?,3 -15393,What is maximum loss record when the pa record is 47?,1 -15394,What is the minimum ends lost record when the stolen ends records is 6 and the loss record is bigger than 5.0?,2 -15395,What is the minimum stolen ends record where the pa record is 40?,2 -15397,When nicole backe (nanaimo curling club) is the skip (club) how many sets of w's are there?,3 -15398,When 36 is the amount of ends won how many sets of pf's are there?,3 -15399,What is the lowest overall amount of w's?,2 -15400,What is the highest L of the tournament?,1 -15401,What is the highest W of the 0 L?,1 -15402,Name the least pa for w being 2,2 -15403,Name the least ends lost for joëlle belley (glenmore),2 -15405,What is the most amount of stolen ends for a skip with 1 W?,1 -15407,What is the least amount of blank ends for a skip who has 44 PF? ,2 -15408,How many high points occur with the team Umass?,3 -15410,When allen/moore/wyatt – 4 have the highest amount of assists what is the highest game?,1 -15415,What is the pa listed when the ends won is 21?,1 -15416,How many times is there an entry in stolen ends when skip (club) is listed as debbie folk (nutana)?,3 -15417,What is the total mumber of skip (club) entries when the pf is 40?,3 -15418,What is the number of ends won entries when the skip (club) is chantelle eberle (tartan)?,3 -15421,What is the L when the skip club is Jeff Richard (kelowna)?,1 -15422,What is the L when the W is 4?,2 -15423,What is the largest number in L?,1 -15424,What is the PA when the PF is 73?,2 -15428,What is listed under W when the ends won is 22?,2 -15429,What is listed under L when the ends won is 21?,1 -15430,How many rank entries are there when new points are 1155?,3 -15431,What is listed in new points when status is second round lost to xavier malisse?,2 -15434,How many points are listed when the rank is 17?,1 -15435,How many seed entries are there when points are 2175?,3 -15437,What is the maximum number of clubs remaining when the league entering at this round was allsvenskan?,2 -15438,How many different values of clubs involved were there when the league entering at this round was allsvenskan?,3 -15441,How many episodes are directed by Jamie Payne?,3 -15444,"How many episodes have the title ""episode 2""?",2 -15448,What is the smallest numbered production code listed?,2 -15453,"What number episode in the season was titled ""K.I.T.T. the Cat""?",1 -15454,How many times is the couple kerry & daniel?,3 -15455,how many times is the total points 128.0?,3 -15456,How many times is the couple laura and colin?,3 -15458,How many times is the rank by average 4?,3 -15459,"How many different season numbers does the episode ""The Nineteenth Hole"" have?",3 -15460,How many different pairs of writers wrote the episode with series number 56?,3 -15462,how many hometowns for faisal aden?,3 -15466,How many seasons did Apocalypstix place 2nd?,3 -15468,What is the most recent season where the Denim Demons placed 3rd?,1 -15472,What is the pick number for the team toronto fc and affiliation is ldu quito?,1 -15476,how many peaks where for the chinese episode named 萬凰之王,3 -15477,what is the number of the average of the drama titled 魚躍在花見,1 -15480,In what week was the first game played?,2 -15481,How many object dates have origin in Samoa?,3 -15482,How many origins have titles of Samoan cricket bats?,3 -15483,How many object dates does episode #16 have?,3 -15491,how many sections are for the season of 2008,3 -15494,How many entries are shown for entered at 21:09?,3 -15501,what is the maximum round and fabien foret had the pole position?,1 -15502,How many values of attendance occur when ave. on previous season is +645?,3 -15503,What is the lowest value of average attendance when average on previous season is -459?,2 -15504,What is the least value for average attendance when average on previous season is +644?,2 -15506,What is the least w?,2 -15507,What is the most stolen ends?,1 -15508,What is the total appearances when the total goals is 289?,2 -15509,What is the league goals when the total goals is 179?,1 -15510,How many total appearances are there when the league appearances is 192?,3 -15514,How many is the high assist total for players from panama?,1 -15518,When deutsche grammophon is the label how many clairons are there?,3 -15529,"Which episode had a share 16-19 of 23,22%?",1 -15533,How many intro dates have the price of 686€?,3 -15535,What is the price (usd) for the model pq32mu?,2 -15538,How many were in the Kargahar (vidhan sabha constituency)?,2 -15539,What district has 213 constituents?,3 -15541,How many countries spent at least $51.0 billion in international tourism in 2012?,1 -15542,How many countries spent $83.7 billion on international tourism in 2012?,3 -15545,Name the most other apps for league goals being 1,1 -15546,Name the most fa cup apps for league apps being 27,1 -15547,Name the total number of division for fa cups being 9,3 -15556,What is the lowest number in series when U.S. viewers is 0.23 million?,2 -15562,How many lowest mark entries are there when % passed is 76?,3 -15566,How many singers got 2nd place in the 4th evening?,3 -15570,What is the maximum overall number?,1 -15571,When the number is 2 what is the lowest amount of al-wedhat wins?,2 -15572,When jordan fa cup is the tournament how many draws?,3 -15573,What is the highest value of area when capital is San Juan?,1 -15574,How many entries for area correspond to a population density of 207.9?,3 -15577,What is the highest value for population when area is 9104?,1 -15578,What many times was the victoria derby raced?,3 -15582,How many different dates of issue are the for the coin with kumsusan memorial palace on the obverse?,3 -15600,How many women has reached the title of Miss International representing the country ranked as number 1?,2 -15602,What is the lowest value in the miss international column?,2 -15603,"What is the smallest quantity displayed under the title ""first runner-up""?",2 -15604,How many women from Uruguay has become third runner-up in this pageant?,1 -15606,How many hometowns are there when Charis Prep was the previous school?,3 -15607,"How many different items appear in the weight column when Pittsburgh, PA is the hometown?",3 -15610,What is the highest total for any country/territory? ,1 -15612,How many Miss Waters has Canada had?,1 -15613,What is the most Miss Fires any country has had?,1 -15614,What is the least amount of Miss Airs any country has had?,2 -15617,"In what game was the attendance at the America West Arena 18,756?",1 -15622,What is the INE code of the municipality whose official name is Berantevilla? ,1 -15632,What is the minimum sum?,2 -15633,What is the minimum manhunt beauty contest?,2 -15635,How many people wrote the episode directed by Arvin Brown?,3 -15643,"How many titles are there with the original air date of august3,2010?",3 -15652,what is the score in the philadelphia team ,3 -15654,in how many dates the game was 2,3 -15660,How many teams did inge – 6 have the high assists with?,3 -15662,How many entries are there for high rebounds when high points is inge – 19?,3 -15663,"How many games are shown when the is location attendance is phog allen fieldhouse , lawrence, ks (16,300)?",3 -15670,What's the best rank possible?,2 -15673,What is the highest numbered event?,1 -15682,Name the number of troops for troops per $1 billion being 2.45,3 -15683,Name the total number of troops per one million being 2.76,3 -15694,How many barony's appear when Ballyvadona is the townland.,3 -15695,How many items appear in the area column when Glasvaunta is the townland?,3 -15696,What is the fewest area in Derrynanool townland?,2 -15700,How many different sizes (in acres) are noted for Rathcoola East?,3 -15701,how many areas have townland as kilgilky north?,3 -15704,what is the number of areas where the townland is brittas?,3 -15706,How few acres is the area of Clashroe?,2 -15710,How many acres in the townland of Coomroe?,3 -15712,How many baronies is Maulnagrough a part of?,3 -15714,What is the acreage of the Maghereen in the civil parish of Macroom?,3 -15716,How many entries are in barony when the townland is derrigra?,3 -15717,How many entries are listed in poor law union when townland is dromidiclogh?,3 -15725,What is the maximum 2010 value for China?,1 -15727,How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113?,3 -15728,What is the max 2010 value for a 1980 gap value is 2.43?,1 -15738,Tell me the average units sold for square enix,5 -15741,"What is the average year for Ponce, Puerto Rico events?",5 -15759,What was the first year he placed 12th,2 -15765,How many years has there been a competition in Helsinki?,3 -15775,"What is the lowest number of Losses when the number of Wins is less than 4, the number of Tie is 2, and the Place is 5?",2 -15783,Tell me the highest launced for trn,1 -15784,"Tell me the average launced for capacity mln tpa of 15,0",5 -15805,What is the total number of points team Alfa Romeo 184T won?,4 -15810,Tell me the total number of % wt comp 1 foR % wt comp 2 or 27,3 -15814,How many games had 41 rushes and were than 197 yards?,3 -15815,What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games?,1 -15816,What is the pick # for Dimelon Westfield?,2 -15819,Tell me the total number of gold for bronze more than 0 and total more than 100,3 -15820,Tell me the least silver for total less than 6 and rank of 8,2 -15841,Tell me the lowest other for albanians more than 8793 and Roma less than 1030,2 -15842,Tell me the highest bosniaks for year more than 2002,1 -15843,Name the lowest ERP W with a frequency mhz less than 103.1,2 -15876,What is the largest caps value for Glen Moss?,1 -15877,What is the oldest year that the Royal Philharmonic Orchestra released a record with Decca Records?,2 -15887,What is the maximum cap number where 0 goals were scored with a rank of 15?,1 -15888,What were the fewest amount of guns possessed by a frigate that served in 1815?,2 -15889,"Of the games that sold 321,000 units in the UK, what is their average place?",5 -15892,Tell me the sum of pick number for kenny arena,4 -15900,Tell me the sum of attendane for a result of w 12-3 and week more than 12,4 -15901,Tell me the total number of attendance for result of l 18-6,3 -15902,Tell me the total number of attendance for week of 16,3 -15903,How many bronzes were held by those with a total of 4 and less than 3 silvers.,4 -15904,How many rounds did the IFL: Oakland event have?,4 -15911,Tell me the total number of date for carpet,3 -15915,Tell me the average attendance for week of 11,5 -15929,What is the highest rank of a rider whose time was 1:19.02.8?,1 -15941,What is the lowest number of silver owned by a nation that is not ranked number 1?,2 -15951,Tell me the number of weeks for bye,3 -15952,"Tell me the number of weeks for december 5, 2005",3 -15955,Tell me the total number of years for wins less than 2 and class of 50cc with points of 15,3 -15957,Tell me the average wins for class of 50cc and rank of 8th,5 -15958,Tell me the lowest wins for class of 50cc and team of tomos for year less than 1969,2 -15959,Which country has the highest bronze amount and a silver amount bigger than 41?,1 -15960,What is the lowest amount of medals Russia has if they have more than 2 silver medals and less than 4 gold medals?,2 -15963,How many years did Team Newman/Haas Racing receive a 1st place ranking?,3 -15964,What is the aggregate of place for points being 35?,4 -15965,Name the fewest points of 5 place,2 -15966,Name the total number of places for vicky gordon and points more than 23,3 -15968,Tell me the sum of week for result of l 24–21,4 -15972,Which rebound was 8 and has and ast that was less than 57?,5 -15987,Which FA Cup apps has league goals of 1 with total goals less than 1?,5 -15988,What is the highest apps total with FA cup apps of 26 with total number of goals larger than 9?,1 -15990,"What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1?",3 -15991,"What was the total attendance on December 14, 1975 after week 13?",3 -15992,"What is the sum of all totals with a rank greater than 6, gold greater than 0, and silver greater than 2?",4 -15993,"How many values for silver occur when gold is less than 1, the rank is 13, and bronze is greater than 2?",3 -15994,What is the average value of Bronze when silver is 0 and the total is less than 1?,5 -15995,What is the lowest value for bronze with a total of 3 and a value for silver greater than 1 while the value of gold is smaller than 1?,2 -15996,"How man values for bronze occur when gold is less than 1, rank is greater than 15, and total is greater than 1?",3 -16000,"How many weeks have an attendance of 64,116?",3 -16015,What are the average laps driven in the GT class?,5 -16036,Tell me the highest time for heat rank of 8 and lane more than 2,1 -16037,Tell me the least time for apostolos tsagkarakis for lane less than 6,2 -16039,Tell me the lowest round for total combat 15,2 -16057,Tell me the sum of bp 2nd comp with bp azeo of 57.5,4 -16060,"Which average 50m split had a 150m split of 1:40.00, with a placing of less than 2?",5 -16065,I want the average year of 敗犬女王,5 -16067,Tell me the average year for my queen,5 -16070,"What is the total of scoring averages with an earnings larger than $117,682 and a best finish of T24?",3 -16071,"When the earnings are less than $507,292, the money list rank 183, and more than 3 tournaments are played, what is the sum of wins?",4 -16088,What was the latest round with a running back from a California college?,1 -16093,Tell me the lowest week for w 10-3,2 -16094,Tell me the average heat rank with a lane of 2 and time less than 27.66,5 -16095,Tell me the highest overall rank for lane less than 8 and time less than 27.16,1 -16096,Tell me the total number of time for luke hall overall rank being larger than 105,3 -16099,What was the sum of ranks of those called Fernando Cavenaghi who appeared less than 7.,4 -16100,How many appearances were made by people that had 5 goals and less than 7 rank?,3 -16107,"In less than 58 laps, what is the highest grid for Alexander Wurz?",1 -16108,What is the total laps for grid 19?,3 -16111,Name the number of total for 3 gold and rank less than 3,3 -16115,"The player is Tim Regan and the pick # is position of d, what's the sum?",4 -16117,Damani Ralph is associated with which lowest pick #?,2 -16118,Chicago fire has a total of a total of how many #s?,3 -16122,Tell me the sum of Year for outcome of runner-up for world darts championship,4 -16123,"In 2007, how many points were won when more than 5 matches were played?",3 -16124,"In 2007, what is the average total matches with points % larger than 33.3?",5 -16130,Tell me the total number of year for class pos of 3rd and laps larger than 353,3 -16139,Name the fewest gold for tanzania with bronze less than 0,2 -16141,"For countries that won more than 32 gold medals, what was the highest number of golds?",1 -16152,What is the average Year for the project The Untouchables?,5 -16155,What was the latest week that the Tampa Bay Buccaneers were an opponent?,1 -16156,Name the fewest tries for leicester tigers with points less than 207,2 -16159,Name the most attendance for tamworth with home venue,1 -16160,Name the least attendance for 10 october 2006,2 -16161,I want the average bronze for total of 19 and silver of 8 with rank of 31,5 -16162,Tell me the average bronze for rank of 43 and total less than 11,5 -16169,For how long did Bolivia have a lane greater than 6?,3 -16170,"In heat rank 7, what is the sum of lanes?",4 -16172,What is the greatest lane with an overall rank of 79 and a time larger than 26.1?,1 -16173,"Tell me the highest week for metropolitan stadium for attendance more than 47,644",1 -16174,Name the sum of played for serik berdalin and drawn more than 4,4 -16175,Who had the highest total PR seats of 48 with a District seat larger than than 73?,1 -16180,Tell me the average Laps for grid larger than 12 and bikes of ducati 999rs for dean ellison,5 -16181,Tell me the highest Laps for grid less than 22 and riderS of ruben xaus,1 -16182,Tell me the total number of grid for rider of james toseland,3 -16183,Tell me the least Laps for grid larger than 2 with 35:26.734,2 -16185,"Tell me the average week for attendance of 48,113",5 -16191,Tell me the lowest silver for rank of 9 and bronze less than 2,2 -16202,How many Silver medals did nation who is ranked greater than 1 and has 4 Gold medals have?,4 -16203,Which nation has more than 6 Silver medals and fewer than 8 Gold medals?,5 -16204,What is the rank of the Nation that has fewer than 24 total medals are more than 7 Gold medals?,5 -16205,What is the rank of the nation that has more than 1 Bronze medals and fewer than 4 Gold medals?,2 -16206,How many silver medals does Belarus (blr) along with 4 gold and 4 bronze?,4 -16207,"What rank is Belarus (BLR), which earned 15 medals total?",1 -16216,"Tell me the lowest week for attedance less thaan 32,738",2 -16225,"At the UFC 78, what is the average round when the time is 5:00?",5 -16227,What is the sum of points in 2010 when the driver had more than 14 races and an F.L. of less than 0?,4 -16236,I want the highest Grid for Toyota and jarno trulli,1 -16237,Tell me the average Laps for grid larger than 22,5 -16240,"what is the total win % of manager viktor prokopenko, when he lost fewer than 2?",3 -16241,"When 4 clubs are involved, what is the average number of fixtures?",5 -16242,"In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved?",4 -16246,Tell me the sum of frequency for ERP W less than 1,4 -16247,Tell me the lowest ties played with a debut of 1936,2 -16254,I want the average pages for ISBN of 978-0-9766580-5-4,5 -16255,Tell me the sum of year for 244 pages,4 -16268,Name the total losses for 4 place and ties less than 0,3 -16269,Name the average place for ties less than 1 and losess more than 3 with points of 6 qc,5 -16270,Name the most wins for losses more than 2 and points of two with place larger than 7,1 -16271,Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2,4 -16279,"Tell me the highest series # for september 22, 1976",1 -16283,"What is the lowest number for all children when the child labour percentage is greater than 15.5 and the number of children in hazardous work is 170,500 while the number of economically active children is more than 351,700?",2 -16284,"What is the lowest total number of children when there are more than 15.2% in child labour, less than 23.4% economically active, and the number economically active is 210,800?",2 -16286,Name the lowest total for rank of 13 with bronze less than 1,2 -16287,"Tell me the sum of original week for september 16, 1982",4 -16288,Tell me the average original week for soldier field,5 -16295,Tell me the total number of crest length for year construction larger than 1957 for mattmark,3 -16302,Tell me the sum of cars per set for operator of london midland,4 -16309,"What is the average played value in Belgrade with attendance greater than 26,222?",5 -16311,Tell me the lowest year for shubert theatre,2 -16312,"Tell me the total number of years for lady cecily waynflete and opera house, kennedy center",3 -16314,When was the first beatification in Korea that was canonised before 1984?,2 -16315,"When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred?",1 -16317,"When was John Hoan Trinh Doan / St. John Hoan, who was beatified in 1909 and canonised after 1988, martyred?",1 -16318,What is the sum of year with the local host Sai?,4 -16322,Tell me the most year for 3 points,1 -16327,What is the smallest number of wins for the Totals Tournament with a Top-25 value greater than 3?,2 -16328,What is the sum of Top-5 values with events values less than 2?,4 -16329,What is the smallest value for Wins when the number of cuts is greater than 4 and the Top-5 value is less than 1?,2 -16331,Name the sum of year for 2nd position for junior race,4 -16335,Tell me the lowest bronze for panama and total larger than 8,2 -16336,Tell me the average total for guatemala and bronze less than 2,5 -16337,Tell me the number of bronze for silver of 0 and total less than 1,3 -16338,Tell me the sum of total for rank of 1,4 -16339,Tell me the total number for costa rica and rank more than 8,3 -16342,What is the sum of the averages when there are 68 caps and less than 9 goals?,4 -16345,Tell me the lowest # of bids for win percent of .667,2 -16346,Tell me the sum of cap/hor for double chair and vertical less than 479,4 -16348,Tell me the sum of year for extra of junior team competition,4 -16354,Who was the lowest division in the 7th season?,2 -16356,Which division has no playoff but has a 12th game in their season?,1 -16365,I want the lowest date for catalog of 6561910008-1,2 -16368,What was the lowest Crowd total from a game in which Essendon was the Away team?,2 -16371,What is the highest scored in the 2010 east asian football championship?,1 -16379,What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?,5 -16380,What is the average round when there is a defensive back and an overall smaller than 199?,5 -16385,What was James Reed's draft round number?,3 -16386,"What was the overall draft number of Tom Fleming, a wide receiver?",3 -16389,"What is the sum of Magnitude on february 12, 1953?",4 -16396,What was the lowest crowd seen at a game that Richmond was the Away team in?,2 -16397,What was the highest crowd count seen in the Windy Hill venue?,1 -16400,Which was the lowest overall that Wisconsin's team managed?,2 -16402,In which round did Paul McDonald have an overall greater than 109?,1 -16403,"What is the total overall in round 1, in which Charles White was a player?",4 -16407,What was the highest order amount in weeks prier to 15 and a major less than 1?,1 -16409,What is the most recent year from Creighton?,1 -16410,What is the most recent year with a United States nationality and the school Hamline?,1 -16415,How many goals were achieved when Chievo was the club and the debut year was before 2002?,3 -16416,How many goals occurred with Diego Milito in a debut year later than 2008?,3 -16424,What was the largest crowd of a game where Collingwood was the away team?,1 -16425,What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)?,2 -16430,What was the overall pick for the player who was a guard and had a round less than 9?,5 -16431,What was the lowest round number that had an overall pick up 92?,2 -16445,What was the sum of the crowds that watched Fitzroy play as the away team?,4 -16446,What is the sum of rank with years 1996–2012 and apps greater than 340?,4 -16449,What was the largest crowd to see the away team score 10.6 (66)?,1 -16450,What is the total crowd size that saw Geelong play as the away team?,3 -16466,During which round was the final cornerback drafted for the New England Patriots in 2005?,1 -16467,"What dance was Leeza Gibbons the worst dancer for, receiving a score lower than 15?",2 -16468,"What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?",4 -16469,What is the biggest crowd when carlton is the away squad?,1 -16470,What is the sum of crowd(s) when richmond is the away squad?,4 -16478,How large was the crowd when they played at princes park?,4 -16483,What was the highest percentage of internet users a nation with a 1622% growth in 2000-2008 had?,1 -16498,What was the smallest crowd for a Carlton away game?,2 -16506,"How many rounds have an Overall larger than 17, and a Position of quarterback?",3 -16507,"Which average overall has a Round of 1, and a Position of center?",5 -16509,What was the attendance when VFL played MCG?,1 -16514,How many people watched a Glenferrie Oval?,3 -16516,How many people watch Essendon as an away team?,4 -16522,What is the highest crowd at arden street oval?,1 -16523,What is geelong's aberage crowd as Away Team?,5 -16545,Name the average round where Dave Stachelski was picked smaller than 187.,5 -16549,How many average games did Nick Rimando have?,5 -16556,What is the crowd for the team with a score of 10.9 (69)?,3 -16566,Which is the lowest crop total with New South Wales at 42 kilotonnes and Victorian at less than 68 kilotonnes?,2 -16576,How many people attended the game with the home side scoring 11.13 (79)?,3 -16577,How many cop apps in the season with fewer than 12 league apps?,4 -16579,How many league apps in the season with more than 2 cup goals and more than 6 cup apps?,4 -16580,How many cup goals for the season with more than 34 league apps?,5 -16581,"How many cup goals in the season with more than 5 league apps, 1 cup apps and fewer than 4 league goals?",4 -16589,What is the smallest crowd for a game when Melbourne is the home team?,2 -16593,What year did Omar Gonzalez graduate?,4 -16605,"Which week had an attendance of 70,225",2 -16606,"What was the highest number of people injured at incidents located at Rohtas, Bihar where fewer than 13 were killed?",1 -16607,"What was the highest number of people injured in incidents in Vaishali, Bihar?",1 -16609,How many people were in the crowd at Victoria Park?,3 -16624,What is the most recent season when Fernando Alonso had more than 13 podiums in a car with a Ferrari engine?,1 -16635,What was the highest attendance of the matches that took place at Windy Hill?,1 -16638,What was the crowd population for Footscray as an away team?,1 -16640,How many bids were there for the .500 win percentage in the Ohio Valley conference?,4 -16646,What is the total of the crowd when the away team score is 4.8 (32)?,4 -16669,What was Peter Woolfolk's Total Rebound average?,4 -16675,What was the most recent year that Kathy Ahern was a runner-up?,1 -16681,How many rounds were fought with opponent Kevin Roddy?,3 -16689,What was the attendance when South Melbourne was the away team?,4 -16692,What is the highest numbered grid with a time or retired time of 52:52.1881?,1 -16694,What is the average grid number for paul cruickshank racing with less than 27 laps?,5 -16695,"What is the lowest total metals of a team with more than 6 silver, 6 bronze, and fewer than 16 gold medals?",2 -16696,"What 09-10 class, with a graduate percentage of 85% had the least amount of points?",2 -16697,What is the crowd size of the game at Brunswick Street Oval?,4 -16700,"What week has a date of September 3, 2000?",5 -16708,What was the crowd size when Essendon was the away team?,3 -16711,What year did the Capital City Giants have a game with the final score of 8-0?,5 -16717,What round was the overall 63 drafted?,3 -16729,What year has the time of 55:29:20?,3 -16743,How many point totals are there that rank higher than 9 and have a PPG avg higher than 13.4?,3 -16744,How many players played over 125 games and were named david gonzalvez?,3 -16751,What were the highest points for less than 78 laps and on grid 5?,1 -16756,What is the sum of all the crowds at matches where the away team's score was 7.6 (48)?,4 -16770,"When richmond played away, what was the largest number of people who watched?",1 -16773,"What is the sum of week(s) with an attendance of 30,751?",4 -16785,What is the largest overall rank for a center drafted before round 10?,1 -16787,What is the average overall rank of all players drafted from Duke after round 9?,5 -16788,What is the sum of all rounds where a Tennessee State player with an overall rank less than 261 was drafted?,3 -16789,What is the highest overall rank of any Tennessee State player drafted before round 10?,2 -16790,How many rounds did Blane Smith play linebacker?,3 -16791,How many times was Arizona the team and the round was bigger than 11?,3 -16794,What is the largest crowd at princes park?,1 -16798,How many games had an assist number greater than 54?,4 -16804,How many years has the winner been a member of the National Football League?,5 -16807,What is the lowest crowd at corio oval?,2 -16816,How many totals are there for players with an average under 8 and less than 4 matches?,3 -16817,What is the highest rank for championships with christy heffernan with over 4 matches?,1 -16831,"What is the smallest number of goals for the player from 2008-present named tony beltran, ranked lower than 7?",2 -16832,What is the smallest number of goals for andy williams?,2 -16833,What is the highest number of goals for robbie findley ranked above 10?,1 -16854,How many times is st kilda the away team?,3 -16855,What is the largest crowd when the home team scores 14.12 (96)?,1 -16862,How many weeks total did the New York Jets face the Pittsburgh Steelers?,3 -16863,"What week did the Jets play in the meadowlands with and attendance of 78,161?",4 -16874,"What is the % (1960) of Troms, which has a % (2040) smaller than 100 and a % (2000) smaller than 4.7?",4 -16875,What is the % (1960) of the county with a % (2040) of 3.4?,3 -16878,"How many people attended the Cleveland Browns game on November 11, 1979?",1 -16879,"The game on September 2, 1979 was during which week of the season?",3 -16883,What is the crowd with an Away team score of 8.11 (59)?,5 -16889,What was the highest attendance at Junction Oval?,1 -16893,What was the lowest crowd size when the away team scored 11.17 (83)?,2 -16894,What was the average crowd size when the away team was South Melbourne?,5 -16901,What is the lowest number of bronze medals for teams ranked below 13?,2 -16902,How many golds for teams ranking below 7 with 3 bronze and less than 5 total medals?,3 -16903,"What is the lowest score in the Highest score column when Master P was the Worst dancer(s), Drew Lachey was the Best dancer(s), and the Lowest score was under 8?",2 -16906,What is the lowest of the Highest score for the Quickstep Dance and the Lowest score under 16?,2 -16932,What is the largest crowd when the home team scores 16.16 (112)?,1 -16938,What is the largest crowd when st kilda was the away team?,1 -16968,What is the WPW freq with a day power of 250?,4 -16969,"What is the Triad frew with a day power of 5,000?",3 -16972,What was the largest crowd for an away Carlton game?,1 -16975,What was the crowd size at the game where the home team scored 12.17 (89)?,5 -16976,"What is the Euro for a ticket with a Price per ""Within"" Day of &0 8?",4 -16977,What is the lowest Euro for a ticket with a price per valid day of & 34?,2 -16979,In how many rounds of the draft was there a college from Georgia involved?,3 -16984,What is the car with the lowest extinct year that has a NBR class of 32?,2 -16992,What is the first year that Mario Lemieux from Canada won playing center?,2 -17003,Which model has a maximum memory of 512 mb?,1 -17005,What is the largest crowd for a Melbourne away team?,1 -17012,What was the smallest crowd size at a home game for Footscray?,2 -17017,What was the sum of the crowds at Western Oval?,4 -17018,What was the total crowd size when the away team scored 17.13 (115)?,3 -17030,What is the average grid number with a ferrari and a time or retired time of 1:32:35.101?,5 -17033,"What is the week more than 58,675 attended on october 22, 1995?",4 -17034,"What is the latest week with the date of november 5, 1995?",1 -17035,"How many weeks was the attendance less than 74,171 and the result was w 26–10?",3 -17044,What round did Takayo Hashi face Yoko Hattori?,4 -17051,What is the sum of bronze when silver is greater than 3?,4 -17052,"What is the average total when gold is 0, bronze is 0, and silver is smaller than 1?",5 -17053,What was the total attendance in week 8?,3 -17064,What is the size of the crowd for the game with Footscray as the home team?,5 -17065,What is the largest crowd for any game where Footscray is the home team?,1 -17066,"What is the maximum number of draws when the diff is smaller than 186, points are fewer than 12 and games played fewer than 6?",1 -17067,What is the average diff when games played are more than 6?,5 -17068,What is the highest draws when more than 6 are played and the points against are 54?,1 -17069,What is the maximum number of points against when the team has more than 0 losses and plays fewer than 6 games?,1 -17070,What is the number of games played for the team with 12 points and an against smaller than 52?,5 -17074,"What is the lowest average parish size with 47.2% of adherents and 4,936 regular attendees?",2 -17075,What is the average regular number of attendees that has 79 parishes?,5 -17076,"What is the lowest number of monasteries with over 20 parishes, 210,864 regular attendeeds, and over 799,776 adherents?",2 -17091,What is the smallest crowd at the Victoria Park Venue?,2 -17093,What is the largest crowd at arden street oval?,1 -17115,"When Fitzroy are the away team, what is the average crowd size?",5 -17118,"What is the average number of tries that has a start larger than 32, is a player of seremaia bai that also has a conversion score larger than 47?",5 -17119,For the player fero lasagavibau who has the lowest start?,2 -17121,What was the average round when he had a 3-0 record?,5 -17127,"What was the earliest week the team played the chicago cardinals in front of less than 25,312?",2 -17131,"During what week was the match on November 10, 1963?",5 -17136,What is the average crowd size for games with north melbourne as the away side?,5 -17137,How many forms have less than 18 pages?,3 -17138,"What is the sum of forms with greater than 17 pages and a total of $1,801,154?",4 -17148,Which average crowd has a Home team score of 11.15 (81)?,5 -17160,What is the crowd size of the game where the away team scored 8.15 (63)?,4 -17161,Which higher secondary school listing has the lowest total and an Aided amount larger than 14?,2 -17174,"What is the earliest Date on a Surface of clay in a Championship in Linz, Austria?",2 -17178,What is the number of people in the crowd when the away team scored 10.14 (74)?,3 -17183,What was the lowest rank by average of a couple who had an average of 23 and a total of 115?,2 -17193,How large a crowd did the Fitzroy Away team draw?,4 -17201,How many silver medals were won when there were 4 gold and 22 in total?,2 -17203,"What is the lowest number of laps for ryan newman with over 96 points, a cur number under 24,",2 -17204,What is the sum of car numbers with less than 126 points and 147 laps?,4 -17205,"How many total laps for the driver with Winnings of $116,033, and a Car # smaller than 18?",3 -17209,What is the smallest crowd that Footscray had as the away team?,2 -17217,What lane is David Carry in heat 1?,3 -17220,"For the 1967 Cleveland Browns season what is the total number of times they played the Minnesota Vikings and had an atttendance smaller than 68,431?",3 -17221,"What is the lowest attendance for a game before 10 weeks on November 12, 1967",2 -17222,"What is the smallest number of injured in mayurbhanj, odisha and less than 1 killed?",2 -17224,"When the Away team had a score of 11.16 (82), what is the average Crowd?",5 -17230,What is the number of the crowd for the home team of South Melbourne?,4 -17235,What is the largest crowd size that had a home team score of 17.18 (120)?,1 -17241,What is the largest crowd for an away team score of 8.7 (55)?,1 -17247,How large was the crowd at Carlton's home game?,3 -17250,What was the crowd when the VFL played Windy Hill?,4 -17252,What was the sum of the crowds in the matches where the away team scored 11.8 (74)?,4 -17258,What is the division in the season more recent than 2012 when the round of 16 was reached in the FA Cup?,3 -17259,What is the division in the season with 13 tms and pos smaller than 8?,3 -17260,"What is the population of the county with an area of 9,378 km² and a population density larger than 46.7?",2 -17262,"What was the first week to have attendance of 65,866?",2 -17271,How big was the crowd when Geelong was the home team?,3 -17275,What is the total in the case where theere are 6 lecturers and fewer than 48 professors?,5 -17276,"What is the total in the case when there are more than 4 associate professors, 5 lecturers and fewer professors than 40?",3 -17277,"How may lecturers are there in the case when there are more than 8 assistant professors, fewer than 35 associate professors, more than 14 professors and total of more than 81?",3 -17278,What is the maximum number of associate professors when there are more than 5 assistant professors and fewer than 14 professors?,1 -17289,What is the total crowd size when the away team scores 14.6 (90)?,4 -17290,What is the average crowd size when fitzroy plays at home?,5 -17292,What is the lowest number of bids in the Missouri Valley conference?,2 -17294,What was the last week when the team had a bye week?,1 -17297,What was the smallest crowd for a game where the home team scored 11.18 (84)?,2 -17298,What was the smallest crowd size for a home game for Richmond?,2 -17305,What was the average crowd size when the home team scored 9.8 (62)?,5 -17307,What is the average amount of goals that have a goal difference or 8 and the losses are smaller than 12?,5 -17308,How many goals have a Lokomotiv Plovdiv club and goals against larger than 58?,3 -17309,What is the average goal difference using slavia sofia club?,5 -17310,What is the played average that has botev plovdiv as the club and wins larger than 11?,5 -17317,What was the crowd size of the match where the home team scored 7.7 (49) against Geelong?,4 -17318,Which match had the largest crowd size where the away team was North Melbourne?,1 -17321,What was the crowd size when the away team scored 10.9 (69)?,3 -17324,"What week has an attended smaller than 62,723 on October 22, 1961?",5 -17325,Which week with Green Bay Packers as an opponent is the highest?,1 -17326,What is the number of starts for the player who lost fewer than 22 and has more than 4 tries?,5 -17327,"What is the total losses for the player with fewer than 51 pens, 3 tries and 45 starts?",3 -17328,What is the average crowd size at glenferrie oval?,5 -17331,What is the largest crowd when melbourne plays at home?,1 -17342,What is the top goal for the result of 2–3?,1 -17343,When was the time of 12:49:08 first set?,2 -17350,What was the smallest crowd when Footscray played at home?,2 -17356,What is the sum of crowd(s) when north melbourne is away?,4 -17364,What is the average election for vicenza province with the liga veneta party?,5 -17365,What is the sum of elections in vicenza?,4 -17379,In 1990-2005 what is the lowest Start with Convs smaller than 2?,2 -17381,What is the total of the crowd when the home team is footscray?,3 -17384,How many weeks ended in a result of L 20-10?,3 -17392,How many points did Happy Valley score before game 14?,3 -17393,How many points were there in the game with a goal loss of 16 and a goal diff less than 26 after game 14?,3 -17394,How many draws did the game after game 14 with goal gain 17 have?,1 -17395,"How many total draws were there with a less than 8 loss, more than 30 points, and a goal diff larger than 26?",3 -17396,What is the highest loss before game 14?,1 -17397,How many average points did the player with a time/retired of +16.789 and have more laps than 68 have?,5 -17398,How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68?,5 -17399,Which was the highest crowd drawn by an Away team in Richmond?,1 -17406,The school nicknamed the wildcats has what sum of enrollment?,4 -17424,How many bronze medals for the nation with over 9 golds?,3 -17425,"What is the average number of goals that occurred in Hong Kong Stadium, Hong Kong?",5 -17431,What was the smallest crowd that Melbourne played for at home?,2 -17436,"What is the high score for the player with 0 stumps, 4 catches, more than 14 inns and an average smaller than 56.1?",4 -17437,What is the total number of runs for the player with fewer than 9 Inns?,3 -17438,What is the smallest average for the player with 13 matches and fewer than 7 catches?,2 -17448,"What population has an area (km²) of 62,848 and a density less than 37.7?",3 -17449,"Which population is the greatest, has a density of 20.3, and an area (km²) larger than 50,350?",1 -17460,What was the size of the crowd that saw the Home team score 11.10 (76)?,3 -17471,What is the highest number of laps when there are less than 5 points for team garry rogers motorsport and the grid number is under 23?,1 -17474,What is the average Worst score for Mario Lopez as the Best dancer and Tango as the Dance?,5 -17475,What is the highest Best score for the Dance Mambo?,1 -17478,What is the lowest number of dances with a rank larger than 4 and a place of 8?,2 -17479,What is the lowest number of dances with a less than 2 place and an average smaller than 27.5?,2 -17480,What is the total difference for teams that played less than 6 games?,4 -17481,What is the highest number of games played for teams that lost over 5 games and had an against total of 228?,1 -17482,How many games lost for team(s) with less than 4 paints and against total of over 340?,3 -17489,What was the largest crowd when the home team scored 14.7 (91)?,1 -17494,How big was the largest crowd recorded at the Arden Street Oval venue?,1 -17495,How big was the crowd at the match where the away team had a score of 10.14 (74)?,3 -17496,What is the average crowd size at all matches where the home team scored 6.12 (48)?,5 -17498,What is the smallest attendance in week 1?,2 -17499,"What is the larges week for the date august 9, 1968 and less than 64,020 in attendance?",1 -17500,"What is the smallest attendance number for august 9, 1968?",2 -17503,What is the lowest ERP W of the 67829 Facility ID?,2 -17505,What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17?,5 -17508,What is the sum of all the rounds when a Florida State player was drafted?,3 -17509,What is the average round in which a Safety with an overall rank higher than 89 was drafted?,5 -17516,What was the smallest crowd for a Melbourne away game?,2 -17519,What was the average size of the crowd for matches held at Corio Oval?,5 -17547,"In what week was the game on August 10, 1956 played?",5 -17549,"In what week was the game on August 24, 1956 played in front of 40,175 fans?",1 -17575,"What's the earliest year that Al Michaels was the play-by-play commentator, in which Lesley Visser and Dan Fouts were also sideline reporters?",2 -17576,For how many years combined were Frank Gifford and Dan Dierdorf color commentators?,3 -17580,Which country has a rand of 2 and a silver less than 6?,1 -17581,What is the lowest total of medals that has a gold of 3 and a silver less than 3?,2 -17582,What was the average size of the crowd for games where the home team had a score of 10.10 (70)?,5 -17589,How many medals did China receive?,2 -17590,What is the # of candidates that have a popular vote of 41.37%?,5 -17591,What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections?,5 -17592,How many general elections that have won smaller than 23 with candidates larger than 108?,3 -17598,What is the total of overall values with a safety position in a round greater than 1?,3 -17599,What is the average overall value for a round less than 4 associated with the College of Georgia?,5 -17600,What was the average attendance in weeks after 16?,5 -17601,What is the highest number killed in incident #14?,1 -17602,What was the crowd size when the away team scored 7.19 (61)?,3 -17603,What was the largest crowd at Arden Street Oval?,1 -17605,What was the lowest crowd size when the away team scored 7.19 (61)?,2 -17607,What was the gold medal total for a total of 44 medals?,2 -17608,How many silver medals were won with a total medal of 3 and a rank above 9?,5 -17609,"How many weeks had an attendance of over 68,000?",3 -17612,What was the most recent year when a g-force chassis started in 1st?,1 -17615,Which year was the vessel Deva built as a Panamax DNV class ship?,4 -17620,"Which lowest rank(player) has a rebound average larger than 9, out of 920 rebounds, and who played more than 79 games?",2 -17621,How many ranks have a rebound average smaller than 6.1?,3 -17623,What is the lowest round Trinity school was drafted with an overall higher than 21?,2 -17631,What is the sum of caps for players with less than 9 goals ranked below 8?,4 -17638,"What week had an attendance of 14,381?",5 -17639,Which round was Dave Yovanovits picked?,2 -17656,How many people attended the game against the cincinnati bengals?,3 -17661,How many games featured a home team scoring 12.18 (90)?,3 -17662,"Before 2007, how many wins were there when the point total was 48?",4 -17663,"In 2011, how many wins did Michael Meadows have?",4 -17681,What is the highest overall pick from the College of Southern Mississippi that was selected before round 6?,1 -17683,"What is the average Season for coach Fisher, and an actual adjusted record of 0–11?",5 -17685,How many seasons did coach steve fisher have?,3 -17687,How many seasons have an Actual adjusted record of 0–19?,3 -17688,"How many gold(s) for teams with a total of 14, and over 6 bronze medals?",4 -17689,What is the highest number of gold medals for the team ranked 7 with less than 3 bronze?,1 -17690,"What is the average number of golds for nations with less than 2 silver, named uzbekistan, and less than 4 bronze?",5 -17693,What was the smallest crowd size for the match played at Junction Oval?,2 -17696,What was the sum of the crowd sizes when the home team scored 9.17 (71)?,4 -17709,What is the latest year featuring candace parker?,1 -17710,What is the largest crowd when north melbourne is the home side?,1 -17714,What is the smallest crowd at victoria park?,2 -17727,What is the sum of people per km2 for the sandoy region with an area of 112.1?,4 -17728,"what is the week there were 41,604 people in attendance?",5 -17729,What is the average crowd size for games with hawthorn as the home side?,5 -17731,Who had the lowest Best time that also had a Qual 2 of 49.887?,2 -17733,What was the average crowd size for the game where the away team scored 10.11 (71)?,5 -17742,What is the average number of bronzes when the rank is below 11 for trinidad and tobago with less than 1 total medal?,5 -17743,"What is the sum of gold medal totals for nations with 1 silver, less than 2 bronze, and ranked below 10?",4 -17745,What was the July 2013 population estimate of the location which had a population density larger than 14.1?,3 -17746,"What was the lowest rank of an area with a 2011 Census population larger than 3,645,257, a House of Commons seat percentage of 11.7% and a July 2013 population estimate over 4,581,978?",2 -17747,What was the highest rank of an area with a population density larger than 5.7 and a 2006–2011 percentage growth of 5.7%?,1 -17748,"What was the lowest 2011 Census population of an area with a land area larger than 908,607.67 km²?",2 -17755,What was round 7's lowest overall?,2 -17759,What is the largest crowd for the St Kilda as the away team?,1 -17764,What is the total number of the crowd at Glenferrie Oval?,3 -17768,"What is the largest attendance on august 10, 1963, and a week larger than 1?",1 -17772,What is the smallest crowd at princes park?,2 -17773,What is the highest ranked nation with 15 silver medals and no more than 47 total?,1 -17774,What was the highest rank by average of a couple who had an average of 25.3 and had more than 10 dances?,1 -17780,What is the largest crowd that has the away side scoring 10.14 (74)?,1 -17785,What is the smallest crowd when richmond is away?,2 -17791,What round was the draft pick of tight end with an Overall larger than 21?,3 -17800,How many heats had 5 lanes and a rank less than 110 for the nationality of Honduras?,3 -17801,"How many heats had 2 lanes, a rank above 75, and nationality of Madagascar?",3 -17802,What is the sum of every heat for the nationality of Macedonia with a rank less than 114?,4 -17803,What was the least number of heats with more than 8 lanes for the Nationality of Germany?,2 -17811,What was the smallest crowd for the Richmond home team?,2 -17812,What was the largest crowd at the Brunswick Street Oval?,1 -17814,What was the attendance when the VFL played Glenferrie Oval?,4 -17815,What was the attendance when North Melbourne was the away team?,5 -17823,How many drafts featured fred hoaglin?,3 -17825,What is the highest overall number for someone from round 16?,1 -17826,What was the average crowd size when Melbourne was the home team?,5 -17852,What was the largest crowd where Carlton was the away team?,1 -17855,What was the lowest attendance at a Fitzroy match?,2 -17856,What is the highest rank that corresponds to an all-time rank of 86 and a debut year before 1995?,1 -17858,"What is the highest rank with more than 498 apps, an all time rank of 6, and a debut year later than 1992?",1 -17876,WHAT WAS COLLINGWOOD'S LOWEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?,2 -17877,WHAT WAS ESSENDON'S HIGHEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?,1 -17883,What is the highest number of losses that a team who had an away record of 1-6 and more than 4 wins had?,1 -17888,What is the average crowd for Carlton?,5 -17890,What was the largest crowd for North Melbourne,1 -17899,What was the average attendance when the opponent was at Philadelphia Eagles and the week was later than week 6?,5 -17900,"What was the attendance for the game on October 30, 1994 for a week after week 2?",3 -17907,What is the biggest crowd when the home side scores 7.7 (49)?,1 -17921,What is the average round at which is the position of Tight End and Randy Bethel?,5 -17929,What is the average of all the years when the notes are “electronics brand?”,5 -17931,What is the largest crowd at Lake Oval?,1 -17935,"How many goals have a result of 0-1 on march 28, 2007?",3 -17942,What was the average crowd size when teh home team scored 13.24 (102)?,5 -17948,What year was Leon Blevins picked?,4 -17949,What year was Jordan Hill picked overall number 8?,2 -17951,What is the place of the team that had a total score larger than 37 and a week one score above 20?,2 -17956,How many games is collingwood the home side?,3 -17957,"Who was the opponent on the date of November 29, 1970 and the attendance was less than 31,427?",5 -17959,"What was the attendance of the game on December 13, 1970?",3 -17962,What is the average crowd size when the home side scores 8.9 (57)?,5 -17964,What is the average crowd size when the home team scores 16.9 (105)?,5 -17976,What is the lowest crowd size at MCG?,2 -17978,What is the average crowd size when the home team is North Melbourne?,5 -17988,What was the highest heat with a time slower than 48.87 from sweden?,1 -17989,"How many lanes featured a swimmer ranked above 4, in a heat later than 1, from australia, named ashley callus?",3 -17992,What is the most recently founded school that joined in 2011?,1 -18017,What is the average incorporataed year of the Air India Charters company?,5 -18018,How many votes were tallied in 1956 with a % of national vote larger than 11.47?,4 -18019,"How many candidates were nominated in 1952 with under 305,133 votes?",4 -18020,"How many votes were tallied with a % of national vote of 13.11, and over 39 candidates nominated?",3 -18022,How many in attendance when Penguins were home with a record of 14–19–6 with less than 34 points?,3 -18028,Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27,4 -18029,WHich Evening Gown has a Swimsuit smaller than 7.99 and a Interview larger than 7.98?,5 -18030,"Which Interview has a Swimsuit larger than 7.6, and a Province of la vega, and an Average smaller than 8.38?",4 -18038,"How many episodes were in the season that ended on April 29, 1986?",5 -18042,What is the Total medals won by the nation in Rank 6 with less than 2 Bronze medals?,4 -18043,How many Gold medals were won by the Nation that had more than 12 Bronze medals and less than 124 Total medals?,3 -18046,"December larger than 21, and a Opponent of Pittsburgh penguins had what average game?",5 -18051,"Which Density per km² is the lowest one that has a Number (map) smaller than 13, and an Area in km² of 11.1?",2 -18053,"How much #s have an Area in km² larger than 13.5, and a Population Canada 2011 Census of 134,038?",3 -18054,"Which Number (map) is the lowest one that has a Area in km² of 9.7, and a Population Canada 2011 Census larger than 66,158?",2 -18055,"Attendance of 19,741 had what average week?",5 -18063,"Name of gilmar, and a Caps smaller than 94 had how many highest goals?",1 -18066,Name of rivelino had how many highest caps?,1 -18068,"Which Frequency has a Webcast of •, and a Callsign of xemr?",5 -18071,"Which Frequency has a Website of •, and a Webcast of •in san antonio?",5 -18077,"What is the sum of the weeks during which the Redskins played against the Houston Oilers and had more than 54,582 fans in attendance?",4 -18078,What is the highest attendance for week 1?,1 -18079,"What is the total number in attendance for the game after week 8 that was on November 25, 1979?",3 -18127,What's the lowest DCSF number in Aycliffe Drive but an Ofsted number smaller than 117335?,2 -18139,"Which Wins is the highest one that has a Year larger than 1996, and a Championship Finish of 1st, and Points smaller than 168?",1 -18140,"Which Year is the highest that has a Team of walker racing, and Wins larger than 1?",1 -18141,"Which Points have a Year larger than 1998, and Wins of 1?",5 -18142,"What is the lowest bronze number when silver shows 2, and the total is 8?",2 -18143,"What is the silver number when gold is more than 4, and the total is less than 24?",5 -18144,What is the gold number when the total is 8 and bronze is more than 4?,5 -18145,"What is the sum of Total for 0 gold and less than 2, silver with a rank of 6?",4 -18146,"What is the average Gold when silver is more than 2, and bronze is more than 1",5 -18147,"What is the average Bronze when silver is more than 2, and rank is 2, and gold more than 2",5 -18158,What is Arkansas State's total pick number with an overal lower than 242?,3 -18160,What is the overall number for a kicker with a pick of less than 6?,3 -18173,What is the highest round where a back named Ed Cody can be found?,1 -18174,"Which Losses is the lowest one that has a Season smaller than 1920, and Draws larger than 0?",2 -18175,"Which Draws have Losses larger than 16, and a Season larger than 1966?",4 -18176,"Which Draws have a Team of annandale, and Losses smaller than 13?",4 -18177,"Which Draws have Losses smaller than 16, and a Team of university, and Wins larger than 0?",5 -18178,"Which Wins is the lowest one that has a Season smaller than 1920, and Losses smaller than 14?",2 -18183,"For the game with 6,126 in attendance, how many points did both teams have in the standings?",3 -18196,What is the average number of points of the team with more than 18 played?,5 -18197,What is the lowest score of the team with 19 points and less than 18 played?,2 -18198,What is the average number of draws of the team with less than 17 points and less than 4 wins?,5 -18202,Which is the lowest round to have a pick of 12 and position of linebacker?,2 -18204,How many picks were from Lamar College?,3 -18205,How many overall values have a college of Notre Dame and rounds over 2?,3 -18215,What is the fewest ties the team had with fewer than 7 games?,2 -18219,"Which Net profit/loss (SEK) has a Basic eps (SEK) of -6.58, and Employees (Average/Year) larger than 31,035?",4 -18220,"Which Passengers flown has a Net profit/loss (SEK) smaller than -6,360,000,000, and Employees (Average/Year) smaller than 34,544, and a Basic eps (SEK) of -18.2?",4 -18221,"Which average Net profit/loss (SEK) has Employees (Average/Year) larger than 18,786, and a Year ended of 2000*, and Passengers flown larger than 23,240,000?",5 -18222,"How many Employees (Average/Year) have a Net profit/loss (SEK) larger than 4,936,000,000, and a Basic eps (SEK) larger than 1.06?",3 -18224,"What average week has shea stadium as the game site, and 1979-12-09 as the date?",5 -18225,Name the most rank for the United States with wins less than 1,1 -18226,Name the most rank for wins more than 0 and events of 26,1 -18227,Name the average earnings for rank of 3 and wins less than 3,5 -18228,What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85?,5 -18229,What is the lowest density of alessandria where the area is bigger than 16.02 and altitude is less than 116?,2 -18230,What is the lowest density of serravalle scrivia?,2 -18231,What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?,2 -18232,"What myspace has linkedin as the site, with an orkit greater than 3?",5 -18233,"How many linkedin have Facebook as the site, with a myspace less than 64?",3 -18234,"What is the highest Ning that has a bebo less than 4, an orkut less than 100, with a plaxo greater than 0?",1 -18235,"What is the average plaxo that has a myspace greater than 64, a bebo greater than 3, with 4 as the friendster?",5 -18238,What's the highest Average that has a 1987-88 of 55 and a Played that's larger than 114?,1 -18239,"What's the lowest Points for the Team of San Martín De Tucumán, and a Played that's smaller than 38?",2 -18241,"What's the total of 1988-89 that has a 1986-87 of 38, and Points that's smaller than 109?",4 -18243,What is the largest number for bronze with a rank of 19?,1 -18246,Record of 11-10-3 is what sum of game #?,4 -18252,What was the Attendance when Lincoln City was the Opponents with H/A of A?,3 -18266,How many people in total attended the game on 1 november 1997?,3 -18267,"Wins of 3, and a Pos. larger than 3 is what average loses?",5 -18268,Matches larger than 5 is the sum of what position?,4 -18270,How many seasons did Charles C. Farrell coach?,3 -18271,What's the average pct for George Felton when he had losses greater than 7?,5 -18284,"Player of dan federman, and a Pick larger than 114 involves which highest round?",1 -18287,How many finalists were there when the years won was 2008 and the won % was greater than 33?,4 -18295,How many points have a percentage of possible points of 67.22%?,4 -18297,"How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109?",4 -18306,What is the average February that has 56 as the game?,5 -18307,What is the sum of team impul with the date of 8 july,4 -18309,what is the lowest round pole position of satoshi motoyama,2 -18312,"Which Lost has a Drawn larger than 1, and Games smaller than 7?",2 -18313,Which Drawn has Games smaller than 7?,4 -18314,"How many Games have a Drawn smaller than 1, and a Lost larger than 4?",3 -18318,What is the lowest number of bronze medals received by a nation with fewer than 0 gold medals?,2 -18319,What is the lowest number of silver medals for a nation with fewer than 1 total medals?,2 -18321,"Which Total is the highest one that has a Gold of 1, and a Nation of czechoslovakia?",1 -18322,How much Total has a Silver smaller than 0?,3 -18323,"Which Total has a Rank of 4, and a Silver smaller than 4?",5 -18324,"Which Silver is the lowest one that has a Bronze smaller than 1, and a Gold larger than 0?",2 -18325,WHich Year has a Music director(s) of anu malik?,4 -18326,Which Year has a Film of baazigar?,1 -18336,"Which Year is the lowest one that has a Regular Season of 5th, atlantic, and a Division larger than 4?",2 -18337,Which Year has Playoffs which did not qualify?,5 -18351,What is the mean round number for center position when the pick number is less than 23?,5 -18352,"Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1233, and a Rank of 9th?",4 -18353,"Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1467.5, and a Common of moncalieri?",4 -18354,"How much Area (km 2) has a Common of collegno, and a Population smaller than 50137?",3 -18355,"How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2?",3 -18356,"Which Population is the highest one that has an Altitude (mslm) smaller than 229, and an Area (km 2) larger than 32.7?",1 -18364,"What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points?",5 -18386,Name the most goals for josep samitier,1 -18389,Which December has a Game of 37 and Points smaller than 47?,5 -18390,"Which Points have a December smaller than 6, and a Score of 1–1 ot, and a Game smaller than 28?",2 -18393,Which Enrollment has a Mascot of norsemen?,4 -18397,Which Win percentage has a Name of red kelly?,4 -18399,"Which Win percentage has Points smaller than 472, and a Record (W–L–T/OTL) of 140–220–40?",5 -18405,Which highest Points has a Score of 1–1 ot?,1 -18424,Position of fullback has what highest weight?,1 -18426,What is the highest rank for ben crenshaw after winning more than 14 times?,1 -18427,What is the lowest number of wins for ben crenshaw?,2 -18432,How many games does team Czechoslovakia have that had a drawn greater than 0?,1 -18437,How many yards did Davin Meggett have with more than 9 Rec.?,4 -18438,What is Darrius Heyward-Bey's average with more than 20 yards and less than 80 long?,3 -18439,How many points are associated with a Time/Retired of +10.131 secs?,3 -18440,"What is the grid associated witha Time/Retired of +8.180 secs, and under 47 laps?",4 -18441,What is the highest drawn for points over 545?,1 -18442,What's the average loss when the points were 545?,5 -18443,How many games were lost when the order was 2nd and the play was more than 13,3 -18444,"Name the least rank with bronze of 2, gold more than 0 and nation of ynys môn/anglesey with total more than 8",2 -18445,"Name the least total with rank less than 7, gold more than 16 and bronze less than 29",2 -18446,"Name the total number of total with silver of 6, bronze more than 5 and gold less than 4",3 -18449,"What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8?",5 -18450,"Which Lost has Games of 64, and Champs smaller than 0?",5 -18451,Which Draw is the lowest one that has Champs smaller than 0?,2 -18453,"Which Champs is the average one that has a Draw larger than 2, and Games smaller than 60?",5 -18457,"size (steps) that has a size (cents) of 58.54, and a just ratio of 28:27, and a just (cents) larger than 62.96 is what total number?",3 -18458,"size (steps) of 15, and a just (cents) larger than 435.08 is what highest size (cents)?",1 -18459,ratio of 16:13 has how many highest size (steps)?,1 -18460,"ratio of 15:14, and a just (cents) larger than 119.44 is what average size (cents)?",5 -18467,What are the lowest wins for Australia?,2 -18468,"What was the highest rank for greg norman with Earnings less than $10,484,065?",1 -18469,"how many wins did players earning less than $10,484,065 have?",4 -18479,How many laps for mi-jack conquest racing when they went off course?,4 -18480,"How many laps are associated with a grid greater than 8, under 11 points, and will power?",3 -18485,"Name the average Bronze when silver is more than 3, gold is more than 1 and the total is 14",5 -18486,Name the total number of total for rank of 7 and bronze less than 1,3 -18487,Name the most silver with bronze more than 1 and gold more than 1 with total less than 7,1 -18488,Name the sum of total for gold less than 1 and bronze of 3,4 -18489,Name the total number of bronze with rank of 5 and silver more than 1,3 -18490,What is the total population from the 2000 census for the municipality that has a 464.5 square km area and a population density in 2010 larger than 1840?,3 -18491,What was the sum of the population in 2010 for the division of japeri with an area of 82.9 squared km?,4 -18495,What is the total number of losses that have 1 draw and games over 7?,3 -18496,How many rounds had a pick number of more than 10 and Appalachian State as a college?,3 -18497,What is the largest overall where the position was linebacker and the pick number was more than 9?,1 -18499,What is the game number with a score of 116–138?,3 -18507,What is the average pick number of Pennsylvania?,5 -18510,What is the lowest round of the player from UCLA?,2 -18527,What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer?,3 -18528,What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer?,4 -18529,What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer?,4 -18533,Which Drawn has a Difference of 14?,5 -18535,"What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing?",4 -18545,How many picks did the College of USC wind up getting?,3 -18549,"What is the lowest year that has chester-le-street as the city, with 345 runs as the score?",2 -18552,What is the 2nd (m) value for Gregor Schlierenzauer?,2 -18554,What was the amount of the 1st prize when paul azinger (9) was the winner?,5 -18569,What is the highest uni# of the person with the first name Todd?,1 -18572,"How many were in Attendance on December 11, 1954?",3 -18573,"In what Week were there more than 23,875 in Attendance at Memorial Stadium with Detroit Lions as the Opponent?",5 -18577,What is the highest game number when the rangers had a record of 11-11-1 and the date was after November 29?,1 -18580,"What is the lowest 4 hoops, 2 clubs of the nation with a total of 38.25?",2 -18581,"What is the total of Greece, which is placed below 8?",3 -18582,"What is the palce number of Russia, which has 6 ropes of 19.425 and a total less than 38.925?",4 -18583,"What is the place of the nation with a total greater than 37.85 and 4 hoops, 2 clubs of 19.15?",4 -18584,"What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25?",1 -18589,"Which Points have a 1st (m) smaller than 132.5, and a Nationality of aut, and a Rank larger than 2?",5 -18590,"Which Points have a Rank of 3, and a 1st (m) smaller than 132?",4 -18591,What was the average rank of Wolfgang Schwarz with greater than 13 places?,5 -18593,What is the lowest round number for the fight that had a time of 1:09?,2 -18594,"How much Overall has a Pick # smaller than 20, and a Round smaller than 6?",4 -18595,"Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127?",5 -18596,How many picks does chad owens have?,3 -18597,What is the lowest value in April with New York Rangers as opponent for a game less than 82?,2 -18598,What is the highest value in April with a record of 35–37–11 and more than 81 points?,1 -18608,What number last Runners-up where there when the Last win was 1999 and the Runners-up was bigger than 1?,3 -18609,What is the number of Last Runners-up that has the club name of dempo sc?,4 -18616,"Which Attendance is the highest one that has a Week smaller than 9, and a Result of l 24–23?",1 -18617,"Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137?",5 -18618,"Which Game has Points of 53, and an Opponent of @ minnesota north stars, and a December larger than 30?",5 -18619,Which December has a Record of 21–6–5?,5 -18620,Which Points have an Opponent of @ pittsburgh penguins?,1 -18624,How much Attendance has an Opponent of swindon wildcats?,3 -18625,"Which Attendance is the lowest one that has a Venue of away, and a Date of 19?",2 -18650,Around what time frame release a Sampling Rate of 12-bit 40khz?,4 -18656,What's the mean number of wins with a rank that's more than 5?,5 -18658,What is the position number of the club with more than 24 points and a w-l-d of 8-5-3?,3 -18660,What is the highest number of games played of the club with a position number less than 4 and a 29-24 goals for/against?,1 -18662,"What is the smallest attendance number for December 3, 1944?",2 -18670,What were Will Rackley's total rounds?,3 -18671,Which cornerback has the lowest overall and a pick number smaller than 16?,2 -18672,Which cornerback has the highest round?,1 -18678,Name the average votes for one london,5 -18680,"Which Earnings ($) is the lowest one that has a Rank of 1, and Events smaller than 22?",2 -18681,How many earnings have Wins larger than 3?,4 -18683,"How many Poles have a Bike of honda rc212v, and Podiums smaller than 0?",3 -18684,"Which Wins is the highest one that has a Pos of 2nd, and Poles larger than 2?",1 -18685,What is the average of points for 8th place with draw more than 8?,5 -18686,"Which Points have a Game smaller than 8, and a Record of 1–0–0?",4 -18687,"Which Game has a Record of 5–3–1, and an October smaller than 29?",4 -18688,Which Game has a Score of 3–4?,2 -18689,"Which Game has a Record of 4–2–1, and Points larger than 9?",4 -18699,"What is the highest round of Tommy Allman, who had a pick less than 40?",1 -18701,What is the total number of rounds of the end player with a pick number greater than 303?,3 -18702,What is the highest pick of the back player from round 28?,1 -18704,On what Week was the Result W 17-14?,5 -18706,What is the attendance in week 4?,5 -18712,What is the lowest rank of Citigroup?,2 -18713,What is the market value of the automotive industry?,3 -18715,"Name the total number of attendance for october 20, 1946 with week less than 4",3 -18716,"Name the most attendance for november 17, 1946 and week more than 8",1 -18717,What is the sum of the points for the player who was a rank of 61t?,4 -18719,What are the highest points that Emmitt Smith had?,1 -18723,"Which Year is the highest one that has a Venue of blackwolf run, composite course, and a Score of 281?",1 -18725,"How many world rankings are after Aug 5, 1980 ?",4 -18770,"How much Rank has a Name of simon ammann, and a 2nd (m) larger than 139?",3 -18771,How much Rank has Points larger than 282.5?,3 -18772,Which Rank is the highest one that has Points smaller than 256.6?,1 -18773,"Which 2nd (m) is the highest one that has a Nationality of sui, and a Rank smaller than 3?",1 -18784,Name the least place for draw more than 3 and points of 8,2 -18789,"What is the average rank of Roman Koudelka, who has less than 274.4 points?",5 -18790,What is the lowest rank of the player from Aut with a 1st greater than 132?,2 -18792,"What is the average rank of Gregor Schlierenzauer, who had a 1st greater than 132?",5 -18795,How many points was before game 14?,4 -18796,What is the average points on November 6?,5 -18797,Which average's against score has 2 as a difference and a lost of 5?,5 -18798,How many positions had a difference of - 4 and an against of less than 24?,3 -18799,"What is the smallest lost when position is larger than 6, drawn is 7, and the points stat is less than 15?",2 -18800,What is the largest played number when the difference is - 8 and position is more than 8?,1 -18801,What is the mean drawn when the difference is 0 and the against stat is more than 31?,5 -18803,Number of 13 that has what highest weight?,1 -18805,"Name of byron geis, and a Weight smaller than 195 involves what average number?",5 -18807,What day in february was game 53?,5 -18809,"Which Place is the lowest one that has a Total smaller than 24, and a Draw larger than 7?",2 -18811,after 1987 and entrant of first racing what is the highest points?,1 -18812,with year greater than 1988 what is the total number of points?,3 -18813,what is the points total for forti corse?,4 -18828,What is the game number held on May 20?,5 -18832,How many years have an Award of press award?,3 -18834,"Which Year is the highest one that has a Work of the clone, and an Award of contigo award?",1 -18850,"Which Year is the highest one that has a Next Highest Spender of aarp, and a US Cham Spending of $39,805,000, and a US Cham Rank larger than 1?",1 -18851,"Which US Cham Rank is the lowest one that has a Next Highest Spender of national assn of realtors, and a Year smaller than 2012?",2 -18852,Which Year is the lowest one that has a US Cham Rank smaller than 1?,2 -18857,What is the total for the place when the singer is Mariza Ikonomi when points are larger than 20?,3 -18858,What is the average total TCs of the season where the strongest storm was Zoe and the season was totals?,5 -18865,Wins smaller than 0 had what sum of year?,4 -18866,"Class of 125cc, and a Year smaller than 1966 had what lowest wins?",2 -18867,"Class of 500cc, and a Wins smaller than 0 had what average year?",5 -18868,What are the highest laps Kazuki Nakajima did with a Grid larger than 19?,1 -18871,"Participation as of actor, film editor has what average year?",5 -18873,What is the lowest last quarter with a time of 1:53.2 and odds of *1.30?,2 -18874,What is the average number of Gold when the total is 11 with more than 2 silver?,5 -18875,What is the total rank with more than 0 silver and less than 2 medals total?,3 -18877,What number of rank has more than 2 medals in total with less than 4 bronze?,3 -18879,What is the best time for marcus marshall?,5 -18880,What is the best time for a rusport driver with a qual 2 time of 1:10.166?,1 -18882,"What is the total for University of Dublin, having a panel of 0 for agricultural, was nominated by Taoiseach more than 0, and an industrial and commercial panel less than 0?",3 -18883,What is the average for the agricultural panel that has a National University of Ireland less than 0?,5 -18884,"What is the lowest number for the University of Dublin, having and administrative panel of 3, and a Cultural and Educational panel less than 2?",2 -18886,"What is the largest attendance at Memorial Stadium on December 12, 1965?",1 -18887,"Which Extra points is the highest one that has a Player of herman everhardus, and a Field goals larger than 0?",1 -18888,"Which Extra points has Points smaller than 12, and a Player of chuck bernard, and Touchdowns larger than 1?",4 -18889,"How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0?",4 -18890,Whicih Extra points are the average ones that have Points smaller than 6?,5 -18893,What is Darryl Fedorak's highest round?,1 -18898,"What is the latest date with Cores per die / Dies per module of 2 / 1, and a Clock of 1.4-1.6ghz?",1 -18911,What is the average first prize of the tournament with a score of 279 (–9)?,5 -18912,What is the lowest first prize of the Mercedes Championships tournament in California?,2 -18913,What is the average capacity for the venue where the team kommunalnik played?,5 -18916,What is the smallest number of assists with 70 Pims and less than 19 goals?,2 -18917,What is the smallest number of assists for Ben Duggan with less than 7 points?,2 -18937,"How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3?",4 -18938,"How many Podiums have a Class of 250cc, and an F laps of 0?",4 -18939,"Team of elgin city, and a Highest smaller than 537 had what total number of average?",3 -18940,"Average larger than 450, and a Capacity smaller than 5,177, and a Stadium of ochilview park is what sum of the highest?",4 -18941,"Capacity smaller than 3,292, and a Highest larger than 812, and a Stadium of strathclyde homes stadium has what sum of the average?",4 -18942,"Lowest larger than 288, and a Team of east stirlingshire has what lowest average?",2 -18946,Which December is the lowest one that has Points of 52?,2 -18947,"Which December has Points of 48, and a Game larger than 33?",4 -18954,What is the lowest round for a player selected from a college of New Hampshire?,2 -18958,What is the highest round that has a player selected from Clarkson University?,1 -18959,"What is the lowest rank of Deutsche Telekom with a market value over 209,628?",2 -18960,What is the total market value of all corporations headquartered in Germany?,3 -18961,What is the lowest earnings of Vijay Singh who had more than 24 wins?,2 -18962,"Which Rank is the highest one that has a Change smaller than 44, and a Centre of buenos aires, and a Rating larger than 628?",1 -18964,Which Rating has a Centre of helsinki?,4 -18965,"Which Change is the average one that has a Centre of buenos aires, and a Rank smaller than 46?",5 -19005,"How many Games have a Lost of 6, and Points smaller than 7?",4 -19006,What is Larry Centers' average number when there were less than 600 yards?,5 -19007,What is the highest number when there were more than 50 long and less than 762 yards?,1 -19008,What is the highest amount of yards when the average is 9.5?,1 -19030,"What is the average year that has a win less than 1, yamaha as the team, with points greater than 2?",5 -19031,"What is the highest wins that has 350cc as the class, yamaha for the team, with points less than 37, and a year after 1979?",1 -19032,"How many points have 500cc for the class, a win greater than 0, with a year after 1974?",4 -19033,"How many wins have a year after 1976, and 350cc as the class?",4 -19034,"How many San Jose wins have an LA goals larger than 6, and an LA wins smaller than 21?",3 -19035,Which San Jose goals have a San Jose wins smaller than 0?,2 -19036,Name the most april with record of 38-33-10,1 -19038,Name the total number of April for game more than 81 and reord of 38-33-10,3 -19042,What is the lowest score that has alastair forsyth as the player?,2 -19043,How many scores have paul casey as a player?,3 -19064,What is the lowest Hong Kong value with a 0 Brisbane value and a greater than 0 Kuala Lumpur value?,2 -19065,What is the highest Kuala Lumpur value with a Durban value less than 1 and a Mar Del Plata value greater than 0?,1 -19066,What is the highest New Zealand value with a Hong Kong value less than 0?,1 -19067,What is the average Singapore value with a London value less than 0?,5 -19075,"What is the total number of averages where the played is more than 38, the 1990-91 is 39, and the 1989-90 is 34?",4 -19083,What is the sum for the game with a score of 103–126?,4 -19084,What is the lowest game number that has a Record of 3–33?,2 -19087,What is the lowest round of the Kitchener Rangers (OHA)?,2 -19089,What is the average 2006 value with a 2010 value of 417.9 and a 2011 value greater than 426.7?,5 -19090,"What is the 2011 total with a 2008 value greater than 346.5, a 2009 value of 392, and a 2010 value bigger than 354.6?",3 -19091,"What is the total 2008 value with a 2006 value greater than 322.7, a 353.9 in 2011, and a 2009 less than 392?",3 -19092,"What is the highest 2009 value with a 2006 value smaller than 280.4, a 2007 less than 2.2, and a 2011 less than 3.5?",1 -19093,"What is the average 2007 value with a 2009 value greater than 2.8, a 4.9 in 2010, and a 2006 less than 2.5?",5 -19094,What is the 2006 total with a 2010 value greater than 417.9?,3 -19101,What is the highest 2nd in (m) that has a Rank more than 2 and Points more than 249.3,1 -19102,Which 2nd (m) has a 1st (m) of 120.5 and Points smaller than 249.9?,5 -19108,"What is the sum of area with a population of 5,615 and number more than 6?",4 -19110,What is the number of races that took place with points of 257?,4 -19111,What is the number of points that driver fernando alonso has in the season he had 20 races?,4 -19112,What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%?,5 -19115,What is the lowest value for apps in 2009 season in a division less than 1?,2 -19116,What is the sum of goals for Torpedo Moscow in division 1 with an apps value less than 29?,4 -19126,Enrollment that has a School of south central (union mills) has what sum?,4 -19129,What is the average Laps that shows spun off for time?,5 -19130,What is the average Laps for the Mexico team with a grid number of more than 1?,5 -19132,What is the total grid number that has 14 laps and a time of +29.483?,3 -19133,What is the total number of Laps when collision shows for time for Switzerland and less than 11 for grid?,3 -19143,What was the highest attendance for a game where Geelong was the home team?,1 -19146,"What was the largest attendance at the Telstra Dome, when the home team was the Western Bulldogs?",1 -19147,"What is the full amount of Total Cargo (in Metric Tonnes) where the Code (IATA/ICAO) is pvg/zspd, and the rank is less than 3?",4 -19159,"When 1990-1995 > 0.37, 2000-2005 of 1.37, what's the highest for 1995-2000?",1 -19160,"When 2000-2005 is smaller than 2.52, and 1990-1995 is less than 0.37, what's the total of 1995-2000?",4 -19161,What's China's highest 1985-1990 assuming a 2000-2005 larger than 3.08?,1 -19163,When did mika heinonen susanna dahlberg win mixed doubles?,5 -19164,How many years did pia pajunen nina sundberg win women's doubles?,3 -19171,"How many years have a Location of pacific ring of fire, and Eruptions of pinatubo?",4 -19173,Year larger than 2001 has what average points?,5 -19174,Team of Honda and a point total of 238 is what highest year?,1 -19179,Which First elected is the lowest one that has an Incumbent of william stewart?,2 -19183,How many extra points are there that Herrnstein had with less than 2 touchdowns and less than 0 field goals?,5 -19184,How many touchdowns are there that has field goals less than 0 and 0 extra points?,4 -19185,How many field goals are there that have 8 touchdowns and more than 49 points?,4 -19186,"What's the number of touchdowns that Snow made that had 0 field goals, more than 5 points, and more than 0 extra points?",2 -19199,What is the average game number that took place after February 13 against the Toronto Maple Leafs and more than 47 points were scored?,5 -19202,What is the average percent for the coach from 1905 and more than 7 losses?,5 -19203,How many percentages have 20 losses and more than 1 season?,3 -19210,Shawn Michaels entered the elimination chamber in what position?,4 -19213,What is the sum of all gold medals for Algeria when total medals is less than 3?,4 -19214,"what is the population of Valencia, Spain?",5 -19215,which year holds rank 2?,1 -19216,with name meridian condominiums what is number of floors?,5 -19217,with rank of 31 what is the year?,3 -19221,What's the lowest Drawn that has a Lost that's less than 0?,2 -19222,What's the total Lost with Games that's less than 4?,4 -19223,"What's the total of Games with a Lost that's larger than 2, and has Points that's smaller than 0?",4 -19224,What's the Lost average that has a Drawn less than 0?,5 -19227,"What is the average points that have a December less than 6, with a game greater than 26?",5 -19229,"Record of 42–16–8, and a March larger than 5 has what average points?",5 -19238,"Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state?",4 -19239,"Which rec has Yards of 192, and a Touchdown smaller than 1?",5 -19241,"How many Touchdowns have a rec of 10, and an Opponent of oregon state, and an Average smaller than 19.7?",3 -19242,"Which Points have an Opponent of @ atlanta thrashers, and a Game smaller than 28?",4 -19243,"How many Points have a Game smaller than 37, and a Score of 2–3, and a December of 13?",3 -19244,Which Game is the highest one that has a Score of 3–2?,1 -19251,How many seats in 2001 with a quantity greater than 4?,3 -19254,What are the average points that have december 27?,5 -19263,Which round was Brian Elder taken in?,2 -19269,What's the average year Charles N. Felton was re-elected?,5 -19270,What year was Barclay Henley first elected?,3 -19274,What's the average pole position for the driver that has a percentage of 44.81%?,5 -19275,What's the average front row starts for drivers with less than 68 pole positions and entries lower than 52?,5 -19277,"Attendance of 60,671 had what average week?",5 -19278,Week of 7 had what average attendance?,5 -19279,"How many legs were won when 6 legs were lost, the 180s was 0, and the 3-dart average was less than 69.72?",3 -19280,What is the sum of all played when less than 4 sets were won and 3-dart average was 53.19?,4 -19281,How many values for 100+ for Trina Gulliver with a 3-dart Average smaller than 75.02?,3 -19282,How many legs were lost for Trina Gulliver with more than 3 played?,3 -19283,What is the most sets won with less than 1 legs won?,1 -19284,What is the largest value for 100+ when less than 1 set was won and more than 2 legs were won?,1 -19286,"Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?",5 -19324,"Which Attendance has an Opponent of phillies, and a Record of 30-33?",4 -19325,Which Attendance is the highest one that has a Loss of batista (4-5)?,1 -19326,What is the frequency MHz of the ERP W's greater than 250?,5 -19330,What is the smallest ERP W with a frequency MHz of 94.9?,2 -19332,"What is the total number of bronze medals the U.S. Virgin Islands, which has less than 0 golds, has?",3 -19333,What is the rank of the team with 11 total medals and more than 4 silver medals has?,4 -19334,"What is the lowest total medals the team with more than 0 bronze, 6 silver, and a rank higher than 3 has?",2 -19335,"What is the highest rank of Venezuela, which has more than 9 bronze medals?",2 -19336,"What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold?",2 -19339,How many rounds have goalie as the position?,4 -19349,"What is the games number when the Position was wr, and a Number larger than 17?",3 -19350,"What is the number when the height shows 6'6""', and a Games number smaller than 4?",5 -19352,What is the highest weight for the Farnley Stakes race?,1 -19360,"How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season?",3 -19361,"What's the mean attendance number when the record is 12-4 and the average is less than 10,027?",5 -19362,"What is the full amount of averages when the sellouts are less than 14, the season is 2011-12, and attendance is less than 162,474?",3 -19364,Events smaller than 1 had what highest cuts made?,1 -19365,"What position was played with a Difference of - 5, and a Played larger than 14?",5 -19366,How many games lost associated with under 14 played?,3 -19367,How many games against for team guarani with under 3 draws?,4 -19377,"What is the pick number for the player playing tackle position, and a round less than 15?",4 -19389,What is the earliest year of Wallace & Gromit: The Curse of the Were-Rabbit?,2 -19391,March of 26 has what lowest game?,2 -19392,March of 29 involves what highest scoring game?,1 -19395,What was the grid for anthony davidson when the laps were less than 8?,3 -19397,What is the sum of the points when Carlos drove for repsol honda in 8th place?,4 -19398,What is the average points won when Carlos had 0 wins?,5 -19399,What is the highest year that Carlos drove for repsol honda and had less than 4 wins and less than 162 points?,1 -19400,What is the total number of goals from 24 tries and 96 or greater points?,4 -19407,What is the earliest year with fewer than 5 wins and 89 points?,2 -19408,When is the most recent year with more than 27 points and more than 5 wins?,1 -19409,What are the sum of points in 1989 with 0 wins?,4 -19411,How many points are there later than 1992?,3 -19415,How many points are there on november 7?,1 -19419,What is the lowest position for driver Kyle Busch?,2 -19423,"Which Year has a Group of césar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)?",5 -19426,Name the total number of valid poll with seats more than 4 and candidates more than 9,3 -19427,Name the least valid poll for munster,2 -19428,Name the average valid poll for seats less than 3,5 -19437,What was the average date with a record of 30-31-9 in a game over 70?,5 -19438,What is the latest date at Los Angeles with a game less than 62?,1 -19439,What is the latest date for a game over 69 with a St. Louis Blues opponent?,1 -19440,What is the highest game with Oakland Seals opponent and a record of 27-30-6 on a date more than 7?,1 -19441,What is the total attendance for the date of october 5?,4 -19444,What's the highest game against the New York Rangers with more than 55 points?,1 -19446,"What is the latest Fiscal Year with Revenues of $4.3 billion, and more than 85,335 employees?",1 -19447,"What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees?",5 -19448,What are the Points after 1991?,3 -19451,How many attendances had the Detroit Lions as opponents?,4 -19457,"How many Total medals for the team with a Rank of 8, 1 Bronze and more than 1 Silver?",2 -19458,How many Gold does the Nation in Rank 12 with less than 2 Total medals have?,1 -19468,"Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold?",4 -19469,Nation of total has what sum of gold?,4 -19470,"Total of 3, and a Gold larger than 0, and a Nation of belarus, and a Silver larger than 2 has what sum of bronze?",4 -19471,Bronze of 22 has what average silver?,5 -19505,"How many Rounds have a Nationality of canada, and a College/Junior/Club Team (League) of fort mcmurray oil barons (ajhl)?",3 -19506,Which Round has a NHL team of edmonton oilers and a Player of vyacheslav trukhno?,5 -19507,"Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)?",2 -19523,What is the score of the scores when Game had a Record of 17-29?,4 -19526,"What are the highest attempts that have net yards less than 631, and 2 for the touchdowns?",1 -19527,"What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8?",5 -19528,How many yards per attempt have net yards greater than 631?,4 -19529,"What are the highest touchdowns that have net yards greater than 631, with attempts less than 145?",1 -19531,How many seasons had a Super G of 2 and overall of 3?,3 -19542,"What is the rank of Greg Norman who earned more than $12,507,322?",5 -19543,"What is the rank of the United States player Davis Love III with earnings under $12,487,463?",1 -19556,"How many Picks have a Position of defensive end, and an Overall smaller than 33?",3 -19557,"Which Overall is the highest one that has a Name of gregory spann, and a Pick # larger than 19?",1 -19558,"Which Pick # has a Round larger than 5, and a Position of wide receiver, and a Name of gregory spann, and an Overall larger than 228?",5 -19561,What is the average drawn number of the team with less than 70 points and less than 46 played?,5 -19562,What is the highest position of the team with 24 lost and a drawn greater than 9?,1 -19563,How many Points has a Game of 82 and a April larger than 10?,5 -19564,How many Games have a Score of 3–3 ot?,3 -19565,Which April has a Game of 84,1 -19573,"How many years have a Pick of 12, and a Position of dt, and a College of penn state?",3 -19574,What is the scoring average where the wins are 0?,3 -19575,"What year has earnings of $557,158?",1 -19576,"Which Points have an Opponent of @ florida panthers, and a Game larger than 58?",2 -19579,Which February has a Game of 64?,5 -19580,"Which Points have a Game smaller than 60, and a Score of 2–0, and a February larger than 1?",5 -19581,Which Game is the highest one that has a February of 25?,1 -19582,"Which Game is the highest one that has a Score of 3–4 ot, and Points larger than 75?",1 -19583,"How much February has a Score of 5–2, and Points of 70?",3 -19594,Which Points have a Name of denis kornilov?,5 -19595,"Which Rank is the highest one that has a 1st (m) larger than 130, and a Name of thomas morgenstern, and a 2nd (m) larger than 139?",1 -19596,"Which Rank that a Name of thomas morgenstern, and Points larger than 288.7?",4 -19597,"How many Points have a Nationality of nor, and an Overall WC points (Rank) of 374 (13), and a Rank smaller than 4?",3 -19598,"What is the overall number for Louisiana Tech college, and a pick more than 10?",4 -19599,"What was the pick number for Deji Karim, in a round lower than 6?",5 -19601,"What is the overall number for a pick of #10, from Louisiana Tech, and a round bigger than 3?",4 -19602,"What's the Pick average that has a School/Club Team of Alabama, with a Round that's smaller than 9?",5 -19603,What's the sum of the Pick that has the Player of Robert Ingalls?,3 -19604,"What's the sum of the Pick that has the Position of Tackle, the Player Woody Adams, and a Round that's larger than 22?",3 -19606,"What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF?",4 -19613,How many Drawn is which has a Games smaller than 6?,4 -19614,What is the Points that has 61 - 15 Point difference and a Drawn larger than 1?,5 -19615,How many Drawn has a Games larger than 6?,4 -19616,"How many jewish have a muslim less than 36,041, a total less than 161,042, a year after 2006, with a druze greater than 2,534?",4 -19617,"What is the lowest year that has a druze greater than 2,534, with a total less than 121,333?",2 -19618,"What is the lowest jewish that has a druze less than 2,517, and a year prior to 2007?",2 -19619,"What is the average muslim that has a druze less than 2,534, a year prior to 2005, and a jewish greater than 100,657?",5 -19620,"How many muslims have a jewish of 112,803, and a year after 2008?",4 -19621,"What is the smallest electorate with 78,076 quota and less than 13 candidates?",2 -19624,What is the lowest rank for an album after 1999 and an Accolade of the 100 greatest indie rock albums of all time?,2 -19625,Which Week is on sunday november 28?,2 -19626,How many weeks have an Opponent of at new york giants?,3 -19629,How many people did Mayor Olav Martin Vik preside over?,5 -19630,"What's the area of askøy, with a Municipal code less than 1247?",4 -19632,What's the Municipal code of the FRP Party with an area of 100?,4 -19633,How many people does the KRF Party preside over?,5 -19634,What is the total number of overall draft picks for player whose position is C and was picked after round 9?,3 -19636,What is the total number of overall draft picks for Fred Nixon?,3 -19638,What is the highest round of the player with an overall of 152?,1 -19639,What is the average round of the defensive back player with a pick # greater than 5 and an overall less than 152?,5 -19640,"What is the average overall of John Ayres, who had a pick # greater than 4?",5 -19642,"What is the average overall of Ken Whisenhunt, who has a pick # of 5?",5 -19643,What is the lowest pick # of John Ayres?,2 -19650,What is the highest effic with an avg/g of 91.9?,1 -19652,What is the sum avg/g with an effic of 858.4?,4 -19660,"Which Season has a Game of fcs midwest region, and a Score of 40-33?",1 -19662,Which Season has a Score of 39-27?,1 -19665,What's greatest attendance on May 7?,1 -19667,"Which Points is the highest one that has a Game smaller than 43, and a January larger than 8?",1 -19668,"What is the mean number of wins for the norton team in 1966, when there are 8 points?",5 -19669,What is the most recent year for the ajs team when there are fewer than 0 wins?,1 -19670,What is the smallest point amount for years prior to 1958 when the class is 350cc?,2 -19671,"What is the largest amount of wins when there are less than 5 points, the class is 500cc, the team is norton, and the year is more recent than 1955?",1 -19681,what week number was at memorial stadium?,5 -19682,before week 12 what was the attendance on 1983-11-21?,4 -19683,"on week 16, what was the lowest attendance?",2 -19686,What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club?,3 -19693,Which ERP W has a Frequency MHz of 89.3 fm?,1 -19694,"How many wins does a player who have $7,188,408 earnings with lower than rank 5?",2 -19695,How many wins does Greg Norman have?,4 -19696,What is the lowest number played with a position of 6 and less than 1 draw?,2 -19697,What is the highest against value for Palmeiras and position less than 4?,1 -19698,What is the highest number played with more than 2 lost for Palmeiras and less than 1 draw?,1 -19699,What is the average number lost when the against value is less than 5?,5 -19700,"How many values for a win by 2 or more goals correspond to a difference of 2, more than 9 points, and the America-RJ team when more than 7 are played?",3 -19701,"What is the average total of the census after 1971 with 10,412 (32.88%) Serbs?",5 -19707,"What is the highest NFL Draft that has jeff robinson as the player, with an overall pick less than 98?",1 -19709,"What is the highest overall pick that has c as the position, with an NFL Draft greater than 1977?",1 -19722,"How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999?",4 -19723,What is the total number of quantity when the introductory year was 1984?,4 -19724,How many in the introduced segment retired later than 1994 and had Fokker as a manufacturer?,3 -19725,How many in the quantity section had Fokker as a manufacturer and retired later than 1999?,3 -19727,What year was the building with a top 3 rank and a height of 274 (84) ft (m) completed?,1 -19728,How many floors are in the 274 (84) ft (m) building that is ranked number 1?,5 -19729,Which is the highest ranked building with more than 15 floors?,1 -19730,"What is the highest points scored for the team with a position larger than 5, who had less than 4 wins and more than 8 draws?",1 -19731,"What is the average number conceded for hte team that had less than 19 points, played more than 18 games and had a position less than 10?",5 -19732,"What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?",4 -19733,What was the lowest number of wins for the team that scored more than 14 points and had a position of 7?,2 -19734,What is the total number scored for the team that had 19 points and a position larger than 4?,3 -19735,"What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points?",2 -19749,What is Henri Crockett's highest overall with more than 3 picks?,1 -19751,What are the total number of picks for a guard with fewer than 6 rounds?,3 -19752,What is the lowest overall for a quarterback with fewer than 7 rounds?,2 -19759,Name the number of enrollment for county of 48 madison,3 -19762,"What's the capacity that has the highest greater than 1,763 and is at Hampden Park?",2 -19763,"What's the highest with a capacity of greater than 4,000 and an average of 615?",1 -19764,"At Balmoor Stadium, what's the total average having a greater than 400 lowest?",3 -19772,What is the earliest date of the game with a score of 2-2?,2 -19773,What is the average date of the game with the Detroit Red Wings as the opponent?,5 -19779,What the highest Year with a Remixed by Laurent Boutonnat?,1 -19780,What's the total Year with a Length of 4:45 an has an Album of Les Mots?,4 -19783,What is the lowest position for bruce taylor?,2 -19785,What is Erwin Sommer's average position?,5 -19786,"What is the highest rank of the day with a gross of $38,916 and more than 6 screens?",1 -19789,"What is the lowest number of Golds that has Participants smaller than 14, and Rank of 1, and Total larger than 1?",2 -19792,How many total matches with less than 1 win and a position higher than 8?,4 -19794,"Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921?",5 -19795,"How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131?",3 -19797,"How many Liberal candidates have Seats in House smaller than 245, and a Popular vote larger than 350,512, and Seats won smaller than 139, and a Seat Change of +28?",3 -19811,What's the number of laps for 16 grids?,4 -19813,What's the total grid for someone with a time/retire of +44.831,3 -19814,What's the smallest grid for Time/Retired of +22.687?,2 -19829,"How many losses did the team, Sturt, have when they had more than 0 wins?",3 -19830,What is the average number of draws for the team that had more than 0 wins?,5 -19831,What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926?,2 -19832,"What is the highest number of wins for the team, Central District, who had less than 0 draws and took place during a season before 1995?",1 -19833,What is the average number of wins before the season in 1906 where there were 0 draws?,5 -19835,"What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis?",2 -19837,"What's the lowest Votes (SW Eng) with a % (SW Eng) that's larger than 2.1, Votes (Gib) of 1,127, and a Change (SW Eng) that's larger than -3.6?",2 -19838,"Which Gold is the lowest one that has a Bronze of 14, and a Total larger than 42?",2 -19839,"Which Bronze is the lowest one that has a Nation of total, and a Gold smaller than 14?",2 -19840,"How much Total has a Nation of kazakhstan (kaz), and a Gold larger than 0?",3 -19841,"Which Total is the highest one that has a Rank of 1, and a Gold larger than 11?",1 -19848,"Which 1990–95 is the highest one that has a State of karnataka, and a 2001–05 smaller than 0.2?",1 -19849,"Which 1996-00 is the lowest one that has a State of maharashtra, and a 2006–10 smaller than 0.26?",2 -19850,Which 1990–95 is the average one that has a 2001–05 larger than 0.55?,5 -19851,"Which 1990–95 is the highest one that has a State of assam, and a 1996-00 smaller than 0.02?",1 -19859,What is the highest attendance of the game on week 9?,1 -19862,What games have more than 1 draw?,5 -19863,What game is the lowest with 1 draw and less than 7 points?,2 -19864,Manager of art griggs had what lowest year?,2 -19868,"Manager of marty berghammer, and a Finish of 1st involved what lowest year?",2 -19882,"Which Position has a Team of criciúma, and a Drawn larger than 8?",5 -19884,"Which Played has a Lost larger than 14, and a Drawn of 10, and Points larger than 46?",5 -19889,Which Floors is the highest one that has a Name of one indiana square?,1 -19906,"What's the highest grid of Ronnie Bremer, who had more than 18 points?",1 -19907,What are the most points Lap 70 had with a grid larger than 16?,1 -19927,What were the average partial failures when the rocket was Ariane 5?,5 -19928,"What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes?",5 -19929,What is the sum of launches with Long March 3 and 0 failures?,4 -19930,What is the least amount of failures with 1 launch and 0 partial failures?,2 -19931,What were the average launches for Ariane 5 and 0 partial failures?,5 -19936,"Which Round is the lowest one that has a College/Junior/Club Team (League) of oshawa generals (oha), and a Player of bob kelly?",2 -19940,What's the highest Year with the Record of 18-12?,1 -19941,What's the highest Year with the Region of Southeast?,1 -19950,What is the average total that is 1st in 2010?,5 -19980,What is the highest number of apps of the player with more than 63 goals and an avge of 0.45?,1 -19981,"What is the total avge of John Hall, who has less than 63 goals?",3 -19982,When did Kim Thompson win with 278 score?,4 -19984,What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest?,4 -20000,"What's the lowest Floors with Feet that's larger htan 262, has a Name of Standard Bank Building, and Metres that's larger htan 138.8?",2 -20001,What is the sum of Metres wiht a Feet that's smaller than 196?,3 -20002,"What is the lowest week number that there was a game on October 23, 1977 with less than 68,977 people attending?",2 -20003,What is the highest weight of the position scrum half?,1 -20006,"What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?",2 -20007,What is the average position with an against value less than 11?,5 -20008,What is the largest value for lost with a position greater than 10?,1 -20009,What is the total of all against values for the Corinthians with less than 3 lost?,3 -20010,What is the lowest against value with less than 9 points and more than 6 lost?,2 -20012,what is the 1st prize for may 21,4 -20017,WHich October has a Record of 1–0–0?,2 -20019,"What year was the margin of victory 9 strokes and the purse under $2,750,000?",5 -20020,What year was the score 269?,3 -20021,What is the average number of points for a team in the 250cc class with fewer than 0 wins?,5 -20022,What is the smallest number of points for a 1981 team?,2 -20023,What is the fewest number of wins for a team ranked 8th with fewer than 32 points in the 350cc class?,2 -20031,"How many wins did the player who earned $6,607,562 have?",4 -20032,What is the average earnings made by Greg Norman?,5 -20038,"What is the average Games for 1965–1981, and a Ranking larger than 4?",5 -20043,What is the highest RNA segment having a protein of vp2 and a base pair size over 2690?,1 -20049,"How many Bronzes that has a Silver of 0, and a Gold of 0, and a Nation of denmark, and a Total larger than 1?",4 -20050,How many Bronzes that has a Nation of italy?,1 -20051,"How many Silvers that has a Gold smaller than 1, and a Rank of 9, and a Total smaller than 1?",4 -20052,Which Bronze has a Nation of spain?,1 -20054,How many Januarys had records of 22-15-6?,3 -20066,What is the earliest season with a Giant Slalom of 5?,2 -20069,Name the most events with cuts made more than 6 and top 25 more than 30,1 -20071,Name the averae top 25 with events less than 0,5 -20072,Name the total number of top 10 with top 25 less than 2 and top 5 more than 0,3 -20084,What place did russia finish in?,3 -20085,What's the WChmp of the race greater than 42 and pole greater than 11?,3 -20086,"If podiums are 26, what's the lowest WChmp?",2 -20087,"If the class is total, what is the total number of podiums?",3 -20088,"During race 14, what's the podiums?",1 -20094,"What is the average finish that has a start greater than 3, with honda as the engine, and 2011 as the year?",5 -20095,"How many starts have a year prior to 2012, and team penske as the team, with a finish greater than 27?",4 -20106,"What is the sum of numbers listed in 18-49 for the episode that aired on June 25, 2009 with an order larger than 29?",4 -20107,"What is the total 18-49 for the episode that aired on July 2, 2009 with more than 3.5 viewers?",3 -20109,What is the average 18-49 for the episode that had an order number higher than 35 and less than 3.5 viewers?,5 -20111,"What year sold 1,695,900+ copies with an Oricon position larger than 1?",5 -20121,How many people attended the game when Larry Hughes(33) was the leading scorer and cleveland was visiting?,4 -20124,"What is the highest attendance that has oakland raiders as the opponent, with a week greater than 9?",1 -20129,What was the earliest year that Park Jung-Ah won the gold?,2 -20131,"What was the Attendance on November 29, 1953?",4 -20145,"What is the highest round of Ed Smith, who had a pick higher than 261 and played halfback?",1 -20146,"What is the lowest round of Ed Smith, who had a pick lower than 19?",2 -20150,Record of 20–4 involved what highest game?,1 -20151,Opponent of @ phoenix suns had what sum of game?,4 -20169,What is the average conceded number of the team with a position lower than 8 and more than 2 wins?,5 -20170,"What is the averaged scored number of team guaraní, which has less than 6 draws and less than 5 losses?",5 -20171,What is the total number scored of the team positioned lower than 10?,3 -20172,"What is the lowest number of wins of the team with less than 24 scored, 27 conceded, and more than 18 played?",2 -20173,What is the lowest number of points of the team with 2 losses and a lower than 1 position?,2 -20176,What is the earliest game in November with more than 22 Games and Toronto Maple Leafs as the Opponent?,2 -20179,What is the highest number of bronze medals for nations with under 0 golds?,1 -20180,How many points did Stuart have when he had 0 extra points?,2 -20181,Who had the lowest field goals but had 10 points and more than 2 touchdowns?,2 -20182,How many points did Stuart have when he had less than 1 touchdown?,4 -20183,Who had a points average with 0 extra points and 0 field goals?,5 -20187,"Score of 3–2, and a Opponent of reds had what sum of attendance?",4 -20189,"Which Cuts made has a Tournament of totals, and Wins smaller than 11?",5 -20190,Which Top-25 has a Top-5 smaller than 0?,4 -20191,"Which Top-25 has a Top-5 larger than 9, and Wins smaller than 11?",4 -20192,"Which Top-5 is the highest one that has Wins of 0, and Events larger than 6?",1 -20193,"Which Top-5 is the lowest one that has Cuts made of 10, and Events larger than 10?",2 -20194,"Which Events is the highest one that has a Top-10 larger than 7, and Wins smaller than 2?",1 -20202,"How many games have a Score of 3–0, and a January larger than 12?",3 -20204,Which Game is the highest that has a January of 28?,1 -20217,In what Year was the Position 11th?,3 -20221,How many Gold medals for the country with a Rank of 1 and less than 2 Total medals?,3 -20222,How many Gold medals does the country with 2 Silver and more than 2 Bronze have?,3 -20225,"Which Capacity has a City of london, and a Stadium of queen's club?",5 -20226,"Which Rank has a Name of thomas morgenstern, and Points larger than 368.9?",5 -20227,"Which Rank has an Overall WC points (Rank) of 1561 (2), and a 1st (m) larger than 217?",5 -20228,"How much Rank has a Name of janne happonen, and a 1st (m) larger than 203.5?",3 -20229,"What is the lowest total for bronzes over 1, golds over 8, and fewer than 10 silvers?",2 -20230,What is the highest number of silvers for ranks over 7?,1 -20237,Which Round is the highest one that has a Position of running back?,1 -20239,"Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43?",2 -20243,Name the total number of pick with round less than 6 and overall of 102,3 -20250,"What is the amount of time (sum) at 40° that it takes a 16 lb shell to reach a maximum of no more than 22,000 ft?",3 -20251,What is the average maximum height of a shell that travels for more than 16.3 seconds at 55° and has a maximum velocity of 2200 ft/s?,5 -20252,What is the maximum amount of time a shell travels at 55° when it traveled less than 9.6 seconds at 40°?,1 -20254,What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25° in 10.1 seconds?,5 -20255,"What is the highest attendance for the game that was before week 6 on October 22, 1967?",1 -20264,How many picks are there for defensive back for rounds larger than 11?,3 -20265,What is the highest game that has april 21 as the date?,1 -20271,"How many golds does the nation having a rank of 8, fewer than 5 bronzes and more than 1 silver have?",3 -20276,What's the lowest amount of 12 games and less than 48 rebounds?,2 -20277,How many rebounds does Fedor likholitov have with a rank greater than 8?,4 -20278,Which game has more than 112 rebounds and a rank greater than 3?,1 -20282,with games more than 22 what is the rebound total?,4 -20306,What was the total number who attended during week 11?,3 -20307,What was the total number of weeks with a result of l 31-21?,3 -20308,"What was the average week of a game attended by 12,985 with a result of W 38-14?",5 -20318,Name the average attendance from june 11,5 -20321,"Which average Winner's share ($) has a Score of 281 (−7), and a Player of hale irwin, and a Year smaller than 1983?",5 -20322,What was the highest season with Barwa International Campos Team as champion?,1 -20325,What year did the Nerang Suburb get founded?,3 -20327,What is the run rate for rank 4?,1 -20339,"What's the highest December against the Pittsburgh Penguins in a game larger than 27, with less than 41 points?",1 -20341,What is the average number of games associated with 6 points and under 2 losses?,5 -20342,What is the low point total when there are over 5 games?,2 -20344,"What is the total of electors when the share of votes was 11,0%?",4 -20345,Which Lost has Games larger than 7?,5 -20346,"Which Points have a Lost smaller than 1, and Games larger than 7?",1 -20347,Which Lost has Points larger than 13?,5 -20348,Which Points have a Drawn larger than 1?,5 -20350,Which Year of Issue has a Thickness of 1.42mm?,1 -20358,How many rebounds does Ann Wauters have?,3 -20360,What is the total number of rebounds values for Ann Wauters?,3 -20363,What is the lowest week number for the game that was at milwaukee county stadium?,2 -20365,"After week 8, what was the Attendance on November 1, 1964?",5 -20371,What is the highest round in which a player was picked for the Center position?,1 -20374,"When was the attendance 1,034?",2 -20376,"1950 larger than 80, and a 1960 of 196, and a 1990 larger than 131 what is the lowest 1996[2]?",2 -20377,"1960 larger than 196, and a 1996[2] smaller than 726, and a 1980 larger than 125, and a 1990 larger than 848, what is the highest 1950?",1 -20378,"1980 smaller than 719, and a 1960 smaller than 205, and a 1996[2] smaller than 364, and a 1970 larger than 251 is what 1990 highest?",1 -20379,"1996[2] larger than 68, and a 1990 smaller than 352, and a 1970 larger than 105, and a 1950 of 119 is the sum of what 1980?",4 -20380,"1996[2] of 127, and a 1990 smaller than 120 is the sum of 1990?",4 -20383,"What was the earliest week with a game at the Braves Field on October 2, 1932?",2 -20393,How many games have more than 10 points and more than 2 draws?,3 -20394,What is the sum of losses that have points of 11 and more than 1 draw?,4 -20395,What is the greatest points value that have draws under 2 and 2 losses?,1 -20396,How many losses have draw values under 1?,3 -20397,What's the lowest February for less than 57 points?,2 -20398,What's the February for the game against the Montreal Canadiens?,4 -20406,What was the lowest round for Paul Hubbard?,2 -20407,What was the lowest round for a tight end position?,2 -20409,What is the average number of wins for the person who coached from 1951 to 1956 and had less than 174 losses and less than 6 ties?,5 -20413,"Which Points have a Game larger than 25, and an Opponent of dallas stars?",5 -20427,What is the least amount of prize money when there are 21 events?,2 -20430,How many episodes have a segment d that is goalie masks (part 2)?,3 -20441,How many rounds did the match go for the Bellator 72 event?,4 -20443,What is the sum of the live viewers for episodes with share over 5?,4 -20444,What is the sum of the ratings for episodes with live viewers of 2.96?,4 -20449,"Which long range AM station has the lowest frequency and includes a webcast of listen live, was licensed in the city of Monterrey, and uses the Callsign of xet?",2 -20450,Which Games is the highest one that has a Drawn smaller than 0?,1 -20453,Which Capacity has a Location of mogilev?,4 -20456,What was the lowest re-elected result for Sylvester C. Smith?,2 -20460,"Which Average is the lowest one that has a Total smaller than 134, and a Number of dances smaller than 3, and a Rank by average smaller than 12?",2 -20462,"Which Rank by average is the lowest one that has a Total of 425, and a Place larger than 1?",2 -20472,"Attendance larger than 45,710, and a Venue of metropolitan stadium had what highest week?",1 -20473,"Date of october 10, 1965 had what lowest attendance?",2 -20477,"Performer 1 of greg proops, and a Performer 3 of ryan stiles, and a Date of 25 august 1995 is which average episode?",5 -20487,What is the total number in January when the St. Louis Blues had a game smaller than 42?,3 -20488,What is the January sum with the record of 17-20-2 with a game smaller than 39?,4 -20492,"Which Females Rank is the highest one that has Females (%) larger than 53, and an HIV awareness (males%) smaller than 89, and a State of odisha?",1 -20493,"How many Females (%) have Females Rank smaller than 21, and a State of kerala, and Males Rank larger than 1?",3 -20494,"How many Females (%) have a State of karnataka, and Males Rank larger than 16?",3 -20495,"Which Males Rank is the highest one that has Females (%) smaller than 40, and Females Rank smaller than 22?",1 -20496,"Which Females (%) has an HIV awareness (males%) larger than 92, and Females Rank larger than 2, and Males Rank smaller than 3?",4 -20497,League Cup smaller than 0 is what sum of the total?,4 -20498,"Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup?",1 -20505,Which Game has a November of 29?,4 -20506,"Which Points have a Record of 12–2–4–1, and a November larger than 22?",5 -20508,"How many Novembers have a Game larger than 14, and an Opponent of minnesota wild?",3 -20509,Which November is the lowest one that has a Record of 12–2–4–1?,2 -20510,What day has a record of 25–30–13 and less than 63 points?,5 -20528,What was john farrow's run 2 associated with a run 1 of greater than 52.25?,1 -20530,"Rank smaller than 4, and a Name of dalma iványi involved which lowest game?",2 -20534,Date of 7 september 1996 includes which highest rank athlete?,1 -20538,"Faith of rc, and a Opened larger than 1966 which has the highest DCSF number?",1 -20552,"What is the average episode that has September 11, 2007 as a region 1?",5 -20556,What is the average capacity for the farm at Gortahile having more than 8 turbines?,5 -20566,Name the least overall with pick number more than 27,2 -20578,What was the first year that South Korea won gold and Malaysia won bronze?,2 -20581,"Which Pos has a Dutch Cup of winner, and a Tier larger than 1?",5 -20582,"What is the average Frequency MHz that is on farwell, texas?",5 -20585,What's the average game against the New Jersey Devils with 19 points?,5 -20586,"Opponent of at boston patriots, and a Week larger than 3 had what average attendance?",5 -20587,Name the average fall 07 for fall 07 more than 219,5 -20589,Name the most pick number for real salt lake and affiliation of ucla los angeles storm,1 -20591,"Which Game has a March smaller than 12, and a Score of 10–1?",2 -20593,"Which Game has an Opponent of detroit red wings, and a March smaller than 12?",3 -20594,"Which Points have a Game smaller than 70, and a Score of 4–8?",2 -20597,What largest episode number's Netflix is S05E23?,1 -20602,How many Attendances on may 24?,2 -20604,How many Attendances that has a Visitor of philadelphia on may 20?,5 -20606,How many Attendances have a Score of 4 – 5? Question 4,1 -20614,What is the highest round for the pick from Finland?,1 -20615,What is the total number of rounds that Joe Barnes was picked?,3 -20616,"What is the total 2nd of Thomas Morgenstern, who has a 1st less than 132.5?",3 -20621,"on april 29, what was the attendance?",4 -20622,on april 9 what was the attendance?,5 -20624,"Failures larger than 0, and a Successes of 1 has what lowest partial failures?",2 -20625,"Successes smaller than 6, and Launches larger than 1, and a Failures of 2 is what sum of the partial failures?",4 -20628,What is the highest Feb value having an opponent of the Philadelphia Flyers and is after game 63?,1 -20630,Which Year has a Genre of rock (track)?,4 -20631,Which Year Inducted is the highest one that has a Year smaller than 1965?,1 -20632,"Which Overall is the highest one that has a Pick # smaller than 9, and a Name of mike pearson?",1 -20633,"Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222?",2 -20638,"What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses?",4 -20639,What is the total number of byes associated with fewer than 8 wins and fewer than 1 draw?,3 -20641,What is the average number of losses for teams with 0 draws and 0 byes?,5 -20642,What is the most number of losses for teams with 5 wins and an against value under 1607?,1 -20643,"Race that has a Podium larger than 1, and a Season of 1982, and a flap smaller than 1 had how many number of races?",3 -20644,Pole smaller than 0 had what lowest podium?,2 -20645,"Flap of 0, and a Race smaller than 2, and a Season of 1989, and a Pole smaller than 0 had what average podium?",5 -20649,"Elevation of 12,183 feet 3713 m is what average route?",5 -20655,What Vancouver canucks game was on a date closest to November 4?,1 -20668,Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver?,1 -20670,"What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8?",5 -20671,What is the lowest Avg/G with a Long less than 0?,2 -20672,What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30?,4 -20673,What is the total number of Long with a Av/g of 124.9 but Loss greater than 0?,3 -20681,"How many games have a February larger than 11, and a Record of 23-7-8?",3 -20682,"How much February has a Game larger than 37, and an Opponent of chicago black hawks?",3 -20693,WHICH LOA (Metres) has a Corrected time d:hh:mm:ss of 3:12:07:43?,5 -20705,"What was the earliest year that had a location of Brookline, Massachusetts?",2 -20706,What year had an edition of 115th?,5 -20707,How many points did ginger have when she was ranked 5th on a 350cc class bike?,3 -20708,What year was she ranked 16th with over 12 points?,3 -20709,"What year was she on a 350cc class bike, ranked 16th, with over 0 wins?",4 -20710,"How many points did she have with team bultaco, ranked 6th?",4 -20718,"How much Attendance has an Opponent of rockies, and a Record of 32-30?",4 -20722,"How many Pick has a Round smaller than 13, and a Position of fullback?",3 -20724,Which Round has a Player of brunel christensen and a Pick smaller than 293?,2 -20738,Record of 11–12 involved what average attendance figures?,5 -20747,How many grids have a time of +1:21.239 and more than 25 laps?,3 -20748,What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1?,5 -20752,What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4?,4 -20754,What route with the line color brown has the lowest number of stations served?,2 -20755,Which Round is the highest one that has a College/Junior/Club Team (League) of torpedo yaroslavl (rus)?,1 -20756,Which Round has a Player of todd fedoruk?,4 -20757,"How much Grid has a Time/Retired of +1 lap, and a Driver of sébastien bourdais, and Laps larger than 70?",3 -20758,"How many Laps have a Driver of david coulthard, and a Grid smaller than 14?",4 -20759,How many Laps have a Grid of 15?,3 -20770,"What is the average week for the game against baltimore colts with less than 41,062 in attendance?",5 -20771,"What was the average week for the gaime against the philadelphia eagles with less than 31,066 in attendance?",5 -20772,"What is the highest attendance for the game after week 1 on November 12, 1961?",1 -20774,What is the lowest Round of joe patterson?,2 -20776,What is listed as the highest Points that's got a Position that's smaller than 1?,1 -20777,What is the Draws average that has a Played that's smaller than 18?,5 -20778,What is the lowest Wins that has the Team of Olimpia and Draws that's smaller than 4?,2 -20779,"What is the highest Played that's for the Team of Cerro Porteño, with a Position that's larger than 1?",1 -20789,"Which Extra points 1 point has a Total Points smaller than 30, and Touchdowns (5 points) of 5?",5 -20790,"How many Touchdowns (5 points) have an Extra points 1 point of 0, and a Field goals (5 points) larger than 0?",3 -20791,Which Extra points 1 point is the highest one that has a Total Points smaller than 8?,1 -20792,Which Extra points 1 point is the lowest one that has a Player of walter shaw?,2 -20793,"How many Field goals (5 points) have a Total Points of 123, and Touchdowns (5 points) larger than 13?",3 -20799,How many people attended the game with parent recording the decision and a Record of 42–18–10?,4 -20816,"How much Silver has a Nation of mexico, and a Total larger than 1?",4 -20817,"How much Bronze has a Gold larger than 0, and a Total smaller than 1?",3 -20818,"How much Bronze has a Nation of mexico, and a Total larger than 1?",4 -20820,Which Rank is the Country of soviet union with a Total smaller than 19?,2 -20821,What is the lowest Rank of Denmark County with a Total smaller than 1?,2 -20825,What was the average number of rounds in the fight where Tank Abbott lost?,5 -20826,In what Round was a Defensive Tackle Pick # less than 19?,3 -20827,What is the Pick # with an Overall of 19?,1 -20842,Score of 4–0 had what attendance number?,3 -20849,"Which Rank is the lowest one that has a 1st (m) larger than 133.5, and an Overall WC points (Rank) of 459 (7)?",2 -20851,What was the first time in December they played the Colorado Avalanche?,2 -20854,What is the earliest year the new york jets won at harvard stadium?,2 -20862,What attendance does 1-6 record have?,4 -20869,Which sum of Seasons in league has a Best Position of 5th (2007)?,4 -20873,What is total amount of points for the 2007 season?,4 -20884,"What's the highest Loses, with Wins that's larger than 3 and a Pos. Larger than 3?",1 -20885,"Which Rank has a Bronze larger than 1, and a Silver larger than 0, and a Nation of norway (host nation), and a Total larger than 16?",3 -20886,"Which Bronze has a Total of 11, and a Silver smaller than 6?",1 -20887,"Which Bronze has a Nation of canada, and a Rank smaller than 6?",5 -20888,Which Gold has a Bronze larger than 6?,2 -20889,"Which Gold has a Rank larger than 6, and a Nation of netherlands, and a Bronze smaller than 0?",4 -20900,What is the lowest 2nd (m) when the points were larger than 251.6?,2 -20902,How many floors were there with a building rank of less than 3 and a height of 300 / 985 m (ft)?,3 -20903,"What is the rank of Etihad Tower 5, with less than 62 floors?",2 -20937,"Which January is the lowest one that has an Opponent of florida panthers, and Points smaller than 59?",2 -20940,"How many Points have a Record of 25–10–11, and a January larger than 28?",3 -20946,What is the low bronze total for the team with 4 total and under 1 gold?,2 -20947,What is the average total for teams with over 3 bronzes and over 8 golds?,5 -20948,What is the low silver total associated with under 1 total?,2 -20962,"What is the earliest election with more than 7 candidates nominated, a percentage of the popular vote of 2.75%, and 0 seats won?",2 -20963,"How much Played has a Lost larger than 14, and Drawn of 8, and a Team of ipatinga?",4 -20964,"How many Drawn have a Difference of 3, and Points smaller than 52?",3 -20965,"Which Points is the highest one that has a Position smaller than 4, and a Team of são paulo, and Drawn larger than 12?",1 -20966,"How many Lost have Points larger than 40, and a Position of 11, and a Played smaller than 38?",4 -20967,"What is the lowest number of games loss with a Points difference of 40 - 17, and over 6 games?",2 -20968,How many games lost for teams with over 6 games?,2 -20969,What are the highest number of games drawn for games numbered under 6?,1 -20970,"How many games drawn with a Points difference of 31 - 33, and under 4 games lost?",4 -20977,"Which Rank is the lowest one that has a % Change of 3.3%, and a Total Cargo (Metric Tonnes) smaller than 2,456,724?",2 -20978,How many ranks have a Code (IATA/ICAO) of ord/kord?,3 -20979,"Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport?",1 -20980,"Which Rank is the average one that has a % Change of 0.7%, and a Total Cargo (Metric Tonnes) smaller than 1,556,203?",5 -20982,What is the average grid for the +2.2 secs time/retired?,5 -20983,"Which Facility ID has a City of license of springfield, ma, and a ERP / Power W smaller than 230?",1 -20985,WHich Facility ID has a Call sign of wnpr?,5 -20988,What is the highest number of points that has a 1st of 121.5?,1 -20989,What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points?,3 -20990,What is the total number of attendance for games where buffalo was the home team?,3 -21002,How many golds have bronze values of 4 and silver values over 2?,3 -21003,"What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3?",4 -21004,What is the sum of gold values that have bronze values over 0 and totals under 2?,4 -21005,What is the smallest gold value that has a total over 15 and bronze values under 31?,2 -21012,What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts?,5 -21013,What is the least amount of yards when the average is less than 2.6?,2 -21014,What is the lease amount of touchdowns with 1318 yards?,2 -21015,What is the number of touchdowns with the average is less than 2.6?,3 -21016,What is the total number for long when there are 19 attempts?,3 -21028,"With a Total of less than 29, what is Ian Ryan's most Matches?",1 -21036,Which year did the World indoor championships gave a position of 3rd?,4 -21038,Name the most points for class of 125cc and team of mv agusta with year more than 1957,1 -21040,How many years have a Title of kriegspiel?,3 -21046,"What is the largest week number for the venue of League Park for the date of November 25, 1920?",1 -21057,What is the sum for December against the vancouver canucks earlier than game 33?,4 -21058,What is the sum for December when the record was 22-12-5?,4 -21059,When is the earliest year associated with team norton and 0 wins?,2 -21060,"What is the year that there were 0 wins, team AJS, and under 12 points?",3 -21061,What year is associated with a drama desk award ceremony and a Category of outstanding featured actress in a musical?,5 -21062,What is the average Loss for the long of more than 12 with a name of opponents with a Gain larger than 1751?,5 -21080,What is the average primary intake with an Ofsted number of 117433 and a DCSF number greater than 3335?,5 -21081,"What is the lowest Ofsted number for a primary with a CE faith, intake of 30 and a DCSF number lower than 3349?",2 -21085,"During the Apple Bowl having 0 championships, what was the established year?",1 -21087,How many championships does Evergreen Premier League have?,1 -21089,"How many Pick #s have a Name of tory epps, and a Round larger than 8?",3 -21097,"Which Attendance has a Game smaller than 3, and a Date of october 31?",3 -21100,What's the Year Average that has a Power of BHP (KW) and Trim of LS/2LT?,5 -21103,What's the Year average that's got Trim of LS/LT and Power of HP (KW)?,5 -21105,Name the least overall for tony baker,2 -21117,What is the sum of Long for derrick locke?,4 -21118,What is the lowest Loss with Gain larger than 319 for derrick locke?,2 -21123,What is the highest earnings for Tom watson who had a ranking larger than 2?,1 -21124,"What is the highest rank for the player who earns $4,263,133?",1 -21125,"What is the average number of wins for the player with a rank larger than 3 and earnings of $3,707,586?",5 -21126,"What is the highest number of wins for Tom Watson who earns less than $4,974,845?",1 -21127,What is the highest earnings for curtis strange?,1 -21128,What is the average year with an average start smaller than 6.3 and fewer than 0 wins?,5 -21139,"Which Avg/G has an Effic larger than 129.73, and a Cmp-Att-Int of 333-500-13?",4 -21140,"Which Effic is the highest one that has an Avg/G smaller than 305.6, and a GP-GS of 13-13?",1 -21141,"Which Avg/G that has a Name of opponents, and an Effic smaller than 129.73?",4 -21143,"Which Effic is the average one that has an Avg/G larger than 3.7, and a GP-GS of 13, and a Cmp-Att-Int of 318-521-15?",5 -21145,How many runs were there when the high score was 55 and there were more than 12 innings?,4 -21146,How many runs were there when there was 1 match and les than 86 average?,4 -21156,What is the sum of Tujia population with the Zhangjiajie prefecture in Sangzhi county?,4 -21157,"What is the total number of attendence has points greater than 40, and detroit as the home?",3 -21158,"What is the total number of Tropical Lows for more than 11 tropical cyclones in 1998–99, and a Severe Tropical Cyclones larger than 9?",3 -21159,What is the largest number for tropical Lows for the 1990–91 season with more than 10 tropical cyclones?,1 -21160,What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows.,2 -21161,What is the least amount of severe tropical cyclones for the 1992–93 season and the tropical Lows smaller than 6?,2 -21162,What is the least amount of tropical lows for the 1993–94 season with less than 11 tropical cyclones,2 -21163,"How many Weeks are on september 8, 1980 and Attendances larger than 55,045? Question 4",3 -21169,What is the Year the competition the british empire and commonwealth games were held?,4 -21174,What's the highest capacity for a position of 5 in 2004?,1 -21182,What is the smallest frequency (kHz) that is in the location of Longview?,2 -21184,What is the capacity number for Yunost?,3 -21185,What is the total number of first prizes in USD for the Canadian Open?,4 -21193,What is the overall number of the player from Utah with a pick # higher than 7?,4 -21194,What is the highest round of the player with a pick number lower than 34?,1 -21195,"What round did Mitch Davis, with an overall higher than 118, have?",4 -21196,What is the highest overall of the player from Georgia?,1 -21198,How many wins for team nsu and over 2 points?,5 -21199,What is the earliest year associated with under 0 wins?,2 -21200,"How many wins for team mv agusta, over 10 points, and after 1957?",4 -21208,Name the least attendance with venue of away on 24 august 2007,2 -21209,Name the average attendance with result of won 2-0 on 2 november 2007,5 -21210,What is the uniform number of the player whose last name is Wiltshire?,2 -21217,"How many values for INT's occur with more than 0 yards, over 6 sacks, and average above 17.5?",3 -21218,What is the sum of average values for 23 yards?,4 -21219,What is the lowest value of INT's with an average more than 25?,2 -21220,What are the most yards for 2 sacks and an average greater than 0?,1 -21221,What is the sum of values for INT'S with Mossy Cade for 0 yards and less than 3 sacks?,4 -21223,What's listed for the lowest Year that a Silver of Kim Kyung-Ho?,2 -21226,What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi?,1 -21232,"Which FA Cup is the highest one that has a Malaysia Cup of 0, and a Player of ahmad fouzee masuri, and a Total larger than 0?",1 -21233,"How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0?",3 -21234,"Which FA Cup has a Player of khairan ezuan razali, and a Total smaller than 0?",5 -21235,"How many Malaysia Cups have a Total larger than 3, and a Player of ivan yusoff, and a League smaller than 2?",3 -21236,"Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8?",4 -21237,"Which Year is the highest one that has a Venue of edmonton, canada?",1 -21247,"Year(s) won of 1994 , 1997 has what average total?",5 -21248,"Player of corey pavin, and a To par larger than 5 has what average total?",5 -21252,What is the total area of Kruzof island?,3 -21253,Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74,3 -21254,Name the least frequency Mhz with call sign of k202ag,2 -21263,What is the run 2 of athlete Maria Orlova from Russia?,4 -21264,What is the run 3 of the athlete with a run 1 more than 53.75 and a run 2 less than 52.91?,4 -21265,What is the lowest run 3 an athlete with a run 2 less than 53.72 and a run 1 of 53.1 has?,2 -21266,What is the lowest run 2 of the athlete with a run 1 of 52.44 and a run 3 less than 52.35?,2 -21267,"How many points are associated with over 1 top 5, 1 win, over 0 poles, and andrew ranger as the driver?",1 -21268,How many points are associated with 0 poles?,3 -21269,"How many wins are associated with a position of under 6, over 8 top 5s, and 1793 points?",4 -21270,What is the first game that has a home team of Detroit?,2 -21275,"What is the lowest amount of points driver Romain Grosjean, who has an average pre-2010 less than 0, has?",2 -21276,"What is the average number of entries driver Mark Webber, who has more than 1014.5 points, has?",5 -21277,What is the highest average points per race of the driver with less than 969 points and an average pre-2010 less than 0?,1 -21278,"What is the lowest average points per race entered of driver kimi räikkönen, who has more than 194 entries?",2 -21279,What is the first game played against the Chicago Black Hawks?,2 -21281,Which Losses is the lowest one that has Wins smaller than 0?,2 -21283,"Which Season has Ties smaller than 1, and a Team of vancouver grizzlies, and Wins smaller than 1?",4 -21284,"How many Ties have Wins smaller than 1, and Games of 6, and Losses of 6, and a Season larger than 1941?",3 -21285,"Which Wins have a Team of winnipeg blue bombers, and a Season larger than 1964?",5 -21289,"How much Gold has a Bronze larger than 1, and a Silver larger than 2?",3 -21290,"Which Total has a Nation of japan (jpn), and a Silver smaller than 1?",5 -21305,What is the average number of rounds for winner Rafael Cavalcante?,5 -21308,What is the sum of points values that are associated with 0 losses and more than 8 games?,4 -21309,What is the fewest losses associated with more than 13 points and fewer than 8 games?,2 -21311,What is the fewest number of points associated with more than 8 games?,2 -21321,What is the highest numbered pick from round 7?,1 -21322,"How much Played has an Against larger than 11, and a Team of botafogo, and a Position smaller than 2?",3 -21323,"Which average Drawn has Points smaller than 14, and a Lost smaller than 4, and a Played larger than 9?",5 -21324,"Which Played is the lowest one that has a Team of vasco da gama, and an Against smaller than 11?",2 -21325,"Which Played has a Lost larger than 4, and a Team of américa, and Points smaller than 5?",4 -21326,"Which Lost has a Position of 3, and a Drawn larger than 3?",4 -21327,"How much Lost has a Drawn larger than 1, and Points smaller than 14, and an Against larger than 10?",3 -21337,what is the number of people in sri lanka,5 -21344,What is the fewest number of wins in the chart for Ayrton Senna?,2 -21346,Name the most points with lost more than 1 and games less than 5,1 -21347,Name the sum of drawn with lost more than 1 and games less than 5,4 -21348,Name the least lost with points more than 6 and games less than 5,2 -21349,Name the sum of points with games less than 5,4 -21355,Which Wins is the lowest one that has Events larger than 30?,2 -21356,"Which Events have Earnings ($) of 1,841,117, and a Rank smaller than 4?",4 -21357,"How many Events have Earnings ($) of 2,054,334?",3 -21362,Name the most population for seychelles and rank less than 13,1 -21377,"How many original bills amendments cosponsored lower than 64,with the bill support withdrawn lower than 0?",2 -21380,What day in october was game number 4 with under 3 points?,3 -21415,"What is the total enrollment for an affiliation of public, and was founded before 1866?",3 -21417,What is the total enrollment for a private/catholic affiliation and founded after 1842?,3 -21418,What is the number founded for the nickname mountain hawks?,3 -21438,Which Laps is the highest one that has a Time/Retired of +3.370 secs?,1 -21439,"Which Grid has a Team of rusport, and Laps larger than 221?",4 -21441,How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema?,3 -21444,What is the total number of points for ray agius,4 -21445,What play did henry s. uber / betty uber (eng) finish in?,3 -21446,"When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)?",1 -21451,Which Round is the lowest one that has a Circuit of donington?,2 -21455,"Attendance of 48,510 had what highest week?",1 -21456,Opponent of at san francisco 49ers had what lowest week?,2 -21463,Which Year is the lowest one that has a Length of 3:50?,2 -21468,"Which Rank has a Capacity smaller than 12,000, and a Country of united states?",4 -21470,"Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade?",2 -21471,"Which Capacity is the lowest one that has a City of brisbane, and a Rank smaller than 1?",2 -21473,What's the shortest length from north klondike highway that has a length less than 326?,2 -21478,What is the most current year with a previous conference of Mid-Indiana in Converse?,1 -21479,What year did Culver leave?,4 -21488,What is the Places amount of the United States Ranking 8?,5 -21489,What is the average episode number where jimmy mulville was the 4th performer?,5 -21490,What is the total number of episodes where hugh laurie was the 3rd performer?,3 -21491,What is the lowest episode number where john bird was the 4th performer?,2 -21494,What is the highest number of successful launches associated with over 1 launch and under 0 fails?,1 -21495,"What are the fewest partial failures associated with 1 launch, India, gslv type, and a Rocket of gslv mk ii?",2 -21497,"How many draws were there when there were points less than 23, 6 losses, and more than 21 against?",3 -21498,What is the smallest amount of draws when the position is less than 7 and the against is 19?,2 -21499,What is the highest amount of plays for fluminense?,1 -21500,What is the least amount of points when there were less than 4 losses and less than 16 against?,2 -21524,What is the draw with less than 107 points by the artist Jan Johansen?,3 -21525,In what Year did the Norton Team have 0 Points and 350cc Class?,5 -21526,What is the Wins before 1960 with less than 2 Points?,4 -21527,What was the earliest Year the Linto Team had less than 15 Points with more than 0 Wins?,2 -21534,"Which District has a 2008 Status of re-election, and a Democratic david price?",5 -21535,Which District has a Republican of dan mansell?,5 -21542,What is the largest ration with an ordinary value of 84 zolotnik?,1 -21554,What is the lowest number of FA cups associated with 0 malaysia cups?,2 -21555,How many league cups for m patrick maria with 0 total?,4 -21556,What is the highest number of Malaysia Cups for a player with over 0 leagues and under 0 FA cups?,1 -21565,What is the week with a record of 2-1?,3 -21575,"How many Played has a % Win of 50.00%, and Losses of 1, and Wins smaller than 1?",3 -21577,"How many Played that has Losses of 6, and Wins larger than 33?",5 -21578,What kind of No Result has a % Win of 100.00% and a Played larger than 4 in 2012?,2 -21581,Date of wed. nov. 13 had how many number of games?,3 -21583,"Score of 118–114, and a Record of 8–1 is what lowest game?",2 -21585,How many were in attendance when the league position was 16th and the score was F–A of 0–3?,3 -21587,What is the largest number in attendance at H venue opposing Liverpool with a result of D?,1 -21588,What is the number of Justin Jeffries?,3 -21589,How many games has number 61 played in?,2 -21593,what is the sum of the year in rhode island,4 -21619,What is the largest amount of goals when the points are less than 0?,1 -21621,What is the smallest number of tries when Matt Diskin is the player and there are more than 16 points?,2 -21623,"What is the total number of squad no when there are more than 8 points, Danny Mcguire is a player, and there are more than 0 goals?",4 -21624,What is the lowest lost from drawn of 1 or greater?,2 -21625,"What is the highest games from a game with points less than 4, drawn of 1 and a lost less than 6?",1 -21638,How many Picks have a Position of defensive back?,3 -21665,What is the average grid of driver Christian Vietoris who has less than 12 laps?,5 -21666,What is the grid of driver joão urbano?,4 -21667,What is the lowest laps a grid less than 22 with a time of +35.268 has?,2 -21668,What is the lowest laps driver Christian Vietoris with a grid smaller than 6 has?,2 -21683,"What is the total number for Capacity at city stadium, borisov?",3 -21684,Which rating larger than 5 have the lowest amount of views in #3 rank with a share of 9?,2 -21685,"What is the highest played that has a drawn less than 9, 36 as the difference, with a lost greater than 7?",1 -21686,"How many positions have figueirense as the team, with a played greater than 38?",3 -21687,What is the largest drawn that has a played less than 38?,1 -21688,"How many positions have 9 as a drawn, 5 as a difference, with a lost less than 14?",3 -21691,What is the highest number of games with 1 loss and points less than 18?,1 -21696,What are the total number of laps for Tom Bridger?,3 -21697,What are the lowest laps of Graham Hill?,2 -21698,What are the lowest laps of grid 17?,2 -21699,"Which Avg/G has a Gain of 16, and a Name of barnes, freddie, and a Loss smaller than 2?",4 -21700,"Which average Long has a Gain smaller than 16, and a Loss smaller than 6?",5 -21701,"Which Gain is the lowest one that has a Loss larger than 2, and an Avg/G larger than -6, and a Name of sheehan, tyler, and a Long larger than 11?",2 -21702,"Which Avg/G is the lowest one that has a Long larger than 8, and a Loss smaller than 34, and a Gain larger than 16, and a Name of bullock, chris?",2 -21703,"Which Loss has a Name of bullock, chris, and a Long smaller than 36?",4 -21704,"How much Long has a Loss larger than 2, and a Gain of 157, and an Avg/G smaller than 129?",4 -21705,What is the fewest number of places for a skater from Norway with fewer than 1524.9 points?,2 -21710,"Which Date has a Score of 6–3, 7–6?",4 -21711,"Which Date has a Score of 7–6(3), 4–6, 6–2?",4 -21716,What is the lowest loss that Jarius Wright has had where he also has had a gain bigger than 1.,2 -21720,What is the total number of years that have divisions greater than 4?,3 -21721,What is the highest division for years earlier than 2011?,1 -21722,"In what Week were there less than 30,348 in Attendance with a Result of W 37-21?",4 -21723,"What is the Week number on November 30, 1958 with more than 33,240 in Attendance?",3 -21725,What was the Attendance on Week 8?,5 -21730,What is the attendance in texas stadium?,4 -21739,What is the max speed of the unit with an 8+4 quantity built before 1971?,4 -21741,What is the power of the unit built after 1995?,4 -21743,Result of w 21–7 had what average week?,5 -21744,"Date of november 29, 1959 had what lowest attendance?",2 -21746,Which Game has an Opponent of @ carolina hurricanes?,4 -21747,How many games have a November of 10?,3 -21748,Which Game has a November of 22?,4 -21749,What is the mean year of marriage when her age was more than 19 and his age was 30?,5 -21750,"What is the lowest figure for her age when the year of marriage is before 1853, the number of children is less than 8, and the bride was Eliza Maria Partridge?",2 -21751,"What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0?",4 -21752,"How much Lost has an Against larger than 19, and a Drawn smaller than 1?",4 -21753,"Which Played has a Lost of 3, and an Against of 23?",5 -21754,"Which Played is the highest one that has an Against smaller than 18, and Points smaller than 10?",1 -21755,"Which Against is the highest one that has a Drawn larger than 1, and a Team of corinthians, and a Played smaller than 7?",1 -21760,"How many Horsepowers have a Year smaller than 1974, and a Tonnage of 4437?",4 -21780,"Which Points have a Year larger than 1966, and Wins larger than 1?",5 -21781,Which Year is the lowest one that has Wins smaller than 0?,2 -21782,Which Points have Wins larger than 1?,5 -21783,"Which Wins have a Year of 1963, and a Class of 50cc?",5 -21785,Who had the highest rank with a 1st (m) of 129 and less than 255.6 points?,1 -21786,"Who had the lowest 1st (m), ranked lower than 8, with an overall WC points (rank) of 369 (16) with more than 258.2 points?",2 -21787,What is the player from Australia's rank with more than 16 wins?,3 -21788,"What is the lowest rank of a player with earnings under $11,936,443 and more than 16 wins?",2 -21789,What is the highest earnings of a player with more than 19 wins?,1 -21790,Which average Opened has a Manufacturer of vekoma?,5 -21791,"Which Opened is the highest one that has a Themed Area of aerial park, and a Manufacturer of zamperla?",1 -21795,What is the pick number for tulane university?,4 -21796,What is the pick number for the kansas city royals?,4 -21797,"What is the average Pick for the Pasco, Wa school?",5 -21805,What is the earliest date with Great Expectations label with LP format?,2 -21808,"Which Runner-up has a Last win smaller than 1998, and Wins of 1, and a Rank larger than 13?",3 -21809,"How many Last wins have a Club of mansfield town, and Wins smaller than 1?",3 -21813,"What's the highest rank of a PVG/ZSPD Code (IATA/ICAO) airport with a total cargo less than 2,543,394 metric tonnes?",1 -21814,What's the average total cargo in metric tonnes that has an 11.8% Change?,5 -21815,What is the highest rank of Tokyo International Airport?,1 -21816,"Where the games are smaller than 5 and the points are 6, what is the average lost?",5 -21817,with build 5/69-6/69 what's the order?,4 -21824,What is the attendance of the game that has the opponent of The Nationals with a record of 68-51?,4 -21832,What is the amount of money that a +5 to par with a score of 76-69-70-70=285?,3 -21834,"Which average Game # has a Home of san jose, and Points smaller than 71?",5 -21838,with delivery date of 2001 2001 what is gross tonnage?,5 -21841,What is the number of enrollments for teams named the Buccaneers founded before 1911?,3 -21842,What is the highest chart number for the song Yardbirds aka Roger the Engineer?,1 -21843,What is the average chart number for 11/1965?,5 -21853,Record of 0–8 had what lowest week?,2 -21857,"What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13?",4 -21858,What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44?,5 -21859,"What is the average ARWU 2012 ranking of Illinois, Champaign, which has a USN 2013 ranking less than 91 and an EC 2013 ranking larger than 1000?",5 -21860,"What is the average BW 2013 ranking of Texas, Fort Worth, which has an AE 2011 ranking of 1000 and an FT 2011 ranking less than 1000?",5 -21862,"What is the density for the area that is larger than 4,015.6 and a population smaller than 6,178?",3 -21863,"What is the density that has an area smaller than 2,200.2 and a population larger than 2,599?",3 -21864,What is the average rank for nations with fewer than 0 gold medals?,5 -21865,What is the total number of bronze medals with more than 1 medal total and fewer than 1 silver medal?,3 -21866,What is the highest rank of a nation with fewer than 0 silver medals?,1 -21873,"Which Ties is the highest one that has Losses smaller than 9, and Starts of 26, and Wins smaller than 21?",1 -21874,"Which Win % has a Name of tony rice, and Wins smaller than 28?",3 -21875,"Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1?",4 -21876,How many Losses have a Name of blair kiel?,3 -21877,Which Losses have a Name of jimmy clausen?,5 -21878,what is the number of attendance on june 24,3 -21882,"Visitor of dallas, and a Date of june 12 had what highest attendance?",1 -21885,How many laps did the team with a time/retired of +1.906 have?,3 -21887,"What is the lowest grid of pkv racing, which had 13 points and less than 64 laps?",2 -21888,What is the total grid of the team with a time/retired of +7.346?,3 -21889,What is the grid of pkv racing with the driver oriol servià?,4 -21902,"What round was john sutro, tackle, drafter with a pick lower than 79?",4 -21904,"When was chuck morris, back, drafted?",2 -21905,What wss the average round drafted for xavier players?,5 -21917,what is the lowest capacity in grodno,2 -21919,"How many starts are associated with an oldsmobile engine, 21 finishes and before 2001?",4 -21920,"What was the finish associated with under 11 starts, a honda engine, before 2003?",5 -21922,What is the lowest number of people attending the game on May 30 with Colorado as the visitors?,2 -21923,What is the lowest number of people attending the game where Colorado was the home team?,2 -21925,What is the lowest round that Adam Wiesel was picked?,2 -21931,What is the largest number for earnings for tom watson when ranked more than 2?,1 -21932,"Which 1st (m) is the lowest one that has a Nationality of aut, and Points larger than 273.5?",2 -21933,"Which 2nd (m) is the lowest one that has a Rank larger than 3, and a 1st (m) larger than 140.5?",2 -21934,"Which 2nd (m) has an Overall WC points (Rank) of 1632 (1), and Points larger than 273.5?",4 -21935,What is the highest number of wins associated with under 0 poles?,1 -21937,What is the fewest number of wins when he has 3 poles in 2010?,2 -21962,How many picks were there for the Bentley team?,3 -21963,"What is the largest round number for Dan Connor, the player?",1 -21964,What is the largest round number for the dt position when the pick number is bigger than 181?,1 -21966,What is the average pick for clarence mason?,5 -21967,"What is the frequency for the city of Lamar, Colorado?",5 -21968,What is the average ERP W for callsign K207BK?,5 -21971,What were the total number of field goals when there were 0 touchdowns and 2 extra points?,3 -21972,How many field goals did Carter get when he had 0 extra points?,4 -21973,What is the highest amount of extra points someone got when they scored 28 points but had 0 field goals?,1 -21974,What is the average field goal someone has when they have 0 extra points but more than 5 touch downs?,5 -21975,What is the lowest number of wins with more than 113 points in 4th rank?,2 -21978,How many wins occurred for 6th rank?,3 -21981,"Which Year is the highest one that has a Reg Season of 3rd, western, and a Division larger than 2?",1 -21982,Which year is the lowest one when the playoffs did not qualify?,2 -21983,"Which Year has a Reg Season of 3rd, western?",5 -21984,"Which Division that has a Reg Season of 1st, western, and Playoffs of champions, and a Year smaller than 2013?",5 -21986,"What is the average attendance for the game before week 4 that was on october 16, 1955?",5 -21987,"What is the total number of weeks that were on September 25, 1955 with more than 16,901 people in attendance?",3 -21989,"What is the highest number of successful defenses in brandon, florida and a reign less than 1?",1 -21996,"What was the Week on October 18, 1992?",4 -21999,"What attendance has astros as the opponent, and april 29 as the date?",4 -22015,What is the average games of Tony Dixon?,5 -22016,"What is the total of wins where the top 25 is 6, top 10 is more than 2, and the event number is less than 19?",4 -22017,What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0?,4 -22018,How many top-10 numbers had a top 25 of more than 6 with less than 2 wins?,3 -22025,"How many Field goals have Points larger than 5, and Touchdowns larger than 2, and an Extra points smaller than 0?",3 -22026,"How many Touchdowns have Extra points larger than 0, and Points of 48?",3 -22027,"Which Touchdowns have an Extra points smaller than 5, and a Player of clark, and Field goals larger than 0?",5 -22028,"Which Points have Touchdowns larger than 0, and an Extra points smaller than 0?",4 -22031,Tell me the least season with level less than 1,2 -22041,What is the lowest number of games with less than 1 loss?,2 -22043,How many points for the skater from club btsc?,3 -22045,How many years have an Original title of иваново детство?,3 -22047,What is listed as the lowest Year with a Wins that's smaller than 0?,2 -22050,"How many km2 has a Population 2001 Census larger than 274,095, and a District Headquarters of jharsuguda?",3 -22051,"What is the number of Population 2001 Census that has 476,815 in Population 1991 Census?",4 -22052,"What is the number of Population 2001 Census that has jharsuguda District Headquarters with an Area smaller than 2,081?",3 -22063,"Team of corinthians, and a Lost larger than 15 has which highest drawn?",1 -22064,"Difference of - 20, and a Position smaller than 17 is the highest against?",1 -22065,"Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points?",5 -22070,"What was the average rank of a player with more than 52 points, fewer than 10 draws, a goal loss under 44, and a loss under 15?",5 -22071,What was the highest number of lose for a player named Santos with more than 45 points?,1 -22077,"What is the lowest density of a town with a 13,708 2011 population census ?",2 -22084,What was the lowest FA Cup for a Malaysia Cup of 0?,2 -22085,What is Zamri Hassan's lowest Malaysia Cup when there were an FA Cup of 0?,2 -22086,What is the lowest league for the Malaysia Cup when it was larger than 0?,2 -22087,How many Bronze medals did Switzerland with less than 3 Silver medals receive?,2 -22088,What is the least amount of Silver medals that have more than 3 Bronze?,2 -22089,What is the average game for March 8 with less than 84 points?,5 -22090,What is the latest in March when the record of 35–16–6–3?,1 -22096,What number is Fall 08 from the state with 57 in Fall 06 and 74 or less in Fall 05?,3 -22097,"What number is Fall 06 from the state with 79 or less in Fall 08, 36 or greater in Fall 07 and greater than 74 in Fall 05?",5 -22098,What number is Fall 06 from the state with 34 for Fall 09?,5 -22102,"What is the average GBP Price with an event in Monterey, a RM auction house, and a price of $154,000 later than 2003?",5 -22103,How many total episodes aired over all seasons with 7.79 million viewers?,3 -22108,Which ERP W is the lowest one that has a Frequency MHz of 91.3?,2 -22110,"Which Frequency MHz is the highest one that has a City of license of byron, ga?",1 -22125,Loss of francis (4–9) has what highest attendance figure?,1 -22126,Loss of de la rosa (8–8) has what average attendance?,5 -22138,What team had less than 291 total points whole having 76 bronze and over 21 gold?,4 -22139,"What was the average rank for team with more than 44 gold, more and 76 bronze and a higher total than 73?",5 -22143,"What is the gold number when the total is less than 8, silver less than 1 and the rank is more than 7?",3 -22144,"What is the average Total for the Rank of 6, when Silver is smaller than 0?",5 -22145,Which Team wins has an Individual winner smaller than 1 and Total win larger than 1?,4 -22146,Which Team Win is from sweden and has a Individual win smaller than 1,1 -22153,"Which highest pick number's name was Adam Podlesh, when the overall was less than 101?",1 -22158,Which Attendance has a Record of 34–51?,2 -22164,What is the number of floors for the Citic Square?,5 -22166,"What week had a lower attendance than 51,423 but was still higher than the other weeks?",1 -22167,Which Vertices have a Dual Archimedean solid of truncated dodecahedron?,1 -22168,"Which Edges have a Dual Archimedean solid of truncated icosidodecahedron, and Vertices larger than 62?",2 -22169,"Which Faces have a Dual Archimedean solid of truncated icosahedron, and Vertices larger than 32?",5 -22193,What is the lowest round number that Ian Forbes was picked in the draft?,2 -22198,When in November were they 11-7-3 with over 21 games?,1 -22201,What is the highest number of school enrollment for Union Star High School in De Kalb county?,1 -22208,What is the total number of games played against the Buffalo Sabres?,3 -22209,"Which April has Points of 95, and a Record of 41–25–10–3, and a Game smaller than 79?",4 -22210,"How many Points have a Score of 1–3, and a Game larger than 82?",3 -22211,Which Game is the lowest one that has Points smaller than 92?,2 -22212,"Which April is the smallest one that has a Score of 2–4, and a Game smaller than 76?",1 -22213,What is the high point total associated with a difference of 1 and 0 draws?,1 -22214,"What position did the team finish in with a Difference of - 6, 3 losses, and over 4 draws?",3 -22216,What is the lowest attendance of a game that has the result of 2-0?,2 -22230,What is Mike Skinner's Chevrolet's Car #?,3 -22238,What were the total number of games in April greater than 83?,3 -22239,Which Games↑ is the lowest one that has a Position of wlb?,2 -22240,Which Games↑ is the lowest one that has a Number of 98?,2 -22246,"What week ended in a result of w 30-3, and had an attendance less than 62,795?",2 -22255,"How many goals are associated with over 97 caps and a Latest cap of april 24, 2013?",5 -22257,What is the highest number of goals associated with 39 caps?,1 -22258,"How many days in April has a record of 42–22–12–3, and less than 99 points?",3 -22259,Name the total number of points for 44 game and january more than 15,3 -22271,What is the lowest population associated with a Regional Percentage of Population of 2.95?,2 -22273,Which Frequency MHz is the highest one that has a Call sign of k241an?,1 -22274,"Which ERP W is the highest one that has a Frequency MHz larger than 88.3, and a City of license of lewis, kansas?",1 -22281,"How many weeks have an attendance greater than 21,231, with l 38-10 as the result?",3 -22283,"What is the largest attendance that has December 16, 1962 as the date?",1 -22284,What is the largest week that has t 35-35 as the result?,1 -22285,Name the total number of no result for losses more than 1 and played of 38 and wins less than 19,3 -22286,Name the sum of played with wins more than 19,4 -22287,Name the total number of losses with number result less than 0,3 -22289,"Which Goals is the lowest one that has Matches of 16, and a Scorer of park sang-in?",2 -22291,"Which Goals have a Club of hallelujah fc, and a Rank of 7?",4 -22292,"How many Extra points have Touchdowns larger than 2, and Field goals larger than 0?",3 -22293,"Which Field goals is the highest one that has Touchdowns of 0, and Points larger than 4?",1 -22294,"How many Totals have a High Game Tackles of 19 (purdue), and Interceptions smaller than 3?",3 -22295,"What is the grid number of Sandro Cortese, who has Aprilia as the manufacturer and less than 19 laps?",4 -22296,"Which Rank has a Lost smaller than 12, and a Played larger than 20, and an Avg Points larger than 1.73?",1 -22297,"Which Drew has a Rank of 5, and a Played larger than 30?",3 -22298,"Which Rank has a Club of zulte waregem, and Points larger than 22?",3 -22299,"Which Lost has Seasons of 2, and Goals against larger than 43?",1 -22300,Which Drew has a Lost larger than 14?,4 -22316,In what Year is the length of the Song 7:42?,5 -22319,"What is the total of medium earth orbital regime, accidentally achieved and successes greater than 3?",4 -22320,What is the greatest successes that have failures greater than 1 and launches less than 28?,1 -22321,What is the total failures of heliocentric orbit orbital regimes and launches less than 1?,4 -22323,What is the average rank for team cle when the BB/SO is 10.89?,5 -22334,What is the most recent year that China won a bronze?,1 -22335,What is the oldest year that the location was at Guangzhou?,2 -22336,For how many years was the location at Beijing?,4 -22342,What mean number of extra points was there when James Lawrence was a player and the touchdown number was less than 1?,5 -22343,What is the smallest amount of touchdowns when there is a total player and a number of field goals of more than 0?,2 -22358,"Events of 22, and a Rank smaller than 4 involved which of the lowest earnings ($)?",2 -22359,"Player of corey pavin, and a Rank larger than 4 involved which highest earnings ($)?",1 -22360,"Events larger than 22, and a Earnings ( $ ) of 1,543,192, and a Rank smaller than 2 has the lowest wins?",2 -22361,"Country of united states, and a Events of 22, and a Earnings ( $ ) larger than 1,340,079 has the highest rank?",1 -22364,How many games were played by the player at FB?,3 -22368,"How many cosponsors have a Date introduced of may 22, 2008?",3 -22372,How many sets lost have a sets won less than 0?,3 -22379,What is the lowest goals for value with fewer than 5 draws and under 70 points?,2 -22380,What is the lowest goals against value for a team with 83 points and a difference over 50?,2 -22381,What is the earliest season that has a position over 12?,2 -22382,"What is the average goals for with a position under 12, draws over 1, and goals against under 28?",5 -22386,What is the value of the lowest Week with a Record of 2–9?,2 -22397,What is the highest total cargo of an airport ranked larger than 19 with a code of BKK/VTBS?,1 -22399,Which Matches has champion Rank of 5?,1 -22400,Which Matches is on 24 march 1963 with a Rank larger than 44?,1 -22405,Which Raison Blue has the highest nicotine?,1 -22406,"For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity?",2 -22410,What was the earliest year with rank 20 and less than 60 floors?,2 -22411,What is the highest floors with rank greater than 1 in Conrad Dubai?,1 -22412,How many Laps have a Driver of satrio hermanto?,4 -22414,"Which Grid is the lowest one that has a Team of germany, and Laps smaller than 45?",2 -22417,What is the average number of Gold medals when there are 5 bronze medals?,5 -22418,What is the highest amount of bronze medals when the rank was larger than 9?,1 -22419,What is the leowest number of Bronze medals for Jamaica who ranked less than 4 and had more than 0 silver medals and a total of less than 22 medals?,2 -22420,"Nation of bulgaria, and a Place larger than 1 had what highest 3 Balls, 2 Ribbons?",1 -22421,"5 Hoops that has a Place larger than 7, and a Total larger than 38.525 had what sum?",4 -22422,"5 Hoops larger than 19.325, and a Total of 39.4, and a Place larger than 2 had what total number of 3 balls and 2 ribbons?",3 -22423,"Total of 38.55, and a 3 Balls, 2 Ribbons smaller than 19.4 had what lowest place?",2 -22438,What is the smallest overall for Oregon State?,2 -22442,"Which Attendance has a Home of philadelphia, and Points smaller than 23?",4 -22448,What was the average E score when the T score was less than 4?,5 -22449,What was the average T score when the E score was larger than 9.6 and the team was from Spain?,5 -22450,What was the total number of A scores for Japan when the T score was more than 4?,3 -22451,What was the sum of the E scores when the total score was 19.466?,4 -22452,What is the total number of E scores when the total score was 19.7 and the A score was more than 6?,3 -22453,What is the highest number of draws with 14 points and less than 7 games?,1 -22464,"Which Drawn is the lowest one that has a Lost of 5, and Points larger than 4?",2 -22466,How many seats does the 6th Dail have?,3 -22468,What is the lowest number of seats from the election with 27.0% of votes?,2 -22470,What was the highest week when the record was 1-3?,1 -22472,What is the year built for the Fay No. 4?,1 -22482,What were the total number of entries in 2001 that had a front row smaller than 13?,3 -22483,What are the lowest entries for a front row smaller than 15 where Michael Schumacher was driving?,2 -22484,What was the highest front row starts for Alain Prost?,1 -22485,"Which Against has Losses larger than 2, and Wins of 8, and Byes smaller than 0?",4 -22486,Which Draws have Wins larger than 14?,4 -22487,"How many Losses have an NTFA Div 2 of perth, and Wins smaller than 10?",3 -22488,"Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14?",1 -22489,How many grids were there races with more than 10 laps and a time of +34.121?,3 -22490,What is the smallest grid number that had 10 laps listed with Jonathan Summerton as the driver?,2 -22491,What is the average grid number that had Team China with less than 10 laps?,5 -22496,What is the College of Rice's highest overall for the guard position?,1 -22501,What is the average january number when the game number was higher than 39 and the opponent was the Vancouver Canucks?,5 -22507,"Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2?",4 -22508,"How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2?",3 -22509,Which Pos has a Car # of 33?,4 -22510,"Which Pos has a Team of circle bar racing, and a Car # smaller than 14?",1 -22511,"Which Pos has a Car # larger than 2, and a Team of billy ballew motorsports?",5 -22512,What is the lowest points that has 135 as 2nd (m)?,2 -22514,"How many 2nd (m) have aut as the nationality, with 4 as the rank, and a 1st less than 122.5?",4 -22527,How many issues end on jan–72?,4 -22529,What is the game number held on May 2?,5 -22544,What were the lowest points of game 60?,2 -22546,What is the total number of national titles for the team with doane tigers as the mascot?,3 -22548,"What is the total number of win % when John Gartin is coach, the crew is varsity 8+, and the year is 2005?",4 -22549,"What is the largest win percentage when John Gartin is coach, the record is 11-0, and the year is 2009?",1 -22550,What is the total of win percentages when the year is 2008 and the crew is varsity 8+?,4 -22551,What is the pick number for the tight end who was picked after round 6?,3 -22552,What is the lowest round for the player whose position is guard and had a pick number smaller than 144?,2 -22555,Which Attendance is the highest one that has a Record of 37-38?,1 -22557,"Which Overall is the average one that has a Pick # larger than 7, and a Round larger than 4, and a Name of glen howe?",5 -22558,"Which Round is the lowest one that has a Pick # larger than 10, and a Position of tight end, and an Overall smaller than 132?",2 -22559,"Which Round is the highest one that has an Overall of 32, and a Pick # smaller than 4?",1 -22560,"How many Picks have a Round larger than 8, and a College of fresno state?",3 -22561,"Which Overall is the highest one that has a College of oklahoma, and a Pick # smaller than 4?",1 -22565,"Which Week had a Result of w 10-0, and an Attendance smaller than 58,571?",3 -22566,Which Week had a Result of w 23-17?,4 -22568,"Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold?",4 -22569,"Smaller than 4, and a Silver larger than 0, and a Rank of 3, and a Bronze smaller than 6 then what is the sum of the gold?",4 -22570,"Total larger than 3, and a Rank of 4, and a Silver larger than 0 has what average gold?",5 -22571,"Total smaller than 10, and a Gold larger than 1 then what is the lowest silver?",2 -22575,What is the earliest year associated with 0 wins and 42 points?,2 -22588,"What is the highest position the album Where we belong, which had an issue date higher than 9, had?",3 -22589,"What is the biggest issue date Madonna, who had less than 1,060,000 sales, had?",1 -22590,"What is the highest position Talk on Corners, which had an issue date greater than 1, had?",3 -22591,What is the highest sales All Saints had?,1 -22599,Which First elected has a District of south carolina 2?,2 -22617,How many events resulted in a top-25 less than 2?,3 -22618,What is the smallest number of wins for a top-25 value greater than 5 and more than 38 cuts?,2 -22619,How many bronze medals did Chinese Taipei win with less than 0 gold?,3 -22620,How many silver medals had a rank of 3 with bronze larger than 0?,3 -22621,How many silver medals does China have?,3 -22622,"Which Position has Losses of 11, and a Played larger than 22?",4 -22623,"How many Wins have a Scored smaller than 24, and a Conceded larger than 25, and Draws larger than 5, and a Position smaller than 9?",3 -22624,How many Points has a Position of 8?,5 -22625,How many Wins has a Scored of 27 and Draws smaller than 5?,3 -22626,Which Position has Draws smaller than 7 and a Played larger than 22?,5 -22627,"Which Played has a Scored larger than 25 and a Position of 1, and Draws smaller than 5?",1 -22629,How many Episode Counts have an Actor of liz carr?,3 -22632,How many picks involved the player Joe Germanese?,4 -22637,"How many Games have a Drawn larger than 0, and a Lost of 1?",3 -22638,"Which Points have a Drawn larger than 0, and a Lost larger than 1?",5 -22639,"Which Drawn has a Lost larger than 0, and Points smaller than 11, and Games smaller than 7?",5 -22640,What is the percentage of the liberal party with less than 25 percent of seats?,3 -22647,What is the Total of kyrgyzstan with a Silver smaller than 0?,5 -22648,What is the Total that has a number of Nation and a Gold smaller than 16?,2 -22650,How many Silvers that have a Rank of 2?,3 -22653,What is average round of Auburn College?,5 -22654,"Which Top 10 is the lowest one that has Winnings of $405,300, and an Avg Start smaller than 30?",2 -22655,How many Wins have a Top 5 smaller than 0?,4 -22656,"Which Top 10 has a Top 5 larger than 1, and a Year of 2003, and Poles larger than 0?",5 -22657,"How many Top 10s have Wins larger than 0, and Poles larger than 0?",3 -22658,What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship?,3 -22660,"With less than 1 Championship, what es the Established date of the Niagara Rugby Union League?",4 -22661,What is the Established date of the Brian Timmis Stadium?,3 -22662,What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number?,2 -22664,"How many games have a Record of 7–6–3, and Points smaller than 17?",3 -22665,"Which Points have an Opponent of vancouver canucks, and a November smaller than 11?",5 -22667,What is the number of March that has 25-10-9 record and a Game more than 44?,3 -22668,Which Game has a Record of 27-11-10?,5 -22679,"Name the sum of cuts with wins less than 2, top-25 more than 7 and top-10 less than 2",4 -22697,"what year has 13,426,901 passengers and more than 10,726,551 international passengers?",4 -22698,"what total number of passengers is domestic and larger than 2,803,907 and a year after 1999?",3 -22711,What is the number of the station in Suzuka that is smaller than 11.1 km and has an l stop?,4 -22712,What is the distance of Kawage station?,4 -22715,What is the highest listed year for the partner of Marcel Granollers and a hard surface?,1 -22719,What is the average number of borough councilors from Brompton?,5 -22721,5 November 2010 of dragon oil 4.02% has what average Date?,5 -22722,What is the average number of points for a difference of 55 and an against less than 47?,5 -22723,"What is the highest lost that has an against greater than 60, points less than 61 and an 18 drawn?",1 -22730,What is the highest lost that has 6 for points?,1 -22731,"How many losses have points less than 3, with a drawn greater than 0?",4 -22740,"What is the highest winning pct from a team with wins less than 22, losses greater than 4, ties less than 2 and games started greater than 11?",1 -22741,"Gold that has a Rank of 6, and a Bronze larger than 0 had what total number of gold?",3 -22754,What is the sum of Kilometers that has a Station Code of KGQ?,3 -22758,What is the smallest area with 45 population?,2 -22759,What is the area located in Rhode Island with more than 38 sq mi area?,5 -22760,What is the average area in New York that is larger than 55 sq mi?,5 -22769,Which Drawn has a Team of internacional-sp?,4 -22770,"How much Lost has a Drawn larger than 5, and a Played larger than 18?",4 -22771,Which Drawn is the highest one that has a Played smaller than 18?,1 -22772,"Which Drawn is the highest one that has an Against larger than 15, and Points smaller than 15, and a Lost smaller than 9?",1 -22773,What's the least amount of floors at 921 sw sixth avenue?,2 -22776,What is the smallest position with less than 7 points piloted by Didier Hauss?,2 -22782,What is the total number of Round that has a Time of 6:04?,4 -22786,"Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap?",1 -22787,Which Frequency MHz has a ERP W of 250?,1 -22801,"Which Conceded is the highest one that has Points larger than 17, and a Team of guaraní, and Losses smaller than 6?",1 -22802,"Which Conceded has Draws smaller than 5, and a Position larger than 6?",4 -22803,How many Points have a Played larger than 18?,3 -22804,Which Scored has a Team of recoleta?,4 -22816,What is the average Entre Ríos Municipality with less than 9 Pojo Municipalities?,5 -22817,What is Pocona Municipalities with 72 Totora municipalities and more than 74 pojo municipalities?,3 -22818,What is the highest chimore municipalities with 9 pojo municipalities and less than 7 totora municipalities?,1 -22832,"What is the lowest number of played games of the team with less than 12 drawns, 41 against, and less than 69 points?",2 -22833,What is the highest number of played of the team with less than 11 losses and less than 12 drawns?,1 -22834,What is the sum of againsts the team with less than 38 played had?,4 -22835,What is the average drawn of the team with a difference of 4 and more than 13 losses?,5 -22836,What is the position of the team with more than 16 losses and an against greater than 74?,4 -22837,"What is the highest number of points team vitória, which had more than 38 played, had?",1 -22839,How large was the total when the E Score was greater than 9.35 and T Score was less than 4?,1 -22840,What was the quantity of the A Score when the E Score was larger than 9.566 in the Greece and the T score was more than 4?,4 -22841,"What was the total of A Score when the E Score was greater than 9.383, total was less than 19.716 and the T Score was larger than 4?",4 -22846,What does the ERP W sum equal for 105.1 fm frequency?,4 -22861,Name the average week for result of l 28–17,5 -22870,"Adam is less than 1 and Jade is greater than 5 in cycling, what's the plat'num?",2 -22871,What is Peter's score in kendo that has a plat'num less than 3?,2 -22872,What is Adam's score when Peter's score is less than 3 and the plat'num is greater than 6?,2 -22873,"Peter has a score greater than 5 in speed skating, what is the plat'num?",2 -22874,What's Adam's score when Jade's score is greater than 5 and Peter's score is less than 0?,5 -22875,Old Scotch had less than 9 losses and how much against?,4 -22876,"Of the teams that had more than 0 byes, what was the total number of losses?",3 -22882,Name the sum of laps for mi-jack conquest racing and points less than 11,4 -22885,Name the sum of grid with laps more than 97,4 -22886,What are the most wins in 1971 in 250cc class?,1 -22887,What is the earliest year with less than 45 points for Yamaha team in 21st rank?,2 -22888,"How many Ends Won have Blank Ends smaller than 14, and a Locale of manitoba, and Stolen Ends larger than 13?",4 -22890,"How many Stolen Ends have Ends Lost smaller than 44, and Blank Ends smaller than 7?",3 -22893,What is the largest number of seats with more than 32 of a MCI make?,1 -22894,What is the smallest number of seats in a vehicle currently retired and in quantities less than 8?,2 -22895,What is the smallest number of seats in a retired vehicle that was started in service in 1981?,2 -22898,What is the earliest game with a position of Re and a smaller number than 95?,2 -22900,What is Mike Harris' lowest overall?,2 -22901,What is the highest pick # that has a 228 overall and a round less than 7?,1 -22912,What is the lowest round of the pick #8 player with an overall greater than 72 from the college of temple?,2 -22913,What is the lowest overall of the wide receiver player from a round higher than 5 and a pick lower than 7?,2 -22920,How many drawn have points of 6 and lost by fewer than 4?,3 -22921,What was the earliest game with a record of 23–6–4?,2 -22922,What was the earliest game with a record of 16–4–3?,2 -22923,Which ERP W is the highest one that has a Call sign of w255bi?,1 -22925,How much Frequency MHz has a Call sign of w264bg?,3 -22926,Which ERP W is the lowest one that has a Call sign of w233be?,2 -22929,What is the latest task number for which Cathy is head of household?,1 -22932,"What is the task number on January 22, 2010 (day 111)?",1 -22937,"What was the average week of a game with a result of l 10-7 attended by 37,500?",5 -22938,"What was the average attendance on October 30, 1938?",5 -22956,How many PATAs does an nForce Professional 3400 MCP have?,4 -22967,What's the average crowd when the away team score was 14.14 (98)?,5 -22970,What was the crowd size for the Home team of melbourne?,3 -22984,What was the fewest entrants in an event won by Grant Hinkle?,2 -22985,How many entrants did the events won by Frank Gary average?,5 -22995,"Average larger than 2,279, and a Team of queen of the south, and a Capacity larger than 6,412 has what lowest of the sum?",4 -22997,"Highest smaller than 3,378, and a Stadium of cappielow has what average capacity?",5 -23019,"Can you tell me the sum of Podiums that has the Season of 2006, and the Races larger than 16?",4 -23020,"Can you tell me the sum of FLap that has the Pole larger than 0, and the Podiums of 6?",4 -23026,Which Year is the highest one that has a Record label of supertone melodies?,1 -23030,What was the average attendance when the record was 58–49?,5 -23031,What was the attendance when the score was 8–7?,4 -23032,What was the attendance for july 18?,3 -23046,"What's the largest Fall 08 number when fall 09 is less than 82, fall 06 is 5, and fall 05 is less than 3?",1 -23047,What is the mean Fall 09 number where fall 05 is less than 3?,5 -23048,"What is the sum amount of fall 05 when fall 08 is more than 5, fall 06 is more than 7, the state is Maryland, and fall 09 is more than 471?",3 -23049,What's the smallest fall 05 number when fall 09 is less than 14 and fall 08 is more than 5?,2 -23061,"What is the total number of Yds/Att where Net Yds was 1818, and Rank was larger than 1?",3 -23062,"What is the lowest Rank when Attempts was 319, and the Year was larger than 2000?",2 -23063,"What is the total number of Attempts when Rank was larger than 4, and Net Yds was smaller than 1674?",3 -23068,What is the mean game number when the points scored were more than 99?,5 -23070,What day in December was the game before game 11 with a record of 7-2-2?,4 -23071,What is the day in December of the game against the Boston Bruins?,3 -23072,What is the average day in December of the game with a 8-2-3 record?,5 -23073,How many seats have a quantity over 45?,4 -23094,"What's the sum of Code with a Population that's larger than 1,752, a Most Spoken Language of Xhosa, a Place of Bontrug, and an Area (KM 2) that's larger than 2.33?",3 -23095,What's the sum of the Area (KM 2) that's got a Population that's smaller than 90?,3 -23096,"What's the lowest Code that's got a Most Spoke Language of Xhosa, a Place of Addo Elephant National Park, and an Area (KM 2) that's smaller than 1.08?",2 -23098,What is the Grid for Rider Ruben Xaus?,2 -23099,What was the number of Laps with a Grid of more than 3 and Time of 39:24.967?,2 -23101,"Using a Ducati 999 F06 Bike, how many Laps with a Grid greater than 11 and Time of +53.488?",3 -23117,Which Pos has a Driver of brian scott (r)?,4 -23118,"How many Pos have a Driver of todd bodine, and a Car # larger than 30?",3 -23119,"Which Car # has a Make of toyota, and a Pos of 7?",1 -23120,"How many track numbers were recorded on November 16, 1959 for the title of I Couldn't Hear Nobody Pray?",3 -23122,What is the average track number 3:25 long and a title of Great Getting up Mornin'?,5 -23147,How many Touchdowns have Field goals larger than 0?,3 -23148,"Which Extra points is the highest one that has a Player of herrnstein, and Points smaller than 30?",1 -23149,"Which Touchdowns is the lowest one that has Extra points smaller than 14, and a Player of white, and Points smaller than 5?",2 -23150,"Which Touchdowns is the lowest one that has Points of 5, and a Field goals larger than 0?",2 -23151,Which Points is the lowest one that has Touchdowns smaller than 1?,1 -23159,"What is the average week that there was a game with less than 18,517 fans attending and occurred on November 21, 1954?",5 -23160,"What is the highest week that had a game against the Pittsburgh Steelers with 22,597 fans in attendance?",1 -23162,"What is the average attendance for the game that was after week 4 and on November 14, 1954?",5 -23163,"After December 19, what is the Game number with a Record of 21–4–7?",3 -23164,What were the Points in the game with a Score of 2–7?,4 -23165,"What's the lowest bronze with a 6 rank, smaller than 5 gold, and a total of more than 1?",2 -23166,What's the Bronze cumulative number for less than 0 gold?,4 -23167,"Which average Lost has an Against larger than 19, and a Drawn smaller than 1?",5 -23168,"Which average Against has Drawn of 3, and Points larger than 9, and a Team of portuguesa?",5 -23169,"Which average Against has Points of 6, and a Played smaller than 9?",5 -23170,"Which average Points have a Position of 7, and a Lost smaller than 4?",5 -23171,"Which average Points have a Lost larger than 2, and Drawn larger than 2, and a Difference of 0?",5 -23172,"Which Touchdowns have an Extra points of 0, and Points larger than 5, and a Player of curtis redden?",5 -23173,"How many Extra points have Touchdowns of 1, and a Player of ross kidston, and Points smaller than 5?",4 -23174,"Which Points is the lowest one that has an Extra points of 0, and a Player of curtis redden, and Touchdowns smaller than 2?",2 -23175,"Which Extra points is the lowest one that has a Player of ross kidston, and Points smaller than 5?",2 -23176,"Which Points have Touchdowns of 1, and a Field goals smaller than 0?",5 -23178,"What is the highest week 9 that had a week 6 of 7, a week 10 of greater than 2, a week 7 of 5, and a week 11 less than 2?",1 -23193,"How much December has a Score of 5–2, and a Game smaller than 27?",3 -23194,Which Game has an Opponent of @ pittsburgh penguins?,1 -23195,"Which December has a Record of 21–7–2, and a Game larger than 30?",1 -23196,"Which December has Points of 38, and a Record of 18–6–2?",5 -23204,what year is 4:00 long,3 -23205,What round on average was a defensive tackle selected?,5 -23206,"11th of 26, and a 17th larger than 16 has what highest 30th?",1 -23207,"What is the lowest total for the silver less than 1, and a rank more than 5, more than 1 bronze?",2 -23209,"Who has a total of the Bronze less than 4, gold more than 0, and no silver?",4 -23210,"What's the Points average with a Lost of 21, and Position of 22?",5 -23211,What's the total Lost that has a Played that's larger than 42?,4 -23217,What is the lowest number of bronze medals with less than 2 silver medals and more than 1 medal in total for Uzbekistan?,2 -23218,"What is the highest round with a pick# of 11, a position of offensive tackle, and overall less than 414?",1 -23219,"What is the highest round with a pick# of 9, overll less than 468, and position of defensive back?",1 -23220,What is the highest round with a guard position and an overall greater than 71?,1 -23231,What is the total number of Issues has a End month of oct-80?,3 -23248,"What is the average number of wins of the year with less than 5 top 10s, a winning of $39,190 and less than 2 starts?",5 -23249,"What is the highest number of poles of the year before 1992 with more than 18 starts and winnings of $125,102?",1 -23256,"What's the highest Points with the Team of Tacuary, and has Losses that's smaller than 4?",1 -23257,"What's the sum of Losses that Scored larger than 15, has Points that's larger than 16, and Played that's larger than 9?",4 -23258,"What's the highest Played with a Scored of 15, and Draws that's less than 1?",1 -23259,"What's the sum of WIns with Draws that's larger than 1, Losses that's smaller than 4, and Conceded of 20?",4 -23260,"What's the lowest Position with a Conceded that's larger than 16, Draws of 3, and Losses that's larger than 3?",2 -23270,"Points larger than 6, and a Results of 522:443 had what lowest matches?",2 -23271,"Loses of 2, and a Pos. smaller than 2 had how many highest matches?",1 -23275,What is the lowest number of live births of Syria when the natural change was 9.4 and the crude death rate was greater than 29.3?,2 -23276,"What is the natural change number of Syria when there were 67,000 deaths and an average population greater than 2,820?",4 -23277,"What is the rank of the park in pigeon forge, tennessee in the best food category?",3 -23279,What is the earliest year having a length of 11:25?,2 -23280,What year had a version called Wolf Mix?,5 -23283,"What was the highest week with 84,856 in attendance?",1 -23289,Zack Jordan has the lowest pick and a round of less than 28?,2 -23290,What is the sum of the pick for player roger zatkoff?,4 -23295,"What is the highest number of games drawn, where the games played was less than 7?",1 -23296,Which October is the lowest one that has an Opponent of washington capitals?,2 -23298,How many Points have an Opponent of @ calgary flames?,4 -23299,What is the mean number of events where the rank is 1 and there are more than 3 wins?,5 -23304,"Which Social and Liberal Democrats/ Liberal Democrats has a Control of labour hold, and a Liberal larger than 0?",4 -23307,Which Social Democratic Party has a Green smaller than 0?,5 -23313,What is the total number of overall figures when duke was the college and the round was higher than 7?,4 -23314,Which of the highest pick numbers had a round of less than 2?,1 -23316,Which highest overall figure had Robert Alford as a name and a round of more than 2?,1 -23318,What's the Lowest Attendance with a Game site of Riverfront Stadium?,2 -23319,What's the lowest Attendance for a Week of 2?,2 -23321,What is the smallest number of total medals for Georgia with 0 silver and 1 bronze?,2 -23322,What is the lowest year that had foil team as the event at Melbourne?,2 -23323,What is the number of years that the event was foil team and took place in Los Angeles?,3 -23333,What is the smallest number of drawn games when there are fewer than 4 points and more than 4 lost games?,2 -23334,What is the sum of the points when there are fewer than 4 games?,4 -23340,"What is the highest position of the team with an against of 12, less than 11 points, more than 2 drawn, and more than 9 played?",1 -23342,"What is the average number of played of the team with 3 losses, more than 9 points, a position of 5, and less than 12 against?",5 -23344,Name the most share for anhui satellite tv,1 -23345,Name the sum of rating % for cctv and position more than 7,4 -23346,Name the average rating % for shandong satellite tv and share % less than 1.74,5 -23350,Name the sum of round for pick of 169,4 -23371,"How many games have Points smaller than 4, and an October smaller than 5?",3 -23372,"Which Game has a Record of 8–2–0, and Points larger than 16?",4 -23374,"How many games have November 7 as the date, and points greater than 17?",3 -23375,How many points have November of 15?,4 -23383,What is the average attendance that has june 24 as the date?,5 -23395,How many people attended the game that lost 2-4 and the date was higher than 15?,3 -23399,Which Game has a Series of bruins lead 3–1?,4 -23402,Which Game has a Score of 3–6?,4 -23406,What is the highest round for the Minnesota Junior Stars (Mjhl)?,1 -23409,How much Attendance has an Opponent of oxford united?,4 -23411,"How many Podiums where their total for the Series of Macau grand prix, as well as being a season before 2008?",4 -23412,How many wins where there total for Series named formula 3 euro series as well as having more than 2 Podiums?,3 -23413,"What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?",1 -23414,"What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0?",1 -23429,What is the smallest capacity for Fandok?,2 -23430,What is the highest pick number of a defensive back with less than 136 overall points?,1 -23431,What is the lowest pick number of John Scully?,2 -23432,What is the total points with less than 5 games?,3 -23441,"In the Ohio 4 district, that is the first elected date that has a result of re-elected?",4 -23445,Which Year is the lowest one that has a To par of –1?,2 -23449,"What is the average total score of Belarus, which had an E score less than 8.2?",5 -23450,What is the total of the team with a T score greater than 8 and an E score less than 8.4?,4 -23452,"What is the total of Poland, which has an E score greater than 7.725?",3 -23453,What is the total of the team with a T score less than 6.8?,4 -23460,Which Round is the lowest one that has a School/Club Team of virginia?,2 -23467,"Which Year is the highest one that has a Population larger than 13,012, and a Borough of richmondshire?",1 -23468,How many people live in Norton?,4 -23471,"Which Rank is the lowest one that has a Borough of richmondshire, and a Population larger than 8,178?",2 -23475,"How many pick #'s have james britt as the name, with a round greater than 2?",3 -23477,"Which Wins is the highest one that has a Country of united states, and a Player of andy bean, and a Rank smaller than 4?",1 -23479,Which Earnings ($) is the lowest one that has a Rank smaller than 1?,2 -23487,"With an Overall less than 171, what is the Round pick of Lance Moon?",2 -23489,How many Rounds have a Defensive End Pick?,3 -23499,Which Points have an Opponent of vancouver canucks?,5 -23500,How many Points have a Score of 3–0?,3 -23501,"Which Game has Points smaller than 10, and an October larger than 12, and an Opponent of @ washington capitals?",4 -23510,What is the sum of goals for the 2004/05 Season?,4 -23511,What is the lowest caps for the Club of SBV Excelsior?,2 -23518,"Nationality of england, and a Matches smaller than 510, and a Lost of 4, and a Win % smaller than 28.6 had what lowest drawn?",2 -23519,"Win % larger than 47.1, and a Matches smaller than 145 had what lowest lost?",2 -23520,"Matches of 15, and a Win % smaller than 20 had what highest lost?",1 -23521,"Nationality of england, and a Lost larger than 39, and a Win % of 28.7, and a Drawn smaller than 37 had what sum of matches?",4 -23522,"Drawn smaller than 24, and a Lost smaller than 17, and a Win % smaller than 31.25 had how many total number of matches?",3 -23523,Lost of 18 had what sum of win %?,4 -23530,"How many players had an Att-Cmp-Int of 143–269–16, and an efficiency of less than 116.9?",3 -23532,"How many legs were won by the player who had less than 84 100+, less than 14 legs lost, and less than 3 played?",4 -23533,What is the total number of legs lost of the player with a high checkout less than 76 and less than 3 played?,3 -23535,"What is the number of legs lost of the player with more than 8 legs won, 4 played, less than 6 180s, and a 100+ greater than 46?",4 -23536,"What is the average number of legs won of the player with a high checkout greater than 96, more than 5 played, and a smaller than 95.61 3-dart average?",5 -23539,"What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points?",3 -23540,Name the total number of rounds for gina carano,3 -23549,What is k275av call sign's highest erp w?,1 -23551,Name the total number of years for quarterfinals,3 -23552,"4th Runner-up smaller than 1, and a 5th Runner-up of 0, and a Miss World smaller than 2 has which lowest 3rd Runner-up?",2 -23553,"Country/Territory of india, and a 4th Runner-up smaller than 1 has which lowest rank?",2 -23554,"Rank larger than 3, and a 6th Runner-up larger than 0, and a 5th Runner-up smaller than 1 has which lowest 1st Runner-up?",2 -23555,5th Runner-up smaller than 0 has the lowest semifinalists?,2 -23556,"3rd Runner-up of 2, and a Country/Territory of venezuela has what sum of 4th runner-up?",4 -23557,"2nd Runner-up larger than 4, and a Country/Territory of israel, and a 4th Runner-up smaller than 0 has which sum of 6th Runner-up?",4 -23559,"Which Seasonhas a Score of 3 – 3 aet , 4–3 pen?",1 -23561,How many rounds had an overall of 211?,3 -23562,What is the mean pick number for the cornerback position when the overall is less than 134?,5 -23563,"Which 1956 has a County of vâlcea, and a 2011 smaller than 371714?",4 -23564,"Which 2011 is the lowest one that has a 1948 smaller than 15872624, and a 1966 of 263103, and a 1992 larger than 266308?",2 -23565,"Which 1992 is the lowest one that has a 1977 smaller than 385577, and a 2011 larger than 340310, and a 2002 larger than 300123, and a 1948 larger than 280524?",2 -23566,"Which 1977 is the lowest one that has a County of zzz bucharest, and a 2011 smaller than 1883425?",2 -23576,"How much Played has Drawn of 2, and a Position larger than 3, and Points smaller than 10?",3 -23577,"Which average Against has a Difference of 10, and a Lost smaller than 2?",5 -23578,"How many Attendances have a Result F – A of 0 – 2, and a Date of 31 january 1903?",5 -23580,How many Attendances have a H / A of h on 7 march 1903?,2 -23584,Which game has an opponent of Phoenix Coyotes and was before Dec 9?,5 -23585,What is the December game that led to an 11-13-5 record?,1 -23587,"Which Overall has a College of florida state, and a Round larger than 2?",4 -23588,"How many Picks have a Position of kicker, and an Overall smaller than 137?",4 -23591,"How much Overall has a Pick # larger than 9, and a Round larger than 5?",3 -23596,Director of christophe barratier had what highest year?,1 -23603,What is the highest Year with of the open championship?,1 -23613,What is the average value for ERP W when frequency is more than 100.1?,5 -23615,"What is the average value of ERP W in Beardstown, Illinois for a frequency greater than 93.5?",5 -23616,What was the sum of the winner's shares for US Senior Opens won by Brad Bryant before 2007?,4 -23618,What is the average winner's share won by Billy Casper?,5 -23620,"Which Pick # is the highest one that has an Overall of 184, and a Round larger than 6?",1 -23621,How many picks have an Overall of 114?,3 -23622,"Which Overall is the highest one that has a Name of daimon shelton, and a Round larger than 6?",1 -23623,"Which Pick # is the highest one that has an Overall larger than 21, and a College of north carolina, and a Round smaller than 3?",1 -23625,What is cornell's lowest pick number?,2 -23630,"What is the average rank of a nation that had 219,721 in 2012?",5 -23631,In what Round was Pick 138?,4 -23634,What is the average frequency in MHz for stations with an ERP W of 170?,5 -23635,What is K236AM's lowest frequency in MHz?,2 -23642,"Texas Rate smaller than 32.9, and a U.S. Rate larger than 5.6 is what highest killeen rate?",1 -23643,"Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate?",4 -23644,"Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses?",2 -23654,What are the most points for Thomas Morgenstern with a distance less than 123.5 in 2nd and rank over 4?,1 -23655,What is the sum of the distances in 2nd for ranks higher than 4 and distance for 1st less than 111.5?,4 -23657,What is the gold medal count that has a silver medal count less than 0?,1 -23658,What is the average number of students for schools with a pupil to teacher ratio of 25.1?,5 -23659,What is the lowest pupil to teacher ratio for Saratoga schools with smaller than 1213 students?,2 -23660,What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25?,1 -23661,Name the most rank for wins outdoor larger than 1 and wins indoor less than 0,1 -23662,Name the most rank for uk and wins more than 5,1 -23663,Name the average wins outdoor with rank more than 4 and wins less than 3 with outdoor wins more than 0,5 -23664,Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7,1 -23669,"How much Average has a Team of san lorenzo, and a 1990-1991 smaller than 45?",3 -23670,"Which Played is the lowest one that has a 1989-90 of 39, and a Team of gimnasia de la plata, and Points larger than 108?",2 -23671,"Which 1990-1991 is the average one that has Played of 38, and Points of 40?",5 -23676,How many years have 78 for points?,3 -23678,What is the lowest year that have wins greater than 0?,2 -23679,"What are the highest points that have a year less than 1992, with wins less than 0?",1 -23680,What was the lowest attendance at a game against the St. Louis Cardinals?,2 -23683,"What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District?",3 -23686,What year featured lola motorsport as an entrant with over 0 points?,5 -23687,When is the earliest year that there's a judd engine?,2 -23705,How many ships are named Monge?,3 -23709,"Which Round has a College of stanford, and an Overall smaller than 8?",5 -23710,"How many Picks have a College of tennessee, and an Overall smaller than 270?",4 -23711,"Which Pick # is the lowest one that has a College of troy state, and a Name of reggie dwight, and an Overall smaller than 217?",2 -23712,What's the smallest amount of earnings when the wins are less than 72 and the rank is more than 3?,2 -23713,"What's the least amount of wins with earnings that are more than $2,556,043, and where Lee Trevino is a player?",2 -23714,What's the smallest amount of earnings when there are more than 18 wins and the rank is 2?,2 -23715,What is the lowest number of losses for a team with more than 0 wins?,2 -23716,What is the average number of losses for teams with fewer than 0 wins?,5 -23717,What is the average number of wins for Runcorn Highfield with more than 0 draws?,5 -23718,What is the lowest number of losses for Nottingham City with fewer than 0 wins?,2 -23719,What is the weight of the player from the Philadelphia 76ers?,3 -23723,"Which Game is the average one that has a February larger than 20, and a Record of 41–17–4, and Points smaller than 86?",5 -23734,What was the largest number of people in attendance of the game with a W 14-3 result after week 10?,1 -23742,"Which Pocona Municipality (%) is the lowest one that has a Puerto Villarroel Municipality (%) smaller than 14.6, and a Chimoré Municipality (%) of 5.1, and an Entre Ríos Municipality (%) smaller than 0.9?",2 -23743,"Which Puerto Villarroel Municipality (%) is the lowest one that has an Ethnic group of not indigenous, and a Totora Municipality (%) smaller than 4.4?",2 -23744,"Which Pocona Municipality (%) has a Puerto Villarroel Municipality (%) larger than 14.6, and a Pojo Municipality (%) smaller than 88.5?",4 -23745,"Which Totora Municipality (%) is the highest one that has a Chimoré Municipality (%) of 5.1, and a Pocona Municipality (%) smaller than 0.2?",1 -23746,"Which Pos has a Car # smaller than 18, and a Driver of mike skinner?",5 -23748,"Which Pos has a Team of roush fenway racing, and a Car # of 99?",4 -23749,"Which Car # has a Make of toyota, and a Pos of 7?",5 -23752,Which Game has a Series of flyers win 3–0? Question 3,1 -23755,"Which Points is the highest one that has a Nationality of aut, and a Name of thomas morgenstern?",1 -23757,What is the sum of the capacities for Carrigh wind warm that has a size of 0.85 MW and more than 3 turbines?,4 -23760,"What is the population where the rank is higher than 51 and the Median House-hold income is $25,250?",4 -23761,"What is the Population where the Median House-hold Income is $25,016?",2 -23762,"What is the Number of Households that have a Per Capita Income of $21,345?",5 -23764,"The United States, with a total medal count of less than 171, and a bronze medal count less than 9, has how many gold medals?",1 -23765,How many total gold medals did Australia receive?,3 -23766,How many total bronze medals did Canada receive?,1 -23779,"What is the largest Grid that has a Bike of honda cbr1000rr, and a Time of +20.848, and a Lap greater than 24?",1 -23786,The nation of denmark has what average total nad more than 0 gold?,5 -23787,Switzerland has how many gold and less than 0 silver?,1 -23788,"How many wins does the player ranked lower than 3 with earnings of $3,315,502 have?",4 -23789,"What is the highest number of wins of the player with less than $4,976,980 in earnings and a rank lower than 4?",1 -23790,How many years had a score of 734-5d?,3 -23794,What is the average number of top-5s for the major with 5 top-10s and fewer than 12 cuts made?,5 -23795,What is the average number of top-10s for the major with 2 top-25s and fewer than 10 cuts made?,5 -23796,What is the total number of top-25s for the major that has 11 top-10s?,3 -23797,"How many total events have cuts made over 12, more than 2 top-5s, and more than 11 top-10s?",4 -23798,How many total wins are associated with events with 1 top-10?,4 -23799,What is the average number of cuts made in events with fewer than 1 win and exactly 11 top-10s?,5 -23802,"What was the highest number of extra points scored by Albert Herrnstein, when he scored more than 15 points total?",1 -23809,What is the highest overall prior to 1996 with a slalom of 39?,1 -23810,What is the lowest overall score prior to 1992 with a downhill score of 1?,2 -23812,What was her highest Super G score with a Slalom score of 58 and an Overall larger than 2?,1 -23817,How many values of first elected are for district 16?,3 -23819,How many deposits had a Non-Interest Income of 0.9500000000000001 and number of branch/offices less than 17?,3 -23828,When was Color of green first issued?,2 -23829,When was Color of green last issued?,1 -23832,What is BYU's lowest pick?,2 -23833,Which cornerback round has a pick number lower than 26 and an overall higher than 41?,4 -23834,What is the overall number for the College of Wyoming?,3 -23835,What is the total round for a wide receiver with an overall of more than 145?,3 -23837,How many are enrolled at 49 Marion with the Warriors as their mascot?,3 -23839,What's the enrollment at 41 Johnson?,5 -23845,What is the lowest number of points of the game before game 2 before October 10?,2 -23854,How many years has 1 run?,3 -23855,What year was in Aigburth?,1 -23856,Which season has q145 as its format?,2 -23857,What is the average episode number with q146 format?,5 -23873,What is the sum of Gold with Participants that are 4 and a Silver that is smaller than 0?,4 -23878,"What's the number of the game played on January 2, 1936?",2 -23880,How many Points a February smaller than 1 have?,2 -23881,How many February days have Points of 63 and a Score of 1–2?,3 -23883,What is the number of earning for more than 2 wins and less than 25 events?,4 -23884,"What is the largest events number for more than 2 wins and less than $446,893 in earnings?",1 -23885,"What is the largest events with earning less than $384,489 ranked more than 4 with less than 1 win?",1 -23889,Which average Drawn has Games larger than 7?,5 -23891,"Which Car # has a Make of toyota, and a Driver of mike skinner, and a Pos larger than 3?",1 -23903,How many households are in highlands county?,5 -23906,What is the number of Bronze medals of the Nation with 64 total and silver greater than 16?,3 -23907,What is the bronze for Kyrgyzstan nation with a silver record of greater than 0?,5 -23908,"What is the gold for the nation with a record of bronze 1, Syria nation with a grand total less than 1?",5 -23912,"What is the number of weeks where the venue was memorial stadium and the attendance was less than 41,252?",3 -23913,"What is the sum of the weeks that games occured on october 21, 1974 and less than 50,623 fans attended?",4 -23920,"How many bronzes for the nation ranked 14th, with over 14 golds and over 25 silvers?",3 -23921,How many total medals for germany with under 56 bronzes?,4 -23922,How many total medals for the nation with 1 gold and 6 bronzes?,3 -23927,"What week shows for december 31, 1993?",3 -23929,What Week has a Result of l 17-14?,4 -23930,How many years have a position of 2nd?,3 -23933,What is the average round for draft pick #49 from Notre Dame?,5 -23938,How much Overall has a Pick # of 26?,4 -23940,"How much Overall has a Round smaller than 6, and a Pick # of 26?",4 -23941,What is Roy Hall's highest round?,1 -23942,"How much Overall has a Pick # larger than 2, and a Name of claude humphrey?",3 -23946,When is the latest year that an entrant has toro rosso str1 chassis and under 1 point?,1 -23947,How many entrants have a mercedes fo 108w 2.4l v8 engine and over 0 points?,3 -23956,"What is the lowest Top-25 for the open championship, with a Top-10 larger than 3?",2 -23957,"What is the highest Top-5 when the Tournament is the open championship, with a Top-25 less than 9?",1 -23958,"What is the average Top-25 that has a Top-10 less than 7, and the Tournament is the open championship, with a Top-5more than 1?",5 -23959,"What is the total number of Top-5 when the Top-25 is 6, and a Cuts made are less than 12?",3 -23961,"What was the latest week with a date of November 12, 1967 and less than 34,761 in attendance?",1 -23963,What is the total for New York's game?,4 -23965,How many losses had a total of 17 and more than 10 wins?,3 -23967,What is the smallest no result when the year was 2012 and there were more than 10 wins?,2 -23996,What is the total number of round values that had opponents named Paul Sutherland?,3 -24001,"When the played number is less than 8 and against is 23, what is the least amount of points?",2 -24002,"When the corinthians have a position of less than 5, what is the average against?",5 -24003,What position has less than 6 Points?,3 -24004,What is the number of against when the difference is 10 and played is greater than 8?,3 -24008,How many years has the Mercury Prize award been given?,3 -24009,For how many years has the Mercury Prize been awarded?,3 -24011,"What is the lowest Points when against is 50, and there are less than 20 played?",2 -24012,What is the average Position with less than 57 against and the team is Juventus?,5 -24013,"What is the highest Position when the against is less than 41, and lost is more than 7?",1 -24014,What is the average Lost when there are 57 against?,5 -24015,"What is the lowest Lost for são paulo railway, Points more than 21?",2 -24023,"What is the of Fleet size with a IATA of pr, and a Commenced operations smaller than 1941?",4 -24026,What is the highest Pick # when the CFL Team is the Toronto Argonauts?,1 -24030,What is the latest year of a gratitude type mission with 99 in the entourage?,1 -24035,What is the average Attendance at a game with a Result of w 30-23?,5 -24036,What is the lowest Attendance at a game with the Result of w 25-17?,2 -24043,"What is the sum of Top-10(s), when Cuts made is less than 10, and when Top-5 is less than 0?",4 -24044,"What is the lowest Top-25, when Events is 10, and when Wins is greater than 0?",2 -24045,"What is the lowest Top-5, when Top-25 is less than 4, and when Cuts made is less than 7?",2 -24063,What was Italy's highest total when there were less than 4 bronze and 1 gold?,1 -24064,How many totals had more than 4 bronze?,4 -24065,What was Austria's lowest total when the gold was more than 3?,2 -24067,What is the average total for Tiger Woods?,5 -24070,How many total No Results occured when the team had less than 46 wins and more than 16 matches?,4 -24071,"When the team had more than 46 wins, what were the average losses?",5 -24072,How many total No Results are recorded for less than 6 wins?,3 -24074,What is the lowest game number with Aris Thessaloniki with points smaller than 120?,2 -24075,What is the game average that has a rank larger than 2 with team Olympiacos and points larger than 113?,5 -24077,What was the Purse ($) total for Iowa?,3 -24084,What is the smallest number of losses for a position greater than 2 with 4 points and more than 2 draws?,2 -24085,How many points occurred with a difference of 2 for position less than 4?,3 -24086,What is the highest number of points for a position less than 3 and less than 1 loss?,1 -24112,What is the lowest order with a Minister that is joe hockey?,2 -24120,What is the average number of top-10s for events under 57 and 0 top-5s?,5 -24121,What is the average number of top-10s for events with more than 12 cuts made and 0 wins?,5 -24122,What is the average number of top-25s for events with less than 2 top-10s?,5 -24131,What's the smallest March when the record is 22-12-6?,2 -24136,"What is the highest Total for the rank 12, and gold less than 0?",1 -24137,"What is the total number of Total when the Silver is less than 2, and a Bronze is less than 0?",3 -24150,What is the total number of votes from the Labour Party?,3 -24152,How many numbers had Brandon Dean as a name?,4 -24159,What is the Total againsts for the Sant'Anna team with a position number greater than 10?,3 -24160,"What is the total number of games played with 3 losses, 1 or more drawns and 10 or fewer points?",4 -24161,What is the average lost of games played of more than 9?,5 -24162,What is the lowest number of bronze medals for Great Britain with more than 2 medals total?,2 -24163,What is the lowest wins the club with a position of 4 and less than 4 losses has?,2 -24164,"What is the sum of the points of club nevėžis-2 kėdainiai, which has more than 35 goals conceded?",4 -24165,What is the total number of games played of the team with 4 wins and a position less than 9?,3 -24166,What is the highest number of wins of the team with a position less than 1?,1 -24167,"What is the total losses against 1412, and 10 wins, but draws less than 0?",4 -24168,What is the highest draw against 2161?,1 -24169,"What is the total number of losses against 1412, and Byes less than 2?",3 -24170,What is the lowest wins with less than 2 Byes?,2 -24171,What is the highest score with 0 wins and more than 2 Byes?,1 -24172,What is the sum of wins against the smaller score 1148?,4 -24174,How many goals ranked 6?,3 -24177,"Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand?",4 -24178,"Which Gold has a Total of 2998, and a Bronze smaller than 1191?",5 -24179,"Which Bronze has a Country of malaysia, and a Total smaller than 2644?",4 -24185,"When the venue was A and the date was 2 january 2008, what was the average attendance?",5 -24189,"On 1 september 2007, at the Venue A, what was the average attendance?",5 -24199,What is the highest silver medals for Russia with more than 5 bronze medals?,1 -24215,What was the lowest squad with 0 goals?,2 -24216,What is the number for overall for angelo craig?,3 -24218,What is the lowest Overall for the wide receiver in a round less than 2?,2 -24223,"What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305?",5 -24225,"What is the total number of Block(s), when Spike is less than 341, when Weight is greater than 82, and when Name is Theodoros Baev?",3 -24236,What is the highest place for song that was draw number 6?,1 -24247,"How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9?",5 -24248,"What's the highest Total when Women's Wheelchair was 2, Men's Wheelchair was smaller than 1, and Women's race was larger than 0?",1 -24249,What's the average men's wheelchair when women's wheelchair is less than 0?,5 -24250,"When the Country is Mexico, Women's race is less than 0, and Men's race is more than 0, what's the average total?",5 -24251,"What's the sum of Men's race when Women's race is less than 1, Women's Wheelchair is 1, Men's wheelchair is more than 3 and the Total is more than 3?",4 -24252,"What's the average Women's Wheelchair when Men's race is 0, Women's race is 1, and Men's wheelchair is less than 2?",5 -24253,What was the lowest Attendance when the Opponent was Maryland?,2 -24260,"Can you tell me the lowest Chapter that has the Pinyin of dehua, and the Articles smaller than 16?",2 -24261,Can you tell me the average Chapter that has Articles smaller than 15?,5 -24273,"What are the least amount of points that have points for greater than 438, and points against greater than 943?",2 -24274,"What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16?",1 -24276,"How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631?",3 -24278,What's the smallest track written by dennis linde that's 2:50 minutes long,2 -24287,What is the sum of the wards/branches in Arkansas of the North Little Rock Arkansas stake?,4 -24315,What is the average year for Team Oreca?,5 -24318,"Which Position has an Against larger than 17, and a Team of juventus, and a Drawn smaller than 4?",2 -24319,Which Lost has an Against of 49 and a Played smaller than 20?,3 -24330,"Which week had the highest attendance with 58,701?",1 -24331,What was the score of the game against the San Diego Chargers?,4 -24334,"What week had 58,025 in attendance?",4 -24336,What is the lowest number of Drawn games for Team Mackenzie where the Played is less and 11 and the Points are greater than 7?,2 -24337,What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15?,3 -24338,What is the Lowest lost for Team Ypiranga-SP where the games Played is more than 10 and the goals Against is greater than 50?,2 -24339,What is the highest number of Played games with a Position smaller than 2 and Drawn games less than 4?,1 -24340,"What is the average number of runner-up that National University, which has more than 2 total championships, has?",5 -24341,What is the lowest number of total championships of the university with 2 men's and more than 2 women's?,2 -24343,"What is the average total championships of the university with more than 0 women's, less than 4 runner-ups, and less than 0 men's?",5 -24344,"What is the lowest number of total championships of the University of Santo Tomas, which has less than 2 men's?",2 -24357,What is the lowest grid number when Colin Edwards is the rider?,2 -24359,What is the average number of laps when the grid number is 9?,5 -24360,What is the highest number of laps when honda is the manufacturer and the grid number is 12?,1 -24362,How many laps were driven when the time/retired is +44.284?,3 -24375,"Can you tell me lowest Rank that has the Capacity in use of 93.6%, and the Total Passengers larger than 4,679,457?",2 -24376,"Can you tell me the lowest Total Passengers than has the Location of salvador, and the Rank larger than 5?",2 -24378,What is the average number of cuts made when there were more than 2 tournaments played in 2011?,5 -24379,What is the total number of wins with 10 cuts made and a score average under 74.09?,3 -24385,What's the highest attendance for a game the Texan's played at Arrowhead Stadium?,1 -24389,What is the lowest number of delegates when John McCain was the candidate with less than 45 candidates?,2 -24390,"What is the sum of Counties when there were 701,761 votes and less than 57 delegates?",4 -24391,What is the highest Counties when Mitt Romney was the candidate with less than 0 delegates?,1 -24393,What is the number of votes when Ron Paul is the candidate with less than 0 counties?,3 -24394,What is the sum of totals associated with a UEFA Cup score of 4?,4 -24395,What is the sum of totals for FA Cup values of 0?,4 -24397,"What is the average Weight of the person who is 6'9""?",5 -24402,"What is the highest prev that has 9 as the rank, with a rating less than 2746?",1 -24403,"How many blocks have a weight greater than 82, and a height less than 199?",4 -24404,"What is the lowest block that has 328 as the spike, and a height less than 186?",2 -24405,"What is the lowest block that has a height less than 202, 19.06.1980 as the date of birth, and a weight greater than 76?",2 -24406,"What is the highest block that has 15.09.1981 as the date, and a height greater than 202?",1 -24413,"What is the highest Matches, when Prize Money is £5,000?",1 -24415,"What is the average Matches, when Round is Third Qualifying Round?",5 -24416,"What is the total number of Matches, when Clubs is 588 → 406?",3 -24424,"What is the lowest Since, when Notes is To Anagennisi Karditsa, and when App(L/C/E) is 0 (0/0/0)?",2 -24426,What are the lowest laps Alex Tagliani did for the Forsythe Racing team?,2 -24433,"Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9?",3 -24434,Which Administrative Panel has a Nominated by the Taoiseach smaller than 0?,2 -24435,"Which Labour Panel has an Industrial and Commercial Panel of 9, and a University of Dublin smaller than 3?",5 -24436,"Which Total has a Labour Panel smaller than 5, an Administrative Panel smaller than 1, and a National University of Ireland smaller than 2?",3 -24437,"Which Agricultural Panel has a Nominated by the Taoiseach larger than 6, and a Total larger than 60?",4 -24447,What is the points sum of the series with less than 0 poles?,4 -24448,"What is the sum of the races in the 2007 season, which has more than 4 podiums?",4 -24449,"What is the sum of the poles of Team la filière, which has less than 162 points?",4 -24450,"What is the average number of points in the 2012 season, which has less than 1 wins and less than 0 podiums?",5 -24452,"What is the sum of the Cultural and Educational Panels that have an Administrative Panel greater than 1, an Agricultural Panel of 11 and a University of Dublin smaller than 3?",4 -24453,What is the sum of Agricultural panels that have an Industrial and Commercial Panel smaller than 0?,4 -24454,"What is the lowest number of National University of Ireland that has a Cultural and Educational Panel of 0, and a Labour Panel smaller than 1?",2 -24455,"What is the total of Industrial and Commercial Panels that have a Labour Panel greater than 1, a Nominated by the Taoiseach lesss than 11 and a Cultural and Educational Panel smaller than 0",3 -24456,What was the highest number of goals when 2428 minutes were played?,1 -24458,"What is the total number of assists when Edmundo Rodriguez is playing the position of striker, less than 4 goals were scored, and the minutes were less than 473?",3 -24459,What is the least ERP W when the freguency MHz is 89.3 fm?,2 -24460,Call sign k216fo has what average ERP W?,5 -24466,"How many Points have an Against smaller than 43, and a Position smaller than 1?",4 -24467,"How many Drawn have a Position of 7, and Points larger than 18?",3 -24468,"How many Against have a Team of hespanha, and Points smaller than 30?",3 -24469,"Which Points is the average one that has Drawn of 3, and a Played smaller than 22?",5 -24470,"How much Played has an Against larger than 37, and a Lost of 15, and Points smaller than 11?",4 -24474,"What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11?",5 -24475,What was the highest grid value for riders with manufacturer of Aprilia and time of +1.660?,1 -24479,"Before 1957, what was the largest in Attendance at Varsity Stadium?",1 -24482,"Which Position has an Against of 32, and a Difference of 18, and a Drawn larger than 4?",4 -24483,"Which Position has an Against smaller than 49, and a Drawn of 4?",1 -24484,"Which Played has a Drawn of 5, and a Team of palmeiras, and a Position smaller than 6?",1 -24497,How many people were in attendance for the game week 15?,3 -24498,What is the highest number of people in attendance in the game against the Buffalo Bills in a week later than 14?,1 -24499,"What is the average Week when there were more than 63,866 people in attendance on September 7, 1981?",5 -24500,"What is the average Attendance for the game on November 1, 1981?",5 -24515,What is the number of games for Shaun Stonerook?,2 -24516,What is the highest total number of medals of the nation with less than 1 bronzes and less than 0 silver medals?,1 -24517,"Total weeks of 49,980 attendance?",4 -24518,"Mean attendance for December 22, 1980?",5 -24525,"Which Round has a Location of auckland, new zealand, and a Method of tko on 1994-11-24?",5 -24526,Which highest Round has a Result of loss?,1 -24536,What is the highest 1987 value with a 1995 value less than 1995 and a 1999 less than 9?,1 -24537,"What is the highest 2003 value with a 1990 greater than 74, a 125 value in 1985, and a 1995 value greater than 130?",1 -24538,"What is the highest 2007 value with a 1985 value greater than 52, a 1987 value greater than 130, and a 1990 less than 1990?",1 -24539,"What is the highest 1995 with a 1990 less than 36, a 1987 less than 1987, and a 2007 value greater than 107?",1 -24540,What is the highest 2003 value with a 2011 less than 107 and a 1995 value less than 17?,1 -24542,What is the most top-10 of the team with 8 cuts made and less than 11 events?,1 -24550,What is the highest Attendance with a Result that is w 24-21?,1 -24553,What is the total number of Points that were in a Year that was 2005?,3 -24554,What is the lowest Shots with a Point that is larger than 32?,2 -24574,What is the lowest jersey # of the player with a height of 191 cm from the New Jersey Devils in 2008-2009?,2 -24575,"What is the total height of the player with a birthdate on September 2, 1973?",3 -24583,"What is the smallest total that has under 3 golds, more than 0 silvers and bronzes?",2 -24584,"What is the total number of silvers associated with 3 bronzes, a total over 6, and a rank of 3?",3 -24585,What is the sum of bronzes associated with 0 golds and a rank of 10?,4 -24586,What is the largest silver value associated with 0 golds?,1 -24587,What is the total number of bronzes from the Netherlands?,3 -24588,What is the average amount of earnings for years under 2004 and money list rankings of 6?,5 -24589,What is the highest number of wins for years after 1999 with averages over 73.02?,1 -24616,"How many weeks had a game on November 26, 1978, and an attendance higher than 26,248?",3 -24617,What was the lowest Attendance during Week 12?,2 -24623,What is the total number of Entered when the eliminated number is 3?,3 -24625,How many frequencies have a line of East London and destination of Crystal Palace?,3 -24635,What are the number of losses that have Ties of 1 and 3 or more poll wins?,3 -24636,"What is the lowest poll losses of the 0 ties, poll wins greater than 1 and wins less than 2?",2 -24637,What is the highest poll of the advocate Andy Kindler with poll losses greater than 2 and ties less than 0?,1 -24638,"Which PBA Titles has a TV Finals larger than 6, and an Events larger than 20?",5 -24639,"Which Events has Earnings of $113,259, and an Average larger than 229.5?",1 -24640,"Which Cashes has a Match Play smaller than 13, and a Events of 7?",3 -24658,What was the latest year that the Atlanta Braves won and the St. Louis Cardinals lost?,1 -24662,What average lost has points greater than 108?,5 -24663,"How many losses have 222 as the goals against, with points greater than 78?",4 -24664,"How many goals against have 64 for games, a loss less than 12, with points greater than 107?",4 -24665,What is the place of the song 'Never Change'?,4 -24667,What was the lowest pick for the RHP position and player Mike Biko?,2 -24672,"Can you tell me the total number of Prev that has the Chng of +10, and the Rating larger than 2765?",3 -24676,"What was the highest election with third party member Sir Robert Price, BT, and first party member conservative?",1 -24690,How many years was the title drop dead?,3 -24697,How many wins are related to events of 7 and more than 2 top-10s?,3 -24698,"What is the most cuts made for events with 1 top-5, 2 top-10s, and more than 13 total events?",1 -24700,"Can you tell me the lowest Year that has the Rank smaller the 132, and the Name of biodiversity richness?",2 -24709,What was the number of passengers going to MCO with a rank larger than 9?,3 -24713,"What is the total number of positions with less than 10 points, more than 7 qualifying, ret value in Race 1, and Jonathan Grant driving?",3 -24721,What is the largest played when the drawn is less than 1?,1 -24722,What points average has a played greater than 20?,5 -24723,What is the smallest drawn with a position bigger than 10 and a played less than 20?,2 -24724,At what average position is the drawn 9 and the points greater than 25?,5 -24725,How many played has an against greater than 57 and a lost bigger than 14?,3 -24728,"Which year was the 100 m event played in Thessaloniki, Greece?",2 -24732,"What is the lowest Greater Doubles, when Doubles, I Class is 23, and when Doubles, II Class is less than 27?",2 -24733,"What is the highest Doubles, II Class, when Doubles, I Class is less than 19?",1 -24734,"What is the lowest Semidoubles, when Doubles, II Class is 18, and when Total is less than 164?",2 -24735,"What is the lowest Date, when Doubles, II Class is 18, and when Total is less than 164?",2 -24747,"What year did the company have a balance sheet total of €125,359,000?",3 -24748,"What was the average Year of release for the Album, ""Da Baddest Bitch""?",5 -24760,"What is the average share at 8:00 p.m., and an 18-49 of 1.3/4 with an air date of April 4, 2008?",5 -24761,"What is the lowest share with an air date of March 21, 2008 and had viewers larger than 5.15?",2 -24762,What is the lowest team (s) that have tvmk as top scorer (s) and flora as the champion?,2 -24779,What is the average Events when the top-25 is 12 and there are less than 0 wins?,5 -24780,"What is the sum of Events when the top-25 is more than 5, and the top-10 is less than 4, and wins is more than 2?",4 -24781,What is the average Top-10 when there were 17 cuts made with less than 0 wins?,5 -24782,What is the sum of Cuts made when there were more than 72 events?,4 -24783,"What is the average Top-5 for the open championship, and a Top-10 smaller than 2?",5 -24785,What was the fewest number of viewers for the episode production number of 109 5-22?,2 -24787,How many Airlines have a total distance of 705 (km)?,3 -24793,"What is the lowest Rank for the Name, ""area of permanent crops"", Out of a number smaller than 181?",2 -24801,What was the 2010 census when the 2011 estimate was 410?,4 -24802,What is the smallest played amount when there are 2 draws and an against of more than 73?,2 -24803,"What is the earliest season with a premiere of february5,2007?",2 -24809,"What is the highest Round, when the Opponent is Junior Pitbull?",1 -24817,What is the highest win for losses less than 2?,1 -24818,"What is the average Byes for the losses of 15, and before 1874?",5 -24819,What is the sum of against in Ballarat FL of East Point and wins less than 16?,4 -24822,How many visitors in 2007 were there for ski jumping hill?,4 -24823,"What is the highest Games, when Rebounds is greater than 100, when Name is Nikola Peković, and when Rank is less than 4?",1 -24824,"What is the total number of Games, when Rank is less than 4, and when Rebounds is less than 102?",3 -24825,"What is the lowest Games, when Name is Travis Watson, and when Rebounds is less than 136?",2 -24826,"What is the sum of Rebounds, when Team is Aris Thessaloniki, and when Games is greater than 14?",4 -24827,"What is the highest Rank, when Name is Travis Watson, and when Games is less than 14?",1 -24841,"Which week was on November 13, 1955 when the attendance was over 33,982?",3 -24850,What is the sum of completions that led to completion percentages of 65.4 and attempts under 451?,4 -24851,What is the highest number of touchdowns that had yards of 574 and completions over 54?,1 -24853,"When the regular season of 2nd, Northeast and the year was less than 2008 what was the total number of Division?",3 -24866,What was Des Dickson's lowest rank for matches smaller than 285 and less than 219 goals?,2 -24867,How many goals on average had 644 matches and a rank bigger than 3?,5 -24868,How many ranks had 205 matches?,3 -24869,What was Jimmy Jones' rank when the matches were smaller than 285?,1 -24874,What day in December was the game that resulted in a record of 6-3-1?,4 -24875,How many were in attendance against the Oakland Raiders after week 7?,4 -24876,What is the average attendance for the New York Jets?,5 -24877,"On what week were there 26,243 in attendance on September 21, 1969?",3 -24881,"Which League has a FA Cup larger than 0, and a Player of simon read, and a League Cup larger than 1?",2 -24882,"What kind of Total that has a League Cup larger than 3, and a League smaller than 16?",3 -24883,Which League has a League Cup smaller than 0?,2 -24884,"Which League has a Total smaller than 16, a Player of ken mckenna and a League Cup larger than 0?",1 -24885,Which FA Cup that has a League Cup larger than 3 and a League smaller than 16?,5 -24886,"How many list entry numbers are located in Platting Road, Lydgate?",3 -24898,"How many golds had a silver of more than 1, rank more than 1, total of more than 4 when the bronze was also more than 4?",4 -24899,What is the total of rank when gold is 2 and total is more than 4?,4 -24900,What is the total number of bronze when gold is less than 1 and silver is more than 1?,4 -24901,"What is the total of rank when silver is more than 1, gold is 2, and total is more than 4?",4 -24902,"What is the Wins with a Top-25 of 3, and a Top-5 larger than 1?",5 -24905,"What is the sum of Points for 250cc class, ranked 13th, later than 1955?",4 -24907,"What is the average Year when there were more than 3 points, for MV Agusta and ranked 10th?",5 -24919,What is Relax-Gam's average UCI Rating?,5 -24920,What is Vuelta a Ecuador's lowest UCI Rating?,2 -24923,"What is the earliest week with a game attended by 60,233?",2 -24924,What is the latest week with a game with a result of l 12–7?,1 -24928,"With 10,894 students enrolled, in what year was this private RU/VH institution located in Troy, New York founded?",5 -24929,"What is the enrollment number for the public institution in Golden, Colorado founded after 1874?",5 -24931,In what year Year has a Co-Drivers of jérôme policand christopher campbell?,4 -24936,"What is the lowest Draw, when the Song is ""The Innocent Days""?",2 -24937,"What is the sum of Points, when the Performer is fe-mail?",4 -24949,"Which Station users 2005–06 has a Station users 2004–05 of 2,117,300?",2 -24950,"How many Station users 2005–06 that has a Station users 2004–05 of 1,455,700?",3 -24953,"When the Track is ESO, the peak is smaller than 25, and the year is larger than 2004, what is the total number of Weeks on Chart?",3 -24955,What is the lowest Peak with fewer than 8 Weeks on Chart?,2 -24968,What was the Attendance when Oxford United was the Home team?,4 -24971,Which Bronze has a Rank of 9?,3 -24972,"Which Bronze has a Gold smaller than 1, and a Rank of 17, and a Nation of china?",1 -24974,"Which Total has a Rank of 17, and a Gold larger than 0?",5 -24975,"Which Gold has a Rank of 15, and a Total smaller than 2?",5 -24985,"What is the sum of season when the venue was donington park, and Brazil came in second?",4 -24986,"What is the average Season when the venue was circuit de nevers magny-cours, and Drivers was more than 30?",5 -24987,"What is the total number of Losses when the percentage is 54.83, with more than 8 points?",3 -24988,"What is the average Points For when there are Points Against more than 780, and Points smaller than 0?",5 -24989,"What is the average Points when the Points Against is 594, and Losses is more than 3?",5 -24990,"What is the average Percentage when there are more than 0 wins, Points Against is more than 481, Losses of 8, and a Points For larger than 826?",5 -24991,"What is the lowest Wins when the Club is broadview hawks, and Points Against is more than 594?",2 -24993,What is the highest SHTS of Kasey Keller,1 -24994,"What is the most number of Bronze medals won among the countries that have won more than 1 medal, more than 1 gold medal, and have a rank bigger than 1?",1 -24995,What is the total number of Losses that Melton had when they had fewer Draws than 0?,4 -24996,What is the lowest number of Against that Lake Wendouree had when they had more than 7 Losses?,2 -24997,What was the total number of Byes for the team that had 1136 Against and fewer than 0 Draws?,3 -24998,What was the greatest number of Losses for the team that had 1427 Against and more than 5 Wins?,1 -24999,"What is the average number of Byes for the team that had 15 Losses, and less than 1 Win?",5 -25001,How many totals does Chile have when the number of silvers is more than 0?,3 -25008,What is the average number of House of Representatives seats had an abbreviation of d66?,5 -25048,"What is the highest Goal for danny williams, with more than 0 Field Goals?",1 -25049,What is the average Tries with less than 0 goals?,5 -25050,"What is the total number of Points with less than 1 tries, and more than 0 goals?",3 -25056,What is the lowest number played with more than 30 points?,2 -25057,What is the highest number lost with more than 29 points and an against less than 19?,1 -25058,What is the total number played with a difference of 22 and less than 34 against?,3 -25064,What is the total number of laps for the time of +7.277 and the grid number of more than 6?,4 -25065,What is the smallest grid when the time is +8.051 and there were less than 23 laps?,2 -25066,What is the average number of goals for players ranked above 9 and playing more than 205 matches?,5 -25067,What is the average rank for players with under 205 matches and under 100 goals?,5 -25089,What was the average round for john markham draft pick?,5 -25092,What is the lowest number of FA Trophy matches for a player with a total number of matches under 22 and less than 0 league cups.,2 -25093,What is the fewest games lost by Paulistano with more than 39 points?,2 -25094,How many games were played against when the team played more than 22 total?,4 -25095,What was the highest number of against when the difference was 58 and the total played was more than 22?,1 -25098,How many Weeks have a Result of w 17–13?,5 -25101,"In what Week has a Result of l 24–20, and a Opponent of at new england patriots?",1 -25109,"What was the sum of the points for the song ""why did you have to go?""",4 -25110,What is the total number of points for the song that was ranked 6th and had a draw number smaller than 5?,3 -25111,When was the average year that the number of floors was greater than 75?,5 -25112,What is the average number of floors of the Venetian tower?,5 -25114,"Can you tell me the total number of Rank that has the Matches of 427, and the Goals smaller than 320?",3 -25118,How many items withdrawn had numbers over 5?,3 -25119,What is the sum of numbers that had a type of Driving Van Trailer?,4 -25120,"What rank has 1 silver, more than 2 gold, and a total larger than 3?",3 -25121,What is the most gold where silver is 0?,1 -25122,What is the number of silver where the rank is higher than 4 and bronze is smaller than 1?,3 -25123,What is the rank where the gold is 0?,5 -25124,What is the rank that has 1 bronze and 1 silver?,3 -25125,"What is the total launch failures when there are 4 launches, and the not usable is greater than 0?",4 -25126,"What is the highest number of not usable satellites when there are more than 0 launch failures, less than 30 retired, and the block is I?",1 -25127,"What is the average number of not usable satellited when there are 0 retired, and the launch failures are less than 1?",5 -25128,"What is the lowest number of members on the Cultural and Educational Panel, when the University of Dublin had 3 members, when the Industrial and Commercial Panel had more than 0 members, and when the Agricultural Panel had more than 4 members?",2 -25129,"What was the average number of members Nominated by the Taoiseach, when the Agricultural Panel had less than 1 member, and when the Administrative Panel had fewer than 0 members?",5 -25130,"What was the lowest number of members on the Agricultural Panel, when the Industrial and Commercial Panel had 9 members, and when the National University of Ireland had more than 3 members?",2 -25131,"What was the greatest number of members for the National University of Ireland, when the Total number of members in the Seanad was 60, and when the Administrative Panel had more than 7 members?",1 -25139,"What is the most points scored for teams with under 25 goals scored, 3 draws, and more than 21 games played?",1 -25152,"How many places have yamaha as the machine, and 89.85mph as the speed?",4 -25153,How many places did the artist Big Hit have with less than 2934 votes?,3 -25154,How many average votes did producer carlos coelho have in a higher place than 6 and with a draw larger than 5?,5 -25161,"What is the total number of top-25s for tournaments that had 0 wins, 1 cut made, and more than 5 events?",3 -25162,What is the fewest number of top-5s for events with more than 1 win?,2 -25163,What is the highest number of top-25s for events with 0 wins?,1 -25170,What year had a date of TBA where the Oakland raiders were the home team?,5 -25175,"What was the average Jersey number of the player for the Calgary Flames, whose Weight (kg) was greater than 84?",5 -25176,"What was the average Height (cm), for a player who had the Position, C, and whose 1995-96 team was the Buffalo Sabres, and whose Weight (kg) was less than 82?",5 -25178,What is the lowest win percentage for when Perth Scorchers is the opposition?,2 -25180,What is the total number of Std SAPs with 0-11 Opt SAPS?,3 -25183,"What is the average Natural Change (Per 1000), when Crude Death Rate (Per 1000) is greater than 13.2, when Deaths is 4,142, and when Natural Change is less than 752?",5 -25184,"What is the highest Crude Death Rate (per 1000), when Natural Change (Per 1000) is greater than 16.1, when Natural Change is 5,049, and when Crude Birth Rate (Per 1000) is less than 27.1?",1 -25185,"What is the sum of Natural Change, when Natural Change (Per 1000) is greater than 5.4, when Crude Death Rate (Per 1000) is less than 14.3, when Live Births is less than 6,950, and when Crude Birth Rate (Per 1000) is less than 28.2?",4 -25186,"What is the highest Crude Death Rate (Per 1000), when Natural Change (Per 1000) is less than 5.2, when Average Population (x 1000) is 305, when Crude Birth Rate (Per 1000) is 16.1, and when Natural Change is greater than 954?",1 -25187,"What is the lowest Natural Change, when Natural Change (Per 1000) is 19.1, and when Crude Birth Rate (Per 1000) is less than 28.3?",2 -25198,Who had the high pick of the round of 10 for Fairmont State college?,1 -25202,What is the Rank for Viktors Dobrecovs with less than 325 Matches?,5 -25203,What is the number of Matches for Vits Rimkus with a Rank of less than 3?,5 -25208,"Can you tell me the lowest Ends Lost that has the Locale of norway, and the Blank Ends larger than 17?",2 -25214,"What's the highest against score that drew more than 5, and had more than 18 points?",1 -25215,What's the number of losses where played was less than 17?,3 -25216,What is team ypiranga-sp's average position when they lost by less than 7?,5 -25217,"What was the attendance for the game at groves stadium • winston-salem, nc with a result of L 0-14?",3 -25220,What is Tim Andree's greatest number?,1 -25221,"What is the lowest number of the player with a hometown of Bellwood, IL?",2 -25227,"What is the highest No Result when there were less than 7 losses, and more than 3 away wins, with a success Rate of 50.00%?",1 -25228,"What is the sum of Away Losses with a No Result of more than 0, losses of more than 6, and matches of more than 91?",4 -25229,"What is the sum of Wins with a result of 0, and the away wins of 1, and the losses are less than 5?",4 -25237,Which Tries against have Points against larger than 109?,1 -25238,What Tries against that have a Points against of 95 and Tries for larger than 20?,4 -25239,"What Tries for has a Team of neath, and Points against larger than 109?",4 -25240,How many Points against that have a Team of harlequins and Tries against smaller than 8?,4 -25257,What is the average round of player Sammy Morris?,5 -25258,What is the sum pick # of the player from round 4?,4 -25260,What is the sum of the round of the player who plays linebacker and has a pick # greater than 251?,4 -25262,"What's the highest week for the day of October 21, 1956?",1 -25263,"What is the least recent week number when the attendance is 16,562?",2 -25269,"What is the lowest Place, when Points are greater than 2?",2 -25274,What is the latest year that Cicely Tyson is the Golden Globe Award actor?,1 -25278,What is the latest Year with Marianne Jean-Baptiste as the Golden Globe Actor?,1 -25292,What is the mean number of matches when the strike rate is 87.37 and the 100s is less than 0?,5 -25293,How many average 100s were there for Tim Bresnan?,5 -25294,How many Platforms have a Frequency of less than 2?,3 -25297,"What is the sum of Height (cm), when the Weight (kg) is 90?",4 -25307,What is the highest Year with a Competition that is new york city marathon?,1 -25314,"What is the lowest 13.5-inch/1400lb with a 13.5-inch/1250lb less than 2, a 12-inch of 0, and a Total larger than 8?",2 -25315,"What is the lowest 12-inch when the 13.5-inch/1250lb was 0, and the ship is seydlitz?",2 -25316,"What is the lowest 13.5-inch/1400lb with a 13.5-inch/1250lb of more than 1, and a 12-inch smaller than 8?",2 -25317,"What is the average Total when the ship was lützow, with a 13.5-inch/1400lb smaller than 0?",5 -25318,"What is the highest Total when the ship was lützow, and a 12-inch less than 8?",1 -25319,What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5?,5 -25320,What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0?,4 -25321,What is the total for the University of Dublin when 2 are nominated by Taoiseach and the industrial and commercial panel is greater than 0?,4 -25322,What is the highest labour panel when the university of dublin is less than 2 and the agricultural panel is greater than 5?,1 -25323,What is the average for the university of dublin when the industrial and commercial panel is greater than 4 and the total of the national university of ireland is larger than 3?,5 -25327,What is the number of 2012 passengers in millions that have traveled a distance of 1075km?,3 -25331,How many losses does corinthians have when they scored over 22 points?,3 -25344,"What is the lowest population (2010 Census) that has a rank smaller than 45, municipality of gimpo, and populaion (2000 Census) larger than 117,594?",2 -25345,"What is the lowest population (2000 Census) that has a population (2010 Census) larger than 1,071,913 and municipality of Suwon?",2 -25346,"What is the highest population (2000 Census) that has a rank of 43, population (2010 Census) larger than 231,271, and population (2005 Census) larger than 157,632?",1 -25347,"What is the total number of rank that has population (2005 Census) smaller than 193,398 and population (2000 Census) of 167,231?",3 -25348,"Who had the lowest rank for a capacity of 197,13% and a capacity larger than 1,010,000?",2 -25349,"What is the average capacity for less than 8,261,355 passengers, and 126,06% in use?",5 -25355,How many in the cultural and educational panel have a university of Dublin of 3 & A labor panel larger than 11?,3 -25358,"What is the total number of S No(s), when the Margin is 16 runs?",3 -25359,"What is the highest S No, when the Match Date is Nov 1, 2003?",1 -25361,"When was the last time, since December 14, 1986, that the attendance was lower than 47,096?",1 -25372,How many years were there a men's double of györgy vörös gábor petrovits and a men's single of györgy vörös?,4 -25373,"Which Drawn has a Points of 6, and a Against larger than 16?",4 -25374,"Which Points has a Difference of 3, and a Played smaller than 10?",5 -25375,"Which Points has a Team of são paulo athletic, and a Position larger than 5?",4 -25376,"Which Position has a Played larger than 9, and a Points smaller than 11, and a Drawn smaller than 0?",2 -25377,What track has a catalogue of 47-9465?,4 -25382,What is the average 1st place with a Rank that is larger than 10?,5 -25388,What is the highest episode number in which Jamie Oliver guest-hosted?,1 -25394,"Which average match has a lost greater than 0, points greater than 6, legia warszawa as the team, and a draw less than 0?",5 -25396,Which average lost that has a match less than 14?,5 -25407,How many League cups had a total less than 25 and a league larger than 19?,3 -25408,How many FA trophies did Ceri Williams get with a smaller total than 19?,3 -25410,"What is the Average of bergen, norway?",2 -25415,"What is the average week of a game on November 12, 1989?",5 -25417,What is the sum of the Game with a Set 4 of 25-21 and a Set 3 of 25-23?,4 -25422,"What is the average Year when the Competition was friendly, and a Club of everton?",5 -25425,What is the lowest total when the nation is Sweden?,2 -25426,"What is the average Total when silver is less than 1, and the rank is 15?",5 -25427,"What is the total number of Bronze when rank is 11, and the total is less than 1?",3 -25431,What year is the latest year that has no under director?,1 -25434,What is the most goals made for a person with less than 208 matches and ranked lower than 12?,1 -25439,What is the total number of wins for Darley of Ballarat FL against larger than 1055?,3 -25440,"What is the lowest draw that has less than 4 wins, 14 losses, and against more than 1836?",2 -25441,What is the average Byes that has Ballarat FL of Sunbury against more than 1167?,5 -25442,"What is the average draws with more than 1 win, 14 losses, and against less than 1836?",5 -25443,"What was the lowest draw from Ballarat FL of sunbury, and byes larger than 2?",2 -25444,What is the highest medium Gallup March 2008 value for a Strategic Marking value under 17 and Medium Gallup May 2008 value over 10?,1 -25445,"What is the sum of Medium Gallup, March 2008 values where the Medium Gallup, May 2008 values are under 10?",4 -25472,What year gave a nominated result for the room 222 series?,3 -25478,"Goals Conceded (GC) that has a Draw (PE) larger than 2, and a Goals Scored (GF) larger than 19?",1 -25479,"What is the number for the University of Dublin with their Cultural and Educational Panel of 5, and an Industrial and Commercial Panel with less than 9?",3 -25481,"Which Rank has a Country of costa rica, and a Losing Semi- finalist larger than 1?",5 -25482,Which Rank has a Runner -up smaller than 0?,1 -25483,What is the Winner's share in 2007?,3 -25485,What is the highest Purse for aug 3–5?,1 -25524,What is the average round number with wide receiver as position and Clark University as the college and the pick number is bigger than 166?,5 -25529,What is the least amount of draws with an against of 1261?,2 -25536,"What is the sum of Week when there were 67,968 people in attendance?",4 -25537,What is the Week number with a result of l 31–28?,3 -25543,Which Points has a Performer of rob burke band and a Draw larger than 1?,5 -25544,"What Points have a Song of ""this time"" and a Draw smaller than 5?",3 -25545,Which Points have a Performer of seán monaghan and a Draw smaller than 7?,2 -25546,Which Points has a Performer of rob burke band?,3 -25555,"Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9?",4 -25557,How many laps had a time stat of accident for the rider carmelo morales when the grid was more than 25?,4 -25558,How many laps had a time of +2.987?,3 -25564,"What is the highest Week for october 12, 2008?",1 -25566,How many drawns have 7 for the lost?,4 -25567,"What is the average played that has a drawn greater than 1, with an against greater than 16?",5 -25568,What is the sum of Maidens with a number of Matches that is 2?,4 -25578,What was the highest number of goals for a game held at Hannover?,1 -25580,What round was Andre Fluellen drafted as a Defensive Tackle?,3 -25582,What was the earliest Round for Central Florida?,2 -25587,What is the average Year when Australia was the runner-up at victoria golf club?,5 -25595,What are the fewest points that Roger Dutton/Tony Wright have received?,2 -25597,"What is the average draw for Desi Dobreva, was it less than 6?",5 -25608,"How many years have an accolade of 50 best albums of the year, with #3 as the rank?",4 -25619,"Which Week has Points For larger than 19, and an Opponent of philadelphia eagles, and Points Against larger than 7?",1 -25620,"Which Attendance has a First Downs smaller than 26, an Opponent of los angeles rams, and Points For larger than 28?",4 -25621,"Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16?",1 -25622,How many Total that has a FA Trophy of 0 and a Player of charlie butler?,3 -25623,How many FA Trophy has a Player of mario walsh and a League larger than 17?,5 -25627,How many Rebounds did Maccabi Tel Aviv Team get after Game 6?,3 -25629,How many Games for the Player from Lietuvos Rytas Vilnius with less the 43 Rebounds?,4 -25635,"Which First season of current spell is the lowest one that has a First season larger than 2005, and a Number of seasons in Superettan smaller than 8, and a Club of syrianska fc?",2 -25637,"Which First season of current spell is the highest one that has a Position in 2013 of 9th, and a Number of seasons in second tier larger than 14?",1 -25638,"What was the ranking of Beirasar Rosalía, the year they played 32 games?",1 -25639,How many points did Antwain Barbour score in the year he played 39 games?,4 -25643,What are the average play-offs that have an FA Cup greater than 3?,5 -25644,How many totals have a play-off less than 0?,3 -25646,"What is the highest play-offs that have stevenage borough as the club, and a total greater than 21?",1 -25653,"What is the height of the player born on June 24, 1964, with a weight over 84 kg?",5 -25655,"What is the height of the player from the Washington Capitals, who was born in Detroit, Michigan and has a jersey number under #11?",2 -25662,What is the highest win percentage when there were 23 losses?,1 -25668,"What is the lowest silver that has a bronze greater than 1, a gold less than 2, and a total less than 2?",2 -25669,What average rank that has a silver less than 0?,5 -25670,How many silver have 4 as the total with a bronze less than 2?,3 -25671,"How many totals have a rank greater than 4, czech Republic as the nation, and a bronze greater than 0?",4 -25672,"What average total has a gold greater than 0, and a silver greater than 0, with a bronze greater than 2?",5 -25674,"What is the total capacity of the airport ranked less than 7, has a capacity in use of 114.2%, and has less than 13,699,657 total passengers?",3 -25675,"What is the highest capacity of the airport in Rio de Janeiro, which was ranked greater than 6 and had more than 5,099,643 total passengers?",1 -25677,"What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?",4 -25679,What is the lowest Total for rank 3 with more than 4 gold?,2 -25680,What is the lowest Total for Italy with less than 0 silver?,2 -25688,What was the lowest long with 26 yards?,2 -25689,What was the highest average when Fuml was 0?,1 -25690,"What is the highest run currently since the last title in 2010, and a season in Esiliiga larger than 10?",1 -25692,"What is the population on average with a per capita of 1,158, and a 2011 GDP less than 6,199?",5 -25694,What were the lowest amount of points for season 1994?,2 -25697,"What is the total number of Jersey #, when the Position is W, and when the Birthdate is 17 October 1932?",3 -25710,"What is the average Lost when the difference is - 3, and a Played is less than 10?",5 -25712,"What is the sum of Against when the drawn is less than 2, the position is more than 8, and the lost is more than 6.",4 -25714,"What is the average Top-5, when Tournament is U.S. Open, and when Cuts Made is greater than 10?",5 -25715,"What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4?",4 -25716,"What is the sum of Top-5, when Tournament is Totals, and when Events is greater than 86?",4 -25717,"What is the average Top-10, when Wins is less than 0?",5 -25718,"What is the total number of Top-25, when Events is greater than 86?",3 -25732,What is the Total for the Player who won after 1983 with less than 4 To par?,5 -25733,What is the Total of the player who won before 1983 with a smaller than 4 To par?,3 -25735,What is the highest Stolen Ends when ludmila privivkova shows for skip?,1 -25736,What is the sum of Blank Ends for Denmark when less than 42 is the ends lost?,4 -25744,"What was the average Jersey # of Steve Griffith, when his Weight (kg) was less than 84?",5 -25745,What was the lowest Weight (kg) for a player that had Jersey #10?,2 -25746,"How many different Heights (cm) did Mark Fusco have, when his Jersey # was less than 16?",3 -25756,What is the average number played of the team with 1 drawn and 24 against?,5 -25757,What is the highest lost number of the team with less than 14 points and less than 18 played?,1 -25759,What is the lowest number of played of the team with 18 points and a position greater than 5?,2 -25760,What is the total number of points of the team with less than 4 drawn and an against of 34?,3 -25761,What is the average number of drawn with a difference of 17 and 22 points?,5 -25770,What is the highest Poles with a win that is smaller than 0?,1 -25777,What is the latest year that has ferrari 166 fl as the winning constructor?,1 -25784,"What is the highest Current Branch Opened, when Neighborhood is W. Portland Park?",1 -25788,Which player has the fewest assists and played 2 games or fewer?,2 -25789,"What was the total number for March with less than 8.77 in January, more than 1.69 in December, an average monthly addition less than 5.35, and before 2004?",3 -25790,"What is the total number for November, larger than 8.53 in February, 20.21 in March, and less than 7.9 in September?",3 -25791,"What is the sum for December that has 0.36 in July, and lager than 0.35000000000000003 in February?",4 -25792,"What is the total number for July with less than 8.05 in October, more than 4.46 in December, and more than 6.79 in November?",3 -25793,"What is the total number in October with less than 2.48 in September, after 2002, more than 1.42 in June, and smaller than 7.44 in February?",3 -25795,What is the highest SFC in g/(kN*s) for Rolls-Royce/Snecma Olympus 593 engines and SFCs under 1.195 lb/(lbf*h)?,1 -25810,What is the average weight of the player with a height of 180 cm and plays the d position?,5 -25818,What was the total matches that ranked above 10?,4 -25819,What was the total amount of matches for Alan Shearer?,3 -25820,"What is the average goals for Jimmy Greaves, and matches more than 516?",5 -25821,"What was the total number of matches for Nat Lofthouse, ranking higher than 7?",3 -25822,"What is the highest rank for Nat Lofthouse, and goals more than 255?",1 -25835,"What is the sum of Population (1 July 2005 est.), when Area (km²) is less than 5,131, when Population density (per km²) is less than 180, when Subdivisions is Parishes, and when Capital is Roseau?",4 -25836,"What is the lowest Population (1 July 2005 est.), when Population density (per km²) is 0?",2 -25846,"What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884?",5 -25850,What was Lee Smith's highest number of goals when he made fewer than 364 appearances?,1 -25851,What is the sum of Rob Coldray's goals when he made fewer than 348 appearances with goals/game ratio less than 0.313?,4 -25853,"What is the average rank of the airport in São Paulo with passengers totaling less than 18,795,596?",5 -25854,What is the average rank of the airport with a 9.3% annual change?,5 -25870,"What is the highest number of wins when earnings are larger than 150,643, more than 1 cut was made, there are more than 22 starts, and the money list rank is 32?",1 -25871,"What is the highest number of wins when more than 17 cuts and more than 25 starts were made, and the top 10 ranking is less than 8?",1 -25872,What is the average number of starts when the money list rank is 108 and the rank in the top 25 is greater than 4?,5 -25874,What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4?,5 -25877,"What is the sum of Weight for the person with a height of 6'6""?",4 -25886,"What is the 2000 kwh p y with a 2400 kwh/kw p y less than 12.5, a 3.8 1600 kwh/kw p y, and a 1800 kwh/kw p y less than 3.3?",1 -25887,"What is the total number of 1800 kwk/kw p y with an 8.8 1600 kwh/kw p y, and a 1200 kwh/kw p y greater than 11.7?",3 -25888,What is the average 800 kwh/kw p y with a 1600 kwh/kw p y less than 6.3 and a 2000 kwh/kw p y less than 1?,5 -25889,"What is the average 2400 kwh/kw p y with a 1400 kwh/kw p y greater than 12.9, a 1200 kwh/kw p y greater than 21.7, and a 1600 kwh/kw p y greater than 18.8?",5 -25890,What was the total attendance at a game against the Pittsburgh Steelers before week 4?,3 -25898,What is the highest sample size administered on October 18?,1 -25900,How many games were played by the Scottish Wanderers where less than 5 Points were scored?,4 -25901,How many games were played where exactly 15 points were scored?,4 -25905,"How many average total matches have a swansea win less than 3, fa cup as the competition, with a draw less than 0?",5 -25906,How many cardiff wins have a draw greater than 27?,3 -25907,"How many average total matches have league cup as the competition, with a draw greater than 0?",5 -25913,"What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823?",1 -25914,"What is the average Density when the area is more than 1,185.8 with a population of 63,029?",5 -25915,"What is the highest Density for the independencia province, with an area smaller than 2,007.4?",1 -25919,"Which Wins has a Tournament of totals, and a Cuts made larger than 42?",5 -25920,Which Top-10 has a Cuts made larger than 42?,2 -25921,Which Wins has a Top-5 of 6?,5 -25922,Which Cuts made has a Top-25 smaller than 3?,1 -25923,"Which Top-10 has a Cuts made of 10, and a Top-5 larger than 1?",2 -25925,What is the lowest rank that the protestants population holds?,2 -25930,What was the average pick with Ed O'Bannon and a round smaller than 1?,5 -25952,How many total players came from the school/club team of De La Salle?,3 -25954,What is the most wins associated with under 4 events with 0 top-5s?,1 -25955,"What is the average number of events having 1 top-10, fewer than 4 cuts made, and 0 wins?",5 -25956,What is the average number of wins for events larger than 28?,5 -25957,What is the sum of top-25s for events with more than 1 top-5?,4 -25962,What was the lowest attendance at a week 15 game?,2 -25969,"What is that if the weight for the play born on June 2, 1983?",4 -25970,"What was the highest weight in kg for F Position, Jersey #12?",1 -25983,How many features did Adam Carroll win 6 times when the start was larger than 32?,3 -25984,What is the lowest feature with 2 wins and 2 sprints?,2 -25985,How many sprints on average had 10 wins and less than 5 features?,5 -25987,"What is the lowest lane for Nigeria, with a react less than 0.133?",2 -25991,"What's the average bronze with a total number of medals being 1, with more than 0 silvers?",5 -25992,"In the 2005 season, how many races did the 15th place team complete?",5 -25996,How many totals have 1 gold and a rank smaller than 2?,3 -25997,How much gold did South Korea get?,4 -25998,What locomotive built after 1895 has the highest SLM number?,1 -26000,What is the first locomotive that has a SLM number lower than 924?,2 -26001,"When the United Kingdom had a time of 1:30.51.2, what was the lowest that they ranked?",2 -26012,What is the highest Year when the team was seve ballesteros & manuel piñero?,1 -26013,"What is the total number of acres at Sai Tso Wan, opening before 1978?",3 -26014,"Which Rank has a Goals smaller than 76, and a Matches larger than 270?",4 -26015,"Which Matches have a Rank smaller than 5, a Years of 1995–2003, and a Goals smaller than 104?",5 -26016,Which Goals have a Name of lee dong-gook?,1 -26017,Which Rank has a Years of 1998–present?,5 -26018,Which Matches have a Rank of 2?,3 -26021,What is the earliest Year for 400m h Event with 54.86 in Notes?,2 -26022,What is the total number of appearances for players from Chaux-de-Fonds with places over 8?,3 -26023,"What is the highest week of the game on November 9, 1997?",1 -26030,"How many countries in 2009 have fewer than 1 in 1999, more than 0 in 2006 and none in 1997?",3 -26031,How much is the highest number in 2006 with fewer than 0 in 2002?,1 -26032,"How many are there in 2003 that have 0 in 2001, more than 0 in 2009 and fewer than 0 in 1999?",4 -26035,"Which Year has an Expenditure smaller than 41.3, and a % GDP of x, and an Income larger than 34.4?",4 -26037,"Which Year has an Expenditure of 55, and an Income smaller than 36.2?",2 -26043,What is the lowest percentage of wins for 6½ games and more than 77 total wins?,2 -26047,How many Gold medals did Japan receive who had a Total of more than 1 medals?,4 -26050,What is the lowest week that has 7:15 p.m. as the time (cst) and fedexfield as the game site?,2 -26061,What was the lowest attendance for week 1?,2 -26062,What is the highest rank of a player from Ethiopia?,1 -26063,How many ranks had 367 matches and more than 216 goals?,4 -26064,What is the mean rank number when goals are 230 and there are more than 535?,5 -26067,What episode number has an audience share of 10%?,3 -26069,What's the smallest number of games for the fenerbahçe team?,2 -26070,What's the mean game number for the olympiacos team when there's less than 17 rebounds?,5 -26071,How many games does novica veličković have when there's more than 24 rebounds?,3 -26081,what is the number of passengers when the capacity is 81.2%?,4 -26082,what is the highest amount of passengers when there is a rank of 1?,1 -26083,"Which highest rank had an annual change of 10.3% and a capacity of people smaller than 1,368,968?",1 -26084,What was the latest Week on which the Result was l 17–0?,1 -26085,"What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3?",5 -26086,What is average Top 10 with 0 wins?,5 -26087,"What is the average event for the Open Championship Tournament, and a Top-5 less than 1?",5 -26088,What is the average wins has Top-25 less than 0?,5 -26089,What is the largest Against with a Byes larger than 0?,1 -26090,"Which Wins has an Against of 1940, and a Byes larger than 0?",1 -26091,"Which Draws has a Wins of 10, and a Peel of south mandurah, and a Byes larger than 0?",5 -26092,"Which Against has a Draws larger than 0, a Losses smaller than 16, and a Wins smaller than 4?",1 -26093,"Which Losses has an Against of 1101, and a Byes smaller than 0?",3 -26094,Which Byes has a Losses smaller than 1?,1 -26095,What is the average number of games of the player with a rank less than 1?,5 -26096,What is the highest rank of the player with less than 32 points?,1 -26097,What is the rank of the player with less than 34 points?,4 -26104,How many Sets did Gary Muller have?,3 -26109,"What is the total number of sunk by U-boats with less than 2 German submarines lost, 56328 sunk by aircrafts, and more than 8269 sunk by mines?",3 -26110,What is the total number sunk by warship or raider with 20 German submarines lost and more than 21616 sunk by aircraft?,3 -26111,What is the total number of German submarines lost with more than 120958 sunk by mines?,3 -26118,"What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels?",5 -26119,"What's the approximate number of HUs when there are more than 2 digits, and 6 levels?",3 -26120,How many HUC example codes have 1 level?,3 -26121,What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370?,5 -26122,What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0?,5 -26123,What is the smallest losses when the wins are 5 and the against less than 1852?,2 -26124,"What is the total against that has wins less than 9, and losses less than 16, and 2 as the byes, and Ballarat FL of ballarat?",4 -26125,What is the fewest losses that Ballarat FL of Lake Wendouree has when the wins are smaller than 9?,2 -26126,What is the smallest byes when the wins are 3?,2 -26127,"Can you tell me the total number of Zone than has the Station users 2007-08 larger than 243,800, and the Year opened of 1855?",3 -26128,What is the highest Attendance when the away team was Wrexham?,1 -26130,What is the lowest Attendance when the home team was slough town?,2 -26131,What is the sum of Attendance when macclesfield town was the way team?,4 -26132,How many Spins sources have a CCM Chart of CHR with a peak position less than 1?,3 -26136,"What is the average Week, when Result is l 37–34?",5 -26144,"What is Highest Days, when Launch Date is 23 January 2010?",1 -26145,"What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20?",2 -26146,"What is the lowest Games, when Name is Jeremiah Massey, and when Points is less than 340?",2 -26147,"What is the lowest Points, when Games is greater than 20, and when Team is Partizan Belgrade?",2 -26149,"What is the sum of Rank, when Name is Will Solomon, and when Games is greater than 21?",4 -26152,What were the Bills points on Nov. 11?,4 -26153,What was the Bills first downs on Oct. 29 with more the 23 Bills points?,2 -26158,What is the highest Points in Position 2 with more than 3 Drawn games?,1 -26160,What is the average games Played with positions higher than 3 that have goals Against less than 27 and a Lost games smaller than 6?,5 -26161,What is the highest Points with a Lost total of 8?,1 -26162,Which average Points has a Lost higher than 20?,5 -26163,What are the Cuts made with a Top-10 smaller than 2?,4 -26164,"What is the Top-25 with a Top-10 of 8, and an Events of 45?",5 -26165,"What is the Top-25 with an Events of 20, and a Wins larger than 2?",5 -26166,"Which Top-10 has a Top-25 smaller than 18, and a Top-5 of 6, and a Cuts made smaller than 20?",1 -26168,"What is Sum of Score, when Player is Vijay Singh?",4 -26169,"What is Sum of Score, when Place is T2, and when Player is Justin Leonard?",4 -26182,What is the average amount of gold medals for a country with more than 12 total medals?,5 -26191,What was the highest attendance when the Atlanta Falcons played for a week smaller than 10?,1 -26199,"What is the total number of delegate that have 4 counties carries and more than 1,903 state delegates?",4 -26202,"Which Gold has a Silver of 7, and a Bronze smaller than 7?",2 -26203,"Which Bronze has a Silver of 15, and a Gold smaller than 20?",4 -26204,"Which Bronze has a Silver of 7, and a Total larger than 25?",2 -26205,"Which Gold has a Bronze larger than 1, and a Total larger than 80?",4 -26206,"Which Total has a Silver larger than 8, and a Bronze of 20, and a Gold smaller than 20?",3 -26210,Who has a total number of 76 silver medals?,3 -26224,How many districts featured the democrat nicholas von stein?,3 -26231,"What is the area km2 of the area with a pop density people/km2 larger than 91, is a member state of Italy, and had less than 58.8 population in millions?",4 -26233,What is the total number of area km2 with a 4.2 population in millions and is a member state of the Czech Republic?,3 -26234,"What is the sum of the pop density people/km2 with a population % of EU of 0.1%, an area % of EU of 0.1%, and has more than 0.5 population in millions?",4 -26235,What is the lowest area km2 of the member state of the Czech Republic and has a population in millions lesss than 10.3?,2 -26236,"Weighing less than 85, with less than 340 Spikes, what is Gilberto Godoy Filho's Height",3 -26237,What is the Attendance for Opponent Boston Patriots and Week is greater than 14?,3 -26248,"What are the Highest Games, when Team is Ciudad De La Laguna, and when Points are greater than 357?",1 -26250,"What is the lowest value for Points, when Games is greater than 34, and when Name is Andrew Panko?",2 -26251,"What is the highest value for Points, when Games is 21, and when Rank is greater than 2?",1 -26252,What is the average rank of the record on 2007-06-21 with a mark less than 91.29?,5 -26253,What is the lowest mark of the rank 8 record?,2 -26260,Which Year that has Notes of dnf?,2 -26273,"In what Week was the Attendance 39,434?",3 -26274,"What is the first Week against Cincinnati Bengals with an Attendance greater than 58,615?",2 -26277,"How many against have a difference of 6, with a played greater than 19?",4 -26278,"What is the lowest drawn that has a played greater than 19, with a position less than 2?",2 -26279,"What is the average against that has a drawn less than 7, points greater than 22, and 19 for the played?",5 -26282,Which Week has a Result of l 13-16 and an Opponent of at buffalo bills?,5 -26292,What is the least amount of appearances by new zealand when they scored 4 goals?,2 -26293,how many appearances did batram suri category:articles with hcards have scoring less than 2 goals?,3 -26295,"What is the total 2002 population of the province with putre as the capital, less than 3 communes, and an area larger than 11,919.5?",3 -26297,What is the average area with valparaíso as the capital?,5 -26303,"How many Tries has Points for smaller than 137, and Tries against larger than 12?",3 -26305,WHich Tries has a Team of pau and Points against larger than 103?,2 -26306,"How many Points against has Tries for smaller than 14, and a Team of llanelli?",5 -26307,How many Tries against has a Try diff of –17 and Points for smaller than 80?,3 -26323,"What is the sum of percentage of marine area with an area of territorial waters of 72,144 and exclusive economic zone area less than 996,439?",4 -26324,What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1?,2 -26325,"How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439?",3 -26326,"What is the average percentage of total area when the percentage of marine area is more than 39.3 and territorial waters area is less than 2,788,349?",5 -26327,"What is the smallest area of territorial waters with an exclusive economic zone area more than 704,849 and a percentage of total area greater than 6.8?",2 -26341,What is the number of positions that have 2012 ratings of 0.92?,3 -26352,How many years was the individual winner from the United States was Tiger Woods?,3 -26353,"What is the earliest year that the tournament was played in Cape Town, South Africa?",2 -26354,"What is the highest league for the league cup more than 1, and a FA cup of 1?",1 -26356,"What is the total number of Seasons, when the Engine is Cosworth, and when the Team is Kraco Racing?",3 -26358,"What is the sum of Seasons, when the Team is Penske Racing, and when the Date is October 3?",4 -26359,What was the Year to Open for the Dandeung Bridge?,3 -26370,"How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3?",4 -26371,How many France bronze have a gold of more than 1 and a rank of 0?,4 -26372,How many gold have a silver of 1 and a bronze of 0?,4 -26379,What is the total number of Points from a Match that is larger than 18?,3 -26380,In what Season was the Series Formula Renault 3.5 series with less than 7 Races?,4 -26383,In what Season were then less than 3 Races with less than 1 Win?,5 -26388,"What is the Goal number in Råsunda, Stockholm with a Result of 2–2?",5 -26396,"What is the greatest position when the points are less than 21, and the played greater than 14?",1 -26397,What is the fewest lost with a difference of 9 and a less than 3 drawn?,2 -26398,Team Estudantes Paulista with a position less than 4 has what average against?,5 -26405,What is the highest Grid with a Name that is jamie whincup?,1 -26407,"What's the lowest round Justin Forsett was drafted in, with a draft pick larger than 233?",2 -26408,What's the average round the position of RB was drafted?,5 -26409,What's the average round Red Bryant was drafted with a pick larger than 121?,5 -26419,What is the average number for goals less than 73?,3 -26420,"What is the total average for 1990-1995, and goals less than 90?",3 -26421,"What was the lowest Position for a Team with fewer than 3 Lost, a Difference of 1, and more than 7 games Played?",2 -26422,"What is the sum of games Played by the Team Vasco Da Gama, with fewer than 12 Against?",4 -26426,How many weeks had the Green Bay packers as opponents?,4 -26429,"How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored?",4 -26430,What is the number of averages having a balls faced over 297 and more than 7 innings?,3 -26431,What is the smallest number of innings with a strike rate of 72.05 and under 297 balls faced?,2 -26432,"What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?",4 -26438,What is the sum of Weeks on Top for the Volume:Issue 34:9-12?,4 -26439,How many Places (Posición) has a Draw (PE) larger than 2 and a Team (Equipo) of paraíso and a Won (PG) larger than 6?,3 -26440,"How many league cups have yeovil town as the club, with a league less than 16?",3 -26441,"What is the average FA Cup that has gary jones as the player, and an FA trophy greater than 5?",5 -26442,"What FA trophys have tony hemmings as the player, with a league greater than 15?",4 -26444,"What year has a winner's share smaller than 14,000?",5 -26450,What is the fewest number of top-25s for events with more than 0 wins?,2 -26451,What is the highest number of top-10s in events with more than 0 wins?,1 -26454,What is the highest season that had rank under 1?,1 -26457,How much gold received by nation of uzbekistan (uzb)?,1 -26458,Which team has the lowest gold and 0 silver?,2 -26459,"How much gold when silver, bronze and total is smaller than 1?",1 -26461,What is the lowest commenced operations that has a nouvelair callsign?,2 -26477,How many Apps did Player Gilberto with more than 1 Goals have?,5 -26483,What is the population of Kragerø?,2 -26484,What is the highest population of a city that has a town status of 2010?,1 -26485,What is the highest population within the municipality of Porsgrunn?,1 -26488,What's the total points that Scuderia Ferrari with a Ferrari V12 engine have before 1971?,4 -26489,What's the least amount of points that Walter Wolf Racing had after 1974?,2 -26490,"What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games?",4 -26491,"What is the highest Year, when the Venue is Beijing, PR China?",1 -26492,"What is the average Year, when Competition is Oceania Youth Championships?",5 -26498,"What is the lightest Weight (kg), when the Jersey # is greater than 22, when the Position is F, and when the Birthdate is March 19, 1980?",2 -26502,What average week number had the Chicago bears as the opponent?,5 -26506,What is the earliest year of the Honda Engine with a finish of 4?,2 -26512,"What was the lowest wins of Larry Nelson, who ranked less than 5?",2 -26513,What is the sum of the earnings for rank 3?,4 -26514,"What was the lowest rank which earned 24,920,665?",2 -26515,"What is the sum of wins for a rank less than 3, and earnings more than 24,920,665?",4 -26517,"What the total of Week with attendance of 53,147",4 -26518,"What is the lowest week for December 26, 1999",2 -26520,What is the total number of Races when there were more than 8 wins?,3 -26526,what's the earliest year that serena williams had more than 2 sets?,2 -26527,what's the earliest year that the wimbledon opponent was zheng jie?,2 -26528,what year was the opponent caroline garcia?,4 -26529,what's the most recent year that samantha stosur was the opponent with 20 aces and having played more than 2 sets?,1 -26530,what year was the memphis event?,4 -26535,"How many purses were there after 2012 that had a winner's share of less than 15,000?",3 -26549,How many matches ended with more than 22 points?,4 -26569,What is the average Total with a Gold that is larger than 4?,5 -26570,What is the average Total with a Bronze that is larger than 1?,5 -26573,What is the highest Top-5 that has 18 or more events with a Top-25 of 23?,1 -26574,What is the lowest cuts made that had a Top-25 less than 6 and wins greater than 0?,2 -26577,What is the largest number of assists for the second rank when there were less than 2 games?,1 -26578,What is the smallest rank when there are more than 2 games?,2 -26579,What is the mean number of games for pablo prigioni when there are more than 14 assists?,5 -26586,What is the smallest number of seats with INC as an election winner and BJP incumbent?,2 -26607,How many years was the 400 m event in the olympic games?,3 -26611,What is the smallest total number of medals for rank 11 and more than 0 silver medals?,2 -26612,What is the sum of all total medals with more than 2 bronze medals and more than 1 gold medal for the United States?,4 -26613,What is the largest number of gold medals for Canada with more than 7 bronze medals?,1 -26614,What is the sum of all silver medals with less than 23 medals in total and more than 3 bronze medals for the United States?,4 -26616,What is the largest number lost with 0 draws and less than 12 points for Gwardia Katowice?,1 -26617,What is the highest number of draws with 6 losses and less than 15 points?,1 -26618,How many draws correspond to more than 11 losses in a match less than 14?,3 -26624,What is the lowest draw number for the song ranked 6th with more than 43 points?,2 -26625,What is the total sum of points for songs performed by Partners in Crime?,4 -26633,What is the smallest number of spikes for players with a weight of 83 and height over 190?,2 -26646,What is the sum of the pick numbers for the player that went to San Miguel Beermen who played at San Sebastian?,4 -26647,What is the total number of picks for PBA team san miguel beermen who picked rommel daep?,3 -26652,"What is the highest year that Europe won, when the USA's Captain was Kathy Whitworth?",1 -26655,"What is the average Tier when the postseason shows -, and the season is 2012–13?",5 -26659,How many average wins have USA as the team?,5 -26660,What are the average wins that have great britain as the team?,5 -26661,What's the average draft pick number from Carson-Newman College before Round 7?,5 -26671,"What's the earliest year with a role of alvin seville simon seville david 'dave' seville, and a Title of alvin and the chipmunks meet the wolfman?",2 -26672,"What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure?",5 -26675,What is the total number of points for the KV Racing Technology team when they use a chevrolet engine?,3 -26679,What are the years that Andretti Autosport is a team?,3 -26681,"Which Oilers points have a Record of 10–6, and Oilers first downs larger than 14?",5 -26682,"Which Oilers points have an Opponent of san francisco 49ers, and Opponents larger than 19?",1 -26683,"Which Game has an Opponent of at kansas city chiefs, and an Attendance smaller than 40,213?",4 -26704,"What is the lowest avg/g that has an effic greater than 34.36, with wesley carroll as the name?",2 -26705,What is the lowest avg/g that has 2-9-0 for the att-cmp-int?,2 -26709,What is the Milepost of the Twin Tunnel #1 North?,3 -26710,WHat is the number of Population has a Density of 50.09 and a Rank larger than 30?,4 -26711,"What is the Density that has a Population larger than 290,458, and an Area of 91.6?",4 -26717,"What is the lowest against that has bacchus marsh as a ballarat fl, with wins less than 1?",2 -26718,"What is the lowest draws that have losses greater than 0, an against less than 1728, melton as the ballarat fl, and byes less than 2?",2 -26719,How many losses have byes greater than 2?,3 -26720,"What is the lowest draws that have losses less than 0, an against greater than 1353, 2 as the wins, and ballarat as ballarat fl?",2 -26721,What is the total year of the winner who plays the halfback position with a % of points possible of 80.64%?,3 -26722,"What is the year of the winner from the army school, plays the halfback position, and has a % of points possible of 39.01%?",4 -26726,"How many were in Attendance on February 21, 1988 against the New Jersey Saints?",4 -26728,"What is the highest Top-10, when Top-25 is 4, and when Top-5 is greater than 1?",1 -26730,"What is the total number of Wins, when Top-25 is less than 4, and when Top-10 is less than 1?",3 -26736,What is the sum of the golds of the nation with 5 total and less than 0 bronze medals?,4 -26737,"What is the sum of the gold medals of the total nation, which has more than 19 silver medals?",4 -26738,What is the average number of silver medals of the nation with 3 bronzes and more than 4 total medals?,5 -26749,"What is the highest yield when the ASK is greater than 88,252.7, an RPK of 74,183.2, and a load factor less than 74.5?",1 -26754,What's the average amount of ties had when a team wins 6 and it's past the 2004 season?,5 -26760,What was the highest attendance on week 13?,1 -26767,How many positions have a played greater than 12?,3 -26768,"What is the lowest played that has points greater than 11, 1 as the position, and a loss less than 1?",2 -26780,What is the number of matches for the player in rank 8?,1 -26785,What is the mean number of laps when the grid is less than 19 and time/retired is +21.3 secs?,5 -26786,What is the smallest number of laps for Team Green when the grid is 1?,2 -26787,"What is the total number of 1876(s), when 1872 is less than 1921, and when 1891 is less than 354?",3 -26788,"What is the sum of 1886(s), when 1886 is greater than 1070, and when 1891 is less than 1946?",4 -26789,"What is the sum of 1891(s), when 1872 is less than 685, and when 1881 is less than 348?",4 -26790,"What is the sum of 1872(s), when 1866 is greater than 856, when 1861 is greater than 1906, and when 1876 is greater than 1990?",4 -26792,In what round was the first outside linebacker picked?,2 -26796,What was the highest match when the away opponent was Dalian Shide Siwu?,1 -26804,How many total Gold medals did the nation ranked #3 receive?,4 -26811,"How many Crude death rate (per 1,000) has a Migration (per 1,000) larger than -5.06, and a Natural change (per 1,000) larger than 7.06? Question 1",5 -26812,"Which Natural change (per 1,000) has Deaths of 17 413, and a Migration (per 1,000) larger than -7.35?",2 -26813,"How many Migration (per 1,000) has a Crude birth rate (per 1,000) of 17.54 and a Natural change (per 1,000) larger than 10.95?",4 -26815,"What is the average Goals/Games for Rummenigge, Karl-Heinz, with Goals less than 162?",5 -26816,"What is the sum of Games for Allofs, Klaus, with Goals less than 177?",4 -26817,What is the highest Rank for more than 220 goals in 1965–1978-78?,1 -26828,What is the average First Downs for december 4?,5 -26829,"What is the lowest Attendance against the tampa bay buccaneers, with Points Against of less than 7?",2 -26830,"What is the highest Points when the record was 12–2, and the Points Against are larger than 6?",1 -26839,What is the average Top-5 finishes with 2 as the Top-10 and a greater than 4 Top-25?,5 -26840,What are the least Top-5 finish when the events are greater than 18?,2 -26841,What is the total of wins when the evens is less than 3?,4 -26842,"How many cuts made when the Top-10 is larger than 1, and the wins greater than 0, and a Top-5 greater than 2, when the events is greater than 18?",3 -26847,What is the Points with a Played larger than 14?,3 -26848,What is the Points with an Against smaller than 16?,5 -26850,"Which Points has a Position of 3, and a Drawn smaller than 2?",1 -26851,"Which Played has a Points of 2, and a Position smaller than 8?",5 -26852,"How many average plays have points greater than 14, with an against greater than 17?",5 -26853,Which average against has a lost less than 1?,5 -26854,Which of the highest drawn has a played less than 10?,1 -26855,"How many played have 3 as the drawn, and a position greater than 4?",3 -26857,How many years was Louis Armstrong performing?,3 -26875,"What is the highest number of draws with more than 15 points, an against of 19, and less than 3 losses?",1 -26879,What is the average number of ties for years with more than 19 wins?,5 -26880,What is the total number of losses for years with fewer than 9 wins?,3 -26881,"What is the total number of Division(s), when Team is Chongqing Lifan, and when Apps is greater than 9?",3 -26883,"What is the highest Apps, when Goals are greater than 5?",1 -26885,"What is the total number of Division(s), when Country is China, when Apps is greater than 9, and when Season is 2008?",3 -26886,"What is the lowest Division, when Goals are less than 10, when Team is Dalian Shide, when Apps are less than 17, and when Season is 2007?",2 -26887,"What is the lowest area when the density is greater than 234.77, the population is less than 965,040, and the rank is 32?",2 -26888,"What is the lowest rank when the population is greater than 59,544 and the area is 1,395.5?",2 -26889,"What is the lowest population total in La Romana when the area is less than 1,788.4, the density is greater than 234.77, and a rank greater than 30",2 -26899,What is the number of lost with 2 points?,3 -26904,"What is the total number of ladies ranked who had less than 3 silvers, less than 2 total medals, and more than 0 bronze medals?",3 -26905,"What is the total number of gold medals for the skater with less than 3 bronze medals, more than 0 silver medals and a rank smaller than 11?",3 -26911,How many chart runs had a debut position of more than 7 when peak position was 11?,3 -26914,Which issue was the Spoofed title Route 67 for which Mort Drucker was the artist?,4 -26915,What is the earliest issue Arnie Kogen wrote for in December 1964?,2 -26916,"What are the highest points that have a difference of 8, with a position less than 4?",1 -26917,"How many losses have corinthians as the team, with an against greater than 26?",4 -26918,"How many points have a difference of 23, with a drawn less than 5?",3 -26919,"How many positions have 15 for the points, with a drawn less than 3?",4 -26924,What is the lowest total that has barbados as the nation with a bronze greater than 0?,2 -26925,"How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26?",3 -26926,What is the largest total that has a gold less than 0?,1 -26927,"How many golds have a silver greater than 1, vietnam as the nation, with a bronze less than 3?",3 -26928,Which Wins has a Country of new zealand and a Last title larger than 1968?,2 -26929,What is the total of Last title that has Wins smaller than 71 and a First title larger than 1968 and a Country of fiji?,3 -26930,Which First title has Wins smaller than 8 and in Canada?,3 -26931,How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?,5 -26932,"What is the latest opened year of the team in Glasgow, Scotland?",1 -26933,"What is the average opened year of Mini Estadi stadium in Barcelona, Spain?",5 -26934,What is the lowest win percentage for teams with more than 23 losses and more than 386 goals for?,2 -26935,What is the total number of losses for teams with less than 5 ties and more than 330 goals for?,3 -26967,How many totals have 2 for the bronze?,3 -26968,What is the smallest silver that has a bronze less than 0?,2 -26970,"For the United States International University, what was the highest pick number allowed?",1 -26979,What is the most recent year that Queen Nefertiti (pegasus two) was built?,1 -26982,"What is the longest Time (seconds), when the Nation - athlete(s) is Sylke Otto - Germany?",1 -26986,"What is the highest Z (p) when arsenic is the element, and the N (n) is more than 42",1 -26987,"What is the highest Z (p) when the N (n) is less than 30, and scandium is the element?",5 -26997,"What is the latest Date, when Label is Captain Oi! Records?",1 -27000,What is the largest amount of top division titles featuring the tammeka club?,1 -27001,What is the largest number of top division titles with a 2012 position of 10th?,1 -27002,How many seasons in Meistriliiga when the club was kuressaare also had a first season in top division of more than 2000?,3 -27004,"Which Term expiration has an Appointing Governor of george pataki, republican, and an Appointed larger than 2004?",4 -27007,What is the lowest average finish having top 5s of 0?,2 -27009,What is the longest weeks on top when the Artist was Bruce Hornsby and the Range?,1 -27014,"What rank is the team with 1 silver, 3 bronze and a total of less than 8 medals?",3 -27015,Which Balls Faced has a Average of 39.13 and Runs Scored larger than 313?,4 -27017,Which average S.R. has an Average of 39.13 and Balls Faced larger than 318?,5 -27018,How many S.R. that has Runs Scored of 161 and an Average larger than 26.83?,4 -27019,What kind of Average has a S.R. of 70.43 and Runs Scored smaller than 293?,2 -27031,What is the total number of 13.5 inch/1400 lb that has a 0 13.5 inch/1250 lb; 3 for a total and a 15 inch less than 1?,3 -27047,"What is the number of ends lost when there are 15 blank ends, less than 14 stolen ends?",3 -27048,What is the number of blank ends when the stolen ends were 17 and Jennifer Jones was skipped with a more than 83 shot pct?,3 -27049,"What is the average Wins, when F/Laps is greater than 1, and when Points is 80?",5 -27050,"What is the sum of Races, when Podiums is less than 3, when Wins is 0, when Season is after 2001, and when Points is 32?",4 -27051,"What is the average Season, when F/Laps is 1, and when Poles is less than 0?",5 -27052,"What is the highest Poles, when Series is Ginetta Championship, and when Season is before 2007?",1 -27053,"What is the lowest wk 7 with a wk 3 value of 12, a wk 4 less than 9, and a wk 2 greater than 11?",2 -27054,"What is the lowest wk 3 value with an n/r in wk 14, a wk 2 value of 7, and a wk 11 value greater than 18?",2 -27059,What is the smallest amount of points had a lost number of 2 when the position was less than 1?,2 -27060,What is the mean number of against when the position is less than 1?,5 -27061,What is the mean number of played when there are less than 18 points and the position is less than 8?,5 -27062,"What is the sum of lost when against is less than 37, drawn is more than 2, and played is more than 20?",3 -27063,"What is the total area of drakenstein and a population less than 251,262?",3 -27064,"For Stellenbosch, which has a population larger than 155,733, what is the average area?",5 -27065,What is the lowest population for the area that has a density of 36.7?,2 -27066,How many points against has team Cardiff had when there were less than 7 tries?,3 -27067,What is the amount of fog where the rain is 1 109?,4 -27068,What is the amount of snow where the days for storms are 31?,4 -27069,"What is the amount of snow where the sunshine is 1 633, and storms are lower than 29?",5 -27070,"What are the number of storms where fog is lower than 74, and sunshine is 2 668?",3 -27073,"What is the average finish that has 24 as the start, with a year after 1987?",5 -27074,What is the lowest year that has lola t93/00 as the chassis with a start leas than 14?,2 -27075,"What is the lowest finish that has a start greater than 27, with a year after 1985?",2 -27080,"What is the highest draw that has points greater than 4, with a match greater than 5?",1 -27081,"What is the average draw that has a lost less than 4, gwardia bydgoszcz as the team, with a match greater than 5?",5 -27082,"What is the lowest match that has a lost greater than 3, and kolejarz rawicz as the team?",2 -27083,How many matches have 0 as the lost?,3 -27084,What is the sum of Game with a Score that is w 104–90 (ot)?,4 -27097,"Which Year has a Competition of olympic games, and a Venue of atlanta, united states?",5 -27103,"What is the average share for episodes with over 7.82 viewers, ranks of 3 and a weekly rank of 54?",5 -27106,"What is the total gain for Brandon Mcrae with a loss less than 4, and an Avg/g less than -0.1?",3 -27107,"What is the lowest long with a Gp-GS of 11-8, and a gain less than 228?",2 -27108,"What is the lowest gain with an 18 long, and a loss less than 191?",2 -27109,What is the sum of 1938 values where 1933 values are under 68.3 and 1940 valures are under 4.02?,4 -27110,What is the average 1940 value where 1929 values are 101.4 and 1933 values are over 68.3?,5 -27111,What is the highest 1937 value that has a 1940 value over 126?,1 -27126,What is the greatest lost where played is less than 9?,1 -27127,What is the greatest played with a drawn less than 1 and a position of less than 1?,1 -27128,What is the smallest drawn when the points are less than 7 and the against greater than 31?,2 -27140,"In which week was attendance at 50,814?",3 -27148,What is the Win % in the Span of 2011–2013 with a Lost of less than 1?,5 -27149,How many games were Tied during the Span of 2011–2013 with a less than 80% Win %?,3 -27150,"What is the highest Capacity that has 13.14% Annual change and Total Passengers larger than 15,499,462?",1 -27152,"Which Rank that has a Total Passengers of 15,499,462?",3 -27153,"How many Capacity has a Annual change of 53.4% and Total Passengers smaller than 7,822,848?",5 -27156,What is the least amount of silver medals won by Total with more than 1 bronze and more than 18 total medals won?,2 -27157,"How many positions have points against less than 28, americano-sp as the team, with a played greater than 8?",3 -27158,How many losses have points against less than 15?,3 -27159,What average played has an against less than 15?,5 -27160,"How many losses have a played greater than 8, ypiranga-sp as the team, with a position greater than 5?",3 -27162,"What is the sum of White (%), when Black (%) is less than 5,8, and when Asian or Amerindian (%) is less than 0,2?",4 -27163,"What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3?",4 -27164,"What is the total number of White (%), when Brown (%) is less than 54,6, when Asian or Amerindian (%) is greater than 1,3, and when Black (%) is less than 5,3?",3 -27165,"What is the sum of Asian or Amerindian (%), when Black (%) is 9,7, and when White (%) is greater than 45,7?",4 -27166,How many points were there when there more than 6 losses and less than 14 matches?,3 -27167,How few losses were the least number of losses and points higher than 23?,2 -27168,What is the highest number of matches with more than 18 points and more than 1 draw?,1 -27177,What is the lowest number of blocks for players with height of 206 and more than 356 spikes?,2 -27178,What is the number of weight values associated with 340 blocks and more than 353 spikes?,3 -27182,"What is the lowest population in millions that has inhabitants per MEP less than 414,538, and an influence of 2.06, and MEPs less than 13?",2 -27183,"What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP?",2 -27184,What is the highest population in the millions that has an influence of 1.02?,1 -27185,"What is the total number of MEPs that has 465,955 inhabitants per MEP and an influence smaller than 1.79?",3 -27186,"What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP?",4 -27187,"What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million?",1 -27189,"What's the lowest Year with a World Rank of 5th, with a Result greater than 20.31?",2 -27190,"Which Year has a Result smaller than 20.26, and a Location of eugene?",4 -27191,What is the Result with a Location of brussels?,3 -27192,"What Year has a Result smaller than 20.31, and a World Rank of 5th?",5 -27194,What is the lowest number of points for Drivers that have raced in more than 16 Races?,2 -27195,What is the least number of Races for a Racer with less than 0 Points?,2 -27196,"What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?",5 -27202,What is the least number of goals scored in the play-offs among the players that have scored 2 in the FA Cup?,2 -27203,"What is the average number of goals scored in the FA Cup among players that have more than 20 total goals, less than 1 FA Trophy goals, and less than 25 league goals?",5 -27205,What is the largest mass for Tycho Crater?,1 -27237,"Which Game has a Team of at phoenix, and a Score of 107-119?",3 -27240,What is the average Game with a Date that is june 14?,5 -27249,What was Miller Barber wins with Top-5 less than 2 and 19 Events?,3 -27250,What is the average number of Wins in a PGA Championship with a Top-5 less than 2?,5 -27251,What is the highest Top-5 ranking with Events less than 4?,1 -27254,"During which week was the earliest game with an attendance of 65,904 people?",2 -27255,What height is the tallest for an outside hitter?,1 -27256,What is the highest silver rank with a total of 27?,1 -27257,What is the total number of Silver when Bronze was smaller than 1 with a total smaller than 2 in Bulgaria?,3 -27261,"What is the average Goals for team Kairat, in the 2002 season with more than 29 apps?",5 -27263,What is the average Apps for the team Kairat with level larger than 1?,5 -27280,"With a Rank of less than 4, what is Pablo Prigioni's total number of Games?",3 -27281,How many Assists for the Player with more than 25 Games?,4 -27282,What is the Rank of the Maccabi Tel Aviv Player with 25 Games?,3 -27283,How many Assists for the Player with a Rank greater than 3 in less than 25 Games?,5 -27284,How many Games for Rank 2 Terrell McIntyre?,2 -27286,"In what Year did Chernova come in 1st in Götzis, Austria?",4 -27293,How many rounds had a selection of 165?,4 -27294,"What is the highest Weight for the position of D, and the 1990–1991 Team was the chicago blackhawks?",1 -27295,"What is the average Height for the Position of d, with a Birthplace of new hope, minnesota?",5 -27301,"Which Races has a T.C. of 3rd, and a D.C. of 7th?",2 -27306,What is the total number of runners-up for a club with winning years of 2010?,3 -27314,What's the most laps when grid is 16?,1 -27315,How many laps were there for a grid of 13?,3 -27319,"How many weeks had an attendance at 69,149?",3 -27324,How many weeks have w 51-29 as the result/score?,4 -27334,What is the highest Ranking Round Rank for Russia with a Final Rank over 11?,1 -27343,How many FA Trophy has a Total larger than 17 and a Player of david gamble and a League Cup larger than 0?,3 -27344,Which League Cup that has a Total of 19 and a League smaller than 15?,5 -27345,"How many FA Trophy that have a Player of paul dobson, and a League Cup smaller than 2?",3 -27354,What is the total number of medals when the gold is more than 2 and silver more than 2?,3 -27355,What is the most silver medals when the total is less than 4 and the rank is 12?,1 -27356,"What is the total number of bronze medals when the silver is greater than 0, and the total medals 5?",4 -27357,"What is the total number of medals when the bronze is more than 1, and Germany is the nation, and gold medals less than 1?",3 -27358,"When Oscar Míguez had over 107 goals, what was the lowest he ranked?",2 -27359,What was the highest number of goals for 1922–1935?,1 -27366,"What is the average FA Cup Goal value for players that have 0 Other goals, 0 FL Cup goals, and fewer than 39 League goals?",5 -27375,What is the mean year when the women's doubles team was helena turcinková / buresová?,5 -27382,"How many weeks have September 14, 2008 as the date?",4 -27392,"What is the sum of Rank that when the Singapore Cup is 0 (1), and the Name is masrezwan masturi?",4 -27412,What is the total lost that has points greater than 8 and a difference of - 8 and a position of greater than 5?,4 -27413,"What is the greatest number of points that has a lost bigger than 5, a difference of - 10 and a played bigger than 12?",1 -27422,How many losses have a draw greater than 0?,4 -27423,Which average match has points less than 6?,5 -27424,Which average draw has points greater than 12?,5 -27426,"In what Year was the Purse $150,000 with a Time of 1:49.00?",2 -27442,"What is the lowest amount of Span metres when the year opened is 2007, the country is China, rank is less than 13, and the span feet is less than 1378?",2 -27449,"What is the average year that the USD exchange of ¥88.54 had a gross domestic product larger than 477,327,134?",5 -27450,"How many years did the USD Exchange have ¥225.82 and a gross domestic product larger than 240,707,315?",3 -27455,What is the smallest round for the welterweight class with a preliminary card?,2 -27465,What is the highest League Cup with a Player that is steed malbranque?,1 -27470,"What is the highest total attendance of the team with a game 1 attendance of 105,011 and a game 3 greater than 102,989?",1 -27471,"What is the average game 3 attendance of the team with a total attendance less than 524,005, a game 4 attendance of 70,585, and a game 1 attendance less than 70,585?",5 -27472,"What is the game 2 sum attendance of the team with a total attendance of 759,997?",4 -27474,"Which Jersey # has a Height (cm) of 183, a Name of paul stastny, and a Weight (kg) smaller than 93?",3 -27477,Which year had a Score of kapunda 14-13-97 tanunda 5-14-44?,4 -27488,What is the largest attendance number when the Chicago Cardinals were the opponent and the week was less than 4?,1 -27500,"What was the lowest Position for the Song, ""If I Can't Find My Love""?",2 -27501,What is the Rank of the Nation with 0 Silver and more than 1 Bronze?,1 -27502,What is the Total medals for the Nation with 1 Silver and 0 Golds?,3 -27504,Which lowest period's element is ruthenium?,2 -27505,Which highest period's element is platinum?,1 -27507,What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4?,1 -27508,"What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0?",3 -27509,What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4?,5 -27510,"What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2?",1 -27511,What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19?,2 -27512,With the cultural and educational panel less than 0 what is the average industrial and commercial panel?,5 -27513,What is the total number of silver medals for nations with 5 total medals and more than 3 gold medals?,3 -27517,"Which week's game was attended by 54,015 people?",3 -27536,What is the lowest points for 36th rank?,2 -27545,"What is the total number of bronze medals, and 4 silver medals, and 2 gold medals?",3 -27554,How many wins were in the PGA Championship when there were more than 10 events?,3 -27555,What is the smallest number of cuts when there were more than 0 wins?,2 -27556,"What is the total number of Rank for 1996–2007, when there are more than 108 goals?",3 -27557,What is the lowest Rank when the goals are less than 124 for Jeff Cunningham?,2 -27558,"What is the total number of Rank with 100 goals, and less than 300 matches?",3 -27559,"What is the highest Rank for Jason Kreis, with less than 305 matches?",1 -27560,What is the least number of wins when the top 10 is more than 8?,2 -27561,"What is the sum of cuts made when the top-5 is 2, and there are 12 events?",3 -27562,What is the mean number in the top 5 when the top 25 is 1 and there's fewer than 0 wins?,5 -27563,What is the mean number of events when top-5 is 1?,5 -27564,How many top-25s are associated with more than 91 events?,4 -27565,What is the lowest Wins with a Top-10 that is larger than 9?,2 -27566,What is the average Cuts that were made with a Top-10 that is larger than 9?,5 -27571,"For how many years did the song ""Lost Without Your Love"" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26?",4 -27574,What is the sum of the Billboard 200 Peak scores after the Year 1971?,4 -27575,What is the sum of the Billboard 200 Peak scores given to the song with the Title Bread?,4 -27576,"What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria?",3 -27578,"What is the highest gold when bronze is 1, and rank is 5?",1 -27579,"What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0?",2 -27580,What is the sum of rank when total is 3 and the nation is Australia?,4 -27584,What issue was the spoofed title Ho-Hum land?,4 -27592,What is the total sum of the goals at competitions with more than 10 draws?,4 -27593,"For the teams that had more than 2 Byes, what was the highest number of Wins?",1 -27594,"For the teams that had fewer than 4 Losses, and less than 16 Wins, what was the total number of Draws?",3 -27595,"For the teams that had less than 1 loss, what was the average number of Wins?",5 -27596,"For the teams that had fewer than 1 Byes, what was the lowest number of Draws?",2 -27597,What was the highest number of Draws scored by Sebastapol when the value for Against was less than 1802?,1 -27613,What is the total number of Silver medals for the Nation with less than 1 Bronze?,3 -27614,What is the total number of Gold medals for the Nation with more than 1 Bronze and more the 4 Total medals?,3 -27615,What is the total number of Gold medals for the Nation with more than 3 Bronze?,3 -27616,How many Gold medals did Great Britain with a Total of more than 2 medals receive?,2 -27617,How many Silver medals did the Nation with a Rank of less than 1 receive?,5 -27618,What is the average total with 1 FA cup and more than 0 FA trophies?,5 -27625,"What is the highest Pct %, when Goals Against is less than 229?",1 -27626,"What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81?",5 -27627,"What is the sum of Goals Against, when Lost is 45, and when Points is greater than 68?",4 -27628,"What is the average Lost, when Games is less than 82, when Points is less than 95, and when Pct % is less than 0.506?",5 -27641,What is the highest Game when Morris Peterson (8) had the high assists?,1 -27653,What is the number of the episode titled 'Sugar Daddy'?,5 -27655,"In Week 7, what is the highest attendance number?",1 -27667,"What is the lowest events that have 17 as the cuts made, with a top-25 less than 8?",2 -27668,What are the lowest cuts made that have events less than 4?,2 -27669,"What is the highest top-10 that has a u.s. open for the tournament, and a top-25 greater than 12?",1 -27670,"How many points are there with more losses than 16, more goals than 44, and a smaller position than 13?",3 -27671,"What is the sum of the points with less goals conceded than 51, larger than position 1, has a draw of 7, and more losses than 5?",4 -27688,"After week 2, how many people attended the game at Rich Stadium against the Miami Dolphins?",3 -27692,What is the total number of weeks when the New York Jets are the opponent?,3 -27701,What is the earliest day that had a game against the Boston Bruins?,2 -27702,"What is the sum of Solidat (c) that's purpose is display type, heavy duty jobs, and a hardness (brinell) is smaller than 33?",4 -27703,"When the Sn/Sb (%) of 13/17, and a Liquidat (c) bigger than 283 what's the solidat (c)?",4 -27704,How many Liquidat (c) have a purpose of dual (machine & hand composition)?,3 -27707,"How many weeks did a game happen on September 17, 2000?",3 -27719,Can you tell me the lowest Crowd that has the Away team of melbourne tigers?,2 -27723,How many grids had a Time/Retired of +4 laps?,3 -27724,How many laps had a constructor of toyota and a Time/Retired of +13.409?,3 -27726,How many grids had a constructor of renault and less than 4 laps?,4 -27742,"Which Game has a January larger than 18, and a Decision of valiquette?",1 -27750,"Which Bask has Soft of 18, and a Total larger than 35?",5 -27752,"Which Bask has an Indoor track of 0, and a Swimming of 5?",2 -27755,"Total games for smaller than 15 points, date of november 15, and larger that 13,722 in attendance?",3 -27773,What is the sum of attendance for the games played at Los Angeles Rams?,4 -27774,"In which week was the attendance 47,218?",4 -27775,How many Decembers have calgary flames as the opponent?,3 -27777,"What is the most elevated TF1 # that has an Official # larger than 47, and an Air date (France) of 13 july 2010?",1 -27789,Which Date has a 1946 Nos of 3156/7?,5 -27790,Which Date has a 1947 Nos of 3525-34?,3 -27792,"What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0?",4 -27793,"What is the total number of wins in 2010, when there were more than 14 matches?",3 -27794,"What is the number of wins when there are 14 matches, and the No Result was less than 0?",5 -27795,"What is the number of losses when there were 14 matches, and the No Result was larger than 0?",4 -27796,"What is the number of matches when the wins are less than 8, and losses of 7, in 2011?",4 -27817,"What is the sum of Round, when Position is Forward, and when School/Club Team is Western Kentucky?",4 -27824,How many in total were in attendance at games where Chelsea was the away team?,4 -27838,what is the highest rank for director john woo?,1 -27854,What was the total rounds Travis Hamonic played?,3 -27857,"What is the fewest points for positions with under 12 losses, goals against under 50, goal difference over 11, and under 30 played?",2 -27858,What is the most wins for a position with more than 30 played and a goal difference of 11?,1 -27859,What is the total number of played for the goals against over 44 and a goal difference of 11?,3 -27866,What is the Week number with a Result of W 30-28?,5 -27869,"how many times is the total s ton less than 2,983,137 and the u.s. rank less than 102?",3 -27870,"what is the average domestic s tone when the foreign imports s tone is less than 225,281 and the year is later than 2003?",5 -27871,"what is the average domestic s tone when the total s tone is 2,926,536 and the foreign imports s tone is less than 464,774?",5 -27872,"what is the average foreign imports s tone when the total s tone is 3,157,247 and the foreign exports s ton is less than 358,493?",5 -27873,"how many times is the U.S. Rank 102, the year earlier than 2006 and the total s ton less than 2,983,137?",3 -27874,"what is the highest u.s. rank when the foreign total s ton is more than 703,638, the year is earlier than 2005, the foreign imports s ton is 284,347 and the foreign exports s ton is smaller than 478,317?",1 -27876,What is the number that is the lowest overall for the College of Baylor?,2 -27877,What is the number that is the lowest overall for Round 6?,2 -27884,What is the biggest number of females where the males are at 28.2 with a rank greater than 5?,1 -27891,"What is the maximum Credibility/Capital to Assets Ration (Score) that has a Credibility/Capital to Assets Ration (%) bigger than 4.66, and the Banking Power/Capital Base ($ Million) is less than 2,550?",1 -27892,"What is the sum of the Performance/Return on Capital (Score) when the Score (Iran) is less than 3, and the Score (Global) is 266?",3 -27895,What is the total round of the tight end position player?,3 -27902,"What is the most points 1 when the goals against are fewer than 97, lost less than 22, 9 draws and goal difference of +28?",1 -27903,What is the most points 1 when the goal difference is +28 and lost is larger than 12?,1 -27904,What is the maximum lost with points 1 more than 58 and 66 goals against?,1 -27905,What is the most goals for when there are fewer than 4 draws?,1 -27911,"What is the sum of the ranks for the film, eddie murphy raw?",4 -27913,What is the total number of ranks that had vestron as the studio?,3 -27915,What was the highest amount of laps for class c1 and driver Derek Bell?,1 -27920,"What is the average score of player lee trevino, who has a t8 place?",5 -27924,WHAT IS THE ROUND NUMBER OF NICHOLAS TREMBLAY?,3 -27926,WHAT IS THE ROUND FOR JAMIE ARNIEL?,3 -27928,"What is the rank of the largest attendance over 101,474 played against Rice?",5 -27930,"What was the average lead maragin for the dates administered of october 6, 2008?",5 -27935,"What was the highest points on October 12, when the attendance where is over 10,701?",1 -27939,"What is average frequency MHZ when is in portales, new mexico?",5 -27947,What is the to par for Tom Weiskopf?,5 -27950,What are the fewest points for goals fewer than 13?,2 -27951,How many goals when more than 10 games played?,5 -27952,"How many losses when goals against are more than 17, goal difference is more than 2 and points are more than 5?",5 -27953,How many draws when there are fewer than 6 wins and the goal difference is less than -15?,3 -27954,"How much Draw has a Rank of 3rd, and a Performer of noelle, and Points larger than 79?",3 -27955,"Which Draw has a Performer of jenny newman, and Points smaller than 77?",5 -27956,Which Points have a Draw of 2?,5 -27957,Which stage number did son bou arrive at?,3 -27959,What is the lowest stage number that starts with els alocs and has a middle difficulty?,2 -27967,"What is the lowest Year, when Co-Driver is Warren Luff, when Position is 7th, and when Laps is less than 161?",2 -27969,"What is the highest Year, when Laps is greater than 161?",1 -27970,What season had a combined of 13 and a Giant Slalom more than 31?,1 -27971,What season had a downhill of 35 and overall greater than 21?,3 -27974,"What is the average Grid, when Time is +45.855?",5 -27975,"What is the total number of Grid, when Time is +43.191, and when Laps is less than 22?",3 -27987,"Which Lost has a Position larger than 2, a Name of sg münchen (n), and a Drawn larger than 0?",3 -27988,"Which Drawn has a Position of 2, and a Lost larger than 2?",2 -27989,"Which Played has a Position of 3, and a Points smaller than 15?",3 -27990,"Which Played has a Position larger than 5, a Points larger than 0, and a Drawn smaller than 0?",1 -28000,What was the top score for grier jones?,1 -28004,What's the slalom when the average time was greater than 99.25?,5 -28005,Where was the place that the downhill was 71.6 and the average was less than 90.06?,4 -28011,What is the highest number drawn when the position was 12?,1 -28012,What is the highest number of goals against when the number of goals were 55 and the difference was +24?,1 -28013,"What is the average number lost for hyde united when they had a smaller position than 17, 8 draws, and more than 57 goals against?",5 -28014,What is the highest played when there was less than 74 goals against and points 1 of 36 2?,1 -28026,What was the attendance in week 9?,5 -28027,"What week had attendance of 52,714?",1 -28028,"what is the gold when silver is 1, event is 2000 summer paralympics and bronze is more than 3?",5 -28029,how many times is bronze 2 and gold more than 3?,3 -28030,what is the highest gold when silver is 1 and bronze is less than 0?,1 -28031,what is the highest bronze when silver is less than 1 and gold is more than 0?,1 -28032,what is the most silver when the event is 2008 summer paralympics and bronze is less than 1?,1 -28042,"Which Total has a Club of darlington, and a League goals of 13, and a League Cup goals of 1?",4 -28045,"Which Total has an FA Cup goals of 1, and a League goals of 4 + 7?",5 -28057,What number game happened on November 19?,1 -28068,"What is the sum of Broadcasts (TV) 1, when Series is ""3 4"", and when US Release Date is ""27 December 2006""?",4 -28069,"What is the total number of Broadcasts (TV) 1, when Aired in Japan 3 is ""5 January 2003 to 30 March 2003""?",3 -28071,What was the lowest pick when the position was OF with the Chicago White Sox?,2 -28073,What school has the nickname of Cardinals?,2 -28083,"What was the highest attendance on November 12, 1989?",1 -28085,"What is the league position number when the attendance was 14,673 with a match day larger than 26?",3 -28088,What attendance is dated february 27?,5 -28092,what is the number of times that the heat is 3 and the name is cxhristy ekpukhon ihunaegbo?,3 -28118,WHAT IS THE YEAR OF FLOETIC?,4 -28127,What is the highest year for the US Open?,1 -28139,"What is the average market value in billions of the company with less than 1,705.35 billions in assets, sales of 175.05 billions, and is ranked less than 19?",5 -28140,"What is the total rank of the company with less than 248.44 billion in assets, an industry of oil and gas, headquarters in France, and a market value greater than 152.62 billions?",3 -28142,What is the average rank of the company with more than 146.56 billion in sales and profits of 11.68 billions?,5 -28145,How many Parishes in Merrimack which has 4 Cemeteries?,2 -28147,How many High schools in the Region with 8 Cemeteries?,4 -28150,What is the number of games for Shlomi Avrahami?,3 -28151,"What is the rank for the period of 1973–89, with less than 423 games.",4 -28154,"How many gold values have totals over 30, bronzes over 35, and are in Swimming?",3 -28155,"What is the highest bronze value with silvers over 2, golds under 16, and in Cycling?",1 -28157,"What is the smallest bronze value associated with golds over 0, silvers over 11, and totals of 36?",2 -28158,What is the average number of golds in athletics associated with over 42 silvers?,5 -28159,"What is the smallest number of silvers associated with bronzes under 20, totals of 1, golds of 0, and in Water Polo?",2 -28160,What was the lowest pick number for Marc Pilon?,2 -28162,What was the highest pick number for the Hamilton tiger-cats?,1 -28176,"Which Overall has a College of michigan state, a Position of fb, and a Round larger than 8?",4 -28177,Which Round has a College of arizona?,2 -28178,Which Overall has a Round of 7?,2 -28179,Which Round has a Pick larger than 1?,4 -28180,"In italy, when the stolen ends were 10 and blank ends were under 14, what's the lowest ends won?",2 -28181,"When ends won were below 57 but stolen ends are more than 14, what's the highest blank ends found?",1 -28182,"What is the highest value for N, Golosov, when Constellation is G, and when Largest Component, Fractional Share is greater than 0.15?",1 -28183,"What is the sum of the values for N, Laakso-Taagepera, when Largest Component, Fractional Share is 0.35000000000000003, and when Constellation is E?",4 -28184,"What is the sum of the values for Largest Component, Fractional Share, when Constellation is E, and when N, Golosov is greater than 2.9?",4 -28185,"What is the average Largest Component, Fractional Share, when N, Laakso-Taagepera is 1.98, and when N, Golosov is greater than 1.82?",5 -28186,"What is the lowest value for N, Golosov, when N, Laakso-Taagepera is greater than 10.64?",2 -28191,"What is the total ATMs with off-site ATMs greater than 3672, and less than 1685 as the number of branches?",3 -28192,"What is the total number of branches when the on-site ATMS is 1548, and the off-site ATMs is bigger than 3672?",4 -28193,"What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883?",2 -28194,"What is the mean on-site ATMS that have off-site ATMs of 1567, and the total number of ATMs less than 4772?",5 -28195,"With foreign banks as the bank type, and on-site ATMS less than 218, what is the average off-site ATMs?",5 -28209,"What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846?",4 -28210,What year did Bangkok University and Chunnam Dragons have a score of 0-0?,4 -28219,"Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100?",4 -28220,"Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77?",1 -28221,"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?",4 -28234,"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?",3 -28235,What is the lowest draft number with a 48 pick?,2 -28237,"Which Round has a College of tulsa, and a Pick larger than 61?",5 -28244,"Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw?",5 -28245,"Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)?",5 -28251,In what Week was the Result W 24-17?,1 -28252,"What was the Week number on November 20, 1977?",4 -28255,What was the average attendance when marathon was the away team?,5 -28257,"How much are General Electric's profits who have assets (billion $) under 2,355.83 and a market value (billion $) larger than 169.65?",5 -28259,"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?",4 -28274,What is the average crowd of the 13.9 (87) Home Team Score?,5 -28283,What's the highest game found when the record is 2-1?,1 -28285,"Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory?",1 -28287,"WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100?",2 -28288,"WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250?",2 -28292,"Which Average Cards a game has a Season of 1997/1998, and a Games larger than 38?",1 -28293,"Which Red Cards has a Season of 1998/1999, and a Games larger than 41?",2 -28294,"Which Games has a Season of 2003/2004, and a Red Cards smaller than 5?",5 -28295,"Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3?",2 -28296,Which Yellow Cards has a Season of 1999/2000?,5 -28299,What was Bryan Clay's react time?,2 -28303,"What is the lowest Subject, when Plural is tãder (their)?",2 -28311,What is the average attendance of the game with 38 opponent and less than 14 Falcons points?,5 -28312,"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?",3 -28314,How many people were born in 1368?,3 -28316,What was the week number when they played on Dec. 19?,3 -28317,"What is the average number of students in East Lansing, MI?",5 -28318,What is the lowest number of students at the community college?,2 -28319,What is Joanne Carner's average score in Canadian Women's Open games that she has won?,5 -28328,"Which Score has a Place of t1, and a Player of hubert green?",5 -28341,"What is the lowest Industry, when Year is greater than 2005, and when Agriculture is greater than 11?",2 -28342,"What is the average Industry, when Agriculture is greater than 11?",5 -28343,"What is the average Services, when Year is greater than 2003, when Industry is greater than 1,465, and when Regional GVA is greater than 9,432?",5 -28344,"What is the sum of Agriculture, when Regional GVA is greater than 6,584, when Services is greater than 7,502, and when Industry is greater than 1,565?",4 -28345,"What is the sum of Year, when Regional GVA is 6,584, and when Services is less than 5,277?",4 -28346,"What is the highest Regional GVA, when Year is greater than 2000, when Services is 7,502, and when Agriculture is greater than 11?",1 -28347,"When the points scored was over 110.25%, what's the average amount lost?",5 -28348,"If the points scored were 93.45%, what's the lowest amount of games lost?",2 -28349,What is the rank of the film directed by Kevin Costner?,3 -28351,"What is the average rank of the movie from Paramount Studios that grossed $200,512,643?",5 -28355,What's the highest amount of laps Garry Mccoy drove?,1 -28362,What is the highest number of ends won of 47 Ends Lost and a Shot % less than 73?,1 -28369,"What is the total number of Podiums, when Position is ""2nd"", when Wins is less than 6, and when Poles is greater than 0?",3 -28370,"What is the sum of Poles, when Season is greater than 2004, and when Podiums is less than 1?",4 -28371,"What is the average Poles, when Wins is 0, when Position is ""nc"", and when Season is before 2004?",5 -28372,"What is the sum of Poles, when Season is before 2005, when Position is ""2nd"", and when Wins is less than 6?",4 -28380,What was the first game played on February 28?,2 -28381,What is the sum of Altrincham's Points 2 when they had more than 52 Goals For?,4 -28385,What is the total of the game that the team was @ new york?,3 -28386,Which round was Joe Taylor selected in?,4 -28388,How many picks were from round 6?,3 -28389,What is the largest round of a pick smaller than 92 from Toledo University?,1 -28392,What is the overall sum of round 3?,4 -28395,What is the sum of the pick in round 17?,4 -28398,"What is the sum of Date of Official Foundation of Municipality, when Province is ""Kermān"", when 2006 us ""167014"", and when Rank is less than 46?",4 -28399,"What is the total number of Rank, when Date of Official Foundation of Municipality is after 1926, when Province is ""Sistan and Baluchestan"", and when 2006 is greater than 567449?",3 -28400,"What is the sum of Rank, when Province is Gīlān, when Date of Official Foundation of Municipality is after 1922, and when 2006 is greater than 557366?",4 -28401,"What is the highest Rank, when Date of Official Foundation of Municipality is ""1952"", and when 2006 is less than 189120?",1 -28408,What was the highest amount of laps when the class was v8 and the entrant was diet-coke racing?,1 -28419,what is the highest lane number for johan wissman when the react is less than 0.242?,1 -28420,what is the heat when the country is united kingdom and react is less than 0.232?,1 -28421,what is the react when the country is sweden and the lane is higher than 6?,4 -28431,"What is the sum of Year, when Rank is less than 19?",4 -28432,"What is the sum of Year, when Publication is ""VH1"", and when Rank is greater than 11?",4 -28434,"What is the lowest Year, when Rank is greater than 85?",2 -28437,"What is the sum of Round, when Nationality is ""United States"", and when Pick is ""125""?",4 -28439,"What is the average Pick, when Player is ""Willie White"",and when Round is less than 2?",5 -28440,"What is the total height of the peak with a prominence of 12,867 ft and a prominence in m greater than 3,922?",3 -28441,"What is the total prominence in ft of the peak of kangchenjunga central, which has a prominence in m less than 32?",3 -28442,"What is the total prominence in m of kangchenjunga west (yalung kang) peak, which has a height in m greater than 7,903 and a height in ft less than 27,904?",3 -28443,What is the highest prominence in ft of the peak with a prominence in m less than 103?,1 -28448,WHAT IS THE ROUND WITH PICK OF 7?,4 -28449,WHAT IS THE PICK WITH K POSITION AND OVERALL SMALLER THAN 181?,4 -28450,"WHAT IS THE ROUND FROM MICHIGAN COLLEGE, AND OVERALL LARGER THAN 37?",4 -28451,WHAT IS THE LOWEST ROUND FOR CB POSITION?,2 -28456,"What is the most noteworthy Bike No that has a Position bigger than 1, and a Points bigger than 369, and an Equipment of zabel-wsp?",1 -28457,What is the aggregate number of Position that has a Bike No of 4?,3 -28459,"What was the first week when there was an attendance over 75,007 at Mile High Stadium?",2 -28463,"Which Pick has a Round larger than 1, a School/Club Team of alcorn state, and a Position of defensive back?",4 -28464,"Which Pick has a Position of offensive guard, a Player of reggie mckenzie, and a Round larger than 2?",3 -28469,What were the lowest points on march 2?,2 -28470,"Which Points have a Record of 21–36–9, and an Attendance larger than 14,768?",4 -28472,"Name the highest Long that has an Avg/G smaller than 8.4, and an GP-GS of 4–0?",1 -28473,"Name the lowest Gain which has a Long of 0, and a GP-GS of 4–0, and a Loss smaller than 3?",2 -28474,Name the total of Loss which has an Avg/G of 8.4?,3 -28478,"WHAT IS THE HIGHEST WINS WITH A SERIES OF BRITISH FORMULA THREE, SEASON 2005, POLES SMALLER THAN 0?",1 -28479,WHAT IS THE SUM OF RACES WITH 9 POINTS?,4 -28480,WHAT IS THE AVERAGE POLES WITH POINTS N/A?,5 -28490,Who scored the lowest with 8 gold medals and less than 4 silver medals?,2 -28493,what was the overall pick number for rich dobbert?,5 -28494,What is the sum of the rounds where the overall pick was more than 295 and the pick was smaller than 10 and the player was rich dobbert?,4 -28500,"What is the total of Played where the Goals For is higher than 60, the Lost is 8, and the Position is less than 1?",4 -28503,What is the average Lost for Team Matlock Town when the Goals Against is higher than 66?,5 -28506,"When was the last game that had a time of 2:46 and attendance of more than 57,533?",1 -28508,What was the average year when shri. shambu nath khajuria won the padma shri awards?,5 -28509,What is the total number of years that prof. aditya naraian purohit won?,3 -28510,What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa?,4 -28517,How many games have 61-16 as the record?,3 -28520,What is the mean game played on January 9?,5 -28524,What is the attendance of the game against the New Orleans Saints before game 11?,5 -28532,What was the highest attendance of games that resulted in L 23-20?,1 -28534,What's the greatest 1st RU that has a 2nd RU less than 0?,1 -28535,"How many semifinalists had a total less than 2, 1st RU greater than 0, 2nd RU was 0 and Miss United Continent of 0?",3 -28536,What rank was Peru with a total greater than 3?,1 -28537,What is the least 3rd RU that is ranked less than 8 with a 4th RU greater than 0?,2 -28542,What is the lowest Score when the Country is canada?,2 -28544,What is the Game number when the Rangers have a Record of 25-24-11?,3 -28552,What were highest points received from someone using a zabel-wsp with a position greater than 7?,1 -28553,What's the lowest attendance recorded for week 15?,2 -28556,What is the pick of Texas-San Antonio?,5 -28561,what is the grid when the rider is mika kallio?,1 -28585,what is the highest game when the team is @boston and the series is 0-1?,1 -28615,Which Attendance is the lowest one that has a Record of 5–5–0?,2 -28621,"What is the attendance sum of the game on March 16, 1990 with a loss record?",4 -28623,Which Round has a Pick smaller than 6?,4 -28624,Which Round has an Overall smaller than 6?,1 -28626,"Which Round has a Position of qb, and an Overall larger than 6?",1 -28630,What draft pick number attended syracuse and was drafted by the Carolina panthers?,4 -28631,"If the area of a country is over 9,826,675 kilometers and a total of emissions per person less than 14.9, what's the average Population found?",5 -28632,"What's the average population of Mexico if the area is 1,972,550 kilometers squared?",5 -28633,Which Lead Margin has a Poll Source of rasmussen reports/ fox news?,2 -28638,What shows for miles [One Way] when the fans took 340?,5 -28649,"What is the total q > 1.4 with a q > 1 less than 7,801,334, and a q > 1.05 greater than 812,499?",4 -28650,"What is the sum of q > 1 when q > 1.05 is bigger than 18,233, and a q > 1.4 less than 112, and q > 1.1 is 13,266?",3 -28651,"What is the mean q > 1 with a q > 1.2 less than 3,028, and a q > 1.4 of 51, and a q > 1.05 greater than 18,233?",5 -28652,"What is the total of q > 1.4 when q > 1.3 is 455, and q >1.2 is less than 3,028?",4 -28656,"What is the total number of Total trade (tonnes) when the Imports is smaller than 114,287 tonnes and the year is higher than 2008?",3 -28657,"What is the sum of Total trade (tonnes) where the Imports are 111,677 tonnes and there are fewer than 129 vessels entering port?",4 -28658,"What is the highest Total trade (tonnes) after 2001 when the Imports are 144,368 tonnes, the Exports are more than 4,024,311 tonnes, and there are more than 91 vessels entering port?",1 -28664,How many years were the events won by KCLMS less than 7?,3 -28665,What is the average value for events won by KCL in a year earlier than 2004?,5 -28683,"What is the sum of Poles, when Podiums is 0, and when Races is 17?",4 -28685,"What is the lowest Races, when Podiums is greater than 1?",2 -28686,How many people on average attended the game in week 14?,5 -28688,For the game against the San Francisco 49ers what was the total attendance?,4 -28707,"What is the sum of Overall, when Round is less than 24, and when College is North Carolina State?",4 -28708,"What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi?",3 -28709,"What is the lowest Overall, when College is Hardin-Simmons, and when Round is greater than 26?",2 -28715,Which seaosn had a player of rohan ricketts?,3 -28746,"Which Year started is the highest one that has a Current car of arctic sun, and a Number of cars smaller than 1?",1 -28748,"Which Year started is the lowest one that has a Number of cars larger than 7, and a Car # of 100?",2 -28749,"What is the total number of Round, when Position is ""D"", and when Player is ""Andrew Campbell""?",3 -28756,"When the pick was below 42 and the player was Chris Horton, what's the highest Overall pick found?",1 -28757,"When Kansas State had a pick of over 35, what's the highest Overall pick found?",1 -28758,Total points with 114 played and average of 0.982?,4 -28760,"Total average with less than 105 points, 1993-1994 less than 30, and the team of gimnasia y tiro?",4 -28762,What was John Strohmeyer's average pick before round 12?,5 -28763,what is the average points when position is more than 5 and played is less than 10?,5 -28764,"what is the average points when drawn is 0, lost is 5 and played is more than 10?",5 -28765,what is the average number lost when points is 14 and position is more than 1?,5 -28766,"what is the average points when played is 9, name is ev pegnitz and position is larger than 1?",5 -28811,Which Zone has a Champion of surozh sudak?,4 -28823,"Can you tell me the lowest Races that has the Team Name of piquet gp, and the Points larger than 24?",2 -28824,"Can you tell me the sum of Poles that has the Season of 2005, and the Series of formula three sudamericana?",4 -28827,"What is the sum of Game, when Date is 29 January 2008?",4 -28843,Which Game has a Nugget points of 89?,2 -28845,"How many Opponents have a Result of win, and Nuggets points smaller than 115, and an Opponent of washington?",4 -28846,"How many Opponents have a Result of loss, and a Game smaller than 49, and Nuggets points of 108?",3 -28852,What is the lowest attendance for week 11?,2 -28853,What is the total number of spectators on week 4?,3 -28857,What si the total sample size at rasmussen reports when the margin of error was bigger than 4.5?,3 -28870,What is the highest heat for a lane past 1 and mark of 1:48.61?,1 -28871,What is average for Benito Lorenzi league when total is smaller than 143?,5 -28872,"Which league has total smaller than 284, with Sandro Mazzola league?",2 -28873,What is the earliest election with 2 seats and the outcome of the election of minority in parliament?,2 -28877,How many times is the postion S?,3 -28878,how many times is the name Derek Smith when the round is higher than 3?,3 -28879,what is the lowest overall when the pick is 20?,2 -28880,what is the highest round when the overall is less than 17?,1 -28891,How many sales took place with a peak of 1 for Boris?,3 -28912,"What is the total number of Game, when Attendance is ""18,568""?",3 -28913,"What is the sum of Game, when Attendance is greater than 18,007, and when Opponent is ""Minnesota Wild""?",4 -28914,"In Silver Bow County, Montana, when the capicity is more than 45 tons, what's the highest rank found?",1 -28916,How many sets lost have a loss smaller than 3 and a rank larger than 1?,4 -28921,What is the Rank of the Nation with more than 1 Gold and a more than 4 Total medals?,4 -28922,What is the Gold for the Nation in Rank 4 with less than 1 Silver?,2 -28926,How much is the lowest glucose(mmol/L) with [Na +] under 0?,2 -28927,What is the highest glucose(mg/dl) with a solution of 2/3d & 1/3s and glucose(mmol/L) less than 185?,1 -28928,What is the largest [Cl -](mmol/L) with a solution of D5NS and [Na+](mmol/L) less than 154?,1 -28945,"What is the average Points, when Played is greater than 126?",5 -28946,"What is the sum of Average, when 2006 is ""36/40"", and when Played is greater than 126?",4 -28952,What is the total enrollment at the school that has the nickname of the Fightin' Blue Hens?,3 -28966,"What is the highest w plyf with a first yr before 1960, a G plyf greater than 0, a G > .500 less than 43, and a w-l% less than 0.578?",1 -28967,"What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?",4 -28968,What is the total number of yr plyf with a G plyf less than 0?,3 -28970,What is the average last yr with an l plyf less than 0?,5 -28971,What is the earliest last year with a yr plyf less than 0?,2 -28975,"What is the lowest Game, when High Assists is ""Maurice Williams (8)""?",2 -28976,"What is the lowest Game, when Date is ""April 12""?",2 -28982,"What is the total number of React, when Name is Sean Wroe, and when Lane is greater than 2?",3 -28983,"What is the highest Lane, when Mark is 46.65, and when React is greater than 0.251?",1 -28984,"What is the lowest React, when Mark is 46.26 sb, and when Lane is greater than 6?",2 -28996,"What is the average value of Overall, when Round is greater than 11, and when Pick is greater than 10?",5 -28999,"What is average Overall, when Pick is 19?",5 -29000,What is the average pick for Princeton after round 3?,5 -29001,What is the earliest round Clark was in?,2 -29010,"What's the average year for the good things happening album's single ""lady lady lay""?",5 -29012,"What's the earliest year listed for ""where are you going to my love"" from the album united we stand?",2 -29043,What is the sum of the dates in december that were against the atlanta flames before game 40?,4 -29045,In what Round was Grant Long Drafted?,2 -29048,In what Round was the Memphis Player drafted?,5 -29072,"WHAT IS THE AVERAGE DATE FOR CBS LABEL, IN AUSTRALIA, AND SBP 241031 FOR CATALOG?",5 -29073,WHAT DATE HAS A CATALOG OF 486553.4?,1 -29074,"WHAT IS THE LOWEST DATE FOR KOREA, IN CD FORMAT?",2 -29082,"What is the highest pick of scott turner, who has a round greater than 2?",1 -29084,"What is the sum of the pick of darryl pounds, who has an overall greater than 68?",4 -29085,What is the total number of rounds of the player from lehigh college with an overall less than 152?,3 -29086,What is the highest round of pick 3?,1 -29087,What is the total overall number of the ot position player with a pick greater than 5?,3 -29088,What rank does the Singapore Cup of 0 (1) have?,1 -29095,"What is the lowest to par of the player with a t3 place and less than $1,500?",2 -29097,"How much total money does player tommy bolt, who has a to par of 9, have?",3 -29098,What is the lowest amount of money a player from South Africa with a to par less than 8 has?,2 -29102,"What is the sum for the year with a location of newport, rhode island?",4 -29107,"What is the sum of number of bearers in 2009 for a rank above 1, a type of patronymic, an etymology meaning son of Christian, and the number of bearers in 1971 greater than 45.984?",4 -29111,"Where is the lowest area with a population of 7,616?",2 -29116,"What is the lowest Round, when College/Team is ""Kansas"", and when Pick is less than 56?",2 -29118,"WHAT IS THE Q1 POS WITH A 1:31.826 Q1 TIME, AND Q1 ORDER OF 7?",1 -29128,What is the average year that the club located in enfield was founded with an unknown coach?,5 -29137,How many Years have an Iron Man Award of kyal horsley?,3 -29139,Which Year has a Community Award of jarrod harbrow?,4 -29140,what is the capacity for the team šibenik?,2 -29142,what is the capacity when the home city is zagreb and the manager is zlatko kranjčar?,5 -29147,What was the highest attendance against Real Juventud?,1 -29159,what is the assists when the club is chicago fire and goals is more than 2?,4 -29160,what is the most assists when the goals is less than 0?,1 -29169,Name the Theaters that has a Rank larger than 7?,1 -29171,Name the Round which has a Position of defensive back and a Pick of 226?,2 -29173,Name the Round which has a Position of defensive back and corey chavous?,2 -29174,"Name all Pick that has a Round of 7, and a School/Club Team of arizona st.?",3 -29175,Which Year has a Regular Season of 7th?,1 -29176,Which Year has a Division larger than 3?,1 -29177,"Which Year did not qualify for Playoffs, and had a Division smaller than 3?",4 -29180,"What is Lowest Crowd, when Home Team is Brisbane Lions?",2 -29184,What is the smallest round with a time of 1:12?,2 -29202,"What is the highest League, when Title Playoff is greater than 0?",1 -29203,"What is the lowest Title Playoff, when Total is less than 3, and when League is greater than ""2""?",2 -29204,"What is the lowest Title Playoff, when League is greater than 3, and when Super Cup is less than 0?",2 -29205,"What is the total number of Super Cup, when Title Playoff is ""0"", when Total is greater than 9, and when League is less than 11?",3 -29212,"How much average Finish has Starts of 9, and a Top 10 smaller than 0?",4 -29214,"Which Diameter (km) has a Name of alma-merghen planitia, and a Year named smaller than 1997?",1 -29216,"Which Year named has a Name of nuptadi planitia, and a Diameter (km) larger than 1,200.0?",2 -29220,Which Week has a Record of 2-9?,2 -29221,"Which Week has an Attendance smaller than 70,056, and an Opponent of at minnesota vikings?",3 -29229,What's the total number of game that has 377 points?,4 -29230,What's the total number of points that the rank is less than 5 and has Tiago Splitter?,3 -29231,What is the total number of games that has Juan Carlos Navarro and more than 266 points?,4 -29232,What's the rank of Igor Rakočević of Tau Cerámica with more than 377 points?,4 -29233,What's the rank of the Tau Cerámica that has 377 points and more than 21 games?,3 -29238,What was the lowest postion of ehc straubing ii when they played less than 10 games?,2 -29239,What was the drawn amount for teams with points of 12 and played smaller than 10?,5 -29240,"How many games were played by the team with 2 draws, less than 16 points and a position higher than 5?",3 -29246,"For the 27 arrow match event, what's the sum of all scores for that event?",4 -29248,What is the total number of appearances in the premier league when there were 10 appearances at UEFA and less than 4 at league cup?,3 -29249,What is the highest total number of appearances when there were less than 4 at the FA cup?,1 -29251,What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup?,4 -29257,"What is the lowest Overall, when Player is ""Dan Jennings"", and when Round is greater than 9?",2 -29258,"What is the total number of Round, when Position is 2B?",3 -29259,What are the highest points for Justin Lofton when his top 10 is lower than 5?,1 -29260,What is Frank Kimmel's lowest top 5 with more than 0 wins and fewer than 14 top 10s?,2 -29261,"What is the lowest top 10 with fewer than 4 wins, fewer than 3260 points and more than 0 for top 5?",2 -29262,"When the mark is 7.35, what's the lowest Lane found?",2 -29263,What's the lowest lane found for a mark of 8.09 pb?,2 -29264,What's the sum of all of ivet lalova's Heat stats?,4 -29265,What's the total number of Heat recorded for the british virgin islands?,3 -29266,"When the lane is under 2 and the name is virgen benavides with a mark of 7.29, what's the total number of Heat found?",3 -29270,What's the lowest Year with a Venue of casablanca and has the Time of 20.63w?,2 -29272,What was the lowest pick number for a united states player picked before round 7?,2 -29281,What is the total number of races in the 2006 season with 0 poles and more than 0 podiums?,3 -29282,"What is the highest number of the fastest laps when there were 0 poles, more than 2 podiums, and more than 15 races?",1 -29283,"What is the total number of races when there was more than 1 pole, and the fastest number of laps was less than 4?",4 -29284,What was the average number of fastest laps with less than 0 poles?,5 -29285,What is the smallest number of poles when the fastest laps are less than 0?,2 -29286,"What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races?",4 -29292,Total overall from penn state?,4 -29293,How many seasons did Pat Chambers coach?,3 -29305,What is the average money ($) that Tom Weiskopf made?,5 -29315,How many goals against when the draws are fewer than 3?,1 -29316,How many goals when the points 1 is 38 and the played number is less than 42?,4 -29317,What is the fewest goals for when goal difference is +10 and goals against is more than 61?,2 -29318,What is the fewest goals for when goals against is 75 and drawn is smaller than 11?,2 -29319,"What is the highest goals for the position after 10, a goal difference less than -24, and played more than 30 times?",1 -29320,What is the lowest goals for more than 30 games played?,2 -29321,"What is the highest amount of goals in the position after 8, 12 losses, and played less than 30 games?",1 -29322,What is the total number of losses for the over 30 games played?,3 -29323,"What is the total number of losses and draws less than 7, points larger than 26, 60 goals, and a position before 4?",3 -29324,"What is the highest total for bronze with a gold larger than 0, a silver smaller than 5, and a total of 15?",1 -29334,What is the year that nahete colles was named?,1 -29335,What year was the geological feature with a latitude of 76.0n and a diameter larger than 548 km was named?,1 -29350,What is the smallest diameter for Eirene Tholus?,2 -29351,What was the game on April 25?,2 -29357,what is the sum of the wkts when the ovrs were bigger than 2 and econ was bigger than 7.84?,4 -29358,What is the sum of the runs when the wkts were bigger than 0 and ovrs were smaller than 2?,4 -29359,What is the highest wkts for james hopes who had less than 26 runs and more than 2 ovrs?,1 -29360,"What is the average sales in billions of the company headquartered in France with more than 2,539.1 billion in assets?",5 -29361,"What is the average sales in billions of walmart, which has more than 15.7 billion in profits?",5 -29363,"What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?",5 -29364,"What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha",2 -29365,"What is the lowest laps that has a manufacturer of yamaha, and a time/retired of +1:08.312, and a grid less than 20?",2 -29371,"What is the lowest value for Sydney, when Perth is less than 169,000, and when NIGHTLY RANK is less than 5?",2 -29372,"What is the lowest value for Sydney, when WEEKLY RANK is less than 8, and when Brisbane is greater than 252,000?",2 -29373,"What is the sum of the values for Melbourne, when Episode Number Production Number is 19 2-06, and when Sydney is less than 389,000?",4 -29374,"What is the lowest value for Perth, when Melbourne is greater than 461,000, and when Sydney is less than 430,000?",2 -29375,How many rounds had a time of 5:00 at UFC 155?,3 -29379,What is the average number of rounds that Lance Gibson fought when his record was 1-1?,5 -29393,Which game number was played after March 11 and ended with a record of 26-30-10?,2 -29394,How many games total were played against @ Boston Bruins this season?,4 -29395,When was the earliest game date in March where the match ended with a record of 25-29-10?,2 -29411,what is the highest attendance for week 3?,1 -29413,"what is the lowest week when the date is september 16, 1979 and the attendance less than 54,212?",2 -29424,What is the average win with a top 5 greater than 2 and a top 10 less than 5?,5 -29425,How many poles have 4 Starts of 4 and position of 46th?,3 -29426,Sum of m. night shyamalan ranks?,4 -29435,What is the total number of games for the opponent in Washington?,3 -29437,What is the largest number of stories in Recife completed later than 2007 with a height less than 135 meters?,1 -29453,"What is the Population of the Town with a Census Ranking of 1,379 of 5,008 and an Area km 2 smaller than 8.35?",1 -29459,"How many goals for had a drawn more than 12 for the Goole Town team, as well as more than 60 goals against?",4 -29460,"What are the average goals for with a drawn higher than 7 and goals against less than 86, as well as more than 11 losses and more than 42 games played?",5 -29461,"What is the highest lost with a drawn more than 11, a position lower than 17 and more than 61 goals?",1 -29482,"Name the Points which has a Team of sportivo luqueño, and Wins larger than 1?",2 -29483,"Name the Wins which has Points smaller than 10, Losses smaller than 3, and a Scored of 11?",2 -29484,Please name the highest Conceded which has a Played smaller than 5?,1 -29485,Please name the Losses that has a Played smaller than 5?,1 -29486,Name the Scored which has a Position larger than 6?,3 -29487,What is the earliest week with an opponent of cincinnati bengals?,2 -29488,"What is the sum for the week with the date october 30, 1994?",4 -29490,What is the biggest week with an opponent of washington redskins?,1 -29500,what is the least tournaments played when the year is 1998?,2 -29501,"what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?",4 -29503,how many times is the money list rank 221 and cuts more than 2?,3 -29504,what is the earliest year with the best finish t-65?,2 -29505,what is the average tournaments played when cuts made is 14?,5 -29506,What is the earliest date of taking office for district 22?,2 -29507,What district has a democratic leader from Roby?,4 -29508,What is the district where Steve Carriker is the Democratic Senator and he took office later than 1988?,1 -29509,How many series originally aired before 1999 with more than 7 episodes and a DVD Region 1 release date of 16 april 2013?,3 -29510,What's the latest original air date with more than 10 episodes and a DVD Region 2 release date of 23 april 2012?,1 -29511,What was the original air date of series number 10?,5 -29512,What's the sum of the number of episodes that originally aired after 1991 with a series number smaller than 21 and a DVD Region 2 release date of 26 march 2012?,4 -29513,What's the lowest series number that originally aired before 2009 with more than 7 episodes and had a DVD Region 2 release date of 26 july 2004?,2 -29514,What is the total of bronze that has more silvers than 2?,3 -29515,What is the total of Golds with more bronzes than 1 and totaled larger than 4?,3 -29516,What is the least total that had more Bronzes than 1 and more silvers than 2?,2 -29517,"What is the least total that has fewer golds than 2, a higher rank than 4 and fewer bronzes than 1?",2 -29518,What is the lest amount of bronzes that ranked 2 and has less silvers than 0?,2 -29519,"How many Total(s) are there, when the number of Bronze is greater than 13, when the Rank is 8, and when the number of Silver is less than 11?",3 -29521,"What is the highest number of Silver, when the Nation is Japan (JPN), and when the Total is greater than 37?",1 -29522,"What is the lowest number of Gold, when the number of Bronze is less than 36, when the Rank is 2, and when Silver is less than 37?",2 -29541,what is the least tonnage grt when the nationality is british and the ship is kidalton?,2 -29544,"Can you tell me the total number of Season that has the Team 2 of chonburi, and the Score of 0:1?",3 -29546,"How much To par has a Place of t1, and a Score of 70-70-71-71=282?",3 -29547,What is tony lema's to par?,4 -29549,What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6?,3 -29551,What is the lowest score for a year before 2008 and had 3rd place?,2 -29552,What was the latest year placement for Taboo with a score smaller than 96.125?,1 -29558,"Can you tell me the highest DCSF number that has the Name of field, and the Ofsted number larger than 117160?",1 -29559,"Can you tell me the sum of Intake that has the Faith of rc, and the DCSF number larger than 2428?",4 -29561,"Can you tell me the highest Ofsted number that has the Type of infants, and the Intake larger than 60?",1 -29562,"What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070?",3 -29564,"What is the lowest Week, when Attendance is 38,624?",2 -29565,"How much international mail has a change of +35,7% later than 2008?",4 -29566,"How much international mail has 4,650 international freight and more than 0 domestic mail?",4 -29567,"What is the most domestic freight with a change of +9,8% and a total freight and mail of more than 3,278?",1 -29568,"How much international freight has a change of +0,2% with more than 0 international mail?",3 -29569,"What is the international mail with the highest number that has a change of +0,2% and less than 0 domestic mail?",1 -29570,"What is the international mail with the lowest number to have less than 72 domestic freight, 0 domestic mail later than 2012 with total freight and mail more than 4,695?",2 -29575,What is the highest week for a game that was located at the Molson Stadium?,1 -29576,"What is the average week number for games that had 28,800 fans in attendance?",5 -29580,"What is the highest value for Ties, when Losses is less than 8?",1 -29581,"What is the total number of Losses, when Ties is 2, and when Wins is greater than 8?",3 -29582,What is the highest React that has a 7.61 Mark and a heat bigger than 1?,1 -29598,Name the average Top 5 which has a Position of 52nd with a Year smaller than 2000?,5 -29599,Name the average Wins which has a Top 10 smaller than 0?,5 -29610,"How many Assists have a Club of adler mannheim, and Points larger than 57?",4 -29611,How many points have 41 assists?,4 -29612,"Which Goals have a Player of david mcllwain, and Games larger than 52?",1 -29622,"What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc?",4 -29624,What is the Height (ft) of the Churchill House with a Height (m) less than 59?,3 -29625,What is the Height of the Canterbury House with 12 Floors and a Rank of 75=?,5 -29626,What is the Height (m) of the 32= Rank Building with 18 Floors and Height (ft) greater than 171?,5 -29627,"Total for 1994, 1997 years won?",4 -29629,Average total for jim furyk?,5 -29632,What is Nelspruit's population?,3 -29635,What were the average laps on a grid of 11?,5 -29637,Which game had a record of 45-16?,5 -29639,What is the largest 1st LBSC number with a LBSC Name of northcote?,1 -29642,"What is the round number when the opponent was Wrexham, and the venue shows as Away?",3 -29643,"what is the lowest position when the name is esv türkheim, and Drawn more than 0?",2 -29644,what is the highest drawn when played is more than 14?,1 -29645,what is the least drawn when the name is sv apfeldorf and the position is more than 8?,2 -29655,What is the highest round a fight lasted against masutatsu yano?,1 -29686,"WHAT SEASON HAD A SEASON FINALE OF MAY 21, 1989 AND WAS VIEWED BY 17.98 MILLION HOUSEHOLDS?",1 -29690,How many picks does Auburn have?,3 -29695,"What is the highest Year, when Opponent is #2 Syracuse?",1 -29697,"What is the sum of Year, when Opponent is #3 UCONN?",4 -29711,"What is the least ties when they played less than 14 games, and a lost less than 8 of them?",2 -29712,What is the lowest number of games played where they tied more than 7 of them?,2 -29713,"What is the highest Against where they lost less than 20 games, tied more than 2 of them, and they had Favour less than 11?",1 -29715,"What is the latest year rafael nadal was in the French Open, Roger Federer was in Wimbledon, and Roger Federer was in the Australian Open?",1 -29716,What is the total number of years Andy Murray was at Wimbledon?,3 -29718,What is the highest loss with a long more than 61?,1 -29719,What is the long with a loss lower than 133 and more than 0 gain with an avg/G of 29.8?,5 -29720,"What is the lowest long with an avg/G more than -2.2 and a total name and a gain of more than 2,488?",2 -29721,"What is the lowest avg/G with a gain more than 1,290 and more than 292 loss?",2 -29740,"What was the earliest year that a structure was located in gray court, south carolina?",2 -29762,What is the 2006 sum with a rank 1 and more than 6758845 in 1996?,4 -29763,"What is the total number in 2006, which has an official foundation of municipality of 1918?",3 -29764,"What is teh average rank of the city of mashhad, which had less than 667770 in 1976?",5 -29765,"What is the average rank of the province alborz, which had more than 14526 in 1956?",5 -29772,What was Herdez Competition's total points with a grid larger than 1?,3 -29773,What was the highest lap count for Walker Racing with a grid larger than 15?,1 -29781,Which Game has a Record of 27–30?,4 -29789,what is the goals against when the points is 43 and draws is more than 9?,5 -29790,"what is the goals when the goal difference is more than -3, the club is real avilés cf and the goals against is more than 60?",4 -29791,"what is the least draws when the position is lower than 5, the points is 62 and played is more than 38?",2 -29792,what is the played when the wins is 21 and the positions is higher than 3?,4 -29793,"What is the sum of Week, when Date is December 2, 2001?",4 -29794,"What is the total number of Week, when Opponent is At Cleveland Browns?",3 -29804,"What was the lowest week at Ralph Wilson Stadium on October 7, 2001?",2 -29805,"What is the sum of To Par, when Player is ""Bob Rosburg""?",4 -29806,"What is the total number of To Par, when Score is ""70-75-76=221""?",3 -29812,"How much Overall has a Position of ot, and a Round larger than 5?",3 -29827,"Which Laps have a Time of +23.002, and a Grid smaller than 11?",5 -29829,"Which Grid that has a Rider of mike di meglio, and Laps larger than 23?",5 -29839,How many laps did ben spies do on the grid less than 7?,3 -29840,which grid did less than 20 laps in a time of +58.353?,2 -29868,How many games had a record of 16-17?,3 -29870,How many seats does leader Raymond McCartney have?,4 -29879,Which Position has a best 3-year period of petrosian?,1 -29883,"What is the sum of Game(s), when High Rebounds is ""Pierson (6)""?",4 -29884,How many Laps did Bob Wollek have?,5 -29888,How many Laps does GP Motorsport Team have?,4 -29891,"Name the highest Ends Lost which has an Shot % larger than 78, and a Ends Won smaller than 38?",1 -29893,Name the average Stolen Ends which has an Ends Lost smaller than 35?,5 -29894,"Name the average Blank Ends which has a Shot % smaller than 78, and a Ends Won larger than 43?",5 -29898,"How many ranks have $1,084,439,099 as the worldwide gross?",4 -29900,What is the lowest 1971 number of the Macedonian population with a 2002 value greater than 133 and a 1991 value less than 171?,2 -29901,What is the total 1961 number of the plandište Macedonian population with a 1981 value greater than 1027?,3 -29902,What is the 1961 total of the Macedonian population with a 1971 number of 3325 and a 1991 value greater than 3177?,3 -29909,"When the mark is 8.54, the reaction time was over 0.23800000000000002 seconds, what's the highest amount of points recorded?",1 -29911,If a country has 1008 points what's their reaction time?,1 -29920,"What is the average December, when Game is ""36""?",5 -29921,"What is the lowest Game, when December is greater than 13, and when Score is ""5 - 0""?",2 -29922,"What is the sum of December, when Game is greater than 31, and when Score is ""5 - 2""?",4 -29926,"Can you tell me the highest Total votes that has the % of popular vote of 0.86%, and the # of seats won larger than 0?",1 -29927,Can you tell me the average Total votes that has the # of seats won smaller than 0?,5 -29928,"Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61?",3 -29932,"Which Laps have a Grid larger than 8, and a Rider of anthony west?",1 -29934,"Which Grid is the highest one that has a Rider of colin edwards, and Laps smaller than 28?",1 -29935,Which Laps have a Rider of andrea dovizioso?,2 -29937,What round of the draft was Stan Adams selected?,5 -29942,"Which Games lost has Points against of 61, and Points difference smaller than 42?",4 -29943,"Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152?",3 -29948,"Which Attendance has a Date of december 22, 1985, and a Week smaller than 16?",4 -29949,"Which Attendance has a Result of w 23-21, and a Week smaller than 5?",5 -29950,Which Week has a Result of w 20-13?,5 -29965,"What is the total number of goals that have games under 11, debut round over 15, and age of 20 years, 71 days?",3 -29971,What is the scored figure when the result is 40-22?,4 -29973,What is the smallest scored with a result of 46-18?,2 -29974,What is the average number of goals with 21 games for a debut round less than 1?,5 -29976,What is the Jersey Number of the Player from Clemson?,4 -29981,"What is the littlest round that has Matt Delahey, and a greater than 112 pick?",2 -29982,"What is the average PUBS 11 value in Mumbai, which has a 07-11 totals less than 1025?",5 -29983,What is the lowest 06-10 totals with a pubs 2010 of 68 and a 07-11 totals larger than 305?,2 -29992,"What is the lowest year for stage 12, category 1?",2 -30000,What is richard virenque's lowest rank?,2 -30035,How many totals had a silver larger than 2?,3 -30036,What was the average bronze when gold was larger than 1 and silver was larger than 2?,5 -30060,"What was the Attendance on September 26, 1971?",5 -30064,What is the year for the country of Morocco?,1 -30065,What is the year for the United Arab Emirates?,3 -30066,What year was the Mercury City Tower?,2 -30069,What is the highest capacity that has serie c2/c champions for the 2007-08 season?,1 -30070,What is the average capacity that has foligno as the city?,5 -30071,What is the highest capacity that has stadio marcello torre as the stadium?,1 -30080,What game number was the first game played at the Summit this season?,2 -30086,"What is the highest To Par, when Year(s) Won is ""1962 , 1967""?",1 -30088,What is the highest number of artists on Scarface?,1 -30089,What is the average number for Black Milk?,5 -30090,What is the lowest average for number 2?,2 -30091,What is the highest score for Black Milk?,1 -30095,"What is the average Games, when Player is Robert Hock, and when Goals is less than 24?",5 -30096,"What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44?",5 -30097,"What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56?",5 -30105,"What is the sum of Round, when Record is ""19-25-5""?",4 -30111,What is the total number of rounds that had Jason Missiaen?,3 -30119,How many picks had a round smaller than 6 and an overall bigger than 153?,4 -30120,What was the attendance on 31 January 2009 when the opponent was Airdrie United?,5 -30123,What is the average attendance for all events held at Palmerston Park venue?,5 -30124,"What is the total number of t (µm), when Technology is u c-si?",3 -30126,"What is the sum of t (µm), when Technology is MJ?",4 -30137,What is the least passengers from the Dallas/Fort Worth International (DFW) airport?,2 -30139,"What is the total rank of the airport that has 79,290 passengers?",3 -30147,"What is the average Attendance, when Date is 1 October 1998?",5 -30161,How many years have an Opponent in the final of welby van horn?,4 -30169,"What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1?",5 -30170,"What is the average Total, when Nation is Soviet Union, and when Gold is greater than 9?",5 -30171,"What is the total number of Bronze, when Silver is greater than 0, when Gold is greater than 3, and when Rank is 1?",3 -30172,"What is the highest Bronze, when Total is less than 3, and when Silver is less than 0?",1 -30173,"What is the average Total, when Silver is greater than 4, and when Gold is greater than 16?",5 -30174,"What is the sum of Silver, when Total is less than 1?",4 -30188,"How many Laps have Grid larger than 14, and a Rider of sylvain guintoli?",3 -30189,"Which Grid has Laps of 24, and a Rider of marco melandri?",4 -30190,"Which Grid has Laps smaller than 24, and a Time of retirement?",2 -30191,"Which Grid has a Rider of randy de puniet, and Laps smaller than 24?",1 -30200,What is the fame number when the Montreal Canadiens were the opponent?,3 -30202,What is the average oveall pick for players from the college of Miami (FL)?,5 -30204,What is the lowest overall draft pick number for terry daniels who was picked in round 10?,2 -30205,What is the sum of the rounds where the draft pick came from the college of tennessee and had an overall pick number bigger than 153 and a pick less than 14?,4 -30207,What is the overall pick number for the player who was picked on round 8?,2 -30214,What is the attendance when Pittsburgh is the home team?,5 -30215,"What was the Attendance after Week 4 on October 10, 1971?",5 -30216,What was the Attendance in the game against the New Orleans Saints?,3 -30231,What pick number was the rhp with a hometown/school of university of hawaii?,2 -30236,What is the average number of draws that has a played entry of less than 30 and a goal difference greater than 2?,5 -30237,"What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses?",5 -30238,What is the total of the goal difference entries for entries with fewer than 49 goals and position smaller than 8?,3 -30239,What is the lowest played for the entry with position of 2 and fewer than 9 losses?,2 -30240,What is the total number of losses for entries that have 12 wins and a goal difference smaller than -14?,3 -30242,What are the fewest ends with an App(L/C/E) of 51 (44/6/1)?,2 -30245,How many times was the reader's vote na and the lifetime achievement na?,3 -30252,What was the game number when record is 59-15?,2 -30254,"What is the sum of Pick #, when College is Laurier?",4 -30256,"What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats?",2 -30265,What is the highest rank of a building erected in 1976 with fewer than 21 floors?,1 -30267,"What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17?",5 -30268,"What is the number of the game when the opponent was the New York Islanders, and a February less than 24?",4 -30269,What is the lowest game number when the record was 26-24-9?,2 -30271,What's the silver for rank 1 with less than 2 bronze?,2 -30272,What's the lowest total when there's less than 16 bronze and more than 6 silver?,2 -30273,What's the lowest gold with a total over 15 and less than 16 silver?,2 -30274,"Which Gold has a Rank of 7, a Nation of italy, and a Silver smaller than 0?",3 -30275,"Which Gold has a Total larger than 3, a Rank of total, and a Silver larger than 8?",5 -30295,What is the average game number that was on october 19?,5 -30296,"What is the sum of October, when Opponent is ""Pittsburgh Penguins""?",4 -30297,"What is the sum of Game, when Record is ""2-1-1"", and when October is less than 21?",4 -30307,What's the rank average when the gold medals are less than 0?,5 -30308,What is the total rank of Hungary (HUN) when the bronze medals were less than 0?,4 -30309,What is the sum of the total number of medals when silver is less than 0?,3 -30323,"What is the total population of American Samoa (US) that has less than 16,280 km² arable land, less than 240 km² land area, and has a population density of more than 291?",3 -30324,"What's the arable land for the population of 20,090,437?",1 -30325,What is the land area of Switzerland with a population density fewer than 188 km²?,5 -30333,"What is the sum of Gold, when Silver is greater than 6, when Rank is 1, and when Bronze is less than 61?",4 -30334,"What is the lowest Silver, when Bronze is 1, and when Total is less than 3?",2 -30335,"What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3?",5 -30337,What is the grid average with a +1 lap time and more than 27 laps?,5 -30341,What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen?,4 -30342,What is the Year of submission of the Film The Art of Crying?,2 -30354,Lowest pick for mike flater?,2 -30367,What was the Attendance on Week 9?,1 -30391,Which Against has a Date of 28 january 1950?,5 -30392,"What is the total number of years wehre anna thompson had a 3rd place result at edinburgh, scotland?",3 -30394,"What is the average year that anna thompson had an 8th place result in team competition at the world cross country championships in st etienne, france with",5 -30395,What is the total matches in 2002 where points won is larger than 1.5 and the points % is smaller than 50?,1 -30396,WHAT IS THE LOSS WITH AN AVERAGE OF 89.9?,4 -30397,"WHAT IS THE NUMBER OF LOSSES WITH A LONG SMALLER THAN 24, AND GAIN BIGGER THAN 116?",3 -30398,How many rounds did Brett go against Kevin Asplund?,3 -30400,"What is the Average relative annual growth (%) for the country that ranks 41 and has a July 1, 2013 projection larger than 2,204,000?",3 -30407,"Which PD per game has a Rank smaller than 4, a Winning % of 78.6%, a Streak of w1, and a PA per game smaller than 81.5?",2 -30408,"Which Loss has a Last 5 of 4-1, a Streak of w2, and a PA per game smaller than 88.43?",5 -30410,"Which Played has a PD per game larger than 6.28, and a Loss smaller than 4?",2 -30411,Which PF per game has a Rank of 5?,2 -30415,"What is the total number of Area (km²), when Population (2007) is 6,176?",3 -30416,"What is the average Population (2010), when Population (2007) is 4,875, and when Area (km²) is greater than 1.456?",5 -30426,what is the highest money ($) for bernhard langer?,1 -30435,"What is the lowest Total, when Year(s) Won is ""1968 , 1971"", and when To Par is less than 11?",2 -30436,"What is the lowest To Par, when Player is ""Johnny Miller""?",2 -30438,"What is the sum of To Par, when Year(s) Won is ""1978 , 1985""?",4 -30472,With a Season premiere of 23 july 2008 this show has what as the average episode?,5 -30474,What is the most recent year founded that has a nickname of bruins?,1 -30475,"What is the most recent year founded with an enrollment of 42,708?",1 -30484,Name the lowest Crowd of hisense arena on 8 february?,2 -30486,"What is the lowest Year, when Venue is Rio De Janeiro, Brazil?",2 -30488,What is the latest date in March when the opponent was the Boston Bruins and the game number was smaller than 66?,1 -30490,What was the pole for a race lower than 16 with a Flap higher than 8 and a podium higher than 11?,5 -30491,How many podiums had a race higher than 14 in 1996 and a Flap lower than 9?,3 -30492,"How many races had 4 podiums, 5 poles and more than 3 Flaps?",4 -30493,What are the fewest podiums in 2005 with fewer than 0 poles?,2 -30496,How much total has a To par of +9?,3 -30497,"Which Total has a Country of united states, and a Player of andy north?",5 -30498,"What is the highest grid for Aprilia vehicles, laps over 5, and a retirement finish?",1 -30499,What is the average laps completed by riders with times of +2:11.524?,5 -30501,What is the average grid for vehicles manufactured by Aprilia and having run more than 16 laps?,5 -30508,HOW MANY SILVER METALS DOES SOUTH KOREA HAVE WITH 2 GOLD METALS?,1 -30509,"WHAT COUNTRY HAS THE HIGHEST BRONZE COUNT, MORE THAN 1 SILVER METAL, AND LESS THAN 1ST PLACE?",1 -30510,"What is the average 4th-Place, when Runners-Up is less than 1, when Club is ""Tanjong Pagar United FC"", and when 3rd-Place is greater than 0?",5 -30511,"What is the highest Runners-Up, when Champions is less than 0?",1 -30512,"What is the average Runners-Up, when 4th-Place is greater than 1, and when Champions is ""2""?",5 -30513,"What is the sum of Runners-Up, when Champions is greater than 5?",4 -30514,"What is the highest 3rd-Place, when Club is ""Home United FC"", and when 4th-Place is less than 1?",1 -30515,What is the total medals for nation with more than 0 silvers and more than 0 golds?,5 -30516,"What is the fewest gold medals for a team with fewer than 1 silver, more than 1 bronze and a total less than 4?",2 -30517,"What is the smallest rank when there are fewer than 1 silver, 4 golds and less than 0 bronze?",2 -30518,"How many gold medals for a nation with rank less than 5, more than 0 silvers and a total of 2 medals?",5 -30519,What is the total for the team with more than 2 golds and more than 0 bronze?,4 -30521,Which manufacturer of aprilia wth time of +1:36.557 has the highest lap?,1 -30523,What is the total of laps with grid of 2,4 -30524,"What is the lowest grid with time of +0.499,when laps are larger than 21?",2 -30525,What is the total laps when manufacturer of gilera has time of 40:19.910 and grid is larger than 3?,4 -30526,"What is the average 1st Throw, when Result is less than 728, when 3rd Throw is ""1"", when Equation is ""0 × 9² + 0 × 9 + 0"", and when 2nd Throw is greater than 1?",5 -30527,"What is the sum of 3rd Throw, when Result is greater than 546, and when 1st Throw is less than 9?",4 -30528,"What is the total number of Result, when 2nd Throw is ""2"", and when 1st Throw is less than ""4""?",3 -30530,what is the rank when the time is 3:12.40?,4 -30531,what is the rank when the heat is more than 4?,4 -30537,What game ended with a final score of 126-108?,1 -30539,"How many people tuned in to the finale on May 16, 2007?",3 -30541,What was the total score where Toronto was played?,4 -30551,The K-1 MMA Romanex event went how many rounds?,3 -30559,Which is the highest silver that has a gold less than 0?,1 -30560,"What is the lowest silver that has 1 as the rank, with a bronze greater than 5?",2 -30561,"What is the highest silver that has 9 as the rank, germany as the nation, with a gold less than 0?",1 -30566,"Which the highest Round has a Player of mike williams, and a Pick # larger than 4?",1 -30567,Name the average Pick # of mike williams?,5 -30572,The player Cecil Martin with an overall less than 268 has what total pick?,4 -30573,With the pick of 1 Cecil Martin has what number as the overall?,3 -30581,What is the sum of the years with bus conner as the BSU head coach?,4 -30592,"What is the pick of Charley Taylor, who has an overall greater than 3?",4 -30594,What is the average round of the s position player from the college of Mississippi and has an overall less than 214?,5 -30595,What is the total round of the rb player from Purdue with a pick less than 3?,3 -30597,How many Silver medals did the Nation of Croatia receive with a Total medal of more than 1?,2 -30598,How many Gold medals did Australia receive?,5 -30599,How many Total medals did the country with 16 Silver and less than 32 Bronze receive?,2 -30600,How many Bronze medals for the Nation with a Rank of 11 and less than 1 Silver?,2 -30601,"What is the average Episode Number, when Original Airdate is March 21, 2010, and when Season is less than 3?",5 -30603,"What is the total number of Season(s), when Original Airdate is January 24, 1999, and when Year is less than 1999?",3 -30604,"How many games have a Result of l, and a Record of 2-6?",3 -30605,How many people attended the green bay packers game?,4 -30608,Lowest round for g that was smaller than 31?,2 -30611,"What is the total number of assists of the player with 0 goals, more than 1 points, and more than 0 pims?",3 -30613,"How many Neutral Wins have Home Losses larger than 2, and a Loss of 7, and an Away Wins larger than 3?",3 -30614,"How many Away Losses have Home Losses larger than 3, and Wins smaller than 5?",3 -30615,"Which Home Wins have Neutral Wins of 1, and Neutral Losses smaller than 0?",5 -30616,"Which Wins is the lowest one that has Home Losses larger than 3, and Neutral Losses smaller than 0?",2 -30629,What is the rank of Club Valencia with a U-17 Caps of 20?,3 -30639,What is the diameter for 1997 when longitude is 212.0e and latitude is 47.0n?,2 -30641,What's the diameter when longitude is 105.0e before 2003?,4 -30642,What's the average year for the name aida-wedo dorsa with a diameter less than 450?,5 -30643,What's the total diameter when longitude is 357.8e later than 1985?,3 -30644,"what is the average 65 to 69 when the oblast\age is belgorod and 40 to 44 is more than 1,906?",5 -30645,"what is the average 60 to 64 when 50 to 54 is less than 2,054, 35 to 39 is more than 1,704, 30 to 34 is less than 1,381 and oblast\age is evenkia?",5 -30646,"How many times is 55 to 59 less than 1,677, oblast\age is gorod moscow and 50 to 54 is more than 1,562?",3 -30647,"what is the average c/w 15+ when 18 to 19 is 132 and 65 to 69 is more than 1,869?",5 -30648,In what year was Lesli Margherita nominated?,4 -30659,"What is the lowest Finished, when Post is less than 2?",2 -30663,"What is the total number of Post, when Trainer is ""Steve Asmussen"", and when Time/ Behind is 19 ½?",3 -30678,"Which Goals Against has a Drawn larger than 9, a Lost larger than 15, a Position of 24, and a Played smaller than 46?",5 -30679,"Which Points 2 has Drawn of 15, a Position larger than 20, and a Goals For smaller than 45?",4 -30680,"Which Goals For has a Position larger than 2, a Lost larger than 18, a Team of matlock town, and a Goals Against larger than 79?",1 -30681,"Which Points 2 has a Goal Average 1 larger than 1.17, a Goals Against larger than 48, and a Position larger than 6?",4 -30686,What is the lowest round that a pick had a position of ls?,2 -30687,What was the sum of the rounds for the player who had a position of LS and an overall draft pick bigger than 230?,4 -30689,How many were in Attendance on October 8?,3 -30690,"In what Game was the Attendance more than 45,718 with a Time of 2:55?",3 -30694,What are the average spectators from the Group H Round?,5 -30696,"Can you tell me the highest Grid that has the Time of +15.532, and the Laps larger than 23?",1 -30697,"Can you tell me the sum of Grid that has the Time of +6.355, and the Laps larger than 23?",4 -30699,"What is the total number of Round(s), when Time is ""N/A"", when Location is ""Alabama , United States"", and when Record is ""1-2-0""?",3 -30705,How many rounds had a race name of anglia tv trophy?,3 -30710,What is the highest amount of money a player with a score of 69-71-71-73=284 has?,1 -30714,What is the lowest score that wes ellis got?,2 -30718,What game was played at Philadelphia?,5 -30719,"What is the sum of share with a rating larger than 1.2, a 3 rank timeslot, and 6.07 million viewers?",4 -30720,"What is the average week rank with 1.2 ratings, less than 1.94 million viewers, and a night rank less than 11?",5 -30721,what is the round when the college is syracuse and the pick is less than 3?,5 -30723,what is the pick when the college is arkansas and the overall is more than 316?,1 -30724,what is the lowest overall when the pick is less than 2?,2 -30725,what is the round when the college is north carolina and the overall is more than 124?,4 -30729,"November 25, 2001 was what week of the season?",3 -30731,Which Built has a Builder of brel crewe?,5 -30743,"Which Overall has a Position of te, and a Round larger than 5?",5 -30748,What is the total score for the 36 arrow finals event?,3 -30767,"WHAT IS THE PICK FOR JOE DAY, ROUND LARGER THAN 1, AND OVERALL SMALLER THAN 150?",2 -30768,"WHAT IS THE SUM OF PICK WITH AN OVERALL LARGER THAN 250, AND FOR FLORIDA COLLEGE?",4 -30774,What's the most races with less than 10 podiums and 1st position?,1 -30775,How many runs did mahela jayawardene and thilan samaraweera have?,4 -30784,What was the overall pick number of the player selected before round 3?,3 -30786,what is the least bronze when the rank is 3 and silver is less than 2?,2 -30787,what is the total when bronze is 0 and the nation is hungary?,1 -30788,what is the total when the rank is 7 and gold is more than 0?,5 -30789,what is the highest gold when the nation is total and the total is less than 24?,1 -30794,What was the attendance of the match with motagua as the home team?,5 -30801,What is the fewest goals of CD Alcoyano with more than 25 points?,2 -30802,What is the fewest number of wins that had fewer than 7 draws and more than 30 played?,2 -30803,What is the fewest points that has more than 29 goals?,2 -30804,What date have highest 0-4-4 forney locomotive with number larger than 20 and works number larger than 23754?,1 -30805,"What is the sum of number with type 0-4-4 forney locomotive, number smaller than 20 and works number of 1251?",3 -30806,What was the lowest attendance for the game that had a time of 3:31 and was before game 7?,2 -30807,What was the sum of attendance for games with a time of 3:23?,4 -30808,WHat is the lowest amount of bronze medals for teams with 9 silvers and less than 27 points?,2 -30831,What is the average round for the TKO (punches and elbows) method?,5 -30842,"What is the heat number at 7.63, and a reaction less than 0.229?",3 -30849,What is the average attendance for matches where the home team was vida?,5 -30851,What is the sum of the attendance where the score was 1:1?,4 -30883,What is the highest position of the team having played under 10 matches?,1 -30884,What is the total number of played values for teams with more than 14 points and more than 1 draw?,3 -30885,"What is the total number of positions having points over 2, more than 4 losses, and under 10 matches played?",3 -30886,"WHich Televotes has a Performer of biljana dodeva, and a Draw larger than 10?",2 -30887,"Name the highest Draw which has a Rank of 14, and a Televotes larger than 908?",1 -30888,Name the lowest Televotes which has monika sokolovska and a Rank larger than 15?,2 -30889,Name the lowest Draw which has a Performer of kaliopi and a Televotes larger than 3834?,2 -30896,"What is the lowest interview score for Missouri, where the swimsuit score was highter than 9.433?",2 -30897,What is the sum of Preliminary scores where the interview score is 9.654 and the average score is lower than 9.733?,4 -30898,What is the sum of Swimsuit scores where the average score is 9.733 and the interview score is higher than 9.654?,4 -30899,What is the sum of Evening Gown scores where the swimsuit score is higher than 9.4 and the average score is lower than 9.733?,4 -30900,What is the lowest average score where the evening gown score was 8.811?,2 -30901,"For a team with a goals against less than 58, a position of 10, and a points 2 more than 53, what is the average lost?",5 -30902,"For a team having goals for more than 95, what is the lowest position?",2 -30910,What was the average rank for south africa when they had more than 8 silver medals?,5 -30911,What is the average number of gold medals the netherlands got when they had more than 4 bronze medals?,5 -30912,What is the sum of the gold medals for the nation of Great britain who had more than 8 silvers and a total of less than 61 medals?,4 -30913,What is the highest number of bronze medals that israel acheived when they got less than 3 silver medals?,1 -30914,What is the total number of gold medals when the team got 2 bronze and more than 5 silver medals?,3 -30919,"What is the total number of Field Goal %, when Free Throw % is greater than 0.5, when Rebounds is 159, and when Points Per Game is less than 7.1?",3 -30920,"What is the lowest Minutes Played Per Game, when Rebounds is less than 347, when Assists is greater than 5, and when Minutes Played is less than 301?",2 -30921,"What is the lowest Minutes Played, when Rebounds is 25, and when Field Goal % is less than ""0.315""?",2 -30922,"What is the average Rebounds, when Minutes Played is ""113"", and when Games Played is greater than ""18""?",5 -30927,What is the highest number of laps that max biaggi rode on a grid larger than 2?,1 -30928,What is the highest grid that tetsuya harada rode in?,1 -30929,What is the average number of laps that were made when the race took a time of +48.325?,5 -30930,What is the total number of laps during the race that had a time of +9.682?,3 -30931,"What is the highest Pick, when College is ""Syracuse"", and when Overall is less than 18?",1 -30937,W hat was the lowest Goals For when they played Team Goole Town and had a position lower than 9?,2 -30939,"When the Points 1 were 44 and the Goals For were larger than 65, what was the total number of Goals Against?",3 -30941,What is the highest diameter when the latitude is 43.5s?,1 -30960,What is the total attendance on April 25?,3 -30968,"What is the total number of Pick, when Round is greater than 1, and when Player is ""Jim Stack""?",3 -30969,"What is the lowest Round, when College is ""Washington State"", and when Pick is less than 48?",2 -30977,"What is the sum of All-Time, when Amateur Era is less than 0?",4 -30978,"What is the lowest All-Time, when First Title is before 1974, when Last Title is ""1933"", and when Amateur Era is greater than 2?",2 -30979,"What is the lowest All-Time, when First Title is ""2007, and when Amateur Era is greater than 0?",2 -30980,"What is the lowest First Title, when All-Time is greater than 1, when Country is ""United States (USA)"", and when Amateur Era is greater than 17?",2 -30992,What is the lowest pick number where the overall pick number was 38?,2 -30997,What is the lowest round of player chris burkett?,2 -30998,What is the average pick of school/club team kutztown state with a round 4?,5 -31000,What is the average number of matches of leonardo in seasons after 1?,5 -31001,What is the average membership with 3.33% LDS and less than 47 branches?,5 -31009,What year was Black Swan up for the Gotham Awards?,3 -31010,What is the earliest year in which Requiem for a Dream was in the running for Best Director?,2 -31013,Can you tell me the highest Game that has the Opponent of atlanta hawks?,1 -31022,What is the highest grid when the time is +45.162?,1 -31023,What is Fonsi Nieto's average grid when he's riding a Suzuki GSX-R1000?,5 -31024,How many grids did Shinichi Nakatomi ride in?,4 -31034,What is the sum of value for average finish with poles less than 0?,4 -31035,What is the average start with wins larger than 0 and 32nd position?,5 -31036,"What is the average SFC in lb/(lbf·h) for engines with an Effective exhaust velocity (m/s) larger than 29,553, and a SFC in g/(kN·s) of 17.1?",5 -31038,"what is the average specific impulse for engines that have a SFC in lb/(lbf·h) of 7.95, and a Effective exhaust velocity (m/s) larger than 4,423",5 -31072,What game was Minnesota the team?,3 -31083,What is the position when lost is less than 7?,5 -31084,"What is the largest drawn number when 14 is the position, and goals for is more than 66?",1 -31085,"What is the played number with points 1 is 80, and goals for is more than 77?",3 -31086,"What is the number of played when the position is less than 4, and the team is Witton Albion?",3 -31087,What is the position when the points 1 is 61?,4 -31090,How many values for Ofsted occurr at Chowbent Primary School?,3 -31091,"Which League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany lions men's ice hockey?",2 -31092,"How much Founded has a League championships larger than 0, and a Club of penn state nittany lions women's volleyball?",3 -31094,"What is the total when the Hindu is greater than 1,076, in the Jawa Barat province?",3 -31110,"What is the total number of Total(s), when Finish is ""T21"", and when To Par is greater than 23?",3 -31112,"What is the total number of To Par, when Player is ""Julius Boros"", and when Total is greater than 295?",3 -31113,"What is the total number of To Par, when Total is ""295""?",3 -31114,"What is the lowest Total, when Year(s) Won is ""1948 , 1950 , 1951 , 1953""?",2 -31115,"What is the sum of Year, when Role is ""himself"", and when Notes is ""celebrity guest alongside yg family""?",4 -31116,"What is the highest Year, when Notes is ""Celebrity Guest Alongside YG Family""?",1 -31118,"What is the sum of Year, when Title is ""Mnet Director's Cut""?",4 -31124,what is 2011 when the rank is less than 8 and the water park is ocean world?,4 -31125,"what is the lowest 2011 for sunway lagoon water park and 2012 is less than 1,200,000?",2 -31147,Which Points have a Time/Retired of +49.222 secs?,1 -31148,What are grid 4's average points?,5 -31150,What is the earliest year Stuart Janney III was an owner?,2 -31162,"If the player is Corey Pavin when he had a To par of over 7, what was the sum of his totals?",4 -31163,What is the round for the ufc on fox: velasquez vs. dos santos event?,5 -31171,"What is the average Bronze, when Nation is ""North Korea"", and when Total is greater than 5?",5 -31172,"What is the lowest Bronze, when Total is greater than 10, when Silver is greater than 0, and when Rank is ""Total""?",2 -31179,"How many years have a Women's Open of brisbane city cobras def sydney mets, and a Men's 35 of n/A?",3 -31186,"What is the lowest Year, when Notes is ""Spanish adaptation of ""Hope There's Someone.""""?",2 -31191,What is the most league cup goals for David Beresford having less than 0 FA Cup Goals?,1 -31192,What is the league goals when the league cup goals is less than 0 and 16 (1) league apps?,5 -31195,"What is the lowest FA cup with 1 league cup, less than 12 total and 1 premier league?",2 -31196,"What is the highest league cup with more than 0 FA cups, a premier league less than 34 and a total of 11?",1 -31197,"What is the average total of kenwyne jones, who has more than 10 premier leagues?",5 -31198,"What is the highest league cup of danny collins, who has more than 1 premier league?",1 -31203,"What is the average Area (in km²), when Markatal is less than 0?",5 -31204,"What is the highest Markatal, when Municipality is Leirvík, and when Inhabitants Per Km² is greater than 79?",1 -31205,"What is the sum of Population, when Markatal is greater than 48, when Inhabitants Per Km² is greater than 24, and when Municipality is Runavík?",4 -31206,"What is the sum of Markatal, when Inhabitants Per Km² is less than 13, and when Area (in Km²) is 27?",4 -31207,"How many seasons have Losses larger than 1, and a Competition of fiba europe cup, and Wins smaller than 4?",3 -31208,"How many Wins have Losses larger than 2, and an Against of 73.3?",4 -31209,In what Year was the Game on September 26?,4 -31211,In what Year was the Result of the game 16-14?,1 -31212,What Year had a Result of 34-25?,5 -31216,"What is the highest Position, when Pilot is ""Mario Kiessling""?",1 -31217,"What is the average Position, when Speed is ""143.5km/h""?",5 -31243,Average frequency with ERP W of 62?,5 -31244,Total frequency with ERP W of 62?,3 -31247,how many subdivisions have an English Name of jiyang?,3 -31248,What is the Population of the subdivision with the English Name of nanbin farm?,2 -31264,What is the medal total of Denmark?,3 -31268,"WHAT IS THE DRAW FOR u ritmu ljubavi, POINTS LARGER THAN 87?",1 -31270,What is the game number when the record is 30-22?,5 -31273,What is the highest number of games with more than 0 draws and 11 losses?,1 -31280,"What's the lowest squad number with more than 6 goals, fewer than 8 league goals, and more than 0 playoff goals?",2 -31281,"How many total goals did the squad with 2 playoff apps, 2 FA Cup Apps, and 0 League Cup goals get?",4 -31291,"What are the total number of podiums for more than 4 laps, and less than 149 races?",3 -31292,What was the score for the golfer from the country of fiji?,3 -31293,What was the score of the golfer from the united states who had a To par of e?,4 -31300,What is the average game that has December 6 as the date?,5 -31301,What is the average game that has December 17 as the date?,5 -31302,"Can you tell me the average Total that had the Silver of 0, and the Rank of 6, and the Gold smaller than 0?",5 -31303,"Can you tell me the highest Gold that has the Bronze larger than 3, and the Total smaller than 24?",1 -31304,"Can you tell me the highest Gold that has the Bronze smaller than 1, and the Total larger than 4?",1 -31305,"What is the number of nurses in the region with an HO : Population Ratio of 1:16,791?",5 -31306,What is the number of physicians in the region with an all nurses number of 91?,2 -31312,What is the lowest attendance when the Atlanta Falcons were the opponent?,2 -31328,What is the Points 2 average of teams that have played more than 46 games?,5 -31334,"What is the average value for Pick #, when Position is Linebacker, when Player is Bob Bruenig, and when Round is less than 3?",5 -31335,"What is the sum of Pick #, when Position is Guard, and when Round is greater than 2?",4 -31336,"What is the average Round, when Pick # is greater than 70, and when Position is Tackle?",5 -31337,"What is the lowest Round, when Position is Linebacker, and when Player is Thomas Henderson?",2 -31338,"What is the total number of Pick #, when College is Oklahoma, and when Round is less than 4?",3 -31340,What is umbro's highest capacity?,1 -31348,what total made has a percent made greater than 0.166 and a 3pm-a of 3-5,1 -31349,what is the total made with a 3pm-a of 5-5 and a total attempted less than 14,4 -31350,"what is the total series percent that has total attempted less than 49, and a percent made of 0.777",3 -31351,what is the total attempted with a total made 16,3 -31352,"What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier?",4 -31354,"What is the lowest Took Office, when Senator is Eddie Bernice Johnson, and when District is greater than 23?",2 -31363,"What is the highest neutral losses of the institution with 0 neutral wins, 0 home losses, and less than 0 away losses?",1 -31364,"What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins?",4 -31365,What is the highest number of home wins of the institution with 0 away losses and more than 6 wins?,1 -31366,"What is the highest number of neutral losses of the Florida State Seminoles, which has less than 5 away losses?",1 -31367,What is the highest number of wins of the institution with more than 0 neutral wins and less than 2 away wins?,1 -31370,What round was the method submission (punches)?,3 -31391,How many Goals For have Drawn of 10?,3 -31392,"Which Lost has Drawn larger than 12, and Goals Against of 54?",1 -31397,Which Round has a Pick of 25 (via hamilton)?,4 -31399,Which Round has a Player of sammy okpro?,5 -31415,"If the goals scored were below 6, 11 games were played, and there were 7 assists, what's the sum of points with games meeting these criteria?",4 -31416,What's the highest amount of Games recorded that have more than 10 assists?,1 -31451,What is the highest number of League Cup goals that were scored by Hartlepool?,1 -31457,What's the lap number for time/retired of +33.912?,3 -31458,Total laps for Shinya Nakano at smaller than 10 grids.,3 -31467,What is the Pick # of the Player from Southern MIssissippi?,3 -31469,In what Round does Duke have a Pick larger than 9?,3 -31470,In what Round was Tommy Norman picked?,1 -31487,WHAT IS THE POPULATION OF 2007 WHEN 2010 POPULATION WAS SMALLER THAN 1282?,3 -31488,What is the number of points when the played is less than 30?,3 -31489,"What is the number of goals when the goal difference was less than 43, and the position less than 3?",4 -31490,"What is the position when the points were less than 34, draws of 7, and a Club of sd eibar?",5 -31492,"What is the highest Goal Difference when the goals against were less than 76, and the position larger than 5, and a Played larger than 30?",1 -31494,What is the lowest block for director Graeme Harper?,2 -31496,"What is the lowest ends lost when the stolen ends for is less than 13, and stolten ends against is 6?",2 -31497,"What is the sum shot % when the country is finland, and an ends lost is larger than 49?",4 -31502,what is the year when the location is yankee stadium and the result is 23-23,5 -31503,"Which Scottish Cup has a League Cup of 95, and a Europe larger than 23?",2 -31504,"Which Total has a Name of eoin jess category:articles with hcards, and a Scottish Cup larger than 23?",2 -31505,"Which Total has a Name of alex mcleish category:articles with hcards, and a League smaller than 494?",5 -31506,Which League Cup has a Scottish Cup larger than 69?,4 -31507,"Which Scottish Cup has a League smaller than 561, Years of 1989–1995 1997–2001, and Europe smaller than 11?",3 -31508,"What is the highest pick of the houston oilers NFL club, which has a round greater than 10?",1 -31510,"What is the sum of the round of the new york jets NFL club, which has a pick less than 166?",4 -31542,How many ranks have assets of $70.74 billion and market value greater than $11.29 billion?,3 -31543,"What is the sum of revenue in Hong Kong with a rank greater than 42, less than $3.46 billion in assets, and greater than $0.17 billion in profits?",4 -31544,What is the sum of revenue for the banking industry with a Forbes 2000 rank under 53?,4 -31545,What is the highest number of gold medals when the silver is less than 0?,1 -31546,"What was the most Nepalis admitted when the number of Sri Lankans was more than 5,520, Bangladeshis was more than 2,715, and Pakistanis more than 139,574?",1 -31547,"What were the fewest number of Sri Lankans admitted when more than 4,270 Bangladeshis and more than 4,986 Pakistanis were admitted?",2 -31548,How many Sri Lankans were admitted in 2004 when more than 594 Nepalis were admitted?,4 -31549,"How many Bangladeshis were admitted when 714 Nepalis and 13,575 Pakistanis were admitted?",5 -31550,"What was the most Nepalis admitted when fewer than 1,896 Bangladeshis were admitted?",1 -31556,"WHAT IS THE OVERALL AVERAGE WITH A 22 PICK, FROM RICE COLLEGE, AND ROUND BIGGER THAN 10?",5 -31558,"WHAT IS THE AVERAGE OVERALL WITH A ROUND LARGER THAN 9, AND RB POSITION?",5 -31559,WHAT IS THE TOTAL NUMBER WITH A ROUND BIGGER THAN 7 AND PICK OF 21?,3 -31561,"What is the lowest Stls, when Rebs is greater than 8.6?",2 -31562,"What is the sum of Blks, when Stls is 1, and when Rebs is greater than 8.6?",4 -31565,What was the lowest pick for the kicker after round 12?,2 -31566,How many picks had less than 11 rounds and a player of Charley Casey?,4 -31567,How many rounds had a position of kicker?,4 -31570,What is the total attendance of the match with a 1:2 score?,3 -31572,What is the highest attendance of the match with a 2:0 score and vida as the away team?,1 -31575,"Which Seats up for election have an Election result larger than 8, and Staying councillors of 24?",1 -31576,Which New council has an Election result larger than 24?,5 -31577,"Which Staying councillors have a New council of 7, and a Previous council larger than 8?",5 -31584,"What is the sum of To Par, when Country is ""United States"", and when Year(s) Won is ""1973""?",4 -31601,"What is the sum of Points, when Home is ""Pittsburgh"", when Date is ""December 21"", and when Attendance is greater than 5,307?",4 -31602,"What is the lowest Points, when Home is ""Boston""?",2 -31609,"What is the lowest pole with a Flap larger than 5, and a before race 155?",2 -31610,What was Fred Couples' score?,3 -31612,What is the 2008 population in 함흥 (Ham Hyung)?,4 -31620,What was the lead margin when Schweitzer had 55% and Jones had 2%?,4 -31623,What is the largest lead margin when Schweitzer has 55% and Jones is not an option?,1 -31626,What is the attendance before week 1?,3 -31636,"What is the total number of goals when there are 3 draws, more than 18 losses, and played is smaller than 38?",3 -31637,What is the number of goals against when the played is more than 38?,3 -31638,What is the number of draws when played is less than 38?,3 -31639,What is the points when played is less than 38?,4 -31652,Which Laps has a Year of 2007?,5 -31670,How many years had the best actress in a Revival category?,3 -31672,How many times is the shot volume (cm3) less than 172.76?,3 -31673,what is the average shot volume (cm 3) when the shot diameter (cm) is less than 6.04?,5 -31676,What is the first year that there was a Satellite Award?,2 -31684,"Which To par is the lowest one that has a Year(s) won of 1962, 1967, 1972, 1980, and a Total larger than 149?",2 -31687,Which To par is the highest one that has a Total smaller than 148?,1 -31698,"On what Date did Columbia release the Track ""Do it again""?",4 -31699,"What is the highest Match No., when Date is 2008-03-21, and when Time is 16:00?",1 -31704,Which Money ($) has a Score of 70-66-73-69=278?,5 -31705,How many rounds did the match last with Sam Sotello as the opponent?,5 -31726,What is the smallest game number with a record of 16-7-2?,2 -31729,"What is the highest amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63?",1 -31730,What is the lowest goal for a goal against 37 and less than 15 victories?,2 -31731,How many goals on average are there for rank 3?,5 -31732,What is the average goals against when there are more than 42 played?,5 -31737,"What is the highest Rank, when U-17 Goals is ""7"", and when Player is ""Cesc Fàbregas""?",1 -31738,"What is the highest Rank, when U-17 Goals is ""9""?",1 -31742,How many rounds in the event when record is 1-5?,3 -31754,What is the earliest season with an advertising account manager profile?,2 -31765,"What is the sum of Points 1, when Team is ""Gainsborough Trinity"", and when Played is greater than 46?",4 -31766,"What is the total number of Points 1, when Lost is less than 20, and when Goals For is greater than 92?",3 -31767,"What is the total number of Position, when Played is less than 46?",3 -31773,What is the lowest laps that Vittorio Iannuzzo completed?,2 -31785,"What is the total number of gold medals when there were 2 bronze medals, a total of more than 3 medals and ranked 61?",3 -31786,"What is the average total number of medals when there were 4 bronze, more than 2 silver, and less than 7 gold medals?",5 -31787,What is the lowest episode number with an original airdate on 8 June 2008?,2 -31801,What is the lowest amount of assists for more than 5 games?,2 -31802,What is the highest amount of points with less than 5 assists and less than 2 goals?,1 -31803,How many points on average are there for less than 5 games played?,5 -31820,What is the maximum game that was played against the New York Knickerbockers?,1 -31822,What is the average rank for more than 12 points?,5 -31823,What is the rank for less than 6 plays?,4 -31826,What is the smallest point total when the grid is larger than 5 and the time/retired is fire?,2 -31829,What is the lowest grid number that a race took place doing more than 21 laps?,2 -31830,What is the total number of grids where there were races that had a time of 34:22.335?,3 -31865,What largest against has the opposing team of fiji?,1 -31876,Can you tell me the total number of React that has the Lane of 5?,3 -31877,Can you tell me the lowest React that has the Lane of 5?,2 -31879,How many years was there a peter jackson classic?,3 -31884,"What is the average Attendance, when Visitor is Toronto?",5 -31885,What's the average year with a rank less than 3?,5 -31888,What's the average year for the accolade 100 greatest singles of all time?,5 -31922,What is the most recent year georgia tech chose a linebacker?,1 -31927,What was Jack Nicklaus's score after round 1?,2 -31928,"Which Laps have a Time of +39.476, and a Grid larger than 11?",5 -31931,"Which Bronze has a Total of 4, and a Gold smaller than 1?",2 -31932,"Which Bronze has a Silver larger than 1, a Total larger than 3, a Nation of turkey, and a Gold smaller than 2?",4 -31933,"Which Gold has a Bronze of 1, and a Total smaller than 3?",5 -31934,In what Week is the Opponent the New Orleans Saints?,5 -31935,"In what Weeks is the game against the Tampa Bay Buccaneers with less than 44,506 in Attendance?",4 -31944,"How many total rounds have the results of win, and n/a as the method?",3 -31957,Which Crowd has a Away team of sydney?,1 -31958,"WHAT IS THE NUMBER OF COINS OF $25-1/4 OZ WITH $50-1/2 OZ OF 13,836, AND $100-01 OZ, SMALLER THAN 14,912?",3 -31959,Which OWGR pts has Dates of may 10-13?,4 -31960,"Which OWGR pts has Dates of apr 26-29, and a Prize fund (¥) smaller than 120,000,000?",2 -31962,"How many OWGR pts have a Prize fund (¥) of 100,000,000, and a Tournament of tsuruya open?",3 -31964,Which Attendance has a Score of 0:2?,1 -31968,Which Game has a Score of 101-109 (ot)?,5 -31973,What is the smallest number of goals when the goals against are more than 58 and played number is more than 30?,2 -31974,What is the minimum position when points are 32 and wins are greater than 13?,2 -31975,"What is the most draws when goals against are more than 33, losses are 13 and goals for is less than 51?",1 -31976,What is the position when wins are fewer than 14 and draws are fewer than 3?,5 -31997,On what Week was the Result W 34–24?,5 -32000,"What is the Area of the Parish with a Population of 2,113?",3 -32001,What is the Population of the Parish with an Area km 2 of 236.76?,2 -32012,What was Germany's lowest sales when the profit was smaller than 6.7 billion?,2 -32015,What is the average rank for USA when the market value is 407.2 billion?,5 -32018,What was the highest attendance for the Hispano team?,1 -32020,What is the Money ($) player Loren Roberts has made?,1 -32025,What's the earliest year the new york giants lost at new meadowlands stadium?,2 -32026,How many years did the new york giants lose at metlife stadium?,3 -32027,How many years did the new york giants win with a result of 15-7 at lincoln financial field?,3 -32032,"What is Area km 2, when Population is greater than 1,395?",2 -32038,"What is the maximum pick when WR was the position and Michigan the college, and the overall greater than 255?",1 -32039,"What is the total round when DB was the position, and the pick less than 21, and Jeff Welch as the name?",4 -32041,"WHAT IS THE AVERAGE PICK FOR PURDUE, WITH A ROUND SMALLER THAN 5?",5 -32042,"WHAT IS THE HIGHEST PICK WITH A TE POSITION, AND ROUND SMALLER THAN 2?",1 -32043,"WHAT IS THE AVERAGE OVERALL, FOR MARK FISCHER?",5 -32044,"WHAT IS THE SUM OF PICK FOR DAVID TERRELL, WITH A ROUND SMALLER THAN 7?",4 -32052,"What week had attendance of 64,146?",2 -32053,What is the attendance of week 12?,2 -32055,What is the attendance of week 8?,3 -32060,"What is the average To Par, when Place is ""T3"", and when Player is ""Ben Hogan""?",5 -32061,"What is the average To Par, when Player is ""Julius Boros""?",5 -32062,"What is the highest To Par, when Score is ""72-73=145""?",1 -32065,What is the highest pick # after round 11?,1 -32068,"Which Pick has a Round larger than 8, a Name of kenny fells, and an Overall larger than 297?",4 -32070,Which Overall has a Name of markus koch?,4 -32075,"What is the total average for McCain% of 55.0% and Obama# higher than 3,487?",5 -32081,What is the average round for the record of 1-1?,5 -32084,How many times did Sham Kwok Fai score in the game that was played on 22 February 2006?,4 -32086,"What is the total number of Week(s), when Attendance is 61,603?",3 -32088,HOW MANY POINTS DOES ALEX SPERAFICO HAVE WITH A GRID LARGER THAN 17?,2 -32089,"WHAT ARE THE LAPS WITH POINTS LARGER THAN 5, WITH FORSYTHE RACING, AND GRID 5?",2 -32091,What is the average pick number for jerry hackenbruck who was overall pick less than 282?,5 -32092,What is the lowest draft pick number for mark doak who had an overall pick smaller than 147?,2 -32101,Which season premiered on 29 October 1990 and had more than 6 episodes?,1 -32114,What is the smallest grid value that had 16 points and a team of Mi-Jack Conquest Racing?,2 -32116,What is the total number of laps associated with 8 points and a grid under 8?,3 -32117,"What is the highest amount of employees with 110,520.2 in revenue, and a more than 2,237.7 profit?",1 -32121,"What is the lowest height in feet for the building located in platz der einheit 1, gallus, that was built after 1961 with a height less than 130 meters?",2 -32122,What is the sum of the heights in meters for the commerzbank tower built after 1984?,4 -32123,"What is the earliest year that the building in sonnemannstraße/rückertstraße, ostend was built with a height larger than 185 meters?",2 -32124,"What is the lowest height in meters for the building located in mailänder straße 1, sachsenhausen-süd, with a height shorter than 328.1 ft?",2 -32125,What is the average population vlue for an area smaller than 26.69 square km and has an official name of Rogersville?,5 -32138,How many times is the position lb and the overall is less than 46?,3 -32141,what is the highest round when the college is penn state?,1 -32142,"What is the 1989 number when the 200 number is less than 52.8 in Arizona, New Mexico, and Utah",4 -32143,"What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8?",5 -32144,"What is the 2000 number when the 1969 is 54.3, and the 1979 is less than 48.4?",4 -32145,"What is the 2000 number when the 1989 is less than 54.9 in Arizona, New Mexico, and Utah?",4 -32146,What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9?,4 -32148,"Can you tell me the average Laps that has the Time of +17.485, and the Grid smaller than 7?",5 -32149,"Can you tell me the sum of Grid that has the Manufacturer of aprilia, and the sandro cortese?",4 -32152,"What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23?",4 -32153,"What is the sum of Round, when Player is Tim Hunter (RW), and when Pick is less than 54?",4 -32162,What was the earliest release for Pathogen directed by Sharon Gosling?,2 -32181,"What was the film that grossed $26,010,864 ranked?",2 -32183,What is the rank of Bronco Billy?,5 -32184,Name the lowest Founded with the Name cougars?,2 -32186,Name the Founded which has a Affiliation of private/methodist?,1 -32193,"What is the lowest Cycle, when Number Of Contestants is 11, and when International Destinations is Paris Gran Canaria?",2 -32194,"What is the highest Cycle, when the Number of Constestants is 11, and when Premiere Date is September 3, 2012?",1 -32197,What is the lowest pick with fewer than 3 rounds and more than 4 overall?,2 -32210,Which Game has a Score of l 102–114 (ot)?,5 -32221,How many total games were played against @ St. Louis Hawks this season?,4 -32223,"What is the pick number later than round 1, for Reyshawn Terry?",5 -32224,What round was the player Ty Lawson with a pick earlier than 18?,5 -32225,What is the pick number for Danny Green in a round less than 2?,3 -32226,"What is the pick number in a year earlier than 2009, with a round higher than 1?",3 -32232,Which Pick has a College of ohio state?,2 -32233,"Which Round has a Position of lb, and a Pick smaller than 25?",3 -32234,Which week has a result L 56-3?,5 -32237,"What is the highest Money ( $ ), when Score is ""69-71-70-74=284""?",1 -32244,What is the number of games lost when goal difference is +13 and draws are more than 12?,3 -32273,"what is the least 60-64 when 30-34 is 1,403 and 20-24 is less than 378?",2 -32277,"Which week had an attendance of 55,158?",4 -32278,What is the lowest game on February 10?,2 -32280,"Which Round has a Nationality of united states, and a Player of jimmy hayes?",1 -32287,What is the number of sort values associated with 389 births?,3 -32289,"With a Grid less than 15, and a Time of +52.833, what is the highest number of Laps?",1 -32290,What is the average Grid for the Rider Toni Elias with Laps more than 30?,5 -32291,"With a Time of +1:37.055, which has the lowest Grid?",2 -32292,"Which Silver is the highest one that has a Rank of 19, and a Gold larger than 0?",1 -32293,"Which Bronze is the highest one that has a Rank of 26, and a Total larger than 1?",1 -32294,"Which Gold has a Nation of india, and a Bronze smaller than 0?",5 -32296,What is the round number when the record is 15–7–1?,3 -32304,"Which Silver has a Total of 7, and a Gold larger than 1?",5 -32305,"Which Bronze has a Gold smaller than 16, a Rank of 10, and a Nation of italy?",5 -32306,"Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13?",5 -32307,"Which Gold has a Nation of malaysia, and a Silver smaller than 0?",2 -32308,"Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰?",4 -32309,"Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?",4 -32310,"Which GDP per capita (US$) (2004) is the highest one that has an Area (km²) larger than 148825.6, and a State of roraima?",1 -32312,"Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5?",5 -32319,Which Round has a Record of 10-6?,2 -32328,Which Round has an Opponent of jorge magalhaes?,5 -32329,"Which Round has a Location of bahia, brazil?",5 -32332,Bernhard Langer maximum total was what?,1 -32333,What is the average of the total when t11 is the finish?,5 -32335,What were grid 7's laps?,2 -32337,"How many Laps have a Time/Retired of +1:42.517, and a Grid larger than 33?",3 -32344,What was the average rank for the film directed by roland emmerich under the studio of 20th century fox?,5 -32345,What is the average rank for the film directed by michael bay?,5 -32354,"How much January has a Game smaller than 37, and an Opponent of detroit red wings?",3 -32356,Which January has an Opponent of @ detroit red wings?,5 -32367,"What is International Trade (Millions of USD) 2011 when 2011 GDP is less than 471,890 and UN budget of 0.238% and GDP nominal less than 845,680?",4 -32378,What was the rank of the rider whose ascent time was 43:24 before the year 2002?,3 -32383,"What was the highest attendance of February 7, 2009 and more than 49 points?",1 -32385,"What game in February 10, 2009 has the most points and a game number larger than 54?",1 -32393,"What is the lowest Division, when Team is ""Benfica"", and when Apps is 22?",2 -32395,What is the smallest winner's share for the LPGA championship?,2 -32400,What is the average laps for the +50.653 time?,5 -32401,"What is the highest Matches were the points were smaller than 8, the place was larger than 13, and the drawn is less than 1?",1 -32402,What is the average points when the drawn is less than 0?,5 -32403,What was Turkey's lowest gold when there were less than 2 bronze?,2 -32404,"What is the average area in square miles for the division that is 9,630,960 square kilometers with a national share larger than 100%?",5 -32405,What is the average area in square miles for the hunan administrative division with a national share less than 2.19%?,5 -32406,"What is the average square kilometer area of the division that has a 2,448 square mile area and a national share larger than 0.065%?",5 -32407,What is Central Michigan's average overall when the pick was 8?,5 -32418,What is the total number of weeks that the Giants played against the Dallas Cowboys?,3 -32423,"What is the lowest Year, when Surface is Hard, and when Opponent is Dinara Safina?",2 -32448,what is the earliest winter olympics when the fis nordic world ski championships is 1976?,2 -32449,"what is the winter olympics when the country is soviet union and holmenkollen is 1970, 1979?",4 -32451,How many games have 5 goals and less than 8 assists?,3 -32452,What is the highest number of goals Eisbären Berlin had along with 13 points and 10 assists?,1 -32453,What is Ivan Ciernik's average points with less than 11 goals?,5 -32456,What is the sum of speed in km per hour reached by John Egginton?,4 -32459,What is the earliest season that Pisico Bình ðinh is team 2?,2 -32461,How many games have rebounds larger than 1048?,3 -32462,"How many rebounds have a Player of andre gaddy, and a Rank smaller than 6?",3 -32463,How many rebounds have a Player of herb estes?,3 -32464,What is the total of rebound averages with more than 98 games and a rank of 7?,4 -32471,"What is the lowest number of points the 49ers scored when the record was 1-5 and there were more than 29,563 fans attending?",2 -32472,What was the highest attendance for the game where the record was 0-5 and the opponents scored more than 20 points?,1 -32486,What is the highest Round that lasted 1:44?,1 -32487,What is the number for the interview in Illinois when the preliminary is less than 8.558?,4 -32489,What is the evening gown number when the average is more than 8.984 in Louisiana and the preliminary is more than 8.597?,3 -32490,"What is the interview number in Louisiana, and the swimsuit number is more than 9.1?",3 -32491,"What is the swimsuit number when the preliminary is 8.721, and the average is more than 8.781?",3 -32501,Which Ratio has a Similar ISO A size of a3?,5 -32503,Which Ratio has a Name of ansi e?,2 -32507,"What is the average earnings ($) that has meg mallon as the player, with a rank less than 9?",5 -32508,"What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC?",5 -32509,What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10?,2 -32516,Which Tonnage (GRT) is the highest one that has a Date of 16 june 1940?,1 -32540,What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets?,1 -32541,What is the total market value in billions of the company with 20.96 billion in profits and less than 166.99 billions in assets?,3 -32542,"What is the average assets in billions of the company Bank of America, which has less than 49.01 billions in sales?",5 -32543,What is the highest profits in billions of the company headquartered in the USA with a market value of 194.87 billions and less than 76.66 billions in sales?,1 -32544,"Which Total has a Nation of japan, and a Silver larger than 2?",2 -32546,"Which Silver has a Rank of 1, and a Total smaller than 11?",4 -32547,"Which Total has a Nation of united states, and a Bronze larger than 3?",1 -32583,"What is the sum of Total, when Player is ""Tommy Bolt""?",4 -32584,"What is the total number of Total, when To Par is ""7""?",3 -32588,What is the earliest year with a category of Top 10 Selling Mandarin Albums of the Year?,2 -32594,What year was the team Club of atlético de san juan fc who plays at hiram bithorn stadium founded.,4 -32602,How many years correspond to longitude of 36.8e and diameter greater than 697?,3 -32603,What was the pick # for a center picked before round 6?,3 -32605,"WHAT IS THE ORICON PEAK NUMBER WITH AN ATLANTIC LABEL, SUBHUMAN RACE, LATER THAN 1995?",3 -32607,WHAT IS THE AVERAGE DATE OF RELEASE FOR THICKSKIN?,5 -32608,What is the lowest enrollment amount for a year left of 2012 and a current conference of Mid-South?,2 -32609,"Which season was there a game with the score of 1:3 played at the venue of national stadium, maldives?",4 -32614,"What is the minimum hydroelectricity with a less than 116.4 total, and a greater than 18.637 solar?",2 -32615,In 2011 with a less than 13.333 wind power what is the mean hydroelectricity?,5 -32622,"Name the Pick # which has a Position of lb, and a CFL Team of winnipeg?",4 -32623,"WHAT IS THE SUM OF ATTENDANCE FOR DETROIT, WHEN POINTS ARE LARGER THAN 33?",4 -32625,"What is the lowest Touchdowns, when Player is Andrew Glover, and when Yards is greater than 281?",2 -32626,"What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39?",5 -32627,"What is the total number of Attempts, when Touchdowns is 6?",3 -32629,"What is the highest Year, when Extra is Pentathlon?",1 -32630,"What is the sum of Year, when Result is 9th?",4 -32639,What is the lowest Loss number when the Gain is less than 61 and the Avg/G is 6?,2 -32640,What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34?,4 -32647,"Can you tell me the total number of Gain that has the Name of williams, jonathan, and the Loss larger than 3?",3 -32648,Can you tell me the sum of Loss that has the Gain of 2646?,4 -32649,"Can you tell me the sum of Gain that has the Name of kass, rob, and the Avg/g smaller than 1.9?",4 -32650,"Can you tell me the lowest Long that has the Gain of 20, and the Loss smaller than 0?",2 -32652,What is the highest ERP W with a w216bo call sign?,1 -32654,What kind of Crowd has a Ground of subiaco oval?,4 -32657,"How many Crowd that has a Date on saturday, 29 january and an Away team of collingwood?",5 -32677,"What is the sum of Game, when High Points is ""D. McKey (24)"", and when Team is ""@ Dallas Mavericks""?",4 -32682,How many rounds did the match at GCF: Strength and Honor last?,5 -32683,What is the total population for Saint-Antoine with an area squared of 6.43?,4 -32685,How many games in February have a record of 40-15-5?,4 -32686,What is the lowest numbered game with an opponent of Minnesota North Stars earlier than February 25?,2 -32687,How many games have the New York Islanders as an opponent before February 7?,4 -32688,What is the earliest February date with a record of 37-13-4 in a game earlier than 54?,2 -32690,What is the average game number when the record is 4-1?,5 -32706,"What is the lowest Laps, when Grid is greater than 7, and when Name is ""Fabian Coulthard""?",2 -32709,What is the draw number of the Artist Dav Mcnamara and a place bigger than 4?,3 -32732,How many people attended round f?,3 -32733,How many people on average attend round f?,5 -32748,What is the total number of years in which Eiza González had a nominated work in the category of solista favorito?,4 -32753,What is the average round of the match with kevin manderson as the opponent?,5 -32755,What number game was it that the Spurs were @ Miami?,4 -32756,What is the total number of losses of the player that has drawn 1 and played smaller than 12?,3 -32761,Which average overall has a Pick smaller than 5?,5 -32762,"Which highest overall has a College of idaho, and a Round smaller than 1?",1 -32763,"How many rounds have a Pick smaller than 10, and a Name of larry hendershot?",3 -32780,What is the smallest game had a location of Madison Square Garden with a score of 109-99?,2 -32796,what is the least laps when the driver is rubens barrichello and the grid is less than 12?,2 -32808,"What is the lowest Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is less than 4?",2 -32809,"What is the average Position, when Bike No is greater than 8, and when Points is less than 240?",5 -32810,"What is the lowest Postion, when Bike No is greater than 10, when Driver / Passenger is Nicky Pulinx / Ondrej Cermak, and when Points is greater than 244?",2 -32811,"What is the highest Points, when Position is less than 4, when Equipment is Zabel - VMC, and when Bike No is less than 1?",1 -32812,"What is the average Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is greater than 4?",5 -32820,"What was the Attendance on December 21, 1986 before Week 16?",4 -32821,"In what Week was the Attendance 43,430?",1 -32828,"What is the total number of # Of Prefectural Votes, when # Of Seats Won is greater than 69, and when Leader is Yasuhiro Nakasone?",3 -32829,"What is the average # Of National Votes, when the Election is before 1992, when the % Of Prefectural Vote is 39.5%, when Leader is Takeo Fukuda, and when # Of Seats Won is greater than 63?",5 -32830,"What is the average Election, when % Of Prefectural Vote is 38.57%, and when # Of Prefectural Votes is greater than 21,114,727?",5 -32831,"What is the average Election, when % Of Nation Vote is 45.23%, and when # Of Prefectural Votes is less than 14,961,199?",5 -32832,"What is the total number of # Of Prefectural Votes, when % Of Prefectural Vote is 48.4%, and when # Of Seats Won is greater than 61?",3 -32848,"What is the lowest Round, when Pick is 9 (via Hamilton)?",2 -32852,"In what Week was the Attendance 39,923?",4 -32854,"What Week falls on September 4, 1994?",5 -32876,Notre-Dame-De-Lourdes has what average area km 2?,5 -32887,What is the lowest amount of money that Craig Stadler won?,2 -32889,What is the total amount of money that the United States one with a To par of –2?,3 -32891,How much money has a to par of E?,3 -32895,What was the earliest year that the result 21-17?,2 -32900,What is Chepén's average UBIGEO?,5 -32902,What is the Diameter (km) of the Valle with a Longitude of 152.5e named before 1997?,1 -32903,What is the Year named of the Ganga Valles?,1 -32909,Can you tell me the lowest Losses that has the Gains smaller than 0?,2 -32932,"What week had a game that was played on November 11, 1962?",5 -32949,What is the total attendance in a week less than 5 when the result was l 24-20?,3 -32950,What is the largest week with the Atlanta Falcons as the opponent?,1 -32951,What is the total attendance in a week greater than 1 with an opponent of Philadelphia Eagles?,3 -32953,"Which Game has an Attendance smaller than 18,277, and Points of 64?",1 -32954,"Which Joined has a Nickname of knights, and an Enrollment larger than 2,960?",4 -32956,"Which Joined has an Institution of abraham baldwin agricultural college, and an Enrollment smaller than 3,284?",1 -32960,"What is the sum of Crowd, when Date is Sunday, 4 March, and when Home Team Score is 22.13 (145)?",4 -32964,What was the lowest attendance when the Green Bay Packers played?,2 -32965,"What was the week number when a game was played on November 19, 1967?",2 -32969,"For the match that had detail of 2001 nrl grand final, what was the lowest total points?",2 -32970,Which average Game has a High points of wilson chandler (16)?,5 -32981,"Can you tell me the total number of Played that has the Position larger than 5, and the Points of 11, and the Drawn smaller than 1?",3 -32982,"Can you tell me the highest Played that has the Points larger than 11, and the Lost larger than 7?",1 -32988,"What is the sum of Wins, when Played is less than 5?",4 -32989,"What is the highest Wins, when Rank is greater than 2, and when Played is less than 5?",1 -32990,"What is the sum of Wins, when Team is Sweden, and when Played is less than 5?",4 -32991,"What is the highest Points, when Played is greater than 5?",1 -32992,"What is the average Ties, when Played is greater than 5?",5 -32998,How many times what the comptroller alan hevesi and the party working families?,3 -33003,"Can you tell me the average Points that has the Attendance of 3,806?",5 -33018,"What is the average Season, when First Broadcast is January 23, 1981?",5 -33021,What is the attendance when Cork City is the opponent?,5 -33031,What is the total number of weeks that the buffalo bills played against the San Diego Chargers?,4 -33033,"How many weeks were there games with 41,384 fans in attendance?",4 -33034,"What is the lowest week number that had a game on December 3, 1967?",2 -33042,What is the total of attendance at Venue h when Auxerre were playing?,4 -33051,"How many played when lost is more than 17, drawn is 15 and goals against is less than 75?",5 -33052,"what is the position when lot is less than 14, goal difference is +1 and drawn is more than 15?",4 -33053,How many lost when goals for is 43 and the position number is higher than 15?,5 -33062,How many years was the number of laps 71?,3 -33064,How many total rounds has lehigh as the college?,3 -33066,"How many overalls have E as the position, buddy payne as the name, and a pick less than 5?",3 -33067,"How many picks have charley sanders as the name, with a round greater than 22?",4 -33068,"Which 2011 has a 2012 larger than 9,998,000?",1 -33069,"Which 2010 has a Rank of 1, and a 2009 larger than 17,233,000?",5 -33070,"Which 2012 has a 2011 of 17,142,000, and a 2010 smaller than 16,972,000?",2 -33071,"Which 2009 has a 2012 of 17,536,000, and a 2010 smaller than 16,972,000?",1 -33072,What is the Attendance of the game against the Florida Panthers?,4 -33077,"What is the sum of Game, when Date is ""Wed. Nov. 14""?",4 -33085,"Which Round has a Method of ko, and a Date of 1958?",2 -33104,What was the lowest lane with a mark of 7.26?,2 -33105,"What is the maximum number of games when the season is more recent than 2001 and the average is less than 10,838?",1 -33106,"What is the number of clubs when the average is more than 18,571, there are fewer than 182 games and the total attendance is 3,140,280 in a year more recent than 1995?",5 -33107,What is the number of clubs for Shenyang Ginde when there were more than 182 games?,3 -33108,What is the smallest average for Beijing Guo'an when they played more than 240 games?,2 -33109,What is the average pick number for Washington State?,5 -33116,What is the sum of the game numbers for games with less than 30 points?,4 -33118,"What is the smallest area that has a Population Density of 3,216 and a Population larger than 16,650,000?",2 -33119,What is the highest BR number with a SECR number of 765?,1 -33120,What is Beyer Peacock's SR number with a SECR number of 769?,5 -33125,"What is the sum of Capacity, when Team is ""Denizlispor""?",4 -33136,Which Week has a Result of l 21-19?,3 -33137,Which Week has a Result of l 41-14?,2 -33141,"What is the smallest preliminary when swimsuit is less than 8.822, interview is more than 8.744 and gown is more than 9.333?",2 -33142,What is the best preliminary for a contestant from New Mexico with interview less than 9.533?,1 -33144,What is the average when interview is 9.465 and evening gown is less than 9.454?,4 -33145,What is the best preliminary score from a contestant from Oklahoma with evening gown less than 8.853?,1 -33148,"WHAT IS THE LOWEST AVERAGE FINISH FOR 40TH POSITION, WITH A TOP 5 LARGER THAN 0?",2 -33154,What is the least rank with more than 3 losses and less than 25 sets lost?,2 -33155,What is the least rank with more than 16 sets won and less than 1 loss?,2 -33162,What is the earliest game against Orlando?,2 -33163,"Which Week has an Attendance of 72,855?",1 -33164,"Which Week has a Date of december 8, 1991?",5 -33175,Which Against has a Date of 30/05/1981?,3 -33185,What is the Place of the couple with a Rank smaller than 7 and 514.55 Points?,4 -33186,"What is the total Lane with a Mark of 47.02, and a Heat higher than 5?",4 -33187,"With a Mark of 46.47, What is the lowest Heat?",2 -33195,"Which Round is the highest one that has a College of arizona, and an Overall larger than 120?",1 -33196,"Which Pick has a Name of ed hickerson, and a Round smaller than 10?",4 -33197,"How much Overall has a Pick of 10, and a Round smaller than 8, and a Position of e, and a College of tennessee?",3 -33209,What is the highest date in october for a game number larger than 8 with a record of 4-4-0?,1 -33216,What is the least number of wins West Ham got when they tied 27 times?,2 -33218,"What is the highest value for 2000, when the value for 1950 is 3.5, and when the value for 1970 is greater than 3.4?",1 -33219,"What is the lowest value for 1990, when the Region is East Asia (10 Economies), and when 1960 has a value less than 12.6?",2 -33220,"What is the average value for 1970, when the Region is East Europe (7 Economies), and when 2000 has a value greater than 2?",5 -33221,"What is the highest value for 1970, when the value for 1960 is less than 61.9, when the value for 1980 is less than 3.8, when the value for 1990 is 3.3, and when the value for 2000 is greater than 3.2?",1 -33222,"What is the lowest value for 1960, when the value for 2000 is less than 8.4, when the value for 1950 is greater than 3.5, and when the value for 1990 is less than 3.3?",2 -33223,What average drawn has a played greater than 42?,5 -33224,"What is the highest played that has a position less than 17, and 63 as the goals for?",1 -33225,"What is the lowest played that has a position greater than 6, 61 as the goals against, with a loss less than 16?",2 -33226,"What is the highest goals for that has a drawn less than 11, with a played less than 42?",1 -33227,"What is the average goals for that has +40 as the goals difference, with points 1 greater than 55?",5 -33228,Can you tell me the average Total that has the To par of 15?,5 -33233,"what is the average drawn when the points is more than 15, lost is 1 and played is less than 14?",5 -33234,"what is the lowest position when points is more than 11, name is ea schongau and lost is less than 3?",2 -33235,what is the average lost when played is more than 14?,5 -33236,"what is the sum of drawn when points is less than 15, lost is 8 and position is more than 6?",4 -33237,what is the lowest points when name is ehc münchen ii and position is less than 7?,2 -33242,"What is the highest Game, when Team is ""Celtics"", and when High Assists is ""Hedo Türkoğlu (4)""?",1 -33267,"What is the highest Attendance, when Result is l 26-16, and when Week is less than 12?",1 -33268,"What is the highest Week, when Result is W 34-21?",1 -33269,What is the most recent year with a finish in 2nd position?,1 -33281,WHAT IS THE TOTAL NUMBER OF SEATS IN Hamburgische Bürgerschaft WITH AN ABBR OF bündnis 90 / die grünen (gal)?,3 -33284,What is the earliest game played at the TD Waterhouse Centre?,2 -33286,What was the highest game number when the opponent was the Miami Heat?,1 -33294,What is the ERP W for the station whose call sign is K248BJ and whose frequency MHz is higher than 97.5?,5 -33297,What was sweden's purse in USD?,4 -33299,What is the highest laps for the grid of 7?,1 -33300,"What are the average Laps for the time/retired of +16.874 secs, and a grid less than 5?",5 -33301,"What are the greatest points for a time/retired of +32.256 secs, and a a grid larger than 12?",1 -33302,What is biggest grid when the laps are 65?,1 -33304,What is the average new council number when the election result is smaller than 0?,5 -33305,How many seats were up for election during the vote where the election result was 9 and the new council 27?,4 -33306,"How many staying councillors were there when the election result was larger than 0, the new council less than 27 and the party conservatives?",5 -33310,"What is the lowest number of points scored when there were 1,500 in attendance?",2 -33311,"what is the average 2011 when 2012 is 65,000 and 2010 is more than 75,680?",5 -33312,"what is 2001 when the year is ebitda and 2009 is less than 3,600?",4 -33313,"what is the lowest 2003 when 2009 is less than 15,884, 2006 is less than 9,845 and 2004 is less than 868?",2 -33317,what is the year when the citation is honor and the author is kadir nelson?,4 -33319,"What is the average Year, when Outcome is ""Winner""?",5 -33325,"What is the sum of Bronze, when Gold is less than 1, when Total is greater than 1, and when Rank is 10?",4 -33326,"What is the average Bronze, when Rank is greater than 6, when Nation is Italy (ITA), and when Total is less than 1?",5 -33327,"What is the sum of Total, when Silver is greater than 1, when Rank is 9, and when Bronze is greater than 0?",4 -33328,"What is the average Gold, when Total is 2, when Silver is less than 1, and when Rank is greater than 5?",5 -33329,"What is the sum of Rank, when Bronze is less than 1, when Nation is Switzerland (SUI), and when Total is less than 2?",4 -33330,"What is the sum of Total, when Silver is greater than 1, when Nation is Germany (GER), and when Gold is less than 1?",4 -33332,"What is the average To Par, when Player is ""Billy Casper""?",5 -33333,"What is the highest Money ( $ ), when To Par is less than 2?",1 -33336,How many receptions were smaller than 7?,3 -33337,What is the average yards for Jimmie Giles in a game larger than 15 and reception larger than 2?,5 -33343,"How many Laps have Rider of olivier jacque, and a Grid larger than 7?",4 -33344,"Which Laps have a Manufacturer of suzuki, and a Grid smaller than 16?",1 -33345,"How many Laps have a Grid larger than 9, and a Time/Retired of +32.354?",3 -33350,what is the average crowd when the away team is new zealand breakers and the venue is cairns convention centre?,5 -33351,how many times is the home team wollongong hawks?,3 -33357,How many losses did the coach who served under 1 season and in 1975 have?,3 -33358,What is the number of seasons coached by Kathy Graham?,2 -33363,What is the attendance of the game with the NY Islanders as home team?,3 -33384,How many total rounds used the submission (choke) method?,4 -33386,What was the lowest round number at the UFC 16 event with a record of 19-1-1?,2 -33387,"What was the highest number of oppenents points recorded for game 9 when the attendance was less than 60,091?",1 -33390,How many times is the player scott deibert?,3 -33411,What pick was J.D. Hill?,2 -33412,What pick was used to select a Defensive End in round 8?,4 -33418,"What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8?",4 -33419,What is the average number of points with less than 1 draw and more than 11 losses for Ev Aich?,5 -33420,What is the sum of points for a position over 5 with more than 2 draws?,4 -33424,Highest inhabitants from gela?,1 -33425,What is the average number of casualties for the convoy with a number of U-844?,5 -33434,"What is the total for the draw with 0 points, and less than 14 lost?",4 -33436,What is the sum of the game with the boston bruins as the opponent?,4 -33437,What is the total number of games at Toronto with less than 31 points?,3 -33442,"Before 2007, what was the avg start that had a pole of 0 and in 65th position?",5 -33443,"How many starts had an avg start of less than 37 and won $1,636,827?",4 -33444,"in 1990, how many wins had an avg finish of 35 and a start less than 1?",1 -33445,What year had a pole smaller than 0 and in 77th position?,1 -33446,"in 2007, what is the avg finish that had a start less than 1?",4 -33456,What was the year of the finish with the class pos of 6th and laps smaller than 317?,4 -33463,What is the Kilometer of the Berendries asphalt course with an Average climb less than 7 and Length (m) longer than 645?,5 -33464,What is the Number of the Koppenberg course with less than 195 Kilometers?,3 -33474,"What is the lowest Pick #, when College is ""Jackson State""?",2 -33477,"What is the average Round, when Player is ""Gurnest Brown"", and when Pick # is greater than 180?",5 -33478,"What is the lowest Pick #, when College is ""Louisville"", and when Round is less than 10?",2 -33480,Which Frequency MHz has a Call sign of k210dv?,1 -33490,What is the total round of the 129 pick?,3 -33503,"Name the average Lead Margin on november 13-november 19, 2007?",5 -33505,"For week 15, what was the total number of attendance recorded?",3 -33521,"What is the highest Market Value (billion $), when Rank is 02 2, and when Sales (billion $) is greater than 113.1?",1 -33523,"What is the lowest Profits (billion $), when Market Value (billion $) is less than 201.3, when Headquarters is United States, and when Company is JPMorgan Chase?",2 -33530,When the Grids is less than 2 what are the total laps?,3 -33542,"Which Played has a Team of cerro corá, and Losses larger than 4?",5 -33543,"Which Losses has Scored of 9, and Points larger than 8?",5 -33544,"On Race 14 when the FLap is larger than 1, what is the podium number?",3 -33547,"What is the average Week, when Opponent is Minnesota Vikings?",5 -33556,"How many Points have a Home of pittsburgh, and a Score of 1–7?",4 -33568,"Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)?",2 -33581,"Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12?",5 -33591,what is the crude birth rate (per 1000) when the live births 1 is 356 013?,4 -33604,"What is the total number of Grid, when Rider is Aleix Espargaro?",3 -33606,"What is the average Laps, when Grid is 15?",5 -33621,What is the sum of the weight of the race with a 1st pos'n and a 8f distance?,4 -33623,"What is the highest number of Bush with a 32.40% Bush % and a total less than 5,126?",1 -33627,What is the total number of rounds at 5:36?,3 -33628,What is the total number of rounds with a 4-0 record?,3 -33630,What is the population of Chimbote?,4 -33632,What series number was directed by milan cheylov and written by will dixon?,5 -33633,"What series # had an original air date of november 30, 1996?",2 -33650,"How many Dates have a Score in the final of 6–4, 6–2?",4 -33654,What day in November has a record of 15-6-1?,5 -33656,What is the earliest day in November with a record of 15-7-1?,2 -33664,How many matches were played that resulted in less than 59.1 overs and a 6.78 Economy rate?,4 -33665,What is the average of someone with more than 19 wickets and less than 16 matches?,5 -33666,What were the total number of matches played when the Deccan Chargers had a strike rate of 15.5?,1 -33677,What was the percentage in 2006 that had less than 9% in 1970?,5 -33678,"What was the percentage in 1980 that had less than 37.8% in 2006, more than 29.4% in 2000, and more than 18.2% in 1970?",2 -33679,What was the percentage in 1980 in Brooklyn?,2 -33684,"When Jeb Barlow was picked in round smaller than 7, how many player in totals were picked?",3 -33686,"How many rounds have picked smaller than 220, with Alford Turner as a player?",4 -33687,What is the pick with Dean Sears and round larger than 6?,2 -33688,What is the total pick with Bill Duffy?,4 -33689,What is the total round with pick of 109?,4 -33690,How many picks for round 12?,3 -33699,What is the average of laps ridden by Toni Elias?,5 -33701,What is the fewest amount of laps when the grid was larger than 1 and 42:31.153?,2 -33718,"What is the maximum Col (m) when 3,046 is the Prominence (m)?",1 -33719,"What is the total Col (m) when the Prominence (m) is less than 4,884, and India / Burma is the location?",4 -33749,Who won the ABA Championship in 1971?,2 -33750,What was the average amount of losses for teams with played less than 14?,5 -33751,What was the total number of games played by se freising when their points were larger than 13?,3 -33752,What was the average losses for team with points larger than 3 and played larger thna 14?,5 -33753,How many losses did ev bruckberg have when the drawn was more than 1?,4 -33779,"If the manufacturer is Yamaha, and the laps driven were under 32, what's the average of all grid sizes with that criteria?",5 -33780,What's the smallest amount of laps that suzuki ran with a grid value of 8?,2 -33786,What is the average games that were drawn with ERSC Amberg as name and less than 14 points?,5 -33787,What is the total position with a drawn of 0 and greater than 22 points and a greater than 14 played?,3 -33790,Which Weeks at number one has a Volume:Issue of 61:22-23?,1 -33806,What is the average attendance of the match with arlesey town as the home team?,5 -33810,"How many years had a location at Forest Hills and a score of 6–3, 6–3 for John McEnroe?",3 -33813,When was the earliest year that Guillermo Vilas was the runner-up?,2 -33827,What is the sum of the attendance on November 24?,4 -33831,How many people attended the game when the game was won 4-2?,3 -33833,What is BP's lowest sales?,2 -33837,What is the sum of FA Cup goals when there are 19 league goals?,4 -33843,How many floors are in little Italy?,3 -33848,"WHAT IS THE AVERAGE SQUAD NUMBER WITH MARTIN SMITH, AND LEAGUE GOALS LESS THAN 17?",5 -33865,What was the draw of Maggie Toal?,5 -33866,What is the highest point total that placed 3rd and has a draw larger than 5?,1 -33877,"What is the lowest rank of 5-year peak bobby fischer, 2841?",2 -33880,What percentage of other candidates did the county which voted 52.1% for Kerry vote for?,1 -33881,"How many votes did Kerry get in the county that gave Bush 189,605 votes?",5 -33882,"How many votes went to other candidates in the county that gave 1.9% votes to them, and 160,390 total votes to Bush?",2 -33883,"How many Seats 2005 has a Percentage in/de-crease of 50.0%, and a Governorate of dhi qar governorate, and a In/de-creased by larger than 6?",4 -33884,"Name the lowest Seats 2010 which has Seats 2005 smaller than 9, and a Governorate of al muthanna governorate, and an In/de-creased by larger than 2?",2 -33885,"Name the average In/de-creased by which has a Governorate of al anbar governorate, and Seats 2005 smaller than 9?",5 -33886,"Name the highest In/de-creased which has a Percentage in/de-crease of 100%, and Seats 2010 larger than 8?",1 -33890,What is the total number of laps done by Massimo Roccoli when his grid was smaller than 4?,3 -33895,"What year did the Turku Airport have a total of 116,631 domestic passengers and a total of 308,782 passengers?",1 -33900,"Count the average Wins which has a Class of 250cc, and a Year of 1972?",5 -33901,"Name the lowest Wins which has Points of 28, and a Year smaller than 1972?",2 -33903,"Name the Wins which has a Class of 350cc, and a Year smaller than 1973?",4 -33904,How many Points has Wins larger than 0?,3 -33910,What was the Overall number for the player with a position of C and a round greater than 7?,4 -33911,"What was the Overall number that is the lowest, and has a pick greater than 9?",2 -33912,"Which team after 2008, with less than 2 podium finished and more than 0 FLAPS, had the lowest numberof races?",2 -33915,how many times is the chassis brabham bt33?,3 -33921,What were Sébastien Bourdais' lowest points when there were less than 63 laps?,2 -33924,"What is the average Year, when Position is 9th, when Event is 100 m, and when Venue is Munich, Germany?",5 -33927,"What is the average Total, when Bronze is greater than 0, when Silver is greater than 0, when Gold is greater than 2, and when Nation is Soviet Union?",5 -33928,"What is the average Gold, when Nation is Yugoslavia, and when Silver is greater than 0?",5 -33929,"What is the average Bronze, when Total is 4, and when Silver is less than 2?",5 -33943,How many times have Central Crossing won the OCC Championship?,4 -33944,How many rounds is the fight against Michael Chavez?,5 -33951,What was the average points for someone who has played more than 10?,5 -33957,How many attended during the game with a score of 80-94?,4 -33970,What is the Sets+ for Team unicaja almería where the Sets- were less than 21 and the Points+ were less than 1497?,4 -33971,What is the total number of Sets+ where the Points- are 1435 and the Points+ are less than 1228?,3 -33982,What is the Money of the Player with a To par of +3 and Score of 76-69-69-69=283?,1 -33984,What is the sum of the games before January 19 with a 27-6-6 record?,4 -34012,Which Game is the lowest one that has a Record of 11-4?,2 -34017,Which round has a record of 5-3 (1)?,2 -34022,what is the year when the driver was kevin lepage?,4 -34024,Which rank is the lowest with 37 games and more than 613 points?,2 -34025,What is Grupo Capitol Valladolid's highest rank with more than 34 games?,1 -34026,How many points are there for rank 5 with more than 34 games?,3 -34034,"How many South Asians were there in 2011 in Quebec when there were fewer than 59,510 in 2001?",3 -34037,"How many South Asians on average were in Alberta in 2001 and in 2011 had 159,055?",5 -34039,"What is the total number of Year(s), when Tournament is ""World Championships""?",3 -34045,"What is the sum of November, when Game is greater than 23?",4 -34046,"What is the sum of November, when Game is ""17""?",4 -34047,"What is the highest Game, when Opponent is ""Chicago Black Hawks"", and when November is less than 16?",1 -34077,How many Overall went in a round larger than 7 with a pick less than 7?,3 -34078,"What is the largest event number for player from Norway with prize money less than $2,241,847?",1 -34079,"What is the rank for the player with events greater than 23 and prize money in excess of $823,783?",3 -34080,What is the prize money for the player ranked 1?,1 -34081,What was the lowest round for the KOTC 25: Flaming Fury event?,2 -34087,"What is the total number of Round, when College/Junior/Club Team (League) is ""Kelowna Rockets ( WHL )""?",3 -34096,"When the total was smaller than 290, what was the highest To par?",1 -34097,What is the total number of To par for Lee Trevino?,3 -34098,What is the sum of To par when the Finish is t11?,4 -34099,What was Donald Bradman's average runs?,5 -34100,What was the highest amount of runs for more than 5 matches?,1 -34101,"What is the lowest Shot Pct., when Blank Ends is greater than 6?",2 -34103,"What is the total number of Ends Won, when Province is ""Saskatchewan"", and when Stolen Ends is less than 6?",3 -34115,Can you tell me the average December rhat has the Opponent of @ toronto maple leafs?,5 -34122,"Which Round has the Winning Driver of brendon hartley, and a Date of 27 april?",2 -34130,What subject has a plural of am(ô)ra (we)?,5 -34136,What pick in round 5 did the 49ers pick Jim Pilot?,4 -34140,What is the most recent year that had a time of 1:36.69?,1 -34142,What is the most recent year that Iftiraas was the winner?,1 -34157,"How many codes have a density of 621.68, and a Land area (hectares) larger than 75.28?",4 -34158,"What is the average density with a land area of 123.02, and a Code larger than 2356?",5 -34159,"What is the average land area with a density of 815.48, and a Population larger than 411?",5 -34167,WHAT IS THE ROUND FOR ZACH BOYCHUK?,3 -34177,What's the sum of all values in category 1 when category 3 is equal to 300?,4 -34180,"What is the highest number of matches for Australia when the wickets are more than 13, the average is less than 23.33, and the best bowling is 5/36?",1 -34181,"What is the total average for the England team when the wickets are less than 18, the best bowling is 4/138, and there are less than 3 matches?",3 -34200,What were the Points on December 13?,1 -34211,how many times is the country united states and the score 72-71-73-73=289?,3 -34219,"What is the total number of Laps, when Ride is Aleix Espargaro?",3 -34226,"What is the total number of Draw(s), when Televotes is greater than 1761, when Song is ""Ils Sont Là"", and when Place is less than 2?",3 -34227,"What is the lowest Place, when Televotes is 15424?",2 -34228,"What is the average Place, when Song is ""Dis Oui""?",5 -34232,What is the lowest position of pilot mario kiessling from Germany?,2 -34233,"What is the average position of pilot petr krejcirik, who has less than 11 points?",5 -34240,What was the first year that the artist of every little thing ranked lower than 10?,2 -34242,When was the most recent year that kathy whitworth was the runner-up?,1 -34247,What was the tie number for the round against visiting opponent Chelsea?,4 -34252,What is the total of events when the tournament was U.S. Open and the Top-25 was less than 1?,4 -34253,How many total wins have 3 as the Top-35 and less than 5 cuts made?,4 -34254,What is the minimum Top-10 when the Open Championship was the tournament and the wins greater than 0?,2 -34255,With wins greater than 0 what is the minimum Top-10?,2 -34256,What is the total Top-25 when the events were less than 0?,4 -34273,Name the lowest Round with Opponent of rolando delgado?,2 -34274,"Name the total number of Round in liverpool , england?",3 -34277,What is the earliest year of c position player gary bergen?,2 -34281,"Which Points have an Attendance of 21,273, and a Record of 5–1–1?",2 -34282,"Which Points have a Visitor of montreal canadiens, and an Attendance larger than 18,568, and a Record of 2–0–1?",1 -34286,"Which Viewers (millions) has an Episode of ""i'm not a good villain"", and a Share smaller than 12?",1 -34289,What is the highest rank of the 2009 xbox?,1 -34300,What was the highest number of starts in 2007 when the average start was over 17.6?,1 -34306,How many years was famas awards the award giving body?,3 -34322,"What is the lowest Lane, when Mark is 7.66?",2 -34324,"What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández?",4 -34327,What day in February had an opponent of @ Colorado Rockies?,4 -34333,"What is the 2006 figure for Argentina when 2007 is less than 0,15?",3 -34334,"What is the 2009 average if 2008 is less than 0,11 and 2007 is less than 0,08?",5 -34335,"What is the 2009 average when the 2007 average is more than 0,18?",5 -34336,How many gains were there for the player who had a loss greater than 57 and a long less than 55?,3 -34337,What is the lowest Loss for the player named total that has a long greater than 55?,2 -34354,What is the last game of the season that has the record 0-1-0?,2 -34357,What was the first game in which Weekes scored the decision goal and the record was 7-4-2?,2 -34358,What's the total number of points scored during the 1951 NSWRFL Grand Final?,3 -34361,What's the total sum of points scored by the Brisbane Broncos?,4 -34365,How many times was the award inte awards?,3 -34370,Which Attendance has a Week of 8?,5 -34373,"Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610?",5 -34374,Which Display size (in) has a Model of versapro vy10f/bh-l?,2 -34375,Which Display size (in) has a Model of vaio pcg-u3?,3 -34379,COunt the average Diameter (km) which has ketian (yenisey r.) main evil goddess.?,5 -34380,COunt the sum of Diameter (km) which has a Latitude of 62.7n?,4 -34388,What was the lowest attendance at the game against chicago when conklin made the decision?,2 -34419,"WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?",3 -34420,WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129?,5 -34424,What is the to total number of par with laurie ayton?,3 -34426,"Can you tell me the total number of Top 5 that has the Year smaller than 2009, and the Wins larger than 0?",3 -34428,"Can you tell me the sum of Starts that the Winnings of $139,774, and the Wins smaller than 0?",4 -34432,"What is the total number of Year(s) Won, when Player is Ed Furgol, and when To Par is greater than 12?",3 -34434,"What is Highest Total, when Year(s) Won is before 1959?",1 -34438,"What is the highest Money ($), when Top Par is E, and when Player is Ernie Els?",1 -34439,"What is the sum of Money ($), when Score is 70-71-70-69=280?",4 -34452,What is the total number of Against that were played in the H Venue on 26 february 1949?,3 -34464,"Which Big (>500ha) has a Micro (10ha) larger than 940, and a Department of potosí, and a Total smaller than 16,240?",1 -34465,"Which Small (100ha) has a Big (>500ha) of 5,710, and a Total smaller than 36,351?",2 -34466,"How much Micro (10ha) has a Big (>500ha) larger than 63,454, and a Medium (500ha) larger than 440, and a Small (100ha) smaller than 21,047?",3 -34467,"Which Small (100ha) is the highest one that has a Big (>500ha) larger than 9,021?",1 -34468,"Which Fumb Yds has a Fumb F. of 0, and a Int LG smaller than 0?",1 -34469,"Which Fumb TD has an Int TD of 1, and a Fumb F. smaller than 1?",2 -34473,What was the lowest year for TCU?,2 -34490,What is the lowest amount of money player jim colbert has?,2 -34491,What is the average Enrollment of Dickinson College?,5 -34496,What was the number of the game against Charlotte?,4 -34497,Which Money has a Score of 70-68-73-68=279?,2 -34499,"Which money has a Country of united states, and a Place of t6?",5 -34509,What is the average match when the singapore armed forces played away against perak fa (malaysia)?,5 -34531,What was the earliest week when the New Orleans Saints were the opponents?,2 -34541,"What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4?",3 -34542,"What is the total number of Total, when Gold is less than 1, when Silver is greater than 0, when Rank is 14, and when Nation is Afghanistan?",3 -34543,"What is the lowest Gold, when Silver is 0, and when Bronze is 2?",2 -34544,"What is the average Bronze, when Silver is 0, when Rank is 19, and when Total is greater than 2?",5 -34545,What was the lowest number of pieces for a board released in 1984?,2 -34547,What is the average number of pieces for boards that started in 1941 and were released after 2001?,5 -34551,"What is the lowest Against, when Opposing Team is Queensland?",2 -34555,"Which Rank is the lowest one that has a Gross of $54,215,416?",2 -34558,What is the highest pick of ron whaley?,1 -34559,What is the overall sum of the game with a pick less than 8 from the college of western michigan?,4 -34561,"What is the lowest round of bob caldwell, who has a pick greater than 7 and an overall larger than 162?",2 -34570,"When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share?",4 -34572,"What is the total net profit when earnings per share is 27.4, and profit/loss befor tax was smaller than 194.6 million?",4 -34573,In year 2011 what is sum of profit/loss before tax and net profit larger than 123.8 million?,3 -34574,"What is the highest goals for less than 63 goals against, more than 65 points 1, and more than 10 losses?",1 -34575,What is the highest position for less than 42 played?,1 -34576,What is the average day in December with a Record of 16-3-4 and a Game smaller than 23?,5 -34577,"When the Runners-Up is larger than 0, what's the sum of winners?",4 -34578,"When there are more than 1 winners and the team playing is pachuca, what's the lowest runners-up found?",2 -34592,How much money for 1st place with a to par less than 1?,3 -34607,What is the total number of picks for Calgary College?,3 -34615,"What is the average number of goals of park sung-ho at the k-league competition, which has the pohang steelers team and less than 46 total Gs?",5 -34617,"What is the sum of the total As of team bucheon sk, who had the chunnam dragons as their opponent at the bucheon venue?",4 -34618,What is the sum of the assists kang jae-soon had in the k-league competition in ulsan?,4 -34619,What is the sum of the goals on 2007-06-16?,4 -34623,What is the average pick with 85 overall in a round lower than 3?,5 -34634,In what Round was OL Player Richard Zulys picked?,4 -34640,What pick was a player that previously played for the Minnesota Lynx?,4 -34644,"WHAT IS THE AVG AST FOR GAMES LARGER THAN 101, RANK 5, TOTAL ASSISTS SMALLER THAN 331?",5 -34645,WHAT IS THE SUM OF AST AVG WITH RANK 5 AND GAMES BIGGER THAN 108?,4 -34647,"Which Round has a College of appalachian state, and an Overall smaller than 156?",3 -34648,"Which Pick has a Round larger than 17, and a Name of gene stewart?",3 -34663,"WHAT IS THE RANK WITH A GROSS OF $96,773,200?",3 -34665,"What is the sum of the positions for the player who had less than 25 losses, a goal difference of +20, 10 draws, and played less than 42?",4 -34666,What is the highest number played when there were less than 13 losses and a goal difference of +46?,1 -34672,What's the lowest diameter when the longitude is 71.1w?,2 -34674,What is dardanus sulcus' lowest diameter?,2 -34675,"How many years is ur sulcus listed with a diameter less than 1,145.0?",3 -34677,What is the maximum number of people in attendance on 16 August 2008 when the home team was Deportes Savio?,1 -34693,Average round for 22 pick that is overall smaller than 229?,5 -34694,"What is the normal 2002 that has a Country of Peru, and 2007 bigger than 1,200?",5 -34695,"What is the most reduced 2007 that has 2008 littler than 1,270, and 2003 bigger than 870?",2 -34696,"What is the most noteworthy 2006 that has 2008 littler than 5,330, and a Country of Peru, and 2009 littler than 1,260?",1 -34697,"What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500?",2 -34698,"What is the aggregate number of 2005 that has 2004 bigger than 1,040, and a Country of Chile, and 2006 littler than 5,560?",3 -34699,How many Bronze medals did the Nation with 0 Silver receive?,1 -34700,How many Gold medals did the Nation with less than 8 Total medals including 1 Bronze and 0 Silver receive?,2 -34701,How many Total medals did the Nation the got 0 Bronze medals receive?,5 -34703,How many Silver medals did the Nation ranking 8 with more than 1 Total medal but less than 1 Gold receive?,4 -34706,"In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?",4 -34707,"In what Election year were there less than 16,170 Inhabitants?",3 -34709,How many Inhabitants were there after 2009 in the Municipality with a Party of union for trentino?,5 -34710,What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998?,2 -34712,"What is the total for the team with fewer than 2 bronze, ranked less than 4 and fewer than 1 silver?",3 -34713,How many silver for the team with more than 2 bronze and more than 7 gold?,3 -34714,What is the total for the team with 0 bronze and 3 silver?,4 -34715,"What is the total number of Rounds held in Nevada, United States in which the time was 1:55?",3 -34718,What is the lowest overs of the Chennai Super Kings when the Economy Rate is less than 5.92 with a Best Bowling number of 2/17?,2 -34719,What is the lowest number of Overs for the Royal Challengers Bangalore?,2 -34720,What is the highest Strike Rate when the average is less than 50.25 with less than 13 matches played?,1 -34725,How many votes did Lee Teng-Hui receive when he was elected?,1 -34729,"What is the sum of Points, when Equipment was ""Zabel-BSU"", and when Position was 42?",4 -34737,What is the highest to par of the player from the United States with a t3 place and a 74-73-72-69=288 place?,1 -34744,What is the total number of laps that Benoît Tréyluyer completed when his position was 7th and the year was before 2008?,3 -34750,What is the highest number of points against the boston bruins on game 77?,1 -34751,"WHAT IS THE LOWEST GRID FOR RETIREMENT, AND LAPS LARGER THAN 17?",2 -34752,WHAT IS THE GRID WITH AN ACCIDENT AND HONDA MANUFACTURER?,1 -34793,"What is the highest # Of Constituency Votes, when Election is 2005?",1 -34794,"What is the sum of # Of Candidates, when # of Constituency Votes is less than 25,643,309, when Leader is Masayoshi Ōhira, and when Election is before 1979?",4 -34796,"What is the highest # Of Constituency Votes, when Election is before 1976, when Leader is Eisaku Satō, and when # Of Candidates is less than 328?",1 -34798,What number pick was the player drafted in round 3 at #28 overall?,5 -34799,"What is the lowest total data processing and exploitation of 00 0,228, and a management and support larger than 1,7?",2 -34824,"If the pick is under 28 and the position is k, what's the highest Overall pick?",1 -34825,"During round 8 when the Position being picked was rb, what was the highest overall pick?",1 -34830,What was the number of the game played on February 24?,4 -34839,"What are the total goals against the winner with less than 5 wins, and less than 5 plays?",3 -34840,What is the average losses for 22 goals?,5 -34841,"What is the total wins with less than 2 ties, 18 goals, and less than 2 losses?",4 -34852,"Which Year is the lowest one that has an Athlete of markus thalmann, and a Time of 23:28:24?",2 -34853,"Which Year is the lowest one that has a Time of 24:55:58, and a Place larger than 3?",2 -34866,What was the smallest crowd when the away team scored 12.16 (88)?,2 -34867,What was the average crowd size for a home team score of 11.11 (77)?,5 -34881,What is the rank of the company who has a revenue of $428.2 billion?,3 -34882,What is the rank of the petroleum company who has a revenue of $481.7 billion?,2 -34889,What game was played on December 8?,5 -34890,"What was the highest score for a California home game with over 10,870 in attendance?",1 -34891,What is the sum of the areas for populations of 542?,4 -34892,What is the highest area for locations named Centreville having populations over 532?,1 -34906,Sum of cuyo selection as the opposing team?,4 -34907,Lowest against for tour match on 21 july 1990?,2 -34908,Name the lowest version with a code of u+1034a that began after 2001.,2 -34910,"Give the sum of the version with the coptic small letter sampi, and a year after 2005.",4 -34911,What is the year that has a name with the Greek small letter sampi?,4 -34919,What was the total for the golfer who had a To par of +10 and year won of 1971?,4 -34926,What is the highest attendance a result of W 30-7?,1 -34927,"What is the average attendance at week earlier than 6 on October 14, 2001?",5 -34929,How many average points did svg burgkirchen have with a loss smaller than 6?,5 -34948,"What is the highest Losses, when Wins is greater than 1, and when Last Appearance is 2003?",1 -34949,"What is the highest Wins, when Percent is 0.000, when School is Oklahoma State, and when Appearances is less than 1?",1 -34950,"What is the total number of Losses, when Last Appearance is 2003, and when Wins is greater than 2?",3 -34955,"What is the total number of Round, when College is Northern Illinois?",3 -34956,"What is the average bronze when the total is 2, silver is less than 1 and gold is more than 1?",5 -34957,what is the average silver when the total is more than 20?,5 -34958,what is the highest rank when the nation is united states (usa) and bronze is more than 1?,1 -34959,"what is the average total when bronze is more than 0, gold is 0, the nation is united states (usa) and silver is 0?",5 -34962,What is the smallest number of third place earned for the Es Sahel at a rank less than 3?,2 -34964,"Which Annual ridership (2008) has a Number of stations larger than 70, and an Annual ridership (1998) smaller than 451,971,849?",2 -34967,How many grids does Ducati have with Casey Stoner as a rider with fewer than 27 laps?,3 -34970,What were the highest laps when the grid was larger than 19 and the time/retired was fuel?,1 -34972,"What year is the date when the boiler type is forward topfeed, the built at is Crewe, and lot number is less than 187?",3 -34974,What is the highest attendance when the opponent is the Los Angeles Rams and the week is less than 11?,1 -34992,What's the int'l student review that has the 2010 QS Rank of none?,4 -35002,What rank has a population of 4839400?,2 -35004,What rank was Core Districts + Inner Suburbs and had a population of 10123000?,1 -35006,"What is the total number of Losses, when Position is greater than 8, when Goals For is greater than 34, when Points is ""25"", and when Draws is less than 5?",3 -35007,"What is the average Wins, when Points is less than ""19""?",5 -35008,"What is the lowest Goals, when Played is greater than 30?",2 -35009,"What is the sum of Played, when Losses is ""13"", and when Position is greater than 11?",4 -35010,"What is the lowest Wins, when Losses is less than 10, when Goal Difference is less than 46, when Goals is less than 63, and when Played is less than 30?",2 -35011,How many viewed the episode gary gets boundaries?,3 -35014,What day in March is the game with a 48-13-11 record and a game number less than 72?,4 -35016,What is the lowest game number of the game after March 2 with the minnesota north stars as the opponent?,2 -35028,"What is the sum of Round(s), when Method is ""Submission (Banana Split)""?",4 -35031,What year had a 100m freestyle event?,3 -35033,What year did a short course have a time of 7:51.80?,3 -35034,What was the latest year that had a 100m freestyle?,1 -35036,What is the number of points for the 7th placed song with a draw greater than 8?,2 -35037,How many points did Joe O'Meara have?,3 -35038,"What was the draw for ""Feel The Pain"" which placed in 2nd and had more than 79 points?",5 -35039,How many points did Linda Martin have?,3 -35042,WHAT IS THE AVERAGE WEEK WITH A DATE OF JULY 25?,5 -35050,"What is the average February that has 18-26-10 as the record, with a game less than 54?",5 -35051,"How many Februarys have montreal canadiens as the opponent, and 18-25-10 as the record, with a game greater than 53?",3 -35057,"What is the lowest Number, when College is ""University of Alabama""?",2 -35058,"What is the total number of Weight, when Position is ""Forward/Center"", when Player is ""Othella Harrington"", and when Number is less than 32?",3 -35081,"Which Attendance has an Opponent of @ phoenix, and a Leading Scorer of sophia young (18)?",1 -35087,What was the attendance during the match that took place after week 11 against the washington redskins?,1 -35089,What year has the ride flight deck and a rating of less than 5?,3 -35090,"What is the highest rating after 1993 with a minumum height of 36""?",1 -35118,What is the lowest grid number for Yamaha?,2 -35120,What was the lowest lab for Gilera with a grid less than 12?,2 -35121,"What is the highest Grid with a time of +1:19.905, and less than 20 laps?",1 -35125,How many totals have a To par of –1?,4 -35132,"What is the average Founded, when Enrollment is 4,000?",5 -35138,What is the most reduced Margin that has a St Kilda Saints of 11.13 (79)?,2 -35139,What is the average Margin that has a Round of 13. (h)?,5 -35151,A total larger than 302 and playoffs of 35 also list the total of regular seasons as what?,4 -35160,What is the highest number of viewers for the episode that has an 18-49 of 1.8/6?,1 -35165,What year was the team with the nickname pride established?,3 -35177,Mean of played with smaller than 7 conceded?,5 -35178,The highest position with more than 16 points and less than 7 concedes?,1 -35179,The highest draws with smaller than 9 played?,1 -35183,"Which Took Office has a Party of democratic, a Home Town of victoria, and a District smaller than 18?",3 -35184,Which Took Office has a District of 29?,5 -35185,What are the average Laps on Grid 15?,5 -35186,"What is the lowest number of Laps that have a Time of +24.440, and a Grid higher than 18?",2 -35187,"What is the highest number of Laps that have a Time of +18.366, and a Grid lower than 13?",1 -35188,"What is the lowest Wins, when Season is 2011, when Podiums is 1, and when Poles is less than 0?",2 -35190,"What is the sum of Races, when Series is Toyota Racing Series, and when Podiums is greater than 3?",4 -35191,"What is the average Podiums, when Wins is greater than 1, when Races is 2, and when Points is greater than 150?",5 -35192,"What is the total number of Poles, when Position is 6th, and when Points is less than 164?",3 -35194,Which is the earliest founded day school to have entered the competition after 1958?,2 -35201,What was the latest game that Sacramento played?,1 -35209,What is the highest number of laps with a +1:23.297 time/retired and a grid larger than 4?,1 -35211,What is the average number of laps with 16 grids?,5 -35217,"Which Pick has an Overall larger than 308, and a Position of rb?",1 -35218,"How much Overall has a Position of wr, and a College of alberta?",4 -35219,What is indiana college's average pick?,5 -35227,What average game has January 30 as the date?,5 -35230,What is the highest game that has January 5 as the date?,1 -35232,"What is the highest lane value for a mark of 2:02.27 NR, with heats under 2?",1 -35241,What round was Ken Irvin drafted?,1 -35242,In what round was a player from Michigan selected?,1 -35244,"In which week was the game played on October 12, 1975 and the crowd was larger than 44,043?",3 -35246,What is the earliest year borussia dortmund was west and bfc viktoria 1889 was Berlin?,2 -35254,"WHAT IS THE LOWEST TURNOUT FOR AN ELECTORATE LARGER THAN 47,822 AND SPOILT OF 2,333?",2 -35255,"WHAT IS THE AVERAGE VOTE FOR DUBLIN SOUTH, AND SPOILT SMALLER THAN 3,387?",5 -35256,"WHAT IS AN AVERAGE ELECTORATE WITH VOTES OF 28,475 AND SPOILT SMALLER THAN 5,779?",5 -35257,"WHAT IS THE LOWEST ELECTORATE WITH 31,511 VOTES, AND PERCENT YES SMALLER THAN 57.2?",2 -35264,How long was Volume:Issue 12:4-6 at the top?,3 -35289,What is the least total seasons of the Vancouver 86ers?,2 -35298,What year did maggs magnificent mild bear win overall at the camra reading branch beer festival?,1 -35300,What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition?,5 -35307,"Which Pick has a Player of renaldo wynn, and a Round smaller than 1?",3 -35308,Which Round has a Player of damon jones?,4 -35310,What was the lead margin when Nixon had 48% and reporting was done by Rasmussen Reports?,3 -35334,What is the lowest total that has 1992 as the year (s) won?,2 -35338,What is the total number of events that had 34 cuts and 3 in the top 10?,3 -35343,"What was the attendance during the november 16, 1975 game?",1 -35344,What is the total number in class for the Whitehaven Coal?,4 -35348,"Count the Grid which has a Manufacturer of aprilia, and a Rider of bradley smith?",5 -35351,"Name the Silver which has a Bronze of 19, and a Total larger than 58?",2 -35352,"What kind of Silver has a Rank of 3, and a Gold smaller than 2?",3 -35353,COunt the silver that has a Bronze smaller than 1?,4 -35354,Name the Total which has a Silver larger than 19?,1 -35355,"Name the Silver that has a Total smaller than 2, and a Nation of south korea?",5 -35365,"Which Drawn is the highest one that has a Position smaller than 4, and a Lost smaller than 2?",1 -35366,"How many Points have a Position larger than 3, and a Played smaller than 14?",3 -35367,"Which Lost has a Position of 4, and a Drawn smaller than 3?",5 -35368,"Which Position has a Lost larger than 4, and a Played larger than 14?",5 -35369,On which week was the opponent the oakland raiders?,4 -35371,"How many people are enrolled in platteville, wi?",4 -35385,what is the lost when played is less than 42?,4 -35387,how many times is lost less than 7 and the position 2?,3 -35388,"what is the position when the points 1 is less than 36, goals for is less than 40 and drawn is less than 9?",4 -35398,"When the grid is under 5 and justin wilson is driving for the team mi-jack conquest racing, what's the highest number of laps driven?",1 -35410,How many weeks had a Result of w 20–6?,4 -35412,WHAT IS THE FLAPS WITH PODIUMS OF 24 AND RACES BIGGER THAN 143?,1 -35413,"WHAT ARE THE RACES WHEN FLAPS ARE ZERO, PODIUMS ARE LARGER THAN 0, SEASON IS 2008, AND POLE SMALLER THAN 1?",4 -35414,WHAT ARE THE RACES WITH A POLE SMALLER THAN 2 IN 2007?,2 -35415,WHAT ARE THE RACES FOR 2010 WITH FLAPS LARGER THAN 6?,1 -35421,How many oricon's have a romaji title of rakuen -memorial tracks- (maxi-single)?,3 -35426,Which Tries has a Goal smaller than 0?,2 -35440,"What is the total Frequency MHz Port Charlotte, Florida, which has an ERP W larger than 10, has?",3 -35442,What is the highest ERP W of the translator with a call sign of w284av?,1 -35443,How big was the crowd of the Home team of Collingwood?,1 -35451,What number of wins was ranked higher than 5?,4 -35456,How many people were in the crowd when the away team scored 17.17 (119)?,4 -35457,What was the largest crowd at vfl park?,1 -35462,"How many goals were scored on November 22, 1994?",4 -35464,"What is the highest number supporting prohibition in British Columbia when the percent opposing is more than 10.8, the percent supporting is less than 72.2, number against is less than 4,756?",1 -35465,"What is the lowest percentage opposing prohibition when the number opposing is 9,575 and the percent supporting is less than 72.2?",2 -35466,"What is the highest percent supporting prohibition when the number opposing is less than 2,978 and the percent opposing is less than 31.2 while the number supporting is less than 9,461?",1 -35467,what is the apparent magnitude of the constellation sculptor,3 -35471,"How many yards have a Player of james macpherson, and a Long smaller than 1?",3 -35472,"How many averages have a TD's of 6, and more than 25 yards?",3 -35473,What is the lowest car with more than 122 yards?,2 -35476,What round was Ryan Thang drafted in?,2 -35477,How many laps did Jeff Burton have when he drove car with a # over 9 and more than 118 points?,3 -35478,What was Scott Riggs points when he had more than 400 laps?,4 -35483,"On the date April 11, what is the total game number?",3 -35487,what is the earliest round for nominee david mundy?,2 -35488,what round saw the ground of telstra dome and shaun burgoyne as nominees?,1 -35489,"When the total winners was smaller than 2 and 2 woman won, what's the average of the men's half marathon winners?",5 -35490,"What has the lowest number of wins with GA smaller than 39, more than 2 losses, and ties greater than 0?",2 -35491,Which team has the most ties with fewer than 4 losses and GA smaller than 20?,1 -35492,How many games did the team lose that played 7 games and has a GA of less than 27?,3 -35499,How many games tied for the air force with over 57 years participating?,3 -35512,What is the smallest amount of spectators when the away team was Hawthorn?,2 -35513,How many people attended when the away team was Richmond?,4 -35515,What's the sum of the attendance for the calgary home team?,4 -35520,What is the sum of Crowd when the away team scored 8.12 (60)?,4 -35521,What is the number of people in the crowd when the home team scored 15.20 (110)?,3 -35529,"Where the time/retired is +1 lap, the constructor is BRM, and the grid is above 1, what's the highest laps recorded?",1 -35530,"When the laps driven were under 9 and the time/retired recorded was engine, what's the total number of grid values?",3 -35532,"When the laps are 31 and the constructor was honda, what's the sum of all grid values?",4 -35539,What is the pick number of the DB?,3 -35543,"When the laps are over 53, what's the average grid?",5 -35544,What's the average laps driven by david coulthard?,5 -35551,What's melbourne's average year?,5 -35563,What is the lowest total points Karine Trécy has with less than 4 draws?,2 -35564,What is the lowest total points Karine Trécy has with a less than 12 place?,2 -35565,What is the average rating of viewers 18 to 49 where the total viewer count is 3.93 million and share less than 4?,5 -35566,"What is the total number of ratings among the 18 to 49 group that was aired on January 7, 2009?",3 -35567,"What is the total number of viewers for the show that was aired on December 10, 2008 with an 18 to 49 rating less than 1.2?",3 -35568,What was Mike Hailwood's highest laps when he had a grid more than 7?,1 -35575,Which crowd had an Away team score of 7.12 (54)?,5 -35586,"Name the most rank for population more than 93,378",1 -35595,What is the high point toal for martine foubert placing below 2?,1 -35597,What is the highest crowd number for the home team Richmond?,1 -35619,What was the lowest crowd size when Carlton was the away team.,2 -35622,What size was the crowd when Hawthorn was the home team?,3 -35623,"What is the lowest number of Gold the Nation of Italy had when it ranked other than 1, and had more than 0 Silver?",2 -35624,How many Golds did the country with a Rank better than 5 and more Bronze than 1 receive?,4 -35625,"When the Total is less than 1, how many Bronze medals are won?",2 -35626,"When the Total is less than 1, and Bronze is 0, how many Gold medals are there?",4 -35627,What is the Rank of the Nation of Germany when the Total is more than 2?,3 -35628,Which weightlifter with a snatch larger than 117.5 had the lowest bodyweight?,2 -35629,"Which weightlifter, who had a bodyweight of less than 136.16 and a clean and jerk larger than 135, had the highest Total?",1 -35630,"Of weightlifters who weighed more than 136.16, who had the highest Total?",1 -35631,What was the average clean and jerk of all weightlifters who had a bodyweight smaller than 87.5 and a snatch of less than 95?,5 -35632,"What is the sum of the weight that all weightlifters managed to clean and jerk, among weightlifters who had a snatch of more than 95 and a Total of more than 200?",3 -35640,"What is the total number of Caps Aca Ratuva, a flanker, has?",3 -35643,What is the lowest medal total with less than 3 gold medals?,2 -35644,What's the lowest amount of laps with a start of 21?,2 -35651,"What year was the role nan taylor, alias of nan ellis, aka mrs. andrews and directed by William keighley?",4 -35652,"What is the latest year for the role of joan gordon, aka francine la rue?",1 -35657,What is the sum of all ratings at a weekly rank of 10 and a share less than 11?,4 -35658,What is the highest number of viewers for a rating greater than 9.4?,1 -35663,What is the lowest number of points that Tevita Vaikona scored when making more than 23 tries?,2 -35664,What is the average number of points scored by Joe Vagana when making fewer than 2 tries?,5 -35683,What was the lowest attendance at a game when Pittsburgh was the home team?,2 -35688,"What is the average Pick with a Position of pg, and a Round less than 1?",5 -35689,"Which top ten, having less than 12 cuts less than 2 top five, and events smaller than 14, is the highest?",1 -35690,What is the average for the top five having a number of 42 cuts made.,5 -35693,How many people attended Melbourne's away game?,4 -35700,What is the lowest total from slovenia with a Gold smaller than 0?,2 -35711,How many people came to the game at Victoria Park?,3 -35719,What is the 1st week sales for the album finding forever before the number 6?,4 -35721,What is the sum number of grid where time/retired is 2:41:38.4 and laps were more than 40?,3 -35723,How many laps did Jo Bonnier driver when the grid number was smaller than 11?,4 -35724,How many laps were there when time/retired was gearbox?,4 -35725,How many were in attendance at the game where the visiting team was the Jazz?,4 -35730,what is the lowest year with the result is nominated for the work title is love bites?,2 -35732,what is the latest year that has the result of nominated and the nominated work title is n/a?,1 -35738,How many total wins with the latest win at the 1999 Italian Grand Prix at a rank of 15?,4 -35739,What is the rank 6 lowest win who's first win was at the 1950 British Grand Prix?,2 -35741,What's the lowest pick for a defensive back at Drake?,2 -35742,What's terry jones' lowest pick?,2 -35751,Tell me the highest league goals with total goals less than 1 and FA cups more than 0,1 -35752,I want to know the sum of fa cup goals for david mirfin and total goals less than 1,4 -35757,What is the sum of channels for qubo network?,4 -35765,How many spectators had a home team score of 15.14 (104)?,5 -35771,"What is the highest Aug 2013 with a Nov 2011 smaller than 968, and a Jul 2012 with 31, and a Jun 2011 larger than 30?",1 -35772,What is the average Apr 2013 with a Jun 2011 less than 14?,5 -35773,"What is the average Feb 2013 with a Feb 2010 with 37, and a Nov 2012 less than 32?",5 -35774,"What is the total number with Nov 2012 with a Jun 2013 larger than 542, and a Aug 2011 more than 935?",3 -35775,"What's the total grid for a Time/Retired of +1:03.741, and Laps larger than 44?",3 -35781,Which pick was the lowest from Manila College in Philippines?,2 -35782,How many picks included Kenny Evans?,3 -35783,How many picks went to College of Letran?,3 -35786,"When was the first year he placed 2nd in Izmir, Turkey?",2 -35788,How many were in Attendance on the Date May 29?,3 -35809,What was the total number of years than had best improved singer (躍進歌手)?,4 -35819,What is the largest goal number when the transfer fee was £0.8m?,1 -35821,"What is the capacity at the nop aquatic centre, established after 1929?",3 -35822,What is the capacity for b national - basketball?,3 -35826,What was the attendance at the game against Ottawa?,5 -35827,What was the highest attendance at a Detroit home game?,1 -35829,What was the attendance of the Florida vs. Montreal game?,5 -35845,Name the total number of tracks for of the fallen angel,3 -35860,what is the debut year for player terry fulton with games less than 51?,5 -35861,How people attended Victoria Park?,5 -35872,"How many average scores have preliminary scores over 9.25, interview scores more than 9.44, and evening gown scores of 9.77?",3 -35873,"What is the least score for interview with a preliminaries score less than 9.4, evening gown score less than 9.55, and swimsuit score more than 9.18 in New York?",2 -35878,Tell me the average Grid for driver of Luca Badoer and Laps more than 69,5 -35883,What is the average Year for the Finish of lost 2001 alcs and the Percentage is over 0.716?,5 -35887,What was the crowd when the away team was hawthorn?,2 -35889,I want to know the highest silver for total of 4 for poland and gold less than 1,1 -35890,Tell me the average silver for total more than 1 with bronze of 2 for france and gold more than 0,5 -35891,Tell me the number of gold for albania with a silver of 1 and total less than 1,3 -35892,Tell me the average gold for moldova and bronze less than 1,5 -35893,Tell me the sum of gold for bronze less than 0,4 -35905,How many times has Watney made the top 25 for a tournament in which he as also been cut 6 times?,4 -35906,Which tournament has the highest number of cuts while also having 4 top 25 appearances?,1 -35907,What is the smallest grid with collision as the Time/Retired for pedro diniz?,2 -35908,What is the number of laps for Grid 14?,3 -35909,What is the number of the grid for mika häkkinen and more than 45 laps?,3 -35912,What is the Year of Christie Paquet with Issue Price of $34.95?,5 -35918,Who has the lowest earnings that has a rank smaller than 2?,2 -35919,"What is the average rank of someone who earned smaller than 3,069,633?",5 -35920,"What has the average wins in Australia who earned smaller than 3,133,913?",5 -35921,What was the total number of wins with player Mike Hill with a rank bigger than 2?,3 -35937,"With a Type of 4-6-4t, what is the sum Withdrawn?",4 -35940,What was the issue price in the year 2008?,4 -35941,What is the earliest year when the composition is 99.99% silver and the issue price is $94.95?,2 -35942,What year had an issue price of $94.95 and theme of Amethyst crystal?,5 -35947,What is the grid total for david coulthard with over 45 laps?,3 -35948,What is the average for the gymnast with a 9.9 start value and a total of 9.612?,5 -35952,In what week was the Result L 15-13?,5 -35953,What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5?,4 -35954,How many points for maserati v12 engines in 1968?,3 -35964,What is the average point total for arrows racing team before 1983?,5 -35979,Can you tell me the lowest Rank that has the Constituency of strathkelvin and bearsden?,2 -35980,"Can you tell me the sum of Swing to gain that has Constituency of caithness, sutherland and easter ross?",4 -35984,Hows many Laps are in a Grid of 4?,3 -35997,"When the away team scored 7.9 (51), what was the smallest crowd that turned out?",2 -36010,What was the attendance at Moorabbin Oval?,5 -36015,How many weeks are associated with Season 3 – spring 2008?,3 -36017,What is the average attendance when Brewers are the opponent with a score of 6–3?,5 -36021,"What is the avarage Attendance for the Date of october 26, 1947?",5 -36023,"Can you tell me the lowest Decile that has the Area of matakohe, and the Roll larger than 86?",2 -36024,Can you tell me the total number of Roll that has the Area of aranga?,3 -36026,"Which total number of Week has an Opponent of at new orleans saints, and an Attendance larger than 53,448?",3 -36029,What is the smallest crowd size for a game when the away team scored 17.16 (118)?,2 -36030,What is the average top-25 value for majors that have more than 0 wins?,5 -36031,What is the most number of cuts made that had more than 7 events played and more than 2 top-25s?,1 -36032,"For top-25 values under 2, what is the average number of cuts made?",5 -36034,with shares of 45.3% and total seats less than 166. what is the greatest number of seat?,1 -36035,"with a share of 44.2% and 77 seats, what is the greatest seat total?",1 -36044,What is the combined crowd in Vancouver on may 22?,4 -36047,How many caps for mike macdonald?,4 -36055,What's the total number of rounds with a win result at the sf 5: stadium event?,3 -36057,"How many skaters have a Rank in FS of 3, and a Rank in SP larger than 4?",3 -36058,"What is the average SP rank for skaters with a Rank in FS larger than 2, and a Final Rank larger than 5?",5 -36068,"What is the most recent date for a singles final with the score of 1–6, 4–6, 5–7?",1 -36072,What is the grid total when there are 37 laps?,3 -36074,What year was the Competition of World Junior Championships with a 20th (qf) position?,5 -36079,How many attended the game on 12/17 with stephen jackson as the leading scorer?,4 -36087,"What is the lowest amount of wins a manager with more than 0.526 pct., ranked higher than 37, and 947 losses has?",2 -36088,I want the total number of people in the crowd for essendon home team,3 -36089,How many grids have 102 laps and a Time/Retired of + 6.18?,3 -36090,How many laps did innes ireland drive with a grid higher than 11?,4 -36091,"What is the average grid that has a Constructor of brm, tony maggs, and a Laps larger than 102?",5 -36098,What is the average crowd size for princes park?,5 -36100,"When the home team scored 12.21 (93), what was the average crowd size?",5 -36125,"How many wins did SD Eibar, which played less than 38 games, have?",4 -36126,"What is the highest number of draws a club with less than 20 wins, less than 41 points, and less than 27 goals have?",1 -36127,"What is the lowest goal difference a club with more than 13 wins, less than 8 losses, and less than 11 draws has?",2 -36128,What is the number of played games a club with more than 71 points and less than 8 losses has?,4 -36129,What is the lowest goal difference a club with 61 goals against and less than 11 draws has?,2 -36130,Which Crowd has a Venue of princes park?,2 -36133,Which average Crowd has a Home team of essendon?,5 -36134,When was terry cook picked?,5 -36137,How many people attended the North Melbourne game?,5 -36145,"For R. Magjistari scores over 12, what is the highest number of points?",1 -36146,"For R. Magjistari scores under 6, D. Tukiqi scores of 6, and ranks under 5, what is the average A. Krajka score?",5 -36148,Name the total number of TD's for long more than 6 and cars less than 4,3 -36149,Name the sum of Long for yards less than 197 and players of matt nagy,4 -36160,What is the highest crowd with north melbourne as away team?,1 -36169,How many regions have a capital of matanzas and a 2005 population under 670427?,3 -36170,"What is the average area that has a Capital of camagüey, with a Population (%) larger than 7.02?",5 -36172,What was the average attendance for a Kings game when they had a record of 1–5–0?,5 -36174,What is the total on average for teams with 3 tournaments?,5 -36175,what is the lowest grid when the laps is more than 7 and the driver is rubens barrichello?,2 -36178,How many championships did the team or teams established in 1976 win?,4 -36179,Which WNBA team that won at least 2 championships was established most recently?,1 -36184,How many floors does the Custom House Tower have?,3 -36185,How many floors does the building on 800 Boylston Street have?,1 -36187,"There is a building at 800 Boylston Street, how many floors does it have?",4 -36188,What was the highest number of WJC Jews that had a WJC rank of 6 and a ARDA rank of more than 8?,1 -36189,"What was the WJC rank in San Francisco metro area with the ASARB Jews less than 261,100 and WJC Jews of more than 210,000?",5 -36191,"What was the total number of WJC rank when the ARDA rank was less than 2 and ASARB Jews less than 2,028,200?",3 -36192,How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2?,4 -36196,What is the highest number of people that attended a game at Moorabbin Oval?,1 -36198,What is the least amount of people that attended a game when Essendon was the away team?,2 -36207,"How many Norwegian Americans have Norwegian Americans (2000) of 109,744?",3 -36214,How many candidates had 0 percent of the vote in 1999?,3 -36223,"What is the first game number that had attendance of 56,505?",2 -36230,What is the smallest crowd that attended a game where the away team scored 14.19 (103)?,2 -36232,What is the average total medals of the team with 2 gold and less than 1 silver?,5 -36233,"What is the lowest amount of silver medals Iceland, who has less than 87 medals, has?",2 -36234,"What is the least amount of bronze Andorra, who has more than 6 total medals, has?",2 -36235,"What is the lowest amount of bronze Liechtenstein, who has more than 11 gold, has?",2 -36236,"What is the average amount of silver medals Montenegro, who has less than 15 bronze and more than 11 total medals, has?",5 -36237,What is the lower turnout that has a byut of 50.7 and an ou psd smaller than 36.8?,2 -36238,What is the voter registration that has a BYut of 48.2?,3 -36244,What was the total crowd size for the him team footscray?,3 -36261,Name the least goals for goal difference of 7 and losses more than 13,2 -36262,Tell me the total number of positions with goal difference more than -17 and played less than 38,3 -36264,What was the attendance when South Melbourne played as the home team?,2 -36265,What was the attendance when Footscray played as the away team?,3 -36266,"What is the lowest quantity for GWR Nos. 696, 779, 93 5 from the manufacturer Peckett and Sons?",2 -36267,What is the lowest capacity with an opening larger than 2015 in Trabzon?,2 -36268,"What is the average opening at Stadyum Samsun with a capacity smaller than 34,658?",5 -36283,What is the total pick numbers for the CFL team Edmonton Eskimos?,4 -36285,What is the total number of picks for the position of OL?,4 -36286,Name the highest week for result of w 38-13,1 -36294,How many people attended the game where the home team scored 10.13 (73)?,5 -36295,What is the lowest amount of people that attended a game where the home team scored 10.13 (73)?,2 -36312,Name the least Laps for accident and gird more than 13,2 -36313,Tell me the lowest Grid for engine and driver of emerson fittipaldi with more laps than 70,2 -36318,What is the smallest crowd size for punt road oval?,2 -36321,Which Number of people 1991 has a Percent of Slovenes 1991 of 14.4%?,1 -36327,How many people attended the game that the Away team scored 10.17 (77) points in?,3 -36332,How big was the crowd in a game that had the home team score 18.19 (127)?,3 -36335,"What is the high grid for osella - alfa romeo, and a Laps larger than 61?",1 -36336,How many picks does Matt Moran have altogether after round 6?,3 -36338,What is the total number of rounds that UCLA has?,3 -36339,What is the lowest round for Georgia Tech?,2 -36340,What is the average round for Georgia Tech with a pick greater than 103?,5 -36344,What is the difference with a loss smaller than 5 and points lower than 32?,3 -36345,Which loss had a player lower than 18?,2 -36347,"Tell me the week for result of l 31-27, and an Attendance smaller than 85,865",5 -36351,What is the highest number of laps completed by driver Joe Nemechek?,1 -36361,What is the average lap total for grids under 19 and a Time/Retired of +4 laps?,5 -36385,What is the average height with the Highest mountain of hochgall?,5 -36394,What is the number of Goals on 1950-05-30?,3 -36395,"In 1948-10-28, what were the lowest Goals in Tehran, Iran?",2 -36400,What is the average rank for antun salman?,5 -36404,Which track has a title : Just a little bit,2 -36410,"What is the average FA Cup value with a total greater than 2, a League Cup of 1, a league less than 3, and Paul Ince scoring?",5 -36411,What is the average total value in a League less than 1 with more than 1 League Cup?,5 -36412,"What is the smallest value for League Cup when the League number is greater than 1, no FA Cups, and Brian Deane scoring?",2 -36421,What is the total number of the established club of Lehigh Valley Storm?,3 -36424,What game number was played on March 4?,5 -36426,Tell me the number of attendance that has a result of l 35-17,3 -36428,Name for me the total number in attendance for week before 2 and result of t 24-24,3 -36429,I want the greatest attendance when the opponent is the chicago bears,1 -36430,What is the average attendance for a game against Phoenix?,5 -36436,What is the high grid with 27 laps?,1 -36437,"What is the high grid that has a Time/Retired of +6 laps, and under 69 laps?",1 -36438,"What's the total number of copies sold for the single that sold 206,030 in the first week?",3 -36439,What was the latest release date for Ariola in Spain?,1 -36441,On what date did Epic label start its release?,4 -36443,Which game did Curtis Borchardt play with more than 274 rebounds?,4 -36447,Which game did Bruesa GBC play in with fewer than 275 rebounds that is ranked less than 4?,4 -36449,Tell me the average rank for dharma productions before 2013,5 -36450,Name the average year for 4 rank,5 -36451,Name the lowest rank for red chillies entertainment for 2013,2 -36453,What is the rank for the player with 5 wins and under 32 events?,4 -36454,"What is the rank for the player with over $1,627,890?",3 -36455,"What is the rank for the player with over 2 wins and under $1,162,581 in earnings?",4 -36465,"What is the 1930 population when the 2006 est. is less than 44,726 in the county of frio?",4 -36466,"What is the highest 1930 population when the 2000 population is 43,966 and the 1900 population is less than 8,401?",1 -36467,Tell me the sum of wins for top 5 less than 1,4 -36468,I want the average events for top 10 less than 4,5 -36469,Name the highest cuts made when top 5 is less than 3 and top ten is more than 4,1 -36470,I want the most top 25 when events are more than 20 and top 10 is more than 21,1 -36471,What was the Attendance on April 28?,4 -36479,What was the attendance of the game where fitzroy was the away team?,3 -36492,What was Alexander Wurz's highest laps when he has a grid less than 14 and a time/retired of +1 lap.,1 -36495,What was the most recent year that a team located in Highland Township and a member of the West Division joined the Kensington Lakes Activities Association?,1 -36509,What is the top speed of the model 1.8 20v t?,4 -36515,"What is the biggest roll number of Sylvia Park School, which has a state authority?",1 -36518,How many years have a theme of Toronto Maple Leafs and an Issue Price of 24.95?,3 -36532,Which NGC number has a Constellation of ursa major?,1 -36535,What is the average crowd size for an away team with a score of 14.2 (86)?,4 -36553,"What is the average frequency MHz for license of eastville, virginia?",5 -36554,What is the average ERP W when the call sign is whre?,5 -36561,"How many events for orville moody, ranking below 3?",4 -36562,What is the rank for don january with over 2 wins and over 17 events?,2 -36569,What was the average attendance of a team with a 38–31–8 record?,5 -36570,What is the smallest grid for Bob Anderson?,2 -36575,What is the average number of years associated with 51 games tied and over 1184 total games?,5 -36576,What is the highest number of games tied for teams with under 551 games and a percentage of under 0.5593?,1 -36586,what is the grid when the time/retired is oil pressure and the laps are more than 50?,5 -36587,what is the grid when the time/retired is 1:46:42.3?,4 -36588,What was the attendance when Fitzroy played as the away team?,3 -36593,What is the grid total for cars that went 17 laps?,4 -36594,How many golds for the nation ranked below 5 and over 1 bronze medals?,1 -36604,What year did was the Inside Soap Awards won?,5 -36611,What is the number of votes for the party which got more than 28 seats?,3 -36612,What is the number of votes for the Party of Labour?,2 -36615,"Which highest number of Seats has votes of 244,867?",1 -36617,What was the lowest Crowd of the game that had an Away team score of 13.17 (95)?,2 -36623,How many yards for the player with 20 solo tackles and under 0 TDs?,4 -36624,How many yards for the player with 1 solo tackle and over 0 sacks?,1 -36637,"What is the average rank of the movie with an opening week net gross more than 81,77,00,000 after 2012?",5 -36638,What is the highest opening week net gross of the movie ranked higher than 5 from Reliance Entertainment?,1 -36639,"What is the highest rank of Jab Tak Hai Jaan, which has an opening week net gross less than 99,00,00,000 and was after 2012?",1 -36640,"What is the highest rank of the movie with an opening week net gross less than 80,87,00,000 before 2011?",1 -36641,Tell me the total number of Grid for Bob Evans and Laps less than 68,3 -36643,I want the sum of Laps with Grid less than 11 for jean-pierre jarier,4 -36645,How may episodes did season 1 have?,3 -36652,"What is the high grid number for a Time/Retired of + 3 laps, and a Laps smaller than 57?",1 -36655,"What is the number played for the Barcelona B club, with wins under 11?",4 -36656,"What was the biggest draws, for wins under 4, and points of 20-18?",1 -36657,"What is the average of goals against, where overall goals are more than 35 and the goal difference is 20?",5 -36658,What is the Crowd number for the Away team of Richmond?,4 -36660,What is the smallest Crowd number for the Venue named Princes Park?,2 -36663,Tell me the lowest date for result of win and method of points with notes of opening round,2 -36666,How many win total which has the rank smaller than 3 and events smaller than 22,3 -36669,What is the average year founded for schools in claremont?,5 -36674,What is the lowest attendance for a stadium that has an average smaller than 307?,5 -36677,"What is the average rank of a country with less than 13 bronze medals, a total of 11 medals, and more than 4 gold?",5 -36678,"What is the lowest bronze a team with 9 silvers, a total larger than 13, and more than 13 gold medals has?",2 -36679,What is the highest number of silvers a team with more than 95 total medals has?,1 -36680,"What is the highest total medals a team with less than 15 gold, less than 5 bronze, and a rank larger than 10 has?",1 -36691,What was the lowest Attendance for Games played on the Date of February 5?,2 -36692,What was the total Attendance for Games while Chicago was the visiting Team?,4 -36723,What was the lowest pick number for the Boston Celtics?,2 -36729,What is the highest score with a Result of 1–1 on 4 march 2001?,1 -36750,"In the game at Victoria Park, what was the number of people in the crowd?",4 -36765,"what is the highest pick number of the CFL team, the winnipeg blue bombers?",1 -36777,What is the highest overall for a round larger than 8 for pavol demitra?,1 -36782,How many Drawn did Coach Francis Cummins have with less than 4 Lost?,4 -36784,What was the total for christina liebherr?,2 -36790,What was the lowest attendance at Windy Hill?,2 -36810,What was John Watson's total laps with a grid of less than 7?,3 -36811,How many laps were there with #9 grid?,3 -36829,What is the average crowd size for the home team essendon?,5 -36831,What is the average grid with brm and under 63 laps?,5 -36841,What is the highest decile value with a roll greater than 301 in Hauraki?,1 -36854,"What was the average year for a coin that had a mintage smaller than 10,000?",5 -36866,What is the total Crowd number for the Away team of Hawthorn?,3 -36871,What is the average crowd size when the home team score was 8.11 (59)?,5 -36876,How many were in attendance on 14 April 2007?,2 -36887,Tell me the least Grid with points more than 11 and drivers being sébastien bourdais with laps less than 67,2 -36888,Name the most laps for grid more than 9 and the driver being jan heylen,1 -36890,What is the grid when the laps were 24?,3 -36892,What was Jack Brabham's highest grid when his laps were more than 90?,1 -36893,What was CHris Amon's highest lap when his grid was 4?,1 -36899,How many laps for alexander wurz with a grid under 12?,3 -36900,"What is the lowest evening gown score a contestant with an average less than 8.23, an interview score of 8.11, and a swimsuit larger than 7.84 has?",2 -36901,What is the total interview score a contestant from Indiana with an average smaller than 8.3 has?,3 -36902,"What is the highest swimsuit a contestant from Kansas with an average larger than 8.48, an interview higher than 8.58, and an evening gown higher than 8.82 has?",1 -36903,What is the average interview score of a contestant from Louisiana with an evening gown smaller than 8.82?,5 -36910,"What is the highest rank of the player with earnings of $6,715,649?",1 -36911,"What is the rank of Lee Trevino, who had less than 27 wins?",4 -36915,"What was the latest gross 75,50,00,000?",1 -36916,What is the total count of net gross in 1957?,3 -36917,What is the total End term with a Title of prince regent of bavaria?,4 -36918,"What is the smallest End term with a Start term of 1913, and a Name of ludwig iii?",2 -36920,What is the average Start term with a 1912 end term?,5 -36922,"Which game has a high rebound of Evans (7) and a high assist of Evans, Ollie (3)?",1 -36923,"What division has the highest FA Cup Goals, but a Total Goal score less than 5, and a Total Apps of 52?",1 -36924,"What is the average FL Cup Apps, with a FL Cup Goals greater than 0, but a Other Apps less than 0?",5 -36925,"What is Division One's total number of FL Cup Goals, with an Other Apps greater than 3, and a FA Cup Goals greater than 0?",3 -36926,"What is Division One's average Other Apps, with a League Goal less than 1?",5 -36929,What is the average grid for piers courage?,5 -36931,"What is the lap total for george eaton, with a grid under 17 retiring due to gearbox?",4 -36932,How many laps for denny hulme with under 4 on the grid?,4 -36934,What is the sum of the crowd when the away team score was 12.11 (83)?,4 -36936,What is the sum of Crowd when Essendon was the home team?,4 -36940,What is the top round for the baltimore bullets with a Pick larger than 6?,1 -36945,What is Mark Grieb's average when his TDs are smaller than 2?,4 -36946,What is Craig Whelihan's average when his yards are smaller than 0?,4 -36947,Which largest average had 1229 yards?,1 -36952,What is the highest rank Mount Elbert has?,1 -36962,Name the total number in attendance for when the bulls visited,3 -36963,Name the most swimsuit for interview less than 8.46,1 -36964,Name the most evening gown for average less than 8.793 with interview of 8.51 and swimsuit less than 8.12,1 -36965,"On average, how many Starts have Wins that are smaller than 0?",5 -36966,Which of the top-10s has a starts value of 14?,1 -36967,"In the tournament of HSBC Champions, what was the sum of the Starts with Wins lower than 0?",4 -36969,What is the lowest post number for calvin borel?,2 -36972,Which Total has a Gold smaller than 0?,4 -36973,Which Bronze has a Gold smaller than 0?,5 -36975,"How many years have Drivers of ben hanley, and Flaps smaller than 0?",3 -36976,"How many Points have Drivers of adrián vallés, and a Year larger than 2006?",5 -36977,"How many Poles have Drivers of juan cruz álvarez, and FLaps larger than 0?",4 -36986,What is the best rank with a time of 1:05.14.10?,1 -37001,"With Laps greater than 78, what is the lowest Grid?",2 -37002,How many Laps with a Grid smaller than 11 did John Watson have?,5 -37003,How many Laps with a Grid smaller than 3 did Driver NIki Lauda have?,5 -37004,What is the low grid total for a retired due to steering in under 15 laps?,2 -37005,What is the average laps that had a time/retired of +5 laps?,5 -37007,"Which is the lowest Round with the Opponent, Paul Cahoon and Location, Amsterdam, Netherlands?",2 -37023,"What is the maximum goals conceded for a team with 2 draws, more than 29 goals and a diff larger than 15?",1 -37024,What is the points for a team with more than 9 wins and more than 40 goals?,4 -37040,Tell me the total number of Grid for Time/Retired of +2 Laps and Laps less than 70,3 -37044,I want the lowest points diff for against being less than 578 and lost being 15 and points more than 26,2 -37045,I want the total number of points for against of 753 and points diff more than -114,3 -37050,"What is the largest 2000 GDP when the 2008 GDP is smaller than 3,632, 2010 GDP is 2,558 and 2009 GDP is larger than 2,239?",1 -37051,"What is the GDP in 2008 for the region where 2009 is less than 3,355, 2005 is larger than 1,103, 2010 GDP is 3,977 and 1995 GDP is larger than 413?",3 -37052,"What is the minimum 2010 GDP if the 2009 GDP is larger than 3,749, 1995 GDP is 876 and 2008 GDP is larger than 4,885?",2 -37053,What is the 1995 GDP when 1990 GDP is 441 and 1985 GDP is less than 359?,2 -37054,"What is the maximum 1985 GDP for the region where 1990 GDP is less than 267, 2000 GDP is 333 and 2005 GDP is less than 658?",1 -37055,"When populatioin is greater than 7,747 and the type is V, what is the sum of code?",3 -37064,How many people in total have attended games where carlton played as away?,3 -37065,When the home team scored 19.15 (129)?,2 -37077,When was the last time a nominee for Best Revival of a Musical was selected?,1 -37085,What is the average number of laps for mika salo's arrows car with a grid over 13?,5 -37088,"When Hamilton Academical is the Opponent, what is the total Attendance?",3 -37091,What is the average number in attendance on September 16?,5 -37092,What is the sum of people in attendance on September 8?,4 -37096,What is the low point total for teams with 81 places?,2 -37104,In what Year was the Rank 14.0 14?,4 -37106,What Year has a Rank of 12.0 12?,5 -37110,How many people watched the game at Lake Oval?,4 -37112,"What was the Comp average, having Gino Guidugli as a player and a rating of more than 92.2?",5 -37113,"For the player with yards less than 138, and Comp more than 0, what was the highest Att.?",1 -37115,"What is the high lap total for a grid less than 6, and a Time/Retired of halfshaft?",1 -37122,What was the grid associated with under 26 laps and a Time/Retired of +6.077?,5 -37127,"What is the grid total that had a retired for engine, teo fabi driving, and under 39 laps?",4 -37128,What is the average grid for johnny dumfries with less than 8 laps?,5 -37129,"What is the low lap total for minardi - motori moderni, and a Grid smaller than 18?",2 -37131,What is the average where the swimsuit is larger than 9.437?,1 -37132,What is the evening gown score where the interview score is 9.22 and the preliminaries are larger than 9.057?,4 -37133,What is Pennsylvania's average where the swimsuit is smaller than 9.109 and the evening gown is smaller than 9.163?,5 -37134,"What is the preliminaries score where the swimsuit is smaller than 9.297, the evening gown is 9.617, and the interview is larger than 9.143?",5 -37136,"How many 5K wins did Lynn Jennings, who had more than 0 10K wins, have?",4 -37137,"What is the average 10K wins the United States, which had 0 5K wins, have?",5 -37138,"How many 5K wins did Emily Chebet, who had more than 2 total, have?",4 -37139,"How many 5K wins did Emily Chebet, who had more than 2 total, have?",3 -37140,What is the largest number of Peak lessons taught when the Evaluation average (Before April 2009) was 4.4?,1 -37147,What is Karl Wendlinger's total grid #?,3 -37151,Name the sum of gross tonnage for wood on date more tahn 1846 for comissioned and ship of esk,4 -37152,Tell me the sum of Gross Tonnage for isis ship on date commisioned less than 1842,4 -37153,"Tell me the lowest date commissioned for iron rmsrhone and gross tonnage less than 2,738",2 -37159,What is the highest Laps with a Time/Retired Wheel?,1 -37166,How many people attended on April 12?,3 -37178,Tell me the lowest height for class of hewitt and prom less than 148,2 -37179,Tell me the total number of prom for height less than 615,3 -37182,Tell me the lowest prom for class of hewitt and peak of cushat law and height more than 615,2 -37194,What was the top crowd when the away team scored 11.14 (80)?,1 -37196,What was the top crowd when collingwood played home?,1 -37208,How many crowds had a home team score of 9.13 (67)?,3 -37211,What is the sum of the stages for category 1 races after the year 2003?,4 -37213,How big was the average crowd when the opposing team scored 19.16 (130)?,5 -37215,"For Getafe CF, what is the highest number of goals scored?",1 -37216,"For players with fewer than 41 goals for CA Osasuna and averages under 1.06, what is the average number of matches?",5 -37217,"For averages of 1.58 and matches under 38, what is the average number of goals?",5 -37222,what is the game for 23 april when batting 2nd is england 5/113 (19)?,2 -37223,what is the game when batting 2nd is new zealand 6/133 (18)?,2 -37224,what is the game when the result is new zealand by 4 wickets?,1 -37230,Which Grid did Alain Prost drive on?,4 -37249,"When the Apps were smaller than 22, what's the lowest amount of goals scored in a game?",2 -37250,What's the total number of all divisions during the 2006/07 season where they scored more than 1 goal?,3 -37251,What is the total of a crowd with an Away team score of 8.17 (65)?,4 -37252,What is the average crowd at victoria park?,5 -37262,How many receptions does Chris Watton with yards of less than 1?,3 -37265,What was the largest crowd for a game where the away team scored 14.20 (104)?,1 -37275,What is the fewest bronze medals for a team with fewer than 1 silver and rank lower than 5?,2 -37276,"How many bronze medals for the nation with fewer than 3 gold, 1 silver and rank of 3?",3 -37277,What is the largest total for a nation with 1 bronze and more than 1 silver?,1 -37278,What is the smallest total for a nation with more than 1 silver?,2 -37282,What was the attendance when Geelong played as the away team?,3 -37285,What is the mean pick when the play is Marc Lewis (lhp) and the round is less than 20?,5 -37287,Which is the biggest pick for Naperville Central High School?,1 -37294,Name the lowest reported isn for russia,2 -37295,Name the average reported isn for july 2007 for kuwait release of no,5 -37296,What is the highest region number with a 499 population?,1 -37298,How many attended the game on april 14?,3 -37300,What is the size of the crowd at the game where the home team scored 10.8 (68)?,5 -37305,I want the total number of Laps for Rubens Barrichello,3 -37309,What is the highest rank for Peter Symes?,1 -37323,How many people were in the crowd when the away team was north melbourne?,4 -37326,"When was the first HC climb which, more recently than 2012, had more than 1 HC climbs, more than 29 times visited?",4 -37329,What was the most recent year a height of 2770 m and a HC climb before 1992 was climbed?,3 -37332,"How many picks had a Reg GP that was over 906, when the Pl GP was bigger than 99?",3 -37333,Which is the smallest pick number that had a Reg GP of less than 0?,2 -37341,What is the average crowd when footscray is at home?,5 -37345,Tell me the lowest Laps with a time/retired of +2 Laps and Grid of 20,2 -37364,What pick was Dominic Uy?,5 -37387,What was the attendance when the Braves were the opponent and the record was 56-53?,5 -37389,How many laps for jochen rindt?,3 -37390,What is the grid total for jean-pierre beltoise?,3 -37392,What is the average lap time for retired time of +23.707 and a Grid greater than 21?,5 -37395,Tell me the lowest avg for 6 yards and rec more than 1,2 -37396,Name the sum of long for avg more than 9.8 with rec less than 5 and yards less than 20,4 -37397,Name the sum of long for avg less than 6 and rec less than 2,4 -37398,Name the average TD's for andy mccullough with yards less than 434,5 -37399,Name the lelast decile for roll of 428,2 -37400,Name the most decile for roll of 428,1 -37401,"What's the highest year than hawthorn won with a season result of preliminary finalist and a crowd smaller than 27,407?",1 -37404,Tell me the sum of number of jamaicans given british citizenship for 2004 and registration of a minor child more than 640,4 -37406,What is the highest PL GP for a round greater than 9?,1 -37429,How many laps did the grid 1 engine have?,4 -37430,What was the highest lap for Luigi Piotti with more than 13 grid and a time/retired engine?,1 -37431,What Cornerback has the lowest Pick # and Round of less than 1?,2 -37433,How many attended the game on August 12?,3 -37434,What is the largest crowd with Home team of hawthorn?,1 -37439,What is the oldest season that had a listed Super G score of 33?,2 -37441,"What is the high rank for players earning over $533,929?",1 -37445,How many carries for the player with a 2 yard long?,3 -37447,How many wins were there in the 2000 season in the central division with less than 81 losses?,5 -37448,What was the lowest percentages of wins in 1989 with a GB [c] of 17?,2 -37449,How many losses did the 1943 MLB have?,5 -37450,What was the lowest wins in a season less than 1915 with a 7th finish and 0.429 win %?,2 -37455,What is the highest 1985 value that has a 1990 value of 93?,1 -37456,What is the highest 2000 value that has a 2010 value of 82 and a 2005 value less than 74?,1 -37457,What is the 1995 value with a Jiangxi year and a 2008 value bigger than 67?,4 -37458,What is the lowest 2009 value with a 2010 value of 141 and a 1985 value bigger than 165?,2 -37459,"What is the 1995 value with a 2005 value bigger than 74, a 2008 value of 84, and a 2000 value less than 80?",4 -37466,What is the lowest gold medals of a rank 12 team?,2 -37467,What is the total number of bronze medals of the team with more than 8 silvers and a total of 50 medals?,3 -37468,"What is the average gold medals Uzbekistan, which has less than 24 total medals, has?",5 -37470,Which year had playoffs of champion?,5 -37498,"What was the Attendance when the Home team was Montreal, on the Date of March 24?",4 -37504,Who has a highest Long with 26 Yards and less than 9 Car?,1 -37505,Who has the highest Long with 59 Car?,1 -37507,I want to know the sum of points with a previous rank of 3,4 -37509,Tell me the sum of rank for australia when points are less than 79,4 -37513,What is the total for the person with 73.28 bodyweight and fewer snatches than 75?,5 -37515,What is the total for the player with more snatches than 87.5 and bodyweight more than 74.8?,5 -37516,What is the bodyweight for the player with a clean & jerk of 82.5 and total smaller than 152.5?,4 -37527,How many draws feature artist wendy fierce?,4 -37534,What is the smallest grid for driver of juan pablo montoya?,2 -37537,"What is the premiere rating for a Chinese title of 野蠻奶奶大戰戈師奶, and a Peak smaller than 41?",4 -37538,What is the premiere rating associated with an average of 35 ranked above 1?,2 -37542,How many fans were at Essendon?,3 -37567,How many airlines have the star alliance and are in brazil?,3 -37582,"How many release dates have a Country of west germany, and a Release format of vinyl?",3 -37590,"For Laps smaller than 6, what does the Grid add up to?",4 -37596,What is the low grid for gerhard berger for laps over 56?,2 -37598,What is the purse total for the royal caribbean golf classic?,4 -37616,Tell me the highest laps for time/retired of +2 laps and driver of felice bonetto,1 -37623,What is the smallest pick with a Reg GP less than 0?,2 -37624,What is the total of pick numbers with a Reg GP larger than 0?,3 -37625,What is the total points when there is a refusal fault and the rider is H.R.H. Prince Abdullah Al-Soud?,4 -37626,What is the total points when the horse is Chippison?,3 -37628,What is the average amount of points when the time (s) is 81.78?,5 -37637,what is the highest ngc number when the declination (j2000) is °25′26″?,1 -37643,"What's the sum of the population for the place simplified 上杭县 with an area smaller than 2,879?",4 -37644,"What's the total number of density for the place with a population over 393,390?",3 -37645,What's the average area for the xinluo district?,5 -37646,What was the attendance on July 30?,5 -37647,How many Goals have a Result of 0 – 4?,5 -37650,Which Goals have a Date of 7 february 2010?,1 -37652,What was the first year to have a Chassis of Jordan 193?,2 -37655,What is the Enrollment where Cougars is a Mascot?,4 -37662,what is the least number of goals for when the goals against is 70 and the ties less than 0?,2 -37663,what is the average losses when the wins is 9 and ties more than 0?,5 -37664,what is the lowest number of ties when the losses is 7 and games played is less than 10?,2 -37665,"what is the sum of games played when the losses is less than 7, the wins is 6 and the goals for is more than 76?",4 -37666,what is the total number of games played when the goals for is less than 30?,3 -37667,what is the sum of wins for the ottawa hockey club when the games played is less than 10?,4 -37668,"How many people attended the game on February 3, 2008?",4 -37672,How large of a crowd can the Brunswick Street Oval hold?,3 -37674,What is the lowest number of goals scored by a player in the normal league games where more than 8 total goals were scored?,2 -37675,What is the sum of goals scored in regular league play by Mustoe where he scored 0 goals in the League Cup?,4 -37676,What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals?,5 -37677,What is the lowest number of goals scored in regular league games by Ehiogu where he scored 0 goals in the FA Cup and at least 1 goal in the League Cup?,2 -37681,How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)?,4 -37686,Name the year that Birds of a feather category for most popular actress was nominated,5 -37689,"How many points for the ferrari v12 engine and ferrari 1512 chassis, after 1965?",1 -37694,How many people were in the crowd when the home team scored 31.9 (195)?,3 -37696,"How many golds for nations ranked below 4, over 5 medals, and under 6 silvers?",3 -37703,What was the smallest crowd when Melbourne was the away team?,2 -37704,What was the largest crowd when the away team scored 2.19 (31)?,1 -37718,Who is Essendon's home team?,2 -37724,"What was the rank of the car who had more than 182 laps, gris less than 3, with a qual time of more than 134.14 and a time/retired of +14:21.72?",2 -37725,How many laps did Chuck Stevenson have with a grid of less than 11?,3 -37726,Which Week has an Opponent of san francisco 49ers?,1 -37727,"What is the snatch for the Clean & jerk of 145.0, and a Bodyweight larger than 76.22?",5 -37729,"What is the least Bodyweight for the Clean & jerk of 145.0, and a Snatch smaller than 122.5?",2 -37731,What was the latest year that resulted in won?,1 -37734,What is the average pick after Round 2?,5 -37739,What was Rudy Harris' pick number in round 4?,1 -37740,What was the pick number for the kicker in round 8?,3 -37746,What year was there a category of Best Supporting Actress?,4 -37752,"Which average rank has an Earning amount that is less than $224,589?",5 -37754,What is the total number on roll for Shelly Park school?,3 -37759,What was the total number of TD's for Player Lashaun Ward while also having a Long of 2?,3 -37764,What was the total crowd at the game where the home team score was 8.21 (69),3 -37766,what was the total crowd in the game where the home teams score was 18.12 (120),2 -37768,"what is the lowest solo when assisted is less than 10, td's is 0, sack is less than 3 and yards is more than 5?",2 -37770,"what is the highest td's when the sack is less than 13, tackles is less than 8 and yards is less than 0?",1 -37771,How many losses had a played number that was more than 34?,3 -37772,Which highest 'goals against' number had wins of 19 and a 'goals for' number that was bigger than 53?,1 -37773,Which mean number of losses had a played number that was bigger than 34?,5 -37774,Which lowest goals for number had a played number of less than 34?,2 -37775,Which Played number had a goal difference of more than 0 when the club was Valencia CF?,3 -37780,Name the least series number with production code of 717 and season number less than 17,2 -37783,Which 2005 has a Güzelçamlı’s Lost Panther of the muse?,1 -37788,what is the grid when the laps is more than 20?,4 -37806,what is the highest year that the U.S. captain is ken venturi?,1 -37808,How much did jim colbert earned ranked above 2?,3 -37810,What is the largest crowd with a Home team score of 9.17 (71)?,1 -37814,What was the attendance when the VFL played Arden Street Oval?,3 -37831,What are panoz motor sports' lowest number of laps before 2002?,2 -37832,What's the sum of the games that had paul (9) for high assists?,4 -37834,"What week was the game played at Robert f. Kennedy memorial stadium with more than 54,633 people in attendance?",3 -37839,What was the average figure score of the skater with a free score under 56.35?,5 -37845,What is the lowest number of bronze medals for nations with over 6 total and 2 golds?,2 -37846,What is the total number of silver medals for karate athletes with over 2 golds?,3 -37850,What is the average attendance on april 24?,5 -37854,What is the number of the grid when there was a Time/Retired of engine and less than 9 laps?,4 -37855,what was the attendance for a home venue and a w 3-0 result?,5 -37856,what was the attendance at the home venue with result w 3-1?,1 -37872,What is the sum of qualifying scores when the final score is 16.625?,3 -37877,What is the least amount of games for Luis scola with a rank greater than 1?,2 -37880,"What is the highest Quantity for PTRD Nos. 3, 15?",1 -37881,"How many were hosted whene the average attendance was 27,638?",3 -37882,What is the lowest attendance last year when more than 176 were hosted?,2 -37883,"Of 2010 est. with less than 171,750 and 2000 less than 131,714, what is the 1970 population average?",5 -37884,"With 1990 growth greater than 19,988 and 1970 growth less than 10,522, what is the 1980 average?",5 -37885,"Of 2000 growth less than 32,093 and 1980 growth over 64,975, what is the 1970 total number?",3 -37886,"How many 1990 growth numbers had less than 10,522 in 1970?",3 -37887,"Which is the lowest 1980 growth that had 2,610 in 1970?",2 -37888,What is the high lap total that has a grid of less than 4 and a Time/Retired of + 1 lap?,1 -37889,How many laps associated with a Time/Retired of + 1:25.475?,3 -37897,What is the average number of goals of the player with 234 apps and a rank above 8?,5 -37898,What is the average avg/game of the player with 97 goals and a rank above 7?,5 -37899,What is the highest number of games won where less than 21 games were conceded and less than 18 games were actually played?,1 -37900,"What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws?",5 -37902,What was the smallest crowd at junction oval?,2 -37917,What is the number of bronze that silver is smaller than 1 and gold bigger than 0?,5 -37920,what is the average points when the nation is wales and the pts/game is more than 5?,5 -37921,"When is the earliest year for it is in barcelona, spain?",2 -37922,"What is the average year they finished 5th in santiago, chile?",5 -37923,Which pick was MIchael Holper?,2 -37925,Which United States player from Hawaii-Hilo had the lowest pick?,2 -37927,What is the average Gold where the Nation is Russia (rus) and the number of silver is less than 2?,5 -37928,What is the total where the nation is South Africa (rsa) and bronze is less than 1?,4 -37932,Tell me the most crowd for arden street oval venue,1 -37935,What was the placing of the nation of East Germany?,3 -37936,What's the highest level of team Astana since 2007?,1 -37937,"What is the average amount of goals that has a points smaller of 882, less than 5 field goals, and less than 85 tries all by Ty Williams.",5 -37940,What is the average crowd size for Richmond home games?,5 -37941,What is the largest crowd for North Melbourne home games?,1 -37948,Name the highest game for west (8) high assists,1 -37949,Which Year has a Date of 14 February?,2 -37957,What was the Average crowd when the away team was north melbourne?,5 -37966,What is the lowest attendance on November 18?,2 -37972,"What year had an issue price of $2,995.95, and a theme of grizzly bear?",1 -37973,Tell me the total for silver more than 0 for italy with gold less than 29,2 -37974,Tell me the average bronze for total less than 4 and silver more than 0,5 -37975,I want to know the total for silver more than 0 with bronze more than 21 and gold more than 29,3 -37976,How many carries for jeff smoker?,4 -37977,How many average carries for the player with 3 as a long?,5 -37992,How many people in 1991 have a Village (German) of rupertiberg?,3 -38012,What is the lowest total when the Bronze metals are larger than 0 and the nation is France (fra)?,2 -38013,What is the highest silver medal count when there is 1 Bronze medal and 1 Gold medal?,1 -38014,"What is the total number of medals when the Bronze, Silver, and Gold medals are smaller than 1?",3 -38015,"What is the sum of the Bronze medals when the Gold medals are larger than 0, Silver medals are smaller than 1, and the total is smaller than 1?",4 -38026,How many lost when the number managed is over 2 and the period is from 12 november 2012 – 27 november 2012?,3 -38027,"What is the average attendnace for seasons before 1986, a margin of 6, and a Score of 13.16 (94) – 13.10 (88)?",5 -38028,"When is the earliest season at waverley park, a Score of 15.12 (102) – 9.14 (68), and a Margin larger than 34?",2 -38029,"How many seasons feature essendon, and a Score of 15.12 (102) – 9.14 (68)?",3 -38030,How low was the attendance at the game that ended with a home team score of 16.13 (109)?,2 -38033,What was the crowd size for the game where Footscray was the away team?,3 -38034,How many total wins do the Texas Tech Red Raiders have including the 7 regular season wins?,1 -38035,What is the total round with an overall of 199 with sweden?,4 -38045,What's the average of shows that had a timeslot rank greater that 3 but still had a smaller viewership less than 4.87?,5 -38047,How many losses did the East Division have who appeared 18 times and lost 8?,2 -38049,How many medals for spain with 1 silver?,4 -38051,How many medals for spain that has 1 silver and 1 bronze?,3 -38053,How many attended the game against the sharks with over 86 points?,5 -38057,What is the high capacity that has an average under 489 and a highest over 778?,1 -38064,What is the average number of caps for Meralomas with positions of centre?,5 -38066,What is the smallest population in a region greater than 9?,2 -38067,What is the average area for code 98030 with population over 312?,5 -38094,What is the largest base pair with a Strain of unspecified?,1 -38095,"What is the lowst base pair with a Species of borrelia garinii, and a Genes larger than 832?",2 -38098,"How many genes have a Species of leptospira interrogans, and a Base Pairs smaller than 4,277,185?",4 -38101,What is the sum of draws with 274-357 goals?,4 -38102,What is the lowest played 2 number with less than 83 losses and less than 65 draws with Chernomorets Novorossiysk in season 8?,2 -38103,What is the rank number with 562-506 goals before season 13?,3 -38104,How many seasons have goals of 261-338 with more than 111 losses?,3 -38105,"What is the highest season number with 57 draws, rank 20, and more than 1 spell?",1 -38112,Tell me the highest goals with tries less than 1 and fullback position,1 -38113,Tell me the lowest tries for goals more than 0 with centre position and points less than 54,2 -38118,"What is the most recent built year when the year of entering service was more recent than 2003, and the knots is less than 27?",1 -38119,How many knots did the Ms Moby Vincent have when passengers was less than 1.6?,3 -38123,What is the average number of silvers for nations with over 1 bronze medal?,5 -38130,"What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65?",4 -38132,"What is the total number of Viewers with a Rank (Night) of n/a, and a Timeslot of 8:30 p.m.?",3 -38133,How many people attended the game when Calgary was the home team and the decision was McLean?,3 -38136,What is the least number of people to attend a game when Los Angeles was the home team?,2 -38149,What is the low no result with more than 5 loss and a win ration lesser than 58.06?,2 -38154,What was the highest average for the contestant having an interview score of 8.46?,1 -38159,What is Rhett Mclane's highest pick number?,1 -38160,What is Colorado College's lowest pick number?,2 -38179,"What is the lowest round for Fort Lauderdale, Florida, United States, with a win and a time of 3:38?",2 -38180,How many rounds have a time of 2:18?,3 -38181,What is the lowest Grid with fewer than 65 Laps and with Driver Tim Schenken?,2 -38188,Tell me the sum of draws for position less than 15 with played more than 38,4 -38189,Name the sum of played for position less than 9 and draws more than 19 with goals against more than 27,4 -38205,What is the low silver medal total for nations with over 1 bronze ranked above 11?,2 -38206,What is the high total for nations with 1 gold and over 1 bronze?,1 -38209,What is the average NGC number of everything with a Right ascension (J2000) of 05h33m30s?,5 -38212,How is the crowd of the team Geelong?,5 -38213,Who has the smallest crowd in the Venue of Arden Street Oval?,2 -38220,"What is the average feet that has a Latitude (N) of 35°48′35″, and under 8,047m?",5 -38221,"What is the lowest feet total with a Longitude (E) of 76°34′06″, and a Prominence (m) under 1,701?",2 -38225,What is the lowest figure score when the free is 556?,2 -38227,What is the size of the crowd for the game where the away team South Melbourne played?,5 -38233,What was the crowd size for the game at Footscray?,3 -38241,"What is the low draw total for yarragon teams with over 3 wins, and under 966 against?",2 -38250,What is the average rebounds for the player who started in 1986 and who plays SG?,5 -38252,What is the highest of a player with asts fewer than 0?,1 -38256,What is the total of TCKL in 2000 with a P/KO RET less than 14?,3 -38257,What is the highest YARDS with a TCKL more than 51 and less than 2 SACK?,1 -38258,What is the total of all YARDS with 0 SACK and less than 14 P/KO RET?,3 -38271,what is the total of floors when the name is kölntriangle and rank is less thank 63?,4 -38272,what is the lowest height (ft) for messeturm and more than 55 floors?,2 -38273,"what is the rank for the city of cologne, floors is 34 and height (ft) is more than 452.8?",3 -38281,"What was the total for David O'Callaghan, and a Tally of 1-9?",4 -38284,What is the average weeks of a song with a larger than 3 position after 1977?,5 -38285,What is the sum of the weeks on a chart a song with a position less than 1 haas?,4 -38286,What is the earliest year a song with a position less than 1 has?,2 -38304,Tell me the total number of week for w 35–7,3 -38305,Tell me the average week for result of l 34–24,5 -38307,"What is the total share for an episode with an air date of November 19, 2007?",4 -38310,What was the size of the crowd at the game played at Junction Oval?,5 -38315,What is the average round of the number 16 pick?,5 -38316,How many games were lost where the win percentage is smaller than 16.7 and the played games is 3?,3 -38318,What is augusta's low rank?,2 -38333,How many benue houses have been founded?,3 -38334,When is the earliest year founded for houses named after the river benue?,2 -38337,"What's the average attendance on january 6, 2008?",5 -38341,What is the total GNIS Feature ID with a County of idaho?,4 -38342,What is the lowest GNIS Feature ID from County of sheridan?,2 -38346,What is the Rank (Pakistan) of the mountain that has a World Rank smaller than 11 and a Height smaller than 8126?,3 -38352,"For End of Fiscal Years before 2003 with a GDP $Billions OMB/BEA est.=MW.com of 10,980 what is the highest Gross Debt in $Billions undeflated Treas.?",1 -38353,"For End of Fiscal Years past 1980 that also have as % of GDP Low-High of 83.4-84.4, and a Debt Held By Public ($Billions) smaller than 7,552 what would be the average Gross Debt in $Billions undeflated Treas. in said years?",5 -38354,"For End of Fiscal Year(s) with as % of GDP (Treas/MW, OMB or OMB/MW) of 28 and Gross Debt in $Billions undeflated Treas. smaller than 370.9 what would be the sum of Debt Held By Public ($Billions)?",3 -38355,"For End of Fiscal Year(s) with a Debt Held By Public ($Billions) larger than 236.8, and as % of GDP Low-High of 33.4 what is the sum of the number of Gross Debt in $Billions undeflated Treas.?",3 -38358,Which round was Mike Peca (C) of Canada selected in?,4 -38359,What is the smallest grid for Ayrton Senna?,2 -38361,What is the sum of laps for grid 20?,4 -38362,What is the most laps for Ayrton Senna?,1 -38363,"what was the score of the parallel bars with a floor exercise score more than 9.137, vault more than 9.5 and horizontal bar of 9.225?",4 -38364,what was the floor exercise score with a pommel horse score of 9.65 and horizontal bar score more than 9.475?,1 -38369,How many carries for the player with under 6 yards and an average of over 5?,3 -38370,What was the longest carry for kevin clemens with under 31 yards total?,1 -38371,How many TDs for the player with a long of less than 4 and under 8 yards?,4 -38372,"What is the average for the player with 1 TD, over 4 as a long, and under 1 carry?",2 -38373,What was the attendance at Brunswick Street Oval?,3 -38379,What was the average for the player that scored 116 yards and had TD's less than 1?,3 -38380,What was the lowest recorded record for a player with an average larger than 13?,2 -38381,How many yards did Hank Edwards make when he had TD's of 1 and an average higher than 13?,3 -38382,How many yards were averaged by the player that had a higher than 13 average with less than 18 long?,5 -38383,What is the highest number of yards recorded for a player that had more than 4 TD's?,1 -38384,"For an airline of Wizz Air and fewer than 83 destinations, what is the highest passenger fleet?",1 -38391,How many Runners have a Placing that isn't 1?,3 -38392,What is the lowest number of Runners that has a Placing that isn't 1?,2 -38393,What is the lowest Prize amount for the Irish Derby Race?,2 -38394,How many people attended the game that resulted in an away team score of 18.17 (125)?,4 -38395,"What was the mintage having an issue price of $1,099.99, artist being Pamela Stagg?",5 -38396,"What was the year that had an issue price of $1,295.95?",5 -38398,"What was the average mintage for that of artist Celia Godkin, before the year 2010?",5 -38402,What is the number of the crowd when the away team score was 10.18 (78)?,3 -38415,What pick # has a team from Rimouski Océanic?,5 -38420,"Which is the lowest points value that had a Chevrolet car, whose driver was Sterling Marlin, and whose car number was less than 14?",2 -38421,"Which is the lowest point value that had not only a Chevrolet car, but also a car number smaller than 24, total laps of 312, and a winning purse of $122,325?",2 -38430,What is the highest crowd listed when the away side scores 4.9 (33)?,1 -38433,What was the average crowd size at a game when the away team scored 17.12 (114)?,5 -38434,"What is the total number of the 1978 Veteran membership that has a late 1943 more than 78,000 and a september 1943 larger than 60,000?",3 -38435,"What is the highest late 1943 number with a late 1941 of vojvodina and a 1978 membership less than 40,000?",1 -38436,"What is the 1978 Veteran membership with a late 1941 macedonia and a late 1943 less than 10,000?",4 -38437,"What is the lowest 1978 Veteran membership with less than 48,000 in sept. 1943, a late 1941 of vojvodina, and a late 1942 bigger than 1,000?",2 -38438,"What is the highest late 1943 with a late 1944 bigger than 22,000, a late 1942 bigger than 1,000, a late 1941 slovenia, and less than 4000 in september 1943?",1 -38451,What is the high lap total for françois cevert?,1 -38463,"How many wins did Hale Irwin get with earnings smaller than 20,592,965?",4 -38465,What is the average number for a final episode featuring maxine valera?,5 -38466,How many laps were driven in 2:54:23.8?,4 -38468,What are the highest number of laps for grid 8?,1 -38469,Which grid is the highest and has a time/retired of +0.3?,1 -38480,"What draw for ""ljubav jedne žene"" with under 153 points?",4 -38481,"What place for ""jednom u životu"" with a draw larger than 18?",3 -38486,what is the grid when the driver is mario andretti and the laps is less than 54?,1 -38487,how many laps were there when the grid was 24?,3 -38496,How many years does simon baker appear as a nominee?,3 -38508,"How big was the crowd size, at the Junction Oval venue?",4 -38510,What is the average crowd size of Fitzroy's home team?,5 -38511,"Which railway had the earliest build date and a disposal of ""Scrapped 1941?""",2 -38527,Which of the lowest years had a Wheel arrangement that was 0-4-2t?,2 -38528,What is the mean Year when the IWCR number was 5 and the Year withdrawn was bigger than 1926?,5 -38530,What is the sum number of years where the wheel arrangement of 0-4-0t?,3 -38531,"What was the latest week of a game that had an attendance of 63,001?",1 -38532,What is the total medals Austria and those with larger than rank 4 have?,3 -38533,"What is the most gold medals that a team ranked higher than 6, have 1 silver medal, and more than 4 total medals have?",1 -38536,How many attended on may 6?,3 -38543,what is the tie no when the away team is solihull moors?,4 -38545,What is the Pick # of the player from Simon Fraser College?,5 -38549,What is the highest extra total before 2003 at the Meeting of all africa games?,1 -38560,Tell me the sum of round for record of 6-3,4 -38562,In which of North Melbourne's away games was there the lowest crowd?,2 -38564,How many total units were built of Model ds-4-4-660 with a b-b wheel arrangement and a PRR Class of bs6?,4 -38566,What is the total number of roll for Te Hapua school?,3 -38568,"When driver heinz-harald frentzen has a number of laps greater than 60, what is the sum of grid?",3 -38569,What is the population total for saint-wenceslas with a region number of under 17?,4 -38570,"What is the smallest code associated with a type of m for a region less than 17 named, named saint-sylvère?",2 -38572,How many total goals were made at the game on 15 November 1989?,3 -38578,what is the lowest laps when the grid is smaller than 5 and the driver is juan manuel fangio?,2 -38579,what is the grid when the time/retired is +9 laps and the laps is larger than 91?,3 -38580,"what is the lowest grid when the time retired is clutch, the driver is peter collins and the laps is smaller than 26?",2 -38584,I want to know the average crowd for away team of melbourne,5 -38586,What is the top lap that had 2 grids and more than 26 points?,1 -38587,What is the top lap that had 6 grids and more than 19 points?,1 -38588,What is the average point count for tristan gommendy?,5 -38589,What is the point low with 2 grids?,2 -38596,What is the sum number of attendance when the visiting team was Charlotte and the leading scorer was Ricky Davis (23)?,3 -38605,What was the highest number of rounds that had Hikaru Shinohara as an opponent and a record of 11-7?,1 -38608,"How much in average Loans Received has Contributions less than 34,986,088, Disbursements more than 251,093,944 for Dennis Kucinich † with Operating Expenditures more than 3,638,219?",5 -38609,"How much is the lowest Operating Expenditures when Contributions are more than 8,245,241?",2 -38610,"How many Loans Received have Disbursements larger than 21,857,565, and Contributions greater than 3,869,613 with Receipts under 11,405,771?",3 -38611,"What is the most Receipts for Barack Obama with Disbursements smaller than 85,176,289?",1 -38612,"How many Operating Expenditures have Receipts of 44,259,386?",3 -38614,How many times did jim vivona win?,3 -38617,"What is the smallest rank with less than 2 wings, more than 26 events, and less than $1,831,211?",2 -38618,"What is the most wins with a rank of 5 and less than $1,537,571 in earnings?",1 -38621,What was the attendance on 10 november 2004?,5 -38622,What is the size of the crowd when the home team is Fitzroy?,3 -38623,How many laps did riccardo patrese do when he had a time/retird of + 1 lap?,3 -38630,Name the most bronze for silver more than 6 and total less than 127 with gold less than 11,1 -38631,Name the highest silver for table tennis and bronze more than 0,1 -38659,What is the highest round played by Chris Phillips?,1 -38661,What is the highest pick number of the CFL's Toronto Argonauts?,1 -38665,What is the highest track with a length of 1:54 written by Gene Autry and Oakley Haldeman?,1 -38672,What is the least number of laps for the driver Jo Siffert?,2 -38673,What is the least number of laps for the constructor Ferrari and where the grid number was less than 4?,2 -38674,What is the total amount of grid when the laps amount was smaller than 68 and the time/retired was injection?,4 -38694,"What is the average laps for a grid larger than 2, for a ferrari that got in an accident?",5 -38695,Name the average goal difference for draw of 7 and played more than 18,5 -38696,Tell me the totla number of goal difference for goals against of 30 and played less than 18,3 -38697,Name the total number of draw for played more than 18,3 -38700,What is Mark Joseph Kong's pick?,5 -38703,what is the rating when the rank (timeslot) is less than 3 and the rank (night) is less than 8?,4 -38704,what is the rank (night) when the rating is more than 4.3 and the viewers (millions) is more than 10.72?,5 -38708,What is the total audience on may 28?,4 -38709,What was the the total top attendance with a score of 0 – 4?,1 -38710,"How many allsvenskan titles did club aik have after its introduction after 2000, with stars symbolizing the number of swedish championship titles ?",4 -38711,What is the highest amount of swedish championship titles for the team that was introduced before 2006?,1 -38712,What is the average reception of the player with 4 touchdowns and less than 171 yards?,5 -38719,What are the earnings for jim colbert with under 4 wins?,3 -38720,"What is the ranking for the player with under 34 events and earnings of $1,444,386",1 -38721,How many events for bob murphy?,1 -38722,What is the rank for bob murphy with under 4 wins?,3 -38723,"When the club is flamengo in the 2009 season, and they scored more than 0 goals, what's the sum of the Apps?",4 -38729,Which track has the original album turbulent indigo?,5 -38747,Which total number of Crowd has a Home team of melbourne?,3 -38748,What is the lowest 1st prize for florida tournaments and a Score of 200 (-16)?,2 -38749,Which grid has a time/retired of +27.347?,3 -38755,What are the average laps for jackie stewart?,5 -38760,What was the attendance when Fitzroy played as the away team?,5 -38762,What year was Jeff Mullins?,2 -38763,In what grid did Richard Robarts make 36 laps?,4 -38764,How many laps were completed in grid 18?,4 -38768,What is the lowest number of genes in Rubrobacter Xylanophilus?,2 -38769,What is the average number of base pairs with 784 genes?,5 -38770,"What is the lowest number of genes with less than 927,303 base pairs in Acidobacteria Bacterium?",2 -38771,How many points are obtained when a standing broad jump is 207-215 cm?,3 -38772,"How many points are there, when the grade is A?",1 -38777,What Grid had 14 laps completed?,5 -38778,What is the lowest Grid with 25 laps manufactured by Honda with a time of +54.103?,2 -38779,How many laps were timed at +1:02.315?,3 -38788,What is the highest pick number from Slovakia?,1 -38789,What is the lowest pick number for the Russian Major League?,2 -38795,what is the highest rank for east germany with points of 128.98 and places less than 70?,1 -38796,what is the points for rank 12?,4 -38803,What is the average PI GP when the pick is smaller tha 70 and the reg GP is 97?,5 -38806,What is the Crowd number for the Away team whose score is 14.18 (102)?,4 -38807,What is the lowest number of places for Sherri Baier / Robin Cowan when ranked lower than 1?,2 -38815,"How many seasons took place in santiago de chile, chile?",3 -38817,What is the average round for players from california?,5 -38825,How large is the crowd with an Away team score of 7.13 (55)?,3 -38831,"What is the average number of ties for the Detroit Lions team when they have fewer than 5 wins, fewer than 3 losses, and a win percentage of 0.800?",5 -38832,"What is the most recent year in which the score was 4–6, 6–3, 7–5?",1 -38840,"What was the long of Trandon Harvey who had an greater than 8 average, more than 3 rec., and more than 28 TD's?",4 -38841,How many attended tie number 1?,4 -38842,How many attended tie number 3?,1 -38846,"What is the sum of Year with a Type of informal, and a Location with justus lipsius building, brussels, and a Date with 23 may?",4 -38853,"What is the total of yards when asst. is 19, totaltk is 60 and sack is more than 0?",4 -38854,what is the total sack for mike green when fumr is less than 0?,4 -38855,what is the total sack when totaltk is 1 and asst. is more than 0?,4 -38856,"what is the total number of tackles when fumr is 0, totaltk is 54 and yards is less than 0?",3 -38857,what is the sum of totaltk when yards is less than 0?,4 -38859,"How many wins for bikes with under 54 points, team yamaha, a 250cc bike, and before 1977?",3 -38862,How many grids have less than 41 laps and a Driver of pedro de la rosa?,3 -38864,What are toranosuke takagi's average laps?,5 -38865,Which grid has a Time/Retired of +5.004?,2 -38877,"Of the games with a record of 80-81, what was the highest attendance?",1 -38878,"How many entries have a HK viewers of 2.23 million, and a Rank below 2?",3 -38880,"What is the high average that has a Finale larger than 35, a HK viewers of 2.12 million, and a Peak larger than 40?",1 -38883,What is the lowest crowd number at the venue MCG?,2 -38884,"How many total viewers for ""the summer house""?",4 -38885,Name the average round for jacksonville,5 -38888,What is the largest Rd# for a PI GP greater than 0 and a Reg GP less than 62?,1 -38890,What is the total year with a Position of 12th?,4 -38891,"When a race had less than 18 laps and time/retired of accident, what was the smallest grid?",2 -38893,What is the grid total for david coulthard?,4 -38904,"how many times what the position 6th, the competition was super league xvii and played was larger than 27?",3 -38905,What is the average cap number in scotland in 1986–1998 leass than 69?,3 -38907,What is the goal low with caps less than 38 and an average less than 1.083?,2 -38908,What is the goal top with caps of 38 and an average less than 0.579?,1 -38909,What is the low goal for kenny miller with an average smaller than 0.261?,2 -38916,"What is the high goal against associated with 18 wins, a Goal Difference of 43, and under 6 draws?",1 -38917,"What is the average win total associated with under 4 draws, and under 15 goals?",5 -38919,How large was the crowd when the away team scored 11.15 (81)?,3 -38921,How large was the crowd when Carlton was the away team?,3 -38923,I want the sum of year for mark barron,4 -38925,"On April 28, what was the average number of people attending?",5 -38936,"What is the lowest interview of Texas, with an average larger than 9.531?",2 -38937,"What is the total interviews of Iowa, and with an evening gown smaller than 9.625?",3 -38938,"What is the sum of the average of Hawaii, with an interviewer larger than 9.636?",4 -38939,What is the highest evening gown with an average of 9.531 and swimsuit smaller than 9.449?,1 -38940,What is the sum of swimsuit with an evening gown of 9.773 and average larger than 9.674?,4 -38941,"What is the average of the swimsuit smaller than 9.545 , of Iowa, with an evening gown larger than 9.625?",5 -38951,How big was the crowd when collingwood visited?,3 -38960,What was the smallest crowd size for away team st kilda?,2 -38970,When did Quvenzhané Wallis first win?,2 -38971,When was the last year when Katharine Hepburn won?,1 -38975,"What is the largest laps for Time/Retired of + 2 laps, and a Grid of 13?",1 -38977,What is the sum of laps for Derek Warwick?,4 -38986,Name the least date for the place which has a building of victoria hall,2 -38999,What is the grid for dirk heidolf?,4 -39001,How many caps does stephen hoiles have?,4 -39006,What is the most silver medals a team with 3 total medals and less than 1 bronze has?,1 -39007,What is the least amount of silver medals a team with less than 0 gold medals has?,2 -39008,What is the most bronze a team with more than 2 silvers has?,1 -39009,What is the total amount of bronze medals a team with 1 gold and more than 3 silver medals has?,4 -39010,What is the draw number that has 59 points?,5 -39013,What was the attendance when Essendon played as the home team?,3 -39020,What is the sum of every REG GP that Peter Andersson played as a pick# less than 143?,4 -39021,What is the total of PI GP played by Anton Rodin with a Reg GP less than 0?,3 -39022,What is the total pick# played by Anton Rodin with a Reg GP over 0?,3 -39023,What is the lowest grid that has over 67 laps with stefan bellof driving?,2 -39024,How many laps have a grid under 14 and a time/retired of out of fuel?,4 -39026,What is the average NGC number that has a Apparent magnitude greater than 14.2?,5 -39027,What is the highest NGC number that has a Declination ( J2000 ) of °04′58″ and a Apparent magnitude larger than 7.3?,1 -39029,"For clubs that have 0 gold and less than 5 points, what is the average amount of bronze medals?",5 -39030,"Club aik had over 9 small silver medals and more than 8 bronze medals, how many total points did they have?",5 -39031,How many points did landskrona bois get when they were ranked below 18?,3 -39035,What's the total number of signicand with ~34.0 decimal digits and more than 128 total bits?,3 -39036,What's the sum of significand with ~34.0 decimal digits and an exponent bias larger than 16383?,4 -39037,"What's the sum of sign with an exponent bias less than 1023, ~3.3 decimal digits, and less than 11 bits precision?",4 -39038,"What's the sum of sign with more than 53 bits precision, double extended (80-bit) type, and more than 80 total bits?",4 -39039,What's the lowest bits precision when the total bits are less than 16?,2 -39040,How many years did the team that has a Singles win-Loss of 4-9 and first played before 1999?,4 -39041,What is the highest game number with a record of 12-8-1?,1 -39059,"How many people attended the game where the leading scorer was Tim Duncan (24), and the home team was the Spurs?",2 -39060,What is the mean number of laps where Time/retired was a water leak and the grid number was bigger than 12?,5 -39061,What is the mean number of laps when time/retired was spun off and the driver was Nick Heidfeld?,5 -39062,What is the sum grid number when the driver was Luciano Burti?,3 -39069,What is the point average for the game that has FGM-FGA of 11-28 and a number smaller than 7?,5 -39070,What is the lowest number of floors recorded for buildings built by Dubai Marriott Harbour Hotel & Suites?,2 -39080,What was the crowd total on the day the home team scored 12.12 (84)?,4 -39084,What is the sum of crowds that saw hawthorn at home?,4 -39092,Tell me the sum of win % for drawn being larger than 35,4 -39093,Name the most win % for 13 drawn,1 -39094,Name the sum of drawn for 30 october 2006 and win % more than 43.2,4 -39095,Name the win % average from 22 april 2000 for drawn more than 1,5 -39096,Name the average lost for matches of 6,5 -39099,What is the highest track for the song Rip it Up?,1 -39100,What is the sum of every track with a catalogue of EPA 4054 with a 2:05 length?,4 -39113,"How many bronze's on average for nations with over 1 total, less than 2 golds, ranked 2nd?",5 -39114,"How many silvers on average for nations with less than 3 total, ranked 6, and over 1 bronze?",5 -39133,"What is the low money with 374,164$ of debt and receipts larger than 3,898,226 without loans?",2 -39138,What is the highest crowd for Home team of geelong?,1 -39140,What is the year when the performance is 60.73m and the age (years) is more than 45?,3 -39141,What is the highest age (years) that the 1st place had a performance of 62.20m?,1 -39146,What is the largest winner's share in 2008?,1 -39152,Which Crowd has a Home team score of 11.13 (79)?,5 -39154,Which Crowd has an Away team of collingwood?,4 -39159,"When Steve Hazlett is the Player, and the PI GP is under 0, what is the average Rd #?",5 -39161,Which Pick # is the highest and has the Rd # is under 1?,1 -39162,"What is the lowest PI GP when the Reg GP is 1, Murray Bannerman is the Player, and the Pick # is under 58?",2 -39163,Tell me the average top 25 with events of 5 and cuts madde less than 3,5 -39164,Tell me the highest cuts made with wins more than 1,1 -39165,I want to know the highest wins for cuts made more than 5,1 -39166,Tell me the sum of top 5 with events less than 12 and top 25 less than 0,4 -39167,What was the biggest crowd when South Melbourne was an away team?,1 -39172,How many people attended the game on 8 March 2008?,4 -39179,What is the total number of points when the grade was A?,4 -39192,"What is the lowest Mintage for the Artist Royal Canadian Mint Engravers, in the Year 2009, with an Issue Price of $10,199.95?",2 -39193,What is the sum of Artist Steve Hepburn's Mintage?,4 -39194,What is the average Year for the Royal Canadian Mint Engravers Artist when the Mintage is under 200?,5 -39195,"When the Year is over 2008, what is the highest Mintage for the Royal Canadian Mint Engravers Artist?",1 -39201,"In games where st kilda was the away team, what was the smallest crowd?",2 -39204,Which player has the lowest earnings and has at least 4 wins and is ranked higher than 4?,2 -39205,"How many wins do the players that earned more than 720,134 have?",4 -39206,"Who is the highest ranked player that has earnings below 395,386?",1 -39210,"What is the sum of the interview scores from North Dakota that have averages less than 8.697, evening gown scores less than 8.73, and swimsuit scores greater than 8.41?",4 -39211,What is the sum of the swimsuit scores from Missouri that have evening gown scores less than 8.77 and average scores less than 8.823?,4 -39212,"What is the total number of swimsuit scores that have average scores less than 8.823, evening gown scores less than 8.69, and interview scores equal to 8.27?",3 -39213,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?,2 -39214,"What is the sum of the evening gown scores where the interview score is less than 8.77, the swimsuit score is equal to 7.8, and the average score is less than 8.2?",4 -39215,What was the attendance for the game that has a tie number of 13?,4 -39216,What is the average attendance when the Forest Green Rovers is the away team?,5 -39217,What is the grid number for troy corser with under 22 laps?,4 -39220,What ranking did Team 250cc Honda end up in when it finished a race with a time of 1:27.57.28?,3 -39222,I want the total number of Grids for heinz-harald frentzen,3 -39224,What is the average crowd for the home team of North Melbourne?,5 -39228,"How many laps for robin montgomerie-charrington, and a Grid smaller than 15?",3 -39229,What is the mean number of totals with no silvers and a bronze number less than 0?,5 -39230,What is the least number of Silvers with a ranking of less than 4 where the bronze number was larger than 9?,2 -39231,Which mean rank had a silver number smaller than 0?,5 -39232,What is the least total number with a rank of 4 and a total silver number bigger than 3?,2 -39237,What is the car # of the Chevrolet that complete 363 laps?,3 -39238,"How many points did the driver who won $127,541 driving car #31 get?",1 -39243,"What is the lowest high position for 10 years of hits, and over 870,000 sales?",2 -39244,What is the average high position for the album unwritten?,5 -39259,"What is the total Tonnage GRT with a Type of cargo ship, and a Nationality of norway?",4 -39270,How many Reg GP does daniel rahimi have with a rd # greater than 3?,3 -39271,What is the lowest Pick # with michael grabner and less than 20 Reg GP?,2 -39273,What is the total of Prom in M for Peak great knoutberry hill?,4 -39274,"What is the average height for hewitt class, with prom less than 86, and a Peak of gragareth?",5 -39277,What years was Denis Lawson nominated for an award?,3 -39279,How many years was Best Musical Revival nominated?,3 -39287,When the Venue was mcg what was the sum of all Crowds for that venue?,4 -39300,What's the total number of games that had more than 34 points and exactly 3 losses?,3 -39301,What's the total number of losses with less than 19 points and more than 36 games?,3 -39303,What is the highest crowd number of the game where the away team was south melbourne?,1 -39306,"If the Home team had a score of 21.22 (148), what is the sum of all Crowds?",4 -39307,"If the Home team is carlton, what's the lowest Crowd found?",2 -39308,What is the average amount of attenders when away team score is 12.10 (82)?,5 -39315,"beyond 2001, what is the lowest asts from a pos of sf?",2 -39319,What is the total number of Lifetime India Distributor share earlier than 2009?,3 -39321,What was the largest amount of spectators when St Kilda was the away team?,1 -39324,What is the ngc number when the object type is lenticular galaxy and the constellation is hydra?,1 -39326,what is the ngc number when the constellation is leo and the declination (j2000) is °42′13″?,5 -39334,Name the average DDR3 speed for model e-350,5 -39338,What is the average laps for lorenzo bandini with a grid under 3?,5 -39347,"When the home team scored 19.10 (124), what was the total crowd number?",3 -39351,"In the game where the home team scored 12.14 (86), what was the total crowd number?",3 -39360,Who has the least wins when ranked above 3 with over 10 events?,2 -39361,"How many wins for billy casper over 8 events and uner $71,979 in earnings?",2 -39362,"What is the lowest rank for a player earning $71,979?",2 -39369,"What is the lowest episode # with an air date of October 31, 2001?",2 -39370,What is the average episode # located in Tanzania and whose # in season is larger than 5?,5 -39371,What is the average episode # with a name of the origin of Donnie (part 1)?,5 -39383,What's the earliest year that had a category of best supporting actress at the asian film awards?,2 -39398,What is the average crowd size for an away team with a score of 14.19 (103)?,5 -39399,What is the average crowd size at Princes Park?,4 -39405,What is the low TD for 49 longs and 1436 less yards?,2 -39406,What is the total count of TD longs more than 29?,3 -39407,What is the toal rec with more than 27 and averages less than 10.8 and TDs more than 6?,3 -39408,How many people attended the game with a record of 86-56,3 -39413,"What was the highest Sinclair Total that had a rank of 3, but a World Record smaller than 217?",1 -39422,What is the lowest grid value with fewer than 17 laps and constructor Sauber - Petronas?,2 -39424,How many ties did the Montreal Victorias have with a GA of less than 24?,1 -39425,How many years was the record 3:40.8?,3 -39429,What is the attendance total of the game with the Lakers as the home team?,3 -39439,How big was the crowd for Essendon?,4 -39459,What is the largest crude birth rate when natural change is 215 at a rate greater than 7.2?,1 -39466,What is the size of the smallest crowd that watched a game at Arden Street Oval?,2 -39469,How many people attended the game where Fitzroy was the away team?,3 -39471,Tell me the highest NGC number for right ascension of 09h40m28.5s,1 -39485,"What was the lowest Pick number of Player Brian Bradley from Canada, in a Draft year before 1985?",2 -39487,Name the total number of yards for avg of 9 and rec of 1,3 -39488,What is the highest number of losses that the team incurred while scoring less than 79 points in 10 games with a point differential less than 34?,1 -39491,What is the average year to begin making autos for a brand that joined GM in 1917?,5 -39503,Tell me the total number of points for lost less than 4,3 -39504,I want the sum of drawn for lost less than 0,4 -39506,Tell me the sum of rank for when gold is more than 0 and silver less than 23 with total more than 32,4 -39507,Tell me the sum of silver for liechtenstein and bronze more than 4,4 -39518,"How many matches were there in the round with £1,000,000 in prize money?",3 -39524,"Which December 4, 1976 week has an attendance less than 57,366?",2 -39526,"What is the km2 area with more than 8,328 people with a total of 121.14 km2?",5 -39527,"What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2?",2 -39544,Name the highest grid for Laps more than 137 and rank is less than 8,1 -39545,I want the total number of rank for Grid less than 20 and dick rathmann and Qual more than 130.92,3 -39548,I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s,4 -39552,What is the average crowd when the home team is north melbourne?,5 -39553,What is the crowd total at mcg?,3 -39554,"How many Red Breasted Nuthatch coins created before 2007 were minted, on average?",5 -39555,What year was the downy woodpecker coin created?,4 -39557,What is the game number against the team Boston?,3 -39561,Which Crowd has an Away team score of 17.11 (113)?,4 -39575,How many goals does mitsuo kato have?,1 -39581,What is the average drop zone time in the N drop zone for the 1st Pathfinder Prov.?,5 -39594,What is the sum of a rank whose nation is West Germany and has bronze larger than 0?,4 -39595,"What is the total of Bronze with a total smaller than 3, and a nation of Poland, and a rank larger than 4?",3 -39600,"When the driver peter gethin has a grid less than 25, what is the average number of laps?",5 -39601,"When the driver mike hailwood has a grid greater than 12 and a Time/Retired of + 2 laps, what is the average number of laps?",5 -39604,What was the crowd number when Hawthorn was the away team?,1 -39606,What is the average round for Club team of garmisch-partenkirchen riessersee sc (germany 2)?,5 -39622,What is the average long that Ramon Richardson played and an average greater than 5.5?,5 -39623,Which has and average less than 3 and the lowest yards?,2 -39624,What is the average rec that is greater than 10 and has 40 yards?,5 -39628,What is the highest Shooting Total with a Bronze less than 0?,1 -39629,What is the lowest Silver in the Total Sport has less than 1 Gold and more than 1 Bronze?,2 -39630,What is the football Bronze with more than 1 Silver?,5 -39631,"With 1 Gold, more than 2 Bronze and Total greater than 1, what is the Silver?",5 -39632,"With more than 1 Gold and Silver and Total Sport, what is the Total?",5 -39634,How many years does Team wal-mart / tide participate?,3 -39646,"Kecamatan Bogor Timur has more than 6 villages, what is the area in km²?",4 -39647,"There are less than 11 settlements in Kecamatan Bogor Tengah, what is the area in km²?",4 -39648,Luxembourg received how many gold medals?,5 -39649,what is the sum of tonnage when the type of ship is twin screw ro-ro motorship and the date entered service is 11 february 1983?,4 -39651,what is the least tonnage for the ship(s) that entered service on 11 february 1983?,2 -39654,What's the sum of gold where silver is more than 2 and the total is 12?,4 -39655,What's the lowest gold with a total of 4 and less than 2 silver for liechtenstein?,2 -39656,What's the total number of gold where the total is less than 23 and the rank is over 10?,3 -39657,What's the sum of total where the rank is over 9 and the gold is less than 1?,3 -39658,What was the attendance number for the Timberwolves game?,4 -39660,What was the smallest crowd at home with a score of 15.8 (98)?,2 -39661,What is the combined of Crowd when richmond played at home?,3 -39669,Name the highest pick number for PI GP more than 55,1 -39670,Name the least RD number that has PI GP more than 0 and pick # more than 51,2 -39673,What was the attendance of april 17?,4 -39681,what is the grid when the driver is louis rosier and the laps is more than 78?,2 -39683,what is the laps when the driver is tony rolt and the grid is less than 10?,4 -39685,What is the average Attendance at Venue A on 16 October 2004?,5 -39686,What is the lowest Attendance when Middlesbrough played at Venue A?,2 -39689,What year was Herself nominated at the MTV Movie Awards?,1 -39690,What is the average amount of spectators when Essendon played as the home team?,5 -39695,"What in Xenia's Diameter in km, with a latitude of 14 and a longitude of 249.4?",3 -39696,What is the latitude for a crater with a diameter of 12.8 km and a longitude of 208?,5 -39709,What year is center Ann Wauters?,4 -39710,What is the earliest year that includes a Seattle Storm guard?,2 -39712,What is the earliest year a Baylor player made the list?,2 -39718,Name the most goals for total club and apps less than 120,1 -39719,How many goals are associated with 75 games?,1 -39721,What is the average number of years for the Houston Rockets 2004-05?,5 -39723,What is the total number of years did he play the forward position and what school/club/team/country of Oregon State did he play?,4 -39724,How many wins for bruce fleisher with over 31 events?,5 -39725,What is the average rank for players with under 26 events and less than 2 wins?,5 -39726,What is the high earnings for players with 34 events and over 2 wins?,1 -39727,"What is the ranking for bruce fleisher with over $2,411,543?",4 -39734,What is Fitzroy's smallest crowd size?,2 -39735,How many people attended the game where the away team scored 16.7 (103) points?,3 -39741,What was the smallest crowd at a home game for essendon?,2 -39745,Tell me the total number of grid for laps of 52,3 -39750,Tell me the average gross tonnage for april 1919 entered service,5 -39751,I want the total number of gross tonnage when entered service was 1903,3 -39752,what is the rank when the player is henry shefflin and the matches is higher than 4?,4 -39753,what is the rank when the total is 39 in the county of dublin and the matches is less than 4?,5 -39758,Which Zone is the lowest when Managed By Southern and has Platforms under 2?,2 -39759,What would be the highest Platforms for the Centrale Tram Stop Stations?,1 -39760,How many grids had more than 61 laps?,4 -39761,"When parnell dickinson was the player and the rounds were under 7, what's the highest pick?",1 -39762,"When the school picking is utah state for the position of linebacker, what's the sum of those rounds?",4 -39765,"When is the latest year the venue is in gothenburg, sweden?",1 -39766,"When is the earliest year the venue is in gothenburg, sweden?",2 -39769,What is the place number for adrian vasile with less than 127.74 points?,4 -39770,"What is the highest SP+FS that has 131.02 Points, and a Rank larger than 15?",1 -39771,What is the highest evening gown score of the contestant from Tennessee with an interview score larger than 9.36 and an average larger than 9.75 have?,1 -39772,What is the average of the contestant with a swimsuit less than 9.32?,4 -39773,"What is the highest swimsuit score of the contestant with a higher than 9.55 interview score, and evening gown of 9.75, and an average higher than 9.67?",1 -39778,What was the first week that had a transition with Pat Mccready?,2 -39781,How large was the crowd at Glenferrie Oval?,4 -39783,"What is the largest grid with a Driver of ralph firman, and a Lap smaller than 18?",1 -39786,What's the lowest team 1 number that had asolo fonte (veneto b) as the Agg.?,2 -39787,What is the grid total for kazuyoshi hoshino with under 71 laps?,4 -39790,What is the average of the top-25 of those with less than 35 events in the Open Championship?,5 -39791,What is the total number of events the Open Championship has with less than 0 cuts?,4 -39792,What is the total number of events with a top-25 less than 0?,3 -39793,What is the total number of top-25 with a top-10 bigger than 2 and less than 29 cuts?,3 -39794,What is the lowest number of events the Open Championship has with a less than 0 top-10?,2 -39798,How many were in attendance when the away team scored 8.13 (61)?,4 -39804,"What is the average sinclair coefficient with a Sinclair Total of 477.2772023, and a Weight Class (kg) larger than 105?",5 -39805,Name the least attendance for may 6,2 -39815,What's the crowd population of the home team located in Richmond?,4 -39838,How many in the From category had thirds of exactly 2 and an Until stat of 2002?,3 -39840,What is the total Until when the Titles was 5?,4 -39845,How many total publications were the first of the series?,3 -39850,What was the total crowd of the Carlton game?,3 -39851,What was the highest long of Charles Pauley with fewer than 60 yards?,1 -39855,"What is the sum of podiums of the teams with a final placing of 14th, seasons after 2008, and less than 1 races?",4 -39856,What is the total number of seasons with more than 0 wins and a 1st final placing?,3 -39857,What is the average wins of a team with more than 0 ples and less than 3 podiums?,5 -39859,I want the total number of ends for filip šebo and Goals more than 2,3 -39869,What is the average year for releases on Friday and weeks larger than 2 days?,5 -39870,What number of win% has a postseason of did not qualify and rank larger than 8?,3 -39873,How many laps in total does the driver named Eddie Irvine have?,3 -39874,What's the average crowd size when the venue is western oval?,5 -39876,What is the average of the team who has Jacobo as a goalkeeper and has played more than 32 matches?,5 -39885,How big was the crowd when the home team scored 5.14 (44)?,3 -39887,What size was the biggest crowd that watched the home team Hawthorn play?,1 -39889,What is the high cap total for a lock with the vicenza rangers?,1 -39896,What is the low rebound total for players from Oklahoma before 1975?,2 -39897,What is the earliest year a SG has over 650 assists?,2 -39898,What is the number of the Foundation with Japanese orthography of 国立看護大学校?,4 -39899,what is the least yards when the average is 7 and the long is less than 7?,2 -39900,what is the average td's for the player jacques rumph with yards more than 214?,5 -39903,What is the average laps for ralph firman with a grid of over 19?,5 -39905,What's the sum of asts for boston college with a rebs over 63?,4 -39906,What's the average rebs before 1972?,5 -39907,What's the highest rebs for a pos of pg before 2004?,1 -39909,What's the total of rebs for UCLA after 1973?,3 -39910,How many release dates has Canada had?,3 -39924,I want the fewest Laps for Huub Rothengatter and grid less than 24,2 -39926,Which Oricon has a Romaji title of nakitakunalu?,1 -39929,How many votes did 3rd ranking candidate Mary Louise Lorefice receive?,3 -39937,What is the highest season with International Formula Master as the series name and Marcello Puglisi (formula master italia) as the secondary class champion?,1 -39939,What are the seasons where Marcello Puglisi (formula master italia) was the secondary class champion?,4 -39943,what is the most laps for driver jackie stewart?,1 -39951,What is the low silver total for switzerland with over 0 golds?,2 -39952,What is the silver total for nations with 10 bronze medals?,4 -39953,What is the gold total for lithuania with under 2 silvers?,4 -39961,"what is the earliest date for the album that had a catalog number of 3645, was formatted as a cd and was under the luaka bop label?",2 -39963,What is the points where Toronto was the home team and the game number was larger than 63?,1 -39964,How many laps did mike spence complete grids above 12?,3 -39965,How many average laps did brm complete in grids larger than 12?,5 -39977,How many people were in the Crowd when the Home team scored 10.7 (67)?,3 -39979,Tell me the total number of rank for places less than 94 and points less than 169.8 for japan,3 -39980,Tell me the total number of SP+FS with rank more than 8 for the netherlands and points more than 127.26,3 -39981,Name the total number of SP+FS for places of 60 and points more than 151.66,3 -39982,Name the average SP+FS with places less tha 94 for renata baierova,5 -39984,"What's the lowest average for a swimsuit over 6.89, evening gown over 7.76, and an interview over 8.57 in illinois?",2 -39985,"What's the highest swimsuit for an average less than 8.073, evening gown less than 8.31, and an interview over 8.23 in georgia?",1 -39986,What's utah's lowest swimsuit with an interview over 8.53?,2 -39987,"What week was October 9, 1938?",3 -39991,What is the high lap total for mika salo with a grid greater than 17?,1 -40001,What is the lowest number of laps with a grid larger than 24?,2 -40002,"For Jo Siffert, what was the highest grid with the number of laps above 12?",1 -40003,What is the average number of laps when Gerhard Berger is the driver?,5 -40008,What is the lowest Bronze that has a Total larger than 18 and a Silver smaller than 143?,2 -40009,How many total Silver has a Bronze larger than 19 and a Total smaller than 125?,4 -40010,"What is the highest total Bronze larger than 10, Silver larger than 28, and a Gold of 58?",1 -40011,"What is the lowest Total that has a Gold larger than 0, Silver smaller than 4, Sport of football, and a Bronze larger than 1?",2 -40013,what is the number of laps when the driver is ron flockhart?,3 -40021,Tell me the loewst assume office for madeleine bordallo,2 -40040,What is the Decile with a State Authority and a roll of 120?,4 -40041,What is the highest Roll of Orere School with a Decile less than 8 with a State Authority?,1 -40046,"When Giancarlo Fisichella was the Driver and there were less than 52 Laps, what was the highest Grid?",1 -40052,Tell me the average year with a record of 33-33,5 -40053,Name the total number of years for a 39-31 record,3 -40054,Name the least year for gene hassell manager and 6th finish,2 -40056,"What is the lowest goal difference for the club ud alzira, with a played larger than 38?",2 -40057,"What is the goal difference sum that has goals against smaller than 33, draws larger than 13?",4 -40069,What is the smallest number for Cars per Set built in 1977-1979 larger than 32?,2 -40071,What is the largest number of cars per set that is less than 9?,1 -40074,How many years had 54 holes and a 2 shot lead?,3 -40081,What was the crowd size at the moorabbin oval venue?,3 -40094,Which lane did the athlete swim in who had a semi-final time of 49.19?,2 -40098,What is the highest Presidency that Took Office after 1974 and Left Office in 1998?,1 -40099,What is the Took Office Date of the Presidency that Left Office Incumbent?,4 -40100,What was the greatest Took Office dates that Left Office in 1998?,1 -40101,What is the average Laps for andrea de cesaris?,5 -40102,What is the lowest Grid for jj lehto with over 51 laps?,2 -40103,"What is the average Grid that has a Time/Retired of +2 laps, and under 51 laps?",5 -40111,what is the most laps with the time/retired is differential and the grid is more than 2?,1 -40112,what is the least laps when the grid is 5?,2 -40145,What is the pick number for the College of Perpetual help with the Coca-Cola Tigers as a PBA team?,3 -40157,What was the smallest crowd at a home game of carlton?,2 -40160,What's the fewest number of pages for the title al-jiniral fi matahatihi?,2 -40174,"what is the lowest apparent magnitude when the object type is spiral galaxy, the constellation is leo minor and the ngc number is more than 3021?",2 -40175,Name the total number of Draws when goals for is 58 and losses is 12 when goal differences is less than 21,3 -40176,"How many goals for where there when draws are less than 11, points of is 54+16 and goals against are less than 39?",3 -40177,"Name the total number of played when points of is 31-7, position is 16 and goals for is less than 35",3 -40178,Name the total number of goal difference when the position is more than 20,3 -40179,Name the sum of draws when the position is less than 17 and wins is less than 11,4 -40180,what is the first season of current spell when the number of seasons is more than 72 and the position in 2012 4th?,4 -40181,what is the most number of season when the position in 2012 10th and the first season of current spell after 2004?,1 -40184,What is the rank number for a placing of 28.5 and a total less than 92.7?,3 -40186,What is the total for Rank 11?,3 -40187,What is the sum of all total values for Switzerland?,4 -40190,"How many Horizontal Bars have a Team of japan (jpn), and Parallel Bars smaller than 38.924?",3 -40191,"How many pommel Horses have Rings of 37.461, and a Total smaller than 229.507?",3 -40192,"What is the sum of totals with a Vault of 38.437, and a Floor Exercise smaller than 37.524?",3 -40193,"How many pommel horses have a Total smaller than 230.019, a Team of china (chn), and a Vault smaller than 38.437?",3 -40196,"What year was The Horn Blows at Midnight, directed by Raoul Walsh?",5 -40207,What was the average amount of spectators when the away team scored 14.7 (91)?,5 -40212,Name the least attendance with carolina visitor,2 -40219,"Which Bronze has a Silver smaller than 1, and a Total larger than 3?",5 -40220,"Which Gold has a Nation of united states, and a Total larger than 5?",2 -40221,"Which Bronze has a Nation of argentina, and a Silver smaller than 0?",5 -40222,"Which Bronze has a Silver of 2, and a Total smaller than 5?",5 -40224,What is the largest amount of spectators when the home team scored 13.11 (89)?,1 -40227,What is the low enrolment for schools founded after 1995?,2 -40235,"What is the average attendance on October 9, 1983?",5 -40236,"What is the lowest attendance on September 4, 1983?",2 -40243,What is the lowest pick when the School is Stanford University?,2 -40246,What is the high loss total for players with zero wins and a win % greater than 0?,1 -40252,What round was Corey Cowick picked?,5 -40254,What most recent year had North Melbourne as a team and Hamish Mcintosh as a player?,1 -40262,"What is the storage stability of Arsine with a toxicity of 8, and field stability less than 5?",2 -40263,What is the field stability of Cyanogen Bromide that has an effectiveness of 9?,3 -40269,"What is the highest Bodyweight associated with a Clean & jerk larger than 120, and a Total (kg) of 245?",1 -40270,"What is the sum Total (kg) associated with a Snatch less than 110, and a Clean & jerk larger than 120?",4 -40271,"How many people have a Clean & jerk smaller than 142.5, a Bodyweight smaller than 55.58, and a Total (kg) larger than 210?",3 -40277,What's the average Rd number for dane jackson with a pick number over 44?,5 -40278,What's the largest pick number for corrie d'alessio with a rd number over 6?,1 -40285,What was the crowd size when geelong played home?,3 -40286,What was the crowd size when the visiting team scored 23.18 (156)?,3 -40289,Name the most that attendend when the venue was td banknorth garden and the series of montreal leads 3-1,1 -40291,"What is the average total medals Egypt, who has less than 2 gold, has?",5 -40292,"What is the total number of gold medals Egypt, who has less than 0 silver, has?",3 -40293,What is the highest gold a team with less than 3 silver and more than 5 bronze medals has?,1 -40295,"What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03?",5 -40296,"What is the average relative annual growth of the country ranked 3 with an average absolute annual growth larger than 1,051,000?",5 -40297,"What is the average relative annual growth of Lebanon, which has a July 1, 2013 projection larger than 4,127,000?",4 -40303,What's the average year a Rangam movie came out?,5 -40307,What was the average year that Thuppakki movies came out?,5 -40308,What is the highest summary statistic of the algorithm with a distance larger than 2 and simulated datasets of aabbababaaabbababbab?,1 -40310,How many games had 2 goals scored?,4 -40312,Name the total number of democratic votes when the other votes are less than 18 and the percentage of R votes are 52.63% and votes since 1856 less than 38,3 -40314,How many people attended games with st kilda as the home side?,4 -40316,What is the average number of floors for buildings in mecca ranked above 12?,5 -40319,How many laps did antônio pizzonia do?,3 -40322,What is the average crowd size when the away team scores 7.13 (55)?,5 -40324,What is the highest round of a player from Sweden who plays right wing?,1 -40326,What is the average round of a player with an overall of 138?,5 -40331,I want the sum of pages for thistle among roses,4 -40338,How many people attended Junction Oval?,4 -40342,What is the total capacity for the stadium of pasquale ianniello?,4 -40346,What was the smallest crowd at a game when Richmond was the away team?,2 -40348,Name the total number of since for belletti,3 -40349,Name the highest goals for youth system and ita,1 -40351,How many laps had a grid of greater than 17 and retired due to collision?,4 -40352,How many silvers for south korea with under 1 gold medal?,1 -40353,How many golds for uganda with under 3 total medals?,1 -40354,"How many bronzes for nations ranked above 7, under 3 golds, and under 10 total medals?",3 -40370,How many people attended the game with an away team score of 10.8 (68)?,3 -40376,What was the attendance at Windy Hill?,1 -40377,What was the smallest crowd of vfl park?,2 -40380,What was the average crowd size at a home game that had a score of 14.15 (99)?,5 -40381,What is the average number of yards on a red tee that has a hole of 1 and a par above 4?,5 -40390,What is the total series numbers that is directed by Jefferson Kibbee and has a production code of 2398191?,4 -40403,"What is the average number lost with a difference of -16, 19 points, and more than 24 against?",5 -40404,What is the highest number of losses with 25 points?,1 -40405,What is the sum of the difference for 9 draws and over 18 played?,4 -40406,What is the lowest number drawn with less than 2 lost?,2 -40407,What is the sum of all points when number played is less than 18?,4 -40409,What is the total PI GP that a Reg GP has larger than 3?,3 -40410,What average Reg GP has a pick # larger than 210?,5 -40417,What is the total number of playoff games played by the Seattle Thunderbirds team where the number of regular games played is less than 5 and pick number is less than 131?,3 -40419,What is the sum of the number of regular games played by Morgan Clark with the number of road games less than 7?,4 -40422,"What is the lowest regular GP Larry Courville, who has a PI GP smaller than 0, has?",2 -40433,What is the least apparent magnitude for all constellations from hydra?,2 -40434,What is the highest Car with more than 155 yards?,1 -40440,What is the total average for long 10?,3 -40448,"On what Date was the Score of 3–6, 6–4, 3–6, 6–1, 6–2",4 -40449,"What is the highest rank for gene littler with under 3 wins and under $962,133?",1 -40458,I want to know the average attendance for n venue and f round,5 -40459,"In grid 15, how many laps were there before ending with a time of exhaust?",4 -40463,When did the tom smith built train enter service with a number under 7007?,5 -40471,What is the crowd size when the away team was South Melbourne?,4 -40472,What was the crowd size at Junction Oval?,1 -40495,How many chapters did Elmer Clifton direct?,3 -40505,What is the largest crowd for an Away team of st kilda?,1 -40511,What is the grid for Jack Brabham with more than 65 laps?,4 -40533,What is the smallest crowd size for away team Fitzroy?,2 -40536,What is the average of the Series #s that were directed by Matthew Penn?,5 -40537,How many episodes did Matthew Penn direct before season 22?,3 -40539,When Nashville was the visiting team what was the lowest Attendance shown?,2 -40541,What is the smallest grid for a time/retired of 1:56:18.22?,2 -40567,What is Pedro De La Rosa's total number of Grid?,3 -40582,How many goals for occurred when the goals against was less than 56 and games played was larger than 7 with less than 6 wins?,3 -40583,What is the smallest number of wins with 7 games played and goals against less than 46 when goals for is more than 34?,2 -40584,What is the average number of ties when goals against is less than 56 for Ottawa Hockey Club and the goals for is more than 47?,5 -40585,How many losses occurred with less than 8 games played and less than 3 wins?,3 -40586,How many goals against were scored when the goals for is less than 48 with 0 ties?,3 -40594,Which year has the Co-singer solo and a Film name of bhagya debata?,2 -40605,I want the lowest Grid for Rolf Stommelen,2 -40609,What is the attendance at the Dallas home game on may 12?,3 -40611,How many wins for mike hill ranked below 4?,3 -40615,What is the highest pennant number with ships in raahe class?,1 -40616,What is the highest pennant number with ships in pori class?,1 -40622,waht is the last year with a mclaren mp4/10b chassis,1 -40623,before 1995 waht is the aveage pts for a mclaren mp4/10b chassis,5 -40624,what is the most recent year for a ligier gitanes blondes,1 -40625,What is the total number of averages with an interview of 8.75 when the evening gown number was bigger than 8.75?,4 -40626,"What is the total number of interviews where the evening gown number is less than 8.82, the state is Kentucky, and the average is more than 8.85?",4 -40627,How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71?,4 -40636,What is the lowest amount of floors after rank 1 in the Trillium (residential) building?,2 -40637,What is the lowest amount of floors in the building completed before 1970 ranked more than 14?,2 -40638,What is the largest amount of floors in the 70m (233ft) Tupper building (educational)?,1 -40640,What is the sum of Sylvain Guintoli's laps?,4 -40679,How many people attended the game with the home side scoring 18.14 (122)?,4 -40694,What is the low number of top 25s in an event with over 15 appearances?,2 -40695,What is the average rank of the Reliance Entertainment movie with an opening day on Wednesday before 2012?,5 -40697,What is the opening day net gross a Reliance Entertainment movie before 2011 had?,4 -40699,What is the year of the movie with an opening day on Friday with a rank 10?,3 -40700,"What is the lowest Sack with a Solo of 24, with Tackles larger than 25.5, with Yards larger than 0?",2 -40701,"What is the total number of Solo with a Player with sean mcinerney, and Yards larger than 0?",3 -40702,"What is the highest Sack with an Assisted larger than 4, with TD's smaller than 0?",1 -40703,"At the power plant located in ramakkalmedu, what is the sum of the total capacity (MWe)?",4 -40722,"How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes?",3 -40723,"When the away team is Geelong, what is the highest crowd count?",1 -40724,What is the total crowd count for the venue Princes Park?,4 -40725,"For the away team with a score of 16.13 (109), what is the total crowd count?",4 -40734,What is the Quantity of Type 2-4-2t?,4 -40735,What was the Quantity on Date 1900?,4 -40736,What is the Quantity of type 2-4-2t?,3 -40737,"What is the smallest grid with a Time/Retired of engine, and a qual of less than 138.75?",2 -40742,What is the lap total for the grid under 15 that retired due to transmission?,4 -40744,what is the sum of laps when grid is less than 20 and johnny herbert is driving?,4 -40750,What is the total capacity (MW) of the farm that is noted as being under construction?,3 -40754,What is the total capacity (MW) of the windfarm located in the state/province of Gansu?,4 -40756,How many people in total have attended games at Kardinia Park?,4 -40757,Which game at Arden Street Oval had the lowest attendance?,2 -40759,What is the average number of points for clubs that have played more than 42 times?,5 -40760,What is the total number of goals scored against clubs that have played more than 42 times?,3 -40779,What was the highest Interview score from a contestant who had a swimsuit score of 8.857 and an Average score over 9.097?,1 -40781,What is the highest Top 25 with a Money list rank of 232 and Cuts smaller than 2?,1 -40782,What is the smallest Earnings that has a Money list rank of 6 and Starts smaller than 22?,2 -40783,What is the highest number of Cuts made that has a Top 10 smaller than 8 and Wins larger than 0?,1 -40784,"How many Starts that have Cuts made of 2, Top 25 larger than 0, and Earnings ($) smaller than 338,067?",3 -40792,"Who has the highest TDs, with yards of 9, and carries smaller than 13?",1 -40793,What are the carries of the player Jeremiah Pope?,4 -40794,What was the largest crowd that was in attendance for fitzroy?,1 -40799,How many positions have Points of 30-8 and more than 25 goals?,3 -40800,What is the lowest play with ue figueres club and a goal difference more than 16?,2 -40801,How many played have 8 wins and more than 58 goals against?,3 -40806,"Which Crowd has a Home team score of 15.20 (110), and a Home team of carlton?",2 -40808,Which number of Crowd has an Away team score of 20.11 (131)?,3 -40821,"Which is the largest area in Greenville County, by square mile?",1 -40822,Which is the total number in the 2010 Census in Oconee County where the area in square miles was less than 674?,4 -40823,"What is the total number of areas by square mile where the founding year was 1785, the county seat was in Spartanburg, and the land area by square mile was more than 811?",4 -40831,How many tries did the player Paul Sykes take when he earned 0 points?,1 -40833,How big is the Venue of Brunswick Street Oval?,4 -40842,What was the earliest week that the Storm played the San Jose Sabercats?,2 -40845,what average grid has laps larger than 52 and contains the driver of andrea de adamich?,5 -40846,what's the highest lap that contains the driver of graham hill and a grid that is larger than 18?,1 -40847,what's the average grid that has a time/retired piston and laps smaller than 15?,5 -40851,What is the earliest season with driver Farad Bathena?,2 -40852,Which Major League Soccer team for the 2005 season has the lowest goals?,2 -40853,What are the average apps for the Major League Soccer team club for the Seattle Sounders FC that has goals less than 0?,5 -40872,How many attended the game with a record of 43-34?,3 -40874,"When the percent is larger than 0.685, what is the average number of points scored?",5 -40875,"When less than 37 points are scored, what's the lowest Pct % found?",2 -40884,What series had Joan Tena in sixth place?,4 -40909,What is the smallest crowd of the away team that scored 12.9 (81)?,2 -40927,how many times is the nation listed as united states with the total more than 1?,3 -40928,what is the lowest total when the rank is less than 2 and bronze is more than 0?,2 -40930,what is the rank when silver is less than 0?,4 -40931,what is the amount of silver when gold is 2 and the rank is more than 1?,5 -40935,What is the total of attendance with a Record of 5-9-0?,4 -40951,what is the debut when the play er is radoslava topalova and the years played is less than 2?,5 -40953,What was the total number of average attendance for games of 1311?,4 -40965,How many people were at Washington's home game against Miami?,3 -40967,What was total attendance on the day they went 17-7?,3 -40972,How many games have more than 288 goals and less than 34 losses?,3 -40973,What is the lowest tie with less than 100 points and 277 goals?,2 -40996,What's the highest turnout when carlton was playing as the away team?,1 -41002,What is the largest Crowd number for the Home team of North Melbourne?,1 -41003,What is the total Crowd number for the team that has a Home team score of 13.9 (87)?,4 -41006,"In the Western Oval venue, what is the average crowd?",5 -41009,What is the round for Arizona with a pick over 100?,5 -41014,How many heavy attacks did the 450 Luftflotte 2 conduct?,3 -41016,What is the grid total for bruce mclaren with over 73 laps?,4 -41020,When was steve bartalo picked?,1 -41022,What was the highest crowd turnout when the away team scored 12.13 (85)?,1 -41030,what is the length (miles) when the east or north terminus is ne 2 in lincoln?,3 -41031,what is the length (miles) when the name is l-56g?,1 -41043,"How many games for keith j. miller, who debuted after 1974 with less than 1 goal?",5 -41044,What is the highest crowd when carlton is the away team?,1 -41045,What is the highest crowd at mcg?,1 -41046,How many grids are associated with a Time/Retired of +1.837?,3 -41052,"When the %2001 is more than 61.4, and the %2006 fewer than 54.1, how many Seats in 2001 were there?",4 -41053,"What is the highest number of Seats 2006 held by the Christian Democratic Union of Germany Party/Voter Community, with a %2006 higher than 24.6?",1 -41054,"What is the highest number of Seats 2006 held by the communities of Bürger Für Groß-Rohrheim Party/Voter Community, with a %2006 less than 21.3?",1 -41055,What is the %2006 when the %2001 was more than 62.5?,5 -41056,"What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against?",4 -41057,What is the largest Goals For by a team that has more than 0 ties?,1 -41058,How many ties do teams with 25 Goals For and more than 5 wins have?,4 -41059,What is the lowest Goals Against by a team with more than 5 wins?,2 -41060,What is the total number of ties a team with less than 3 losses have?,3 -41065,How many players from bethel?,3 -41085,What place has a draw smaller than 2?,5 -41094,What was the attendance at Kardinia Park?,5 -41100,Tell me the highest PI GP with pick # greater than 159 and reg GP more than 0,1 -41109,"For a height less than 122 meters, what is the greatest height in feet?",1 -41110,How high was the highest building in feet in the city of cologne?,1 -41111,What is the smallest height (ft) of a building in Frankfurt with a height (m) of 257 and less than 55 floors?,2 -41129,What is the largest crowd where the home team scored 17.13 (115)?,1 -41136,How many grid numbers were there for the driver Giancarlo Fisichella?,3 -41137,What is the mean number of laps for the constructor Ferrari when the time/retired was fuel pressure?,5 -41139,How many laps had a grid number of 7?,4 -41140,Which lap number had a grid number of less than 17 when the driver was Giancarlo Fisichella?,3 -41153,How many people attended the game when the away team scored 10.11 (71)?,4 -41162,"When melbourne was the away team, what was the lowest crowd turnout they had?",2 -41165,Tell me the lowest 2005 for 2010 less than 21 for 2009 being 19,2 -41166,"Name the total number of 2010 for when 2009 is less than 14, 2008 is less than 15 and 2005 is 3",3 -41167,Name the average 2008 for beijing and 2005 more than 2,5 -41168,Name the lowest 2008 for guizhou when 2005 is less than 31,2 -41169,Name the sum of 2010 for 2000 of 17 and 2005 more than 16,4 -41170,What is the total of crowd at Venue of mcg?,4 -41171,What is the smallest crowd with a Home team score of 7.10 (52)?,2 -41174,Tell me the number of regions with an area of 58.81,3 -41175,what is the rank when the bronze is less than 0?,3 -41176,what is the highest rank when the bronze is less than 1 and the total is less than 1?,1 -41177,what is the lowest amount of silver when the gold is less than 0?,2 -41178,what is the average number of gold when the rank is more than 5?,5 -41179,what is the highest amount of silver when gold is 0 for soviet union?,1 -41182,What is the average speed for ships before 1974 with over 1.73 passengers?,5 -41183,How many vessels are named aqua jewel?,3 -41184,How many districts in Baltimore City does Cheryl Glenn dictate?,3 -41188,"What is the largest district for delegate Cheryl Glenn, that she had taken after 2006?",1 -41189,"What is the average Viewers (m) for ""aka"", with a Rating larger than 3.3?",5 -41190,"What is the highest placing for marie mcneil / robert mccall, with less than 168.58?",1 -41192,What is the highest displacement value for the R Fwd Auto Phase1?,1 -41193,What was the top crowd when the team scored 12.15 (87) at home?,1 -41195,What is the combined of Crowd that has a Home team which scored 12.15 (87)?,4 -41196,What is the combined of Crowd that has an away team which scored 19.15 (129)?,4 -41197,Name the number of silver when gold is less than 1 and bronze is 0 when total is less than 2,3 -41202,What is the long of the player with 16 yards and less than 1 TD?,4 -41203,What is the highest place a player with 4 long and less than 2 TDs has?,2 -41210,What is the low attendance was based in phoenix with a Record of 1–0–0?,2 -41214,How many people attended the game where the home team scored 8.10 (58)?,1 -41220,How many tracks were Recorded 1964-01-08?,3 -41226,What is the average pick of Florida State?,5 -41227,What is the average pick of San Diego State?,5 -41228,What is the lowest value for SP+FS for Miljan Begovic with a greater than 189 place?,2 -41229,What is the average points value for a rank less than 12 for David Santee?,5 -41230,What is the total number for Rank with 185.16 points and a SP+FS value greater than 5?,3 -41231,What is the largest value for SP+FS with more than 164.56 points for Mitsuru Matsumura in a Rank greater than 1?,1 -41240,What is the total pick number of Virginia Tech?,3 -41248,Tell me the sum of longitude for diameter being 22.6 and latitude less than -12.4,4 -41250,what is the lowest viewers (m) when the share is more than 13?,2 -41251,"what is the average rating when the air date is november 23, 2007?",5 -41252,what is the total viewers (m) when the rating is 6.4 and the share is more than 11?,3 -41261,what is the most recent date founded in elk county?,1 -41262,how many parks are name beltzville state park?,3 -41263,Which rank has a total smaller than 1?,5 -41279,What is the release date of the CD by EG Records in the UK?,4 -41280,What is the release date by Editions EG in the Netherlands?,5 -41282,What is the release date by Virgin?,5 -41286,"For the gte northwest classic with the score of 207 (-9), what is the average 1st prize ($)",5 -41287,For sep 18 what is the total number of 1 prize ($),3 -41301,"What is the number of points of palamós cf, which has less than 21 wins and less than 40 goals?",3 -41310,Which Crowd has an Away team score of 9.21 (75)?,4 -41325,What is the sum of gold medals for the United States with silver medal count greater than 3?,4 -41326,What is the total number of medals of Norway with a silver medal count greater than 6 and a gold medal count greater than 10?,3 -41327,What is the lowest bronze medal count for Italy with fewer than 6 gold medals and greater than 10 total medals?,2 -41328,"On average, what is the number of silver medals for nations ranking higher than 7, with a total of 6 medals and fewer than 2 bronze medals?",5 -41329,"For the United States, with greater than 2 bronze metals, greater than 3 silver medals, and a rank higher than 3, what is the highest total number of medals?",1 -41335,Name the total number of swimsuits when evening gown is 8.329 and average is less than 8.497,3 -41336,Name the sum of swimsuit when the evening gown is less than 6.983 and the average is less than 7.362,4 -41337,Name the most interview for minnesota and average more than 7.901,1 -41338,Name the highest Decile for roll more than 325 and area of warkworth,1 -41345,How many people were in attendance at Hawthorn's home match?,2 -41353,What position is associated with a Time of 20:39.171?,5 -41354,How many points associated with a Best time of 01:46.367?,5 -41355,"What is the total reg gp of Ilya Krikunov, who has a round of 7 and a pick number larger than 223?",3 -41356,What is the total PI GP of the player with a pick number 49 and a reg gp less than 0?,3 -41357,What is the pick # of the player with a PI GP less than 0?,4 -41358,What is the reg gp of the player with a round number less than 2?,4 -41359,What is the average PI GP of the player from round 5 with a pick # larger than 151?,5 -41361,What is the lowest pick from Elitserien (Sweden)?,2 -41363,How many spectators were at the game where Richmond was the away team?,4 -41371,What is the highest number of laps when the Time/Retired is differential?,1 -41373,What is the average grid when the laps are smaller than 14 and Reine Wisell is the driver?,5 -41379,Name the total number of attendance when the cavaliers visited,3 -41383,"In the games at corio oval, what was the highest crowd?",1 -41385,"How many communes associated with over 10 cantons and an area (Square km) of 1,589?",5 -41388,What was the attendance when the VFL played MCG?,3 -41395,what is the highest laps when the grid is 1?,1 -41396,How many athletes had a Swimming Time (pts) of 2:20.93 (1232)?,3 -41403,What rank is aliyya qadi with less than 1421 votes?,2 -41405,What is the first year that the Favorite Male Replacement category had Ben Vereen as a nominee?,2 -41407,What year was Aaron Tveit nominated in the Favorite Male Replacement category?,5 -41410,Tell me the sum of rank for placings of 58,4 -41411,Tell me the lowest placings for United Kingdom and rank less than 13,2 -41412,I want to know the highest rank with placings more than 123 and points greater than 88.06,1 -41420,What is the highest round on 5 april?,1 -41423,Name the total number in attendance for may 1,3 -41425,How many cuts were made when there weren't any wins but had a top-5 of 1 and a top 10 larger than 4?,4 -41433,What is the average grid for damon hill with over 74 laps?,5 -41435,How many rounds have a Pick of 13?,4 -41436,How many rounds have School/club team of pan american?,4 -41437,What is the earliest year a chassis of ferrari 312t and results of 31 points occurred?,2 -41445,How big was the crowd when the opponent was essendon?,4 -41459,What is the average total of Italy and has a bronze larger than 1?,5 -41460,What amount of Gold does Russia have and have a rank larger than 1?,4 -41461,What is the sum of the ranks with a total of 1 and silver less than 0.,4 -41463,What was the lowest round that Melvin Johnson played?,2 -41477,What was the smallest crowd size when a home team scored 6.11 (47)?,2 -41478,"What is the rank for points less than 166.96, and a Places of 166?",5 -41479,What is the rank for more than 120.44 points in East Germany and a SP+FS of 3?,3 -41480,What is the rank when 233 shows for places and SP+FS smaller than 27?,3 -41481,"What is the average SP+FS for Denise Biellmann, and a Rank larger than 5?",5 -41482,"What is the number of points for east germany, and a Places of 88?",4 -41487,What is place number of Frank Kleber who started in 2001?,3 -41489,"What place did R. Wenzel, who was active after 1934, have?",4 -41500,What was the average amount of spectators when the home team scored 11.14 (80)?,5 -41503,How many spectators were present when the away team scored 10.12 (72)?,3 -41505,What was the lowest Attendance for the Staples Center Arena when the Points were over 14?,2 -41522,How many Years have Ratings of 10.9/23?,3 -41526,What is the largest crowd for a Home team of carlton?,1 -41527,"When the Away team scored 12.9 (81), what was the average Crowd size?",5 -41529,"When the Away team is melbourne, what's the lowest Crowd attended?",2 -41535,Name the sum of year for swimming and first of mike,4 -41537,Cumulative point total for all teams playing on the Discovery Channel?,3 -41542,What year is the player who attended la salle with under 6 assists from?,4 -41543,Which year has a total of 0 points and a chassis of Toleman tg181?,5 -41544,What is the latest year that has more than 5 points and a renault ef15 1.5 v6 t engine?,1 -41545,Which year had a toleman tg183 chassis?,3 -41548,Name the total number of rank for 348cc petty manx,3 -41555,what was the purse ($) in illinois?,1 -41557,How many years did he play in santiago de compostela?,4 -41558,What is the Total Finale of 女人唔易做?,4 -41559,What is the lowest Premiere peaking at more than 35 with a Rank of 10 and Finale greater than 33?,2 -41561,What is the Average of Men in Pain with a Finale of less than 33?,5 -41564,What is the average crowd size for corio oval?,5 -41565,What is the average crowd size for Brunswick street oval?,5 -41570,"When the country is austria germany and the rank is kept under 5, what's the average number of matches played?",5 -41572,"What is the earliest game that had 42,707 attending?",2 -41573,What is the sum of the figure skating scores whose total is less than 117.78?,4 -41574,What is the lowest total score among skaters from West Germany with a rank of 20 and a figure skating score less than 74.85?,2 -41577,"Can you tell me the average Figures that has the Placings of 34, and the Total larger than 1247.51?",5 -41592,"What are the average byes that are greater than 1479, wins greater than 5 and 0 draws?",5 -41593,Tell me the average year for rank more than 3 and 28 floors,5 -41595,What is the average rank of Great Britain when their total is over 4?,5 -41596,What is the total number of Silvers held by France when their rank was over 14?,3 -41613,Tell me the sum of TD's for 4 avg.,4 -41615,What is the total number in the season for the #30 Robert Berlinger series?,3 -41626,"What numbered pick was mattias ohlund, with over 52 PL GP, and also a round under 11?",4 -41627,How many reg GP for mattias ohlund?,3 -41628,What is the average attendance against the expos?,5 -41636,What is the sum of grids with an engine in Time/Retired with less than 45 laps for Giancarlo Baghetti?,4 -41648,What is the total when silver is less than 1 and rank larger than 3?,3 -41649,What is the number of bronze for Canada and silver is less than 0?,4 -41650,What is the largest gold when silver is less than 1 for Canada and bronze is less than 0?,1 -41651,What is the silver for Germany and less than 2?,5 -41673,"What is the total attendance with a Report of sd.hr, and a Score of 3–1, and a Date of 14 apr 2001?",4 -41674,What is the highest production code when the writer was brian egeston after season 5?,1 -41678,How many people were in the crowd when the Home Team was Hawthorn?,4 -41680,What's the average Grid with Laps of 88?,5 -41693,"What is the highest Purse ($) that has a 1st Prize ($) of 45,000 at the gte kaanapali classic tournament?",1 -41700,What is the smallest crowd for victoria park?,2 -41701,what is the highest clean & jerk when total (kg) is 200.0 and snatch is more than 87.5?,1 -41702,what is the average bodyweight when snatch is 80?,5 -41705,"When the home team was Richmond, what was the largest crowd?",1 -41706,Tell me the average 1st prize for tennessee,5 -41708,How many percentages have losses fewer than 1 with finals appearances of 4?,3 -41723,What is the ERP W number where the frequency is smaller than 91.1?,1 -41745,What is the lowest number of episodes for anabel barnston?,2 -41747,How many episodes have a duration of 3?,3 -41750,What is the size of the crowd for the game where the away team scored 18.16 (124)?,2 -41753,What is the most recent year of disaffiliation of a CHCH-TV station that affiliated after 2001?,1 -41754,"What is the earliest year of disaffiliation of a CHCH-TV station, licensed in Hamilton, Ontario?",2 -41755,How many bronze medals did west germany win when they had less than 2 silver medals?,4 -41756,How many bronze medals were won when the total was larger than 2 and the more than 2 gold medals were won?,4 -41757,How many gold medals were won when more than 2 bronze medals were won?,4 -41758,What was the PI GP fpr pick# 235 for Rd# larger than 12?,2 -41759,What was the largest crowd when South Melbourne was the away team?,1 -41763,What is the average number of laps for the driver Piero Taruffi?,5 -41775,How many goals for were scored for the team(s) that won fewer than 4 games and lost more than 6?,4 -41776,What is the average losses for the team(s) that played more than 8 games?,5 -41779,What is the average fleet size for the Shunter type introduced in 1959?,5 -41780,What is the smallest fleet size with a type of shunter introduced in 1953?,2 -41781,"What show that was aired on January 24, 2008 with a rating larger than 3.6 had the lowest viewers? How Many Viewers in the millions?",2 -41784,Which is the total number of evening gowns for swimsui less than 9.36 and average less than 9.23?,3 -41785,Name the lowest average for interview more than 9.57 and delaware and evening gown more than 9.77,2 -41786,Name the sum of swimsuit for average more than 9.23 for delaware for interview more than 9.73,4 -41787,Name the sum of average for interview more than 9.57 and swimsuit more than 9.65,4 -41789,What points awarded are higher than 6 but smaller than 9,1 -41807,"Which week has the lowest attendance of 48,102?",2 -41810,Name the average zone for waddon marsh tram stop,5 -41812,Name the total number of platforms that waddon railway station has,3 -41813,Name the average zone for waddon railway station and has more than 2 platforms,5 -41819,"What is the sum of all win% with average home/total attendance of 3,927 (19,633)?",4 -41821,What was the lowest win% with an away score of 3-2 in 2011 season?,2 -41823,What is the lowest win% in the 1999-2013 season?,2 -41825,What is the earliest year that the discus throw event occur?,2 -41832,How many attended the game that was a Loss of k. gross (1-1)?,1 -41841,What is the earliest year with an entry from Rotary Watches Stanley BRM and a BRM P207 with more than 0 points?,2 -41872,How large was the crowd at the Kardinia Park venue games?,4 -41883,What is the total grid number where the time/retired is +58.182 and the lap number is less than 67?,4 -41887,What was the biggest crowd at punt road oval?,1 -41890,"What is the low gold total for nations with under 23 silvers, ranked beloe 5, and 6 bronzes?",2 -41891,What is the high silver total for nations with 3 golds and under 5 bronzes?,1 -41892,How many silvers for nations with over 3 golds and under 6 bronzes?,3 -41893,What is the crowd number for the event that has a score of 8.25 (73) for the Away team?,3 -41897,What was the smallest crowd in games at the corio oval?,2 -41920,"I want to know the lowest week with a date of december 19, 2004",2 -41925,What is the highest grid that has 55 laps?,1 -41934,How many rounds have an Opponent of sakae kasuya?,3 -41939,How big was the crowd at the game the away team geelong played at?,4 -41947,What's jim colbert's highest rank?,1 -41948,What's hale irwin's average rank?,5 -41949,"What is the average wins with a rank over 3 and more earnings than $9,735,814?",5 -41950,What is the sum of averages with a long value of 32?,4 -41951,What is the highest TD's with less than 15 yards and less than 1 rec.?,1 -41955,Which track has a Japanese title of メロディー?,1 -41956,What Grid has a Time/Retired of clutch?,4 -41968,"Which mean pick number had a Reg GP of 0, and a Pl GP that was bigger than 0?",5 -41969,"What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257?",1 -41970,"What is the sum number of Pl GP when the Reg GP was 0, the Rd number was bigger than 8, and the pick number was bigger than 146?",3 -41975,WHAT IS THE NUMBER OF Attendance WITH A RECORD 94–36,5 -41976,WHICH Attendance that has a Loss of paniagua (3–3)?,1 -41986,"Where Date is october 11, and game greater than 4 what is the lowest attendance?",2 -41987,"Where date is october 7 and game greater than 1, what is the highest attendance?",1 -41992,"How many points when under 17,197 attended against the wild?",5 -42002,How many people were in the Crowd when the Away team scored 15.20 (110)?,3 -42019,What is the lowest heat of the Lakeside race?,2 -42021,"When the Home team scores 14.16 (100), what is the sum of the Crowds?",4 -42022,What's the average number of people in the Crowd that attend essendon games as the Home team?,5 -42024,Name the least week for opponent of washington redskins,2 -42028,"How many laps for a Time/Retired of tyre, and a Grid larger than 10?",3 -42045,What is the highest numbered grid for piercarlo ghinzani with over 3 laps?,1 -42046,How many laps for a grid of over 18 and retired due to electrical failure?,4 -42047,What was the crowd attendance for the game with an away team score of 14.10 (94)?,4 -42048,What was the average crowd attendance for the Junction Oval venue?,5 -42054,How many seasons has John Mcfadden coached?,3 -42055,"What is the station with the most riders that has an annaul ridership of 4,445,100 and line smaller than 1??",1 -42056,What is the number of annual ridership with a station that has more than 13 stations and larger than 4 lines?,4 -42057,How many lines have fewer than 44 stations and fewer than 881 riders per mile?,3 -42058,"Which station has 3,871 riders per mile, and an annual ridership in 2012 of larger than 15,399,400?",1 -42059,What is the highest season for the 7th position?,1 -42079,How many bronze medals for the nation with less than 1 total?,1 -42080,"How many bronze medals for the nation ranked above 2, and under 0 golds?",3 -42081,How many silvers for japan (1 gold)?,4 -42083,"For the roll of 651, what was the lowest Decile?",2 -42085,What was the sum roll of Karaka area?,4 -42087,What is the average crowd where the home team scored 8.15 (63)?,5 -42094,What is the low crowd size when the away team scored 17.11 (113)?,2 -42095,What week number saw a w 31-16 result?,2 -42097,What week number had the New York Giants as opponent?,3 -42113,What is the earliest year for 9 points?,2 -42114,What is the low score for the jaguar r3 chasis?,2 -42130,How many number Builts had unit numbers of 375301-310?,4 -42143,How many league cup goals on average for players with over 0 FA cup and 5 league goals?,5 -42144,What is the low FA cup goals for viduka with under 2 europe goals?,2 -42145,Who won the most recent favorite rap/hip-hop new artist at the American music awards?,1 -42156,What was Attendance/G with Tms more than 18?,5 -42157,How many seasons did the Div J1 have the Emperor's cup in the 3rd round with Tms of more than 18?,3 -42161,what is the year when the title is jotei?,4 -42176,What is the latest death with a description of BR-Built inspection saloon?,1 -42181,What is the overall rank with rating smaller than 8.2 and rating share of 4.5/11?,3 -42182,What is the rating for the episode with the night rank of 11 and timeslot rank is larger than 4?,5 -42183,What is the smallest share for a timeslot ranking less than 4 and fewer viewers than 8.78 million?,2 -42184,What is the rating of the episode with 13.47 million viewers and overall rank larger than 6?,4 -42185,What is the rank of the episode with a share of 6 and timeslot rank smaller than 4?,5 -42188,In which round was there a pick of 4?,1 -42189,How many rounds were there an offensive tackle position?,3 -42190,What was the pick number in round 228 for Mike Ford?,1 -42203,On the match where the away team scored 16.16 (112) what was the crowd attendance?,5 -42204,What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1?,2 -42205,What grid for jacques villeneuve with over 36 laps?,1 -42206,What were the lowest laps of Tarso Marques?,2 -42207,What's the average Grid for those who spun off after Lap 64?,5 -42208,"What is the grid total that has a Time/Retired of + 1:33.141, and under 70 laps?",4 -42209,"What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap?",1 -42210,What is the low lap total for a grid of 14?,2 -42211,How many laps for martin brundle with a grid of less than 10?,3 -42212,What was the average points in the quarterfinals domestic cup?,5 -42225,"What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5?",5 -42226,"What is the smallest rating with nightly rank smaller than 7, timeslot rank smaller than 5 and eposide after episode 6?",2 -42227,What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8?,2 -42228,What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4?,5 -42229,What is the smallest timeslot rank when the rating is smaller than 2.6?,2 -42232,What is the total wins with less than 21 goals taken?,4 -42241,when was the building withdrawn when the builder was ac cars and was introduced before 1958?,4 -42245,"How many carries for the RB averaging 4.7, and a long of over 30 yards?",4 -42246,"How many yards did kevin swayne average, with a long carry over 7?",2 -42247,How many yards for the player with over 0 TDs and an average of 2.9?,2 -42248,"How many TDs for the player averaging over 7, and over 39 yards?",2 -42253,What is the oldest year listed with the 1500 Louisiana Street name?,2 -42255,What is the largest enrollment for anglican day schools founded after 1929?,1 -42267,What's the total number of people to attend games at junction oval?,3 -42269,How many people have attended victoria park?,3 -42291,what is the highest round when the player is troy creurer (d)?,1 -42294,What is the average position for tb2l teams promoted champion?,5 -42295,How many teams were promoted in the postseason in a tier above 2?,3 -42300,What was the highest crowd at the venue MCG?,1 -42307,How many rounds were run at Calder Park?,3 -42309,How many rounds were run in New South Wales?,3 -42312,What is the highest diff with drawn of 6 and play larger than 18?,1 -42313,How many games were played when the loss is less than 5 and points greater than 41?,4 -42321,what is the lowest crowd at kardinia park,2 -42331,What is the total Crowd with a Home team of collingwood?,4 -42348,"How many silver have a Total smaller than 3, a Bronze of 1, and a Gold larger than 0?",1 -42349,How many gold have a National of New Zealand with a total less than 2?,4 -42351,What is the average year for scatman winning?,5 -42354,"When was the last time a venue was held in turin, italy?",1 -42356,"How many year was the venue in stockholm, sweden used?",3 -42365,What was the attendance when St Kilda played as the home team?,3 -42377,"What is the first prize amount of the person who has a score of 207 (-9) and a purse amount of more than 800,000?",3 -42383,How many people were in the crowd at collingwood's home game?,4 -42390,What is the low lap total that has a Time or Retired of accident?,2 -42391,What is the smallest crowd when the away team scored 10.18 (78)?,2 -42395,What is the mean number of caps for Ryota Asano?,5 -42396,What is the mean number of caps for Ryota Asano?,5 -42403,What was the total size of the crowd when an away team had a score of 9.9 (63)?,4 -42414,Name the average events for miller barber,5 -42415,"Name the most wins for earnings of 130,002",1 -42416,"Name the average wins for earnings more than 120,367 and events less than 13",5 -42417,"Name the average rank for earnings less than 231,008 and wins less than 1",5 -42420,what is the platform when the frequency (per hour) is 4 and the destination is west croydon?,4 -42421,"what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon?",1 -42460,What Crowd had the least people with a Home Team Score of 9.13 (67)?,2 -42463,I want to know the lowest ligue 1 titles for position in 2012-13 of 010 12th and number of seasons in ligue 1 more than 56,2 -42476,What is the top grid that is driven by martin brundle?,1 -42478,Which grid is lower for thierry boutsen which laps less than 44?,2 -42483,What is average year for ayan mukerji?,5 -42490,what was the largest attendance at kardinia park?,1 -42492,What's the average of the amount of laps for the driver patrick tambay?,5 -42493,"When renault is the constructor, the grid is over 6, and the time was labeled ignition, what's the largest amount of laps on record?",1 -42495,what is the total number of played when the goals for is more than 34 and goals against is more than 63?,3 -42496,what is the total number of goal different when the club is cf extremadura and the played is less than 38?,3 -42497,"what is the average points when the goal difference is less than 17, the club is getafe cf and the goals for is more than 30?",5 -42498,"what is the sum of goals for when the position is less than 8, the losses is less than 10 the goals against is less than 35 and played is less than 38?",4 -42499,what is the highest gold when the rank is 12 for the nation vietnam?,1 -42510,What was the average crowd size at Victoria Park?,5 -42511,What is the crowd size of the match featuring North Melbourne as the away team?,2 -42517,How many people attended the home game for South Melbourne?,4 -42519,"How many grids have a Time/Retired of gearbox, and Laps smaller than 3?",3 -42520,What is masten gregory's average lap?,5 -42534,What is the lowest crowd at windy hill?,2 -42535,What is the crowd with a Home team score of 8.17 (65)?,5 -42538,What is the lowest crowd with home team richmond?,2 -42540,"When there are more than 12 total medals and less than 5 gold medals, how many bronze medals are there?",3 -42541,"When the united states won a total number of medals larger than 25, what was the lowest amount of Bronze medals won?",2 -42542,"When the nation of poland had less than 17 medals but more than 1 gold medal, what's the Highest number of bronze medals?",1 -42543,"If there are more than 0 Silver medals, less than 5 gold medals, and no bronze medals, what was the total number of medals?",3 -42544,"What's the total number of NGC that has a Declination ( J2000 ) of °15′55″, and an Apparent magnitude greater than 10?",4 -42549,What's the rank for a team that has a percentage of 56% and a loss smaller than 4?,5 -42550,Name the average avg for TD's less than 3 for devin wyman and long more than 3,5 -42551,Name the lowest yards for 34 long and avg less than 12.6,2 -42559,"Which entry has the highest laps of those with constructor Minardi - Fondmetal, driver Marc Gené, and a grid larger than 20?",1 -42560,What is the sum of grid values of driver Michael Schumacher with lap counts larger than 66?,4 -42562,"What is the highest grid value with constructor Mclaren - Mercedes, driver David Coulthard, and has fewer than 66 laps?",1 -42563,What is the highest number of laps for grid 17?,1 -42578,What is the lowest amount of wins of someone who has 2 losses?,2 -42579,What is the largest amount of wins of someone who has an against score greater than 1249 and a number of losses less than 17?,1 -42582,What is the high bronze total for nations ranked 12?,1 -42596,What is the average grid for johnny herbert with a Time/Retired of +1 lap?,5 -42601,"Which NGC number has an Object type of open cluster, and a Right ascension (J2000) of 06h01m06s?",1 -42617,what is the places when for the soviet union with a rank more than 11?,4 -42621,"Name the lowest against for when wins are greater than 14, draws is 0 and losses are 4",2 -42622,Name the sum against for byes less than 0,4 -42623,Name the sum of draws for losses less than 2 and wins of 16,4 -42624,How few laps were finished in 17?,2 -42627,What is the lowest lap with a rank of 30?,2 -42629,Who is the lowest ranked player from the United States that has less than 3 Wins?,2 -42634,What year was the timber trade?,4 -42635,What year has an issue price of $697.95?,3 -42649,"Which sum of AVE-No has a Name of albula alps, and a Height (m) larger than 3418?",4 -42650,"Which Height (m) has a Name of plessur alps, and a AVE-No larger than 63?",2 -42652,Which AVE-No has a Name of livigno alps?,2 -42656,How many Established groups have a multicultural sub category?,3 -42671,What is the low lap total for the under 4 grid car driven by juan pablo montoya?,2 -42673,What is the grid total for cars with over 69 laps?,3 -42675,What is the highest number of laps with a time of +6.643 and grid less than 2?,1 -42685,What is the average of seasons for 10th place finishes?,5 -42693,"What is the PI GP of Rob Flockhart, who has a pick # less than 122 and a round # less than 3?",4 -42694,"What is the lowest reg gp of the player with a round # more than 2, a pick # of 80, and a PI GP larger than 0?",2 -42695,"Name the highest FIPS code for coordinates of 41.827547, -74.118478 and land less than 1.196",1 -42698,"Name the sum of land for ANSI code of 2390496 and population less than 7,284",4 -42699,How many solo tackles for the player with over 0 TDs and over 0 sacks?,2 -42700,"How many sacks for the player with over 1 tackle, under 3 assisted tackles, and over 0 yards?",3 -42725,"What is the lowest rank for a nation with 29 total medals, over 5 silvers, and under 16 bronze?",2 -42726,What is the highest rank for a nation with 26 golds and over 17 silvers?,1 -42738,What is the average grid for Clay Regazzoni?,5 -42739,What is the average laps for the grid smaller than 21 for Renzo Zorzi?,5 -42740,What is the average laps for Grid 9?,5 -42745,What was the attendance when the Hawks played?,3 -42746,How many bronzes are there for the total nation with 112 silver and a total of 72?,5 -42747,What is the highest bronze for San Marino with less than 82 total and less than 3 golds?,1 -42748,How many golds were there when there was more than 11 bronze and 29 in total?,3 -42749,What was Montenegro's average bronze with less than 7 silver and more than 4 golds?,5 -42750,How many golds were there for Iceland with more than 15 silver?,3 -42751,What was Andorra's total with less than 10 silver and more than 5 bronze?,4 -42758,"How many total ties had less than 1183 total games, 121 years, and more than 541 losses?",3 -42759,How many losses had more than 122 years and more than 1244 total games?,4 -42760,What is the lowest earnings for a player with over 24 wins?,2 -42761,"Who has the most wins from new zealand with over $1,910,413?",1 -42767,"Im the match where the home team is Melbourne Victory, what was the crowd attendance?",3 -42775,What is the highest Grid with over 72 laps?,1 -42776,What is the average number of laps associated with a Time/Retired of +1:14.801?,5 -42780,Tell me the highest laps for toyota and grid of 13,1 -42782,Tell me the sum of Grid for giancarlo fisichella,4 -42784,What was the crowd attendance when the home team was Melbourne?,3 -42785,What was the crowd attendance when the home team scored 13.17 (95)?,4 -42790,"What is the biggest purse with a 1st prize of $26,000?",1 -42792,How many laps with a grid larger than 7 did a Lotus - Ford do with a Time/Retired of + 2 laps?,4 -42794,What is the Apparent magnitude of a Declination (J2000) of °39′45″?,2 -42811,What is the high assist total for players from 2010 and under 76 rebounds?,1 -42812,What is the total swimsuit number with gowns larger than 9.48 with interviews larger than 8.94 in florida?,3 -42813,What is the total average for swimsuits smaller than 9.62 in Colorado?,4 -42814,What was the bronze medal count of the team that finished with 47 total medals?,5 -42815,What is the silver medal count of the team that finished with 8 bronze medals?,4 -42817,How many times does Switzerland have under 7 golds and less than 3 silvers?,3 -42819,What is the average crowd size for the home team hawthorn?,5 -42825,What was the lowest crowd size for the Carlton at home?,2 -42828,What was the attendance of the North Melbourne's home game?,3 -42829,What was the attendance at the Fitzroy home game?,4 -42830,What was Richmond's highest attendance?,1 -42838,"In the match where the venue was arden street oval, what was the crowd attendance?",4 -42839,What was the crowd attendance in the match at punt road oval?,4 -42844,What is the computation for 5 or less TD's?,5 -42849,Whats teo fabi average lap time while having less than 9 grids?,5 -42852,How many attended the game on April 17?,4 -42856,"What's the lowest number of draws when the wins are less than 15, and against is 1228?",2 -42857,What's the sum of draws for against larger than 1228 with fewer than 1 wins?,4 -42865,"What's the latest year that Doha, Qatar hosted a tournament?",1 -42866,"What's the average of all years tournaments were hosted in Doha, Qatar?",5 -42867,What is the overall draft number for the running back drafted after round 1 from fresno state?,4 -42868,What is the overall total for players drafted from notre dame?,4 -42869,Name the sum of gold which has a silver more than 1,4 -42870,Name the average rank for west germany when gold is more than 1,5 -42871,Name the average rank for when bronze is more than 1,5 -42872,I want the sum of gold for silver being less than 0,4 -42873,"Which 2011–12 has a 2010–11 smaller than 26.016, and a Rank 2013 larger than 20, and a Club of rubin kazan?",5 -42874,Which Rank 2014 has a 2009–10 of 21.233?,5 -42875,"Which 2013–14 has a Rank 2014 smaller than 23, and a 2011–12 larger than 19.1, and a Rank 2013 of 14?",5 -42887,What Poles have Races smaller than 4?,5 -42888,"What is the sum of Points with a Series of italian formula renault 2.0, and Poles smaller than 0?",3 -42889,"What is the total number of Points with Wins larger than 0, a Position of 12th, and Poles larger than 0?",4 -42890,"What is the smallest Wins with a Position of 20th, and Poles smaller than 0?",2 -42902,"Which Week has an Attendance of 20,112?",1 -42904,What is the lowest car number sponsored by UPS before 2001?,2 -42906,What is the highest car number sponsored by Post-It / National Guard?,1 -42907,How many seasons has UPS sponsored a car with a number larger than 17?,3 -42914,How many total losses were with less than 51 draws but more than 6 wins?,3 -42915,How many matches has 51 draws and more than 6 against?,4 -42916,How many wins has more than 165 against?,1 -42917,How many draws have less than 35 losses with 136 matches and less than 146 against?,5 -42918,How many Againsts have more than 15 wins?,3 -42919,"Which Byes have Losses larger than 0, and an Against larger than 3049?",5 -42920,"What is the total number of Points 1, when Position is ""7"", and when Drawn is greater than 6?",3 -42921,"What is the highest Goals For, when Team is ""Cheadle Town"", and when Drawn is greater than 7?",1 -42922,"What is the sum of Position, when Points 1 is greater than 23, and when Goals For is ""77""?",4 -42931,What is the average number of points of the team with more than 17 pg won?,5 -42932,What is the total number of pg won of the team with 64 goals conceded and more than 33 goals scored?,3 -42933,"What is the sum of the pe draw of team plaza amador, who has less than 6 pg won?",4 -42934,What is the sum of the places of the team with more than 49 points and less than 54 goals scored?,4 -42938,"What is the total number of households with a population larger than 25,692 and a median household income of $51,914?",3 -42939,"What is the sum of households that makes a median household income of $44,718?",4 -42940,"What is the highest population for Baraga County with less than 3,444 households?",1 -42951,What are the lowest lost has 111 as the goals against?,2 -42952,What is the highest goals against that has 15 as position?,1 -42953,Hiw many losses have 30 for the goals with points greater than 24?,3 -42954,"How many draws have goals for less than 56, 10 as the postion, with goals against less than 45?",3 -42955,"What is the highest draws that have 31 for points, wins greater than 12, with a goal difference less than 11?",1 -42965,What is the smallest Year with a Binibining Pilipinas-International of jessie alice salones dixson?,2 -42972,What was the edition after 2003 when the Third was Tikveš and Sileks was the runner-up?,2 -42973,What was the latest year with an edition of 14?,1 -42987,What was the largest capacity when the club was F.C. Igea Virtus Barcellona?,1 -42990,What was the total when the first was November 1966?,4 -42992,What is the greatest total when the last was September 1970?,1 -42994,What year has 54 (73) points?,4 -42996,What is the year of the Lotus 25 chassis?,5 -42997,What is the year of the Lotus 18 chassis?,3 -42999,"What is the lowest First Elected, when Party is ""Republican"", and when District is ""Minnesota 1""?",2 -43006,"How many byes did they have against smaller than 1544, 13 wins, and draws larger than 0?",3 -43007,How many byes has a draw larger than 0?,3 -43008,"What is the lowest against that has less than 9 wins, and draws smaller than 0?",2 -43009,What is the total number of wins that has byes less than 0?,3 -43010,What is the most money for the score 75-74-72-67=288?,1 -43022,What is the highest to par for the 76-70-76-76=298 score?,1 -43024,"What is the average money for a to par of 15, and is from the United States?",5 -43025,"What is the total amount of money that has a t2 place, is from the United States for player Leo Diegel?",3 -43031,"How much Grid has a Time/Retired of +0.785, and Laps larger than 29?",4 -43033,"How many Laps have a Grid smaller than 5, and a Time/Retired of retirement?",4 -43035,What was the lowest lost entry for a team with fewer than 21 goals for?,2 -43036,What was the position has a played entry of more than 24?,3 -43037,"What is the highest position for Nelson, with a played entry of more than 24?",1 -43038,"What was the average Lost entry for Newton, for games with a drawn less than 5?",5 -43039,"What is the highest lost entry that has a drawn entry less than 6, goals against less than 44, and a points 1 entry of 27?",1 -43041,What is the total bodyweight of everyone that has a Snatch of 153.0?,4 -43044,"What is the highest Attendance, when Date is ""Oct. 26""?",1 -43045,"What is the lowest Opponents, when Raiders Poinsts is greater than 38, and when Attendance is greater than 51,267?",2 -43046,"What is the total number of Opponents, when Raiders Points is ""42"", when Attendance is less than 52,505?",3 -43047,"What is the total number of Raiders First Downs, when Date is ""Nov. 2"", and when Raiders Points is greater than 42?",3 -43048,"What is the average Tournaments, when Highest Rank is ""Maegashira 1""?",5 -43050,"What is the lowest Tournaments, when Name is ""Baruto""?",2 -43051,"What is the highest Tournaments, when Pro Debut is ""July 2002""?",1 -43053,"How many League Cup Goals have 0 as the total goals, with delroy facey as the name?",3 -43054,"How many total goals have 0 (3) as total apps, with league goals less than 0?",3 -43055,"What is the lowest league goals that have 0 as the FA Cup Apps, with 1 (3) as totals apps?",2 -43059,What was the highest total when Norrkoping scored 12?,1 -43066,What is Darren Clarke's total score?,3 -43086,What year had a title of Die Shaolin Affen EP and EP as the type?,5 -43088,What was the highest number of bronze medals for the entry with rank 2 and fewer than 3 silver medals?,1 -43089,What is the average number of gold medals won by Brazil for entries with more than 1 bronze medal but a total smaller than 4?,5 -43090,What is the sum of silver medals for the entry with rank 3 and a total of 4 medals?,4 -43100,Which Year has a Category of best film?,1 -43102,When was the earliest incumbent dave reichert was first elected?,2 -43103,What is the total of the first elected year of incumbent norm dicks?,3 -43104,What is the total of the first elected year of the incumbent from the washington 8 district?,3 -43105,"WHAT IS THE START THAT HAS A FINISH BIGGER THAN 3, FROM FORD, AFTER 1969?",1 -43107,WHAT WAS THE FINISH NUMBER WITH A START SMALLER THAN 20 IN 1969?,3 -43108,"What is the total number of Pleasure(s), when Psychological Dependence is greater than 1.9, and when Drug is ""Benzodiazepines""?",3 -43109,"What is the highest Psychological Dependence, when Pleasure is less than 2.3, when Drug is ""Cannabis"", and when Physical Dependence is less than 0.8?",1 -43110,"What is the average Mean, when Drug is ""Alcohol"", and when Psychological Dependence is greater than 1.9?",5 -43111,"What is the total number of Psychological Dependence, when Pleasure is ""2.3"", and when Mean is less than 1.9300000000000002?",3 -43112,"What is the sum of Pleasure, when Drug is ""LSD"", and when Psychological Dependence is greater than 1.1?",4 -43123,How many byes when there are 11 wins and fewer than 5 losses?,4 -43124,How many losses when there are less than 0 wins?,3 -43125,What are the most againsts with more than 11 losses and central murray is Nyah Nyah West Utd?,1 -43128,"what is the highest down (up to kbits/s) when resale is yes, up ( up to kbit/s) is 1180 and provider is 1&1?",1 -43130,What is the average down (up to kbit/s) when the provider is willy.tel and the up (kbit/s) is more than 1984?,5 -43131,"How many totals have a Gold larger than 0, and a Bronze smaller than 0?",3 -43132,"Which Total has a Bronze larger than 1, and a Gold larger than 0?",1 -43134,When was Mario Elie picked in a round before 7?,1 -43135,In what round did someone from North Carolina State get picked larger than 91?,3 -43148,"What is the total number of points with less than 49 points in 2008-09, and 46 points in 2006-07?",3 -43149,"What is the total pld that has 36 points in 2007-08, and less than 55 points in 2008-09?",4 -43150,"What is the lowest total pld with 57 points in 2006-07, and more than 39 points in 2008-09",2 -43157,How many byes were then when there were less than 737 against?,4 -43158,How many wins were there when the byes were more than 3?,3 -43159,How many wins were there when draws were more than 0?,2 -43160,How many wins did Glenelg FL of bahgallah have when there were more than 3 byes?,3 -43182,"What is the fewest bronze medals when the total medals is less than 10, and the gold medals less than 0?",2 -43183,"With 8 as the rank, and a total of more than 2 medals what is the average bronze medals?",5 -43184,What is the maximum total medals when the rank is 8?,1 -43185,"What is the largest number of gold medals when the bronze medals is less than 49, and there is 22 silver medals, and the total is less than 60?",1 -43186,"When the number of gold medals is greater than 59, and the rank is total, what is the average bronze medals?",5 -43187,What is the smallest number of medals a country with more than 14 silver has?,2 -43188,"What is the rank of a country with more than 2 gold, less than 5 silver, and less than 31 total medals?",4 -43192,"What week was the game played on November 12, 1961, with an attendance of 7,859 played?",2 -43194,"What is the number of households in the county with median income of $65,240 and population greater than 744,344?",4 -43197,What's filiberto rivera's height?,3 -43200,What's the tallest height for c position in current club unicaja malaga?,1 -43204,"What is the sum of the glyph with a binary less than 111001, an octal less than 65, and a hexadecimal less than 30?",4 -43205,"What is the average hexadecimal with a decimal less than 53, an octal less than 61, and a glyph greater than 0?",5 -43206,What is the lowest octal with a 30 hexadecimal and less than 0 glyphs?,2 -43207,What is the average hexadecimal with a decimal greater than 57?,5 -43208,What is the average decimal with a 110010 binary and a glyph greater than 2?,5 -43209,What is the sum of the glyph with a 38 hexadecimal and a binary less than 111000?,4 -43211,What was the highest attendance at a game that was played in tulane stadium?,1 -43212,What is the category for the year when Brioude started and the stage is less than 7?,3 -43213,What is the stage number when the category is less than 1?,3 -43244,What was the lowest pick number with an overall 86?,2 -43246,What is the sum of the Pick # Anthony Maddox?,4 -43250,What is the total where there are 4 MLS Cups and more US Open Cups than 1?,3 -43252,"How many race 1's have 5 as the race 3, with points less than 59?",4 -43255,What is the lowest to par of a player from australia with a score of 76-70-75-72=293?,2 -43258,"What is the highest Version, when Release Date is ""2011-04-01""?",1 -43268,"What is the population when the Per capita income of $18,884, and a Number of households smaller than 14,485?",4 -43270,"What is the highest kneel with a stand less than 187, and a 197 prone, and a qual more than 576?",1 -43271,What is the sum of the stand with a qual more than 589?,4 -43277,"What is the highest Pick, when Player is ""Todd Van Poppel""?",1 -43282,What is the rank for the nation with 0 silver medals and a total larger than 2?,4 -43283,What is the least silvers where there are 39 bronzes and the total is less than 120?,2 -43295,"Which Position has 24 Goals against, and a Played smaller than 30?",1 -43296,"Which Points have a Club of cf calvo sotelo, and a Goal Difference larger than -3?",1 -43297,"Which Draws have a Position of 16, and less than 58 Goals against?",2 -43298,"Which Losses have Draws larger than 6, and a Club of cd mestalla, and Goals against larger than 44?",2 -43299,"How many Goals against have Goals for smaller than 33, and Points smaller than 16?",4 -43309,How many scores have a Place of t5?,3 -43311,Which Score has a To Par of –1?,2 -43322,What are the downhill points for the skier with total of 9.31 points?,4 -43339,What is the total medals in 1964?,2 -43340,"How many kills when percentage is more than 0.313, attempts are more than 1035 and assists are larger than 57?",3 -43341,What is the highest percentage when there are more than 361 blocks?,1 -43342,What is the total blocks when there are less than 210 digs and the total attempts are more than 1116?,5 -43350,"Can you tell me the average Total that has the To par smaller than 10, and the Country of south korea?",5 -43354,What is the maximum total when the To par is +3?,1 -43356,What is the highest capacity of the tsentral stadium (batumi)?,1 -43371,What's the total losses that has more than 12 wins and 1017 against?,3 -43372,What's the most wins of Tatong?,1 -43373,What's the most number of byes for Longwood having less than 1944 against?,1 -43374,What is the smallest number against when the draws are less than 0?,2 -43375,What are the average byes of Bonnie Doon having more than 16 wins?,5 -43412,"What's the to Iran with fewer than 9 survivors, more than 3 damaged, and an ussr an-26 aircraft?",5 -43413,"What's the average destroyed with a 1990 over 12, more than 1 damaged, 6 survivors, and a to Iran less than 4?",5 -43414,"What's the average survived with a to Iran less than 1, more than 1 destroyed, and a brazil tucano aircraft?",5 -43418,"How many points have an Engine of ferrari tipo 033 v6 tc, and a Year larger than 1987?",4 -43420,"How many points have an Engine of ferrari tipo 033 v6 tc, and a Year smaller than 1987?",1 -43448,"What is the average money (£) that has +8 as the to par, with 73-72-72-71=288 as the score?",5 -43451,What year weas John McEnroe the champion?,5 -43455,What is the population of Danderyd municipality in Stockholm County with a code lower than 162?,3 -43457,what total was the lowest and had a to par of e?,2 -43460,"What is the total number of Year(s), when Trailing Party is ""Indian National Congress"", and when Trailing Party % Votes is ""27.42%""?",3 -43463,"What is the lowest Year, when Lok Sabha is ""4th Lok Sabha""?",2 -43466,How many Grid has a Rider of ryuichi kiyonari?,4 -43467,Name the lowest Grid which has a Bike of ducati 1098 rs 08 and a Rider of max biaggi?,2 -43470,What is the total for player karrie webb?,3 -43472,"What is the sum of the to par of player meg mallon, who had a total greater than 157?",4 -43473,What is the highest total of the player with a 7 to par?,1 -43484,"What is the sum of Against, when Opposing Teams is ""South Africa"", and when Status is ""First Test""?",4 -43492,"What is the lowest First Elected, when District is ""Massachusetts 10""?",2 -43493,"What is the average First Elected, when District is ""Massachusetts 3""?",5 -43500,"What is the sum of P desc with a P 2007 of 0,00 and a P, Ap 2008 less than 30,00, and a P CL 2008 that is more than 10,56?",4 -43501,"Which Fighting Spirit has a Name of tsurugamine, and a Technique smaller than 10?",5 -43502,"How much Technique has the Highest rank of yokozuna, and a Total larger than 11?",3 -43503,"How much Fighting Spirit has a Total of 13, and a Technique smaller than 1?",4 -43523,"What was the highest number of losses for a position less than 6, with more than 11 wins and 36 points, with a played entry of more than 30?",1 -43524,"What is the total number of wins for the entry that has fewer than 49 goals against, 39 goals for, 9 draws, and fewer than 31 points?",3 -43525,"What is the average number of goals for entries with more than 12 losses, more than 10 wins, more than 3 draws, and fewer than 29 points?",5 -43526,"What is the highest number of wins for club Cd Orense, with points greater than 36 and more than 4 draws?",1 -43527,What is the total number of played for the entry with a position of less than 1?,4 -43531,"What is the lowest positioned club with points greater than 40, 16 wins and losses less than 3?",2 -43532,What is the lowest positioned team with 2 wins and losses greater than 13?,2 -43533,"What is the smallest number of wins where goals conceded are below 26, draws are 1 and goals scored are below 74?",2 -43534,"For the club Minija Kretinga, what's the lowest number of wins with points smaller than 25, goals at 22 and goals conceded below 39?",2 -43546,"What is the total number of Year, when Award is ""Vamsi Berkley Award"", and when Category is ""Best Actor""?",3 -43559,What week did Cleveland Browns played?,5 -43560,What is the Highest Goals for Grella?,1 -43563,"what is the average % coal when the % natural gas is more than 11.6, electricity production (kw/h, billion) is less than 1,053 and % hydropower is 32?",5 -43564,"what is the highest % hydropower when the % oil is less than 24.5, country is united arab emirates and the % nuclear power is 0?",1 -43565,what is the highest % hydropower when % coal is 4.9 and % nuclear power is more than 0?,1 -43566,"what is the highest electricity production (kw/h, billion) when the % other renewable is 0.4, % coal is 0 and % hydropower is more than 99?",1 -43567,What is the lowest CDR that has 112 as the difference?,2 -43569,"What average deaths have 15,0 as the IMR, with a CDR greater than 4,0?",5 -43572,How many goals against total did the team with more than 52 goals and fewer than 10 losses have?,4 -43573,What was the low number of draws for Levante Ud when their goal difference was smaller than 6?,2 -43574,What is the average entry in the against column with draws smaller than 0?,5 -43575,What is the total number of losses that has draws larger than 1 and a Portland DFL of westerns?,4 -43576,What is the sum of draws for all byes larger than 0?,4 -43577,What is the sum of byes for losses larger than 14 for a Portland DFL of westerns?,4 -43611,What is the sum of the pick of the guard position player?,4 -43620,What is the publication the observer music monthly highest year?,1 -43621,"What is the average Attendance, when Venue is ""Candlestick Park"", and when Date is ""December 27""?",5 -43623,"What is the average Attendance, when Venue is ""Candlestick Park"", and when Date is ""November 25""?",5 -43637,What is the highest to par number for Justin Leonard when the total is less than 297?,1 -43647,What is the lowest Winner's share (¥) in 2011?,2 -43648,How much is the purse worth (¥) after 2012?,4 -43657,"What is the average Frequency, when Type is ""Norteño"", and when Brand is ""La Cotorra""?",5 -43659,"What is the sum of Frequency, when Type is ""Christian Pop""?",4 -43682,What's the average against of Leopold with more than 11 wins?,5 -43683,How many total wins for Leopold that had fewer than 1706 against?,4 -43684,What is the largest number of draws of St Josephs with losses greater than 6 and less than 1250 against?,1 -43685,What is the total number of against when they had 14 losses and more than 0 byes?,4 -43705,How many seats does the party of others have with a change of -1 and more than 0% votes?,4 -43706,What are the fewest seats with a -3.7% change and more than 4.7% votes?,2 -43707,What is the change number with fewer than 4.7% votes and more than 0 seats?,4 -43708,What are the fewest seats with fewer than 5.4% seats and more than -1 change?,2 -43747,"What is the goal difference when there are fewer than 12 wins, 32 goals against and 8 draws?",4 -43748,What's the lowest goal difference when the position is higher than 16?,2 -43752,"What is the League Goals when the FA Cup Goals are 0, position is mf, League Cup Apps of 0, and name is Ben Thornley?",5 -43754,What is the total goals for Mark Ward?,2 -43762,What's the average attendance when the opponents are dundalk?,5 -43763,What's the total attendance for H/A of A and opponents of wolverhampton wanderers?,3 -43764,Which Total has a Gold smaller than 4?,2 -43765,"Which Rank has a Nation of china (chn), and a Bronze smaller than 4?",1 -43766,"How much Total has a Bronze smaller than 13, and a Nation of netherlands (ned), and a Gold larger than 4?",3 -43769,What is the average year founded that is located in Broken Hill and has school years of k-6?,5 -43777,"What is the average against of Murrayfield, Edinburgh?",5 -43785,"What is the average rank of the city of el paso, which has a population greater than 672,538?",5 -43788,What is the smallest round to have a record of 4-0?,2 -43791,"How many kills have 15 as the injured, with a year prior to 1987?",4 -43793,"What is the average Against, when Status is ""2007 Rugby World Cup"", and when Opposing Teams is ""U.S.A.""?",5 -43795,"What is the lowest Against, when Status is ""First Test"", and when Date is ""26/05/2007""?",2 -43802,What was the 2006 population for the local government area of alexandrina council whose rank was smaller than 19?,5 -43813,"What is the average Grid, when Laps is less than 24, when Bike is ""Honda CBR1000RR"", and when Rider is ""Jason Pridmore""?",5 -43814,"What is the highest Laps, when Bike is ""Yamaha YZF-R1"", when Rider is ""David Checa"", and when Grid is greater than 18?",1 -43815,"What is the sum of Grid, when Time is ""+16.687""?",4 -43816,"What is the total number of Grid, when Laps is greater than 24?",3 -43818,"What was the highest season number with a total prize of $108,000?",1 -43819,What is the earliest season where Aisha Jefcoate was the runner-up?,2 -43826,"What is the lowest against score for Twickenham, London with the status of Five Nations against Ireland?",2 -43830,"Name the Against which has a Venue of wembley stadium , london?",1 -43831,Which wins have less than 1 bye?,1 -43832,"Which Against has Losses larger than 10, and Wins smaller than 4, and a Club of dunolly?",2 -43833,"Which Byes has an Against smaller than 1297, and a Club of avoca, and Wins larger than 12?",5 -43887,"What are the lowest matches that have wickets greater than 16, 3/15 as the best, and an econ less than 8?",2 -43888,"How many econs have 13.76 as the S/Rate, with runs less than 325?",3 -43889,"What is the average wickets that have overs greater than 44, danish kaneria as the player, with an average greater than 13.8?",5 -43890,"How many 5+/inns have tyron henderson as the player, with wickets less than 21?",3 -43897,"Name the highest Year which has a Venue of narbonne , france?",1 -43899,"COunt the Year which has a Venue of latakia , syria?",3 -43901,"Which Year has a Competition of european indoor championships, and a Venue of budapest , hungary?",4 -43907,What is the greatest number of losses when the against is 1465 and there are more than 7 wins?,1 -43908,"What is the total of against matches when there are less than 12 wins, less than 0 draws, and Moulamein is the golden river?",4 -43909,What is the total losses when Hay is the golden river and there are more than 2 byes?,3 -43910,What is the total number of draws when there are 1465 against matches and less than 2 byes?,3 -43911,What is the greatest number of losses when there are more than 0 draws and 1390 against matches?,1 -43912,What is the highest number of wins when there are more than 2 byes?,1 -43913,"Which percent has Wins larger than 72, and a Name of john yovicsin?",4 -43914,"How many Ties have Years of 1919–1925, and a Pct larger than 0.734?",4 -43915,"Which Pct has Years of 1957–1970, and Wins smaller than 78?",4 -43916,"Which Wins have Years of 1881, and a Pct larger than 0.75?",5 -43935,What is the highest quantity of the b ix k.b.sts.b.?,1 -43936,"What is the lowest quantity of the 1b n2 type, which was retired in 1907-12?",2 -43951,What was the average money for United States when Lanny Wadkins played?,5 -43964,What is the sum of the all around with a 37.75 total?,4 -43965,What is the average final with an all around larger than 19.4 and total more than 39.9?,5 -43968,"How many againsts have asba park, kimberley as the venue?",4 -43986,"What is the lowest Score, when Place is ""1""?",2 -43989,What is the latest year for first elected with john hostettler as incumbent and a result of lost re-election democratic gain?,1 -43997,What is the against for the opposing team of Wales with the status of Five Nations?,5 -43998,"Can you tell me the average Average that has the Rank larger than 4, and the Player of dean minors?",5 -44011,"What is the sum of Against, when Status is ""Six Nations"", and when Date is ""30/03/2003""?",4 -44014,What shows for money (£) when South Africa is the country?,1 -44039,What is the average total for Dave Stockton?,5 -44040,"What is the sum of the to par for the United States in the winning year of 1967, and has a total of more than 146?",4 -44048,What is Sweden's lowest score?,2 -44055,What's the earliest year the philippines won?,2 -44056,What's the average year lebanon won?,5 -44064,"What is the total that wehn Lithuania is the nation, and Silver is more than 0?",2 -44065,"What is the rank when bronze was more than 0, gold more than 1, Nation is japan, and silver less than 0?",5 -44066,What is the rank when the total is less than 1?,2 -44067,"What is the total when silver is more than 0, and bronze less than 0?",1 -44068,"What is the rank that when Serbia is the nation, and gold is larger than 0?",4 -44071,Which Total has a To par larger than 12?,2 -44072,"How much To par has a Total larger than 149, and a Country of united states, and a Year(s) won of 1997?",4 -44074,"Which Rank has a Network of bbc one, and a Number of Viewers of 30.15million? Question 2",4 -44080,What was the Attendance at Jobing.com Arena?,3 -44093,"What is the total attendance with a 1-0 result, at Venue H, and Round SF?",4 -44094,What is the lowest attendance at Venue H in Round R2?,2 -44095,What is the highest attendance for the opponents Club Brugge in Venue A?,1 -44098,What was Bernhard Langer's highest score?,1 -44099,What was Craig Stadler's lowest score for United states?,2 -44106,"What is the average Money ( $ ), when Country is ""United States"", and when To par is ""+3""?",5 -44109,What was the tonnage on 30 march 1943?,5 -44117,What year shows 248 (sf: 217) points?,3 -44122,"How many Points have an Average smaller than 1, a Played larger than 38, and a Team of gimnasia de la plata?",4 -44132,What is the highest attendance of the game with eastwood town as the away team?,1 -44138,"Which Position has Goals against smaller than 43, and Wins larger than 14, and Played larger than 38?",4 -44139,"Which Goals for has a Position smaller than 16, and Wins smaller than 19, and Goals against smaller than 32?",2 -44140,"Which Points have Goals against of 32, and Played larger than 38?",1 -44141,"Which Position has Goals against smaller than 59, and Goals for larger than 32, and Draws larger than 9, and Points larger than 35?",5 -44147,What is the year that a record was recorded with Libor Pesek as conductor?,4 -44160,What is the total number of Israeli deaths in the attack with 0 total casulaties and 0 total deaths?,3 -44167,"Who has the lowest league total goals with 0 FA cup goals and no FA cup appearances, plays the DF position and has appeared in total of 3 times?",2 -44168,"What is the lowest # Of Episodes, when Date Released is ""15 December 2011""?",2 -44174,"What is the sum of League Goals, when Position is ""DF"", when League Cup Apps is ""0"", when Total Apps is ""7"", and when FLT Goals is less than 0?",4 -44175,"What is the total number of FA Cup Goals, when FLT Goals is greater than 0?",3 -44176,"What is the lowest FA Cup Goals, when Total Goals is greater than 0, when League Goals is ""4"", when FA Cup Apps is ""1"", and when League Cup Goals is greater than 0?",2 -44182,How many points for Newman/Haas Racing with fewer than 40 laps?,5 -44191,What's the total number of moves with a result of ½–½ and a black of Anand before 1999?,3 -44195,"What is the lowest draw that has We The Lovers for the english translation, with a place greater than 1?",2 -44196,"How many draws have french as the language, with a place less than 1?",4 -44198,What is the Tonnage of the ship from Canada?,1 -44211,Which rank has 0 bronze and 2 silver?,2 -44212,"How much silver does the rank have that has gold smaller than 4, and a total of 1 and a rank larger than 6?",4 -44213,"Which rank has a more than 0 silver, 4 bronze, and a total smaller than 10?",4 -44214,How much gold does the tank have that has 3 silver and more than 3 bronze?,3 -44215,What is the total number that 0 silver?,3 -44231,"Which Against has more than 11 wins, and a Geelong FL of st josephs?",2 -44232,What is the Attendance of the game with a Loss of Hiller (3–2)?,1 -44239,"What is the number of high checkout with fewer than 13 legs won, a 180s lower than 2 and an LWAT of more than 1?",3 -44240,What is the total 140+ with a high checkout of 74 and a 100+ higher than 17?,4 -44241,"How many played are there with a 3-dart average of more than 90.8, an LWAT higher than 5 and fewer than 17 legs lost?",5 -44245,"Can you tell me the total number of Rank that has the Points larger than 99, and the Club of barcelona?",3 -44246,"How many people on average attended when Eastwood Town was the away team, and the tie number was less than 8?",5 -44248,The game with Bashley as the home team had what maximum attendance?,1 -44249,What is the tie number total when Harlow Town is the away team?,3 -44251,"What was the highest place a song by Jacques Raymond reached, with a draw over 14?",1 -44255,"Which Goals have a Current Club of real madrid, and a Ratio smaller than 1.08, and a Rank smaller than 5?",1 -44280,What is the highest Week with the Opponent Buffalo Bills?,1 -44286,"How many votes have a Seat of house A, and a Percentage of 75.44%, and a District smaller than 11?",3 -44288,What's the highest number of silver for 9 bronze and less than 27 total?,1 -44290,What is the highest Assets (USD) Millions from Equity Bank and less than 44 branches?,1 -44311,"Which Pick has a Nationality of canada, and a Player of dennis maxwell?",3 -44315,"Which Draft has a Round of 1, a Nationality of canada, a Pick of 1, and a Player of vincent lecavalier?",5 -44321,How many wins have more than 1 loss and a team of chiefs?,4 -44322,What was the total yards lost by antwon bailey when he gained 227?,2 -44323,"How many wins when points are more than 51, goals against are more than 23 and losses are 5?",3 -44324,"How many wins when there are more than 19 points, place smaller than 12, and fewer than 30 played?",4 -44325,What is the number played by the team in place greater than 16?,5 -44347,What is the smallest Pick with Overall of 244?,2 -44348,"What is the smallest Pick with Overall larger than 17, a Player name of dave adams category:articles with hcards, and a Year larger than 1963?",2 -44349,"What is the greatest Year with a Player name of dave adams category:articles with hcards, and a Round smaller than 23?",1 -44350,Name the Round that has Res of win and an Opponent of demian maia?,4 -44358,What is John Shadegg's First Elected date?,5 -44364,What is the most recent year with a time of 10.56?,1 -44370,What is the highest number of points that Justin Hodges earned with 0 field goals and 0 regular goals?,1 -44371,"What is the average Points, when Date is ""February 2"", and when Attendance is less than 16,874?",5 -44372,"What is the lowest Attendance, when Date is ""February 4"", and when Points is less than 57?",2 -44379,"Which Apps have a Club of barcelona, and a Season of 1996/97, and a Rank smaller than 7?",2 -44381,"How many Apps have a Rank larger than 2, and Goals smaller than 102?",4 -44389,"How much 0–100km/h, s has a Fuel of diesel, and a Torque of n·m (lb·ft) @1900 rpm, and an Engine ID code(s) of agr/alh?",3 -44396,What is the Weight of the Senior Player with a Height of 6–10?,4 -44409,What is the highest total to par of +9?,1 -44412,"How many weeks had an Attendance of 43,272?",3 -44459,"How much Played has Goals Against of 45, and Goals For smaller than 65?",4 -44460,How many Goals Against have a Position of 4?,3 -44461,What is the highest total when bronze is less than 1 and gold more than 0?,1 -44462,"what is the sum of bronze when the rank is 5, the nation is poland and gold is less than 0?",4 -44463,"what is the sum of silver when the rank is 3, nation is france and bronze is less than 0?",4 -44464,How many times is the nation china and bronze more than 0?,3 -44465,How many times is the rank higher than 3 and bronze more than 1?,3 -44466,"what is the least silver when bronze is 1, rank is less than 2 and gold is more than 4?",2 -44467,"What is the average value for Draws, when Against is ""2177"", and when Byes is less than 4?",5 -44468,"What is the total number of Losses, when Wins is ""16"", and when Against is less than 772?",3 -44469,"What is the lowest value for Draws, when Losses is ""0"", and when Byes is greater than 4?",2 -44470,"What is the highest value for Byes, when Wins is less than 16, when Benalla DFL is ""Swanpool"", and when Against is less than 2177?",1 -44471,"What is the highest value for Byes, when Against is less than 1794, when Losses is ""6"", and when Draws is less than 0?",1 -44474,"What is the drafted year when the FCSL Team was Winter Park, in the 4th round?",1 -44483,What was the average money when the score was 74-72-75-71=292?,5 -44486,What is the average Barrow Island Australia when Draugen north sea is 17 and Mutineer-Exeter Australia is smaller than 6?,5 -44487,"What is the lowest Barrow Island Australia when the Crude oil name \Rightarrow Location \Rightarrow of initial boiling point, °c, and a draugen north sea is larger than 150?",2 -44488,What is the highest CPC blend Kazakhstan number when Barrow Island Australia is smaller than 12?,1 -44489,What is the lowest CPC Blend Kazakhstan number when Draugen North Sea is 17?,2 -44496,"What is the total number of First Elected, when Party is ""Democratic"", and when District is ""Tennessee 5""?",3 -44497,"What is the lowest First Elected, when Results is ""Re-elected"", and when Incumbent is ""Lincoln Davis""?",2 -44498,"What is the highest First Elected, when Results is ""Re-elected"", and when Incumbent is ""Lincoln Davis""?",1 -44499,"Which 2004 has a 2006 of 4,67, and a 2005 larger than 7,77?",2 -44500,"How much 2005 has a 2006 larger than 4,67, and a 2004 of -14,76?",3 -44501,"Which 2004 has a 2005 larger than -80,04, and a 2003 of 36,60?",1 -44502,"Which 2005 has a 2003 of -13,25, and a 2004 smaller than -8,37?",2 -44505,What is the total number for Seve Ballesteros?,3 -44506,What is the lowest to par for Bob Charles?,2 -44517,"What is the 0–100km/h,s for the output of ps (kw; hp) @4000 rpm?",3 -44519,What is the highest number against on 12/04/1969?,1 -44542,What is the total number of years won by Justin Leonard with a to par under 9?,3 -44543,What is the highest total for Scotland with a year won of 1985?,1 -44546,"What is the total number of Year(s), when Date (Opening) is ""September 21""?",3 -44549,"Name the number of Earnings per share (¢) which has a Net profit (US $m) larger than 66, and a Year to April smaller than 2010?",3 -44550,Name the total number of EBIT (US $m) in 2011 and a Earnings per share (¢) larger than 47?,3 -44551,"Count the Earnings per share (¢) in April smaller than 2012, a Revenue (US $million) of 432.6 and a EBIT (US $m) smaller than 150.5?",4 -44552,COunt the EBIT (US $m) which has a Revenue (US $million) larger than 434.8 and a Net profit (US $m) larger than 96.4?,3 -44558,"What is the average last cf of the st. louis blues, who has less than 4 cf appearances and less than 1 cf wins?",5 -44559,"What is the lowest number of cf wins of the chicago blackhawks, which has more than 4 cf appearances, a last cf in 2013, and more than 2 cup wins?",2 -44560,"What is the lowest number of last cfs of the team with 2 cf appearances, 0 cup wins, and less than 0 cf wins?",2 -44585,What is the total number of losses for entries with 15 wins and a position larger than 3?,4 -44587,"What is the position of club Melilla CF, with a goal difference smaller than -10?",4 -44588,"What is the sum of goals against for positions higher than 14, with fewer than 30 played?",4 -44589,"What is the average number of wins for entries with more than 32 points, a goal difference smaller than 23, and a Goals against of 36, and a Played smaller than 30?",5 -44596,What is the number of points of the match with less than 22 games played?,3 -44597,What is the total number of loses of the club with a 4 position and less than 23 goals conceded?,3 -44598,"What is the lowest number of games played of the club with more than 25 goals conceded, more than 17 goals scored, and a position of 7?",2 -44599,"What is the lowest number of loses of the club with more than 42 goals scored, more than 20 goals conceded, and less than 3 draws?",2 -44600,What is the average number of points of the club with more than 23 goals conceded and a position larger than 12?,5 -44601,How many goals did coe get?,2 -44602,What is the total number of ends when the transfer fee was dkk 14m?,3 -44610,"How many apps have 28 goals, and a Total smaller than 191?",4 -44627,What is the sum of the rounds of the match with brett chism as the opponent?,4 -44628,What is the lwoest round of wild bill's fight night 21 at 5:00?,2 -44632,"Which To par has a Country of england, and a Place of t9, and a Player of graeme storm?",1 -44644,What was the to par score in the match that had a score of 76-71-78-67=292?,3 -44645,What is Robert Allenby's average to par score?,5 -44649,What is the to par for the player with total of 155?,5 -44657,"When rank is 7 and silver is less than 0, what is the total gold?",4 -44669,What was the earliest round with Neil Colzie and a pick smaller than 24?,2 -44689,"What is the population (2008) when the capital was Sanniquellie, created later than 1964?",4 -44690,"What is the highest population (2008) created earlier than 1857, and the county was Sinoe?",1 -44691,What is the earliest created year when the map# was 10?,2 -44707,What round had Canada with a draft of 1970 and a pick of 7?,1 -44712,Which Year jennifer tarol barrientos is in?,1 -44713,WHAT YEAR WAS THE WORLD CHAMPIONSHIPS IN WITH NOTES OF 39.01?,4 -44714,What's the sum of money ($) that angela park has won?,4 -44725,What is the highest number of byes when draws are larger than 0?,1 -44726,"What is the lowest amount of losses when the goldne rivers is quambatook, wins are smaller than 15 and draws larger than 0?",2 -44727,How many losses did the golden rivers of ultima have when wins were less than 12 and byes larger than 2?,3 -44728,How many losses did the Golden rivers of hay have?,5 -44729,What is the total number of byes when the wins were 9?,3 -44730,What is th average dras when wins are less than 12 and the against is 989?,5 -44731,What is the highest pole for class 125 cc and a WChmp more than 1?,1 -44732,What is the highest flap for class 500 cc?,1 -44754,What was the lowest attendance was the opponent was chelsea?,2 -44772,"What is the lowest Goals Agains, when Played is greater than 34?",2 -44773,"What is the lowest Lost, when Goals For is greater than 52, when Points 1 is ""44"", and when Drawn is less than 8?",2 -44774,"What is the total number of Lost, when Played is less than 34?",3 -44776,What is the Lowest value in Against with Wins % of 50.4% and Losses less than 20?,2 -44779,"In what Year was the match at Sopot with a Score of 2–6, 6–2, 6–3?",3 -44782,"Which Season has Podiums of 0, and Races of 16?",1 -44791,"What is the highest pick for a year after 2010, and a round smaller than 1?",1 -44792,What is the highest pick for a year after 2010 and a round larger than 1?,1 -44793,"What is the sum for the pick of the year 2009, and a round smaller than 2 and an NBA Club Denver Nuggets?",4 -44794,"Can you tell me the total number of Total that has the First round of 0, and the Finals smaller than 5?",3 -44795,Can you tell me the average Conference Finals that has Finals smaller than 5?,5 -44797,What's the sum of the headcounts that have an n/a value of $60k to $70K?,4 -44811,"What is the total number of UEFA Cup(s), when Total is greater than 3?",3 -44812,"What is the lowest Polish Cup, when Position is ""Midfielder"", when Player is ""Miroslav Radović"", and when Ekstraklasa is less than 1?",2 -44813,"What is the sum of Polish Cup, when Player is ""Maciej Iwański"", and when Ekstraklasa is less than 1?",4 -44822,How many apps for the rank of 8 in the 2012/13 season?,1 -44823,How many goals per match when the player has more than 33 goals and more than 38 apps?,3 -44833,What is the average pjehun measured by female enrollment?,5 -44834,"What is the highest pjuehun with a kenema greater than 559, a kambia of 45,653, and a tonkolili greater than 113,926?",1 -44835,"What is the sum of the kono with a bonthe greater than 21,238?",4 -44840,"How many Totals have a CONCACAF of 0, and an MLS Cup smaller than 6?",3 -44841,"Which MLS Cup has another larger than 9, and a Total smaller than 72?",5 -44858,What is the average total for 0 bronze?,5 -44866,How many years did caroline lubrez win?,4 -44868,How many years was assel isabaeva the 2nd runner up?,3 -44870,"Which Area km 2 has an Official Name of stanley, and a Population larger than 1,817?",1 -44871,"How much Area km 2 have a Population of 1,215?",3 -44874,"Which Area km 2 has an Official Name of southampton, and a Population larger than 1,601?",2 -44875,What is Kirkby Town's lowest lost with more than 83 goals?,2 -44876,What is the lowest position with points 1 of 27 2 and fewer than 9 drawn?,2 -44888,WHAT IS THE LOWEST MONEY WITH TO PAR LARGER THAN 26?,2 -44890,WHAT IS THE LOWEST MONEY WITH 74-74-76-74=298 SCORE?,2 -44891,"What is the week number for the date of September 14, 1980?",1 -44893,"What is the week number with attendance of 44,132?",3 -44905,What is the earliest year that has fewer than 3852.1 cows and 3900.1 working horses?,2 -44907,How many years had fewer than 2089.2 pigs?,3 -44908,"What was the lowest total number of horses that has a total cattle smaller than 6274.1, and a oxen smaller than 156.5, and a bulls of 40.0, and fewer than 3377 cows?",2 -44909,"What is the lowest number of sheep and goats after 1931, with fewer than 2518 cows and more than 2604.8 horses?",2 -44912,WHAT IS THE HIGHEST ATTENDANCE FOR THE PHOENIX COYOTES?,1 -44929,What is Wayne Grady's total?,4 -44935,What's the lowest against on 27/03/1971?,2 -44946,"What is the total number of Distance ( ly ), when Constellation is ""Draco""?",3 -44951,What is the highest number of wins for Quambatook when Against is less than 1129?,1 -44952,What is the total number of draws when there are fewer than 3 wins?,3 -44953,What is the total number of draws for Wakool when there are more than 11 losses and fewer than 4 wins?,3 -44966,"What is the highest Goals Against, when Points is greater than 25, when Club is ""SD Indautxu"", and when Position is greater than 3?",1 -44967,"What is the total number of Wins, when Draws is less than 2?",3 -44968,"What is the average Wins, when Played is less than 30?",5 -44969,"What is the total number of Wins, when Draws is less than 5, when Goals is greater than 49, and when Played is greater than 30?",3 -44970,"What is the lowest Goal Difference, when Position is ""7"", and when Played is greater than 30?",2 -44976,What is the total number of bronzes that is less than 1 in total?,3 -44977,"What is the total number of bronze that has less than 2 gold, and more than 1 silver?",3 -44978,"What is the lowest rank with less than 1 gold, 0 silver, 1 bronze, and a total less than 1?",2 -44979,What is the average bronze for less than 0 gold?,5 -44980,"What is the total number for less than 8 bronze, the Netherlands nation, and is ranked less than 16?",3 -44987,What is the smallest all around when the total is 19.85 and the hoop is less than 9.85?,2 -44988,What is the average hoop when the all around is less than 9.7?,5 -44991,"What is the highest Number of Households, when Per Capita Income is ""$25,557"", and when Population is less than ""22,330""?",1 -44992,"What is the lowest Population, when Per Capita Income is ""$16,330""?",2 -44993,"What is the highest Population, when Per Capita Income is ""$17,168"", and when Number of Households is greater than 3,287?",1 -45009,What was the total To Par for the winner in 1995?,3 -45010,"How many years had a 100 m hurdles event at the world championships in Osaka, Japan?",4 -45012,"What was the earliest year that an event held in Berlin, Germany had a 100 m hurdles event?",2 -45024,"What is the Unit for the Aircraft F.e.2b, located in Logeast?",4 -45057,What is the lowest total of the player with a t41 finish?,2 -45071,What was the highest rink for Kingston?,1 -45072,What is the average first elected for the district South Carolina 2?,5 -45080,In which year is Nerida Gregory listed as the loser?,5 -45081,In which year did Misaki Doi lose the Australian Open Grand Slam?,4 -45082,Which Polish Cup has a Puchat Ligi larger than 0?,5 -45084,"Which Puchat Ligi has a UEFA Cup smaller than 2, and a Player of takesure chinyama?",2 -45085,How much Ekstraklasa has a Total smaller than 3?,4 -45086,"How much Puchat Ligi has a Total smaller than 5, and an Ekstraklasa larger than 1?",4 -45089,"Which Points 1 has Drawn of 5, and a Goal Difference of +58, and a Lost larger than 4?",1 -45090,Which Lost has Goals Against larger than 92?,1 -45091,"Which Points 1 has a Team of atherton collieries, and a Position smaller than 8?",1 -45092,"How much Played has a Position of 7, and a Drawn smaller than 7?",4 -45093,"How much Drawn has Points 1 of 51, and a Lost larger than 5?",3 -45094,When was the aircraft introduced that could seat 115 people?,5 -45108,"Which Rank has a Gold larger than 1, and a Bronze of 4, and a Silver smaller than 1?",1 -45109,"Which Rank has a Gold of 3, and a Bronze of 4, and a Total larger than 8?",2 -45110,"How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3?",4 -45111,"Which Total has a Rank of 9, and a Silver smaller than 2?",1 -45114,How many years is Antonio Pompa-Baldi Italy first?,3 -45116,"Can you tell me the sum of Wins that has the Club of abuls smiltene, and the Goals smaller than 18?",4 -45117,"Can you tell me the average Wins that has the Goal Difference larger than -24, and the Draws larger than 7?",5 -45118,"Can you tell me the highest Draws that has the Goal Difference smaller than 64, and the Played larger than 30?",1 -45119,Can you tell me the highest Points that has the Played smaller than 30?,1 -45120,What rank was the country with no bronze but at least 1 silver medals?,5 -45121,"What is the smallest number of gold medals a country with 1 bronze, and a total of 3 medals which is lower than rank 7?",2 -45122,What is the smallest number of gold medals a country with 7 medals has?,2 -45125,What year was Evita nominated for outstanding featured actor in a musical?,3 -45129,"Which Losses have Wins smaller than 6, and a South West DFL of sandford?",2 -45130,"How much Against has Draws of 2, and Losses smaller than 4?",4 -45131,"How many Losses have South West DFL of coleraine, and an Against smaller than 891?",3 -45132,"What is the lowest played number when goals for is 47, and wins is smaller than 14?",2 -45134,"What is the lowest position number when goals against was 59, and a goals for is smaller than 24?",2 -45135,"What is the highest goals against when points are larger than 31, the goal difference is smaller than 9, wins are 13, and draws are larger than 6?",1 -45136,"What is the lowest played number when points are larger than 32, and a wins are larger than 18?",2 -45137,"Can you tell me the highest Against that has the Status of six nations, and the Date of 02/03/2002?",1 -45138,Can you tell me the average Against thaylt has the Date of 23/03/2002?,5 -45157,"What is the lowest To par, when Total is greater than 148, and when Year(s) Won is ""1959 , 1968 , 1974""?",2 -45159,"What is the sum of Total, when Year(s) Won is ""1966 , 1970 , 1978"", and when To par is less than 4?",4 -45162,What is the average age at appointment of those attached to security?,5 -45174,"What is the highest points when the top goal scorer was Khaled Msakni (10), and the final standing is less than 12?",1 -45196,"How many days had a score of 4–6, 4–6?",3 -45207,What is the average final with an all around greater than 19.35 and a total over 40?,5 -45208,"What is the sum of the final for finland, who placed greater than 2 and had an all around larger than 18.9?",4 -45220,"What is the highest number of households with a median household income of $31,176, and a population of 25,607?",1 -45227,What are the most laps for the Qual position of 7 in the OC class?,1 -45228,What are Perkins Engineering's fewest laps?,2 -45239,What is the most current year signed for separation of † and a separation year of 1997?,1 -45252,"What is the average Played, when Goals Against is less than 63, when Team is ""Nelson"", and when Lost is greater than 16?",5 -45253,"What is the total number of Goals For, when Points 1 is ""41""?",3 -45254,"What is the lowest Position, when Lost is greater than 15, when Team is Cheadle Town, and when Drawn is greater than 8?",2 -45255,"What is the lowest Position, when Points 1 is ""39"", and when Goals Against is greater than 49?",2 -45269,"WHAT ARE THE HIGHEST POINTS WITH GOALS LARGER THAN 48, WINS LESS THAN 19, GOALS AGAINST SMALLER THAN 44, DRAWS LARGER THAN 5?",1 -45270,"WHAT ARE THE TOTAL NUMBER OF POINTS WITH WINS SMALLER THAN 14, AT SD INDAUCHU, POSITION BIGGER THAN 12?",3 -45271,"WHAT ARE THE GOALS WITH DRAWS SMALLER THAN 6, AND LOSSES SMALLER THAN 7?",5 -45272,"How many 2010s have a 2007 greater than 4.6, and 8.2 as a 2006?",3 -45274,"How many 2008s have 6.9 as a 2006, with a 2007 less than 7.1?",3 -45275,"What is the highest 2010 that has a 2009 less than 6.5, 0.4 as the 2008, with a 2007 less than 0.5?",1 -45276,"How many 2007s have 0.2 as a 2006, with a 2010 less than 0.1?",4 -45289,How many years have a Result of nominated?,3 -45293,"How many years have runner-up as the outcome, and indian wells as the championship?",4 -45296,Which average money has a To par larger than 12?,5 -45298,"Which average money has a Place of t10, and a Player of denny shute, and a To par larger than 12?",5 -45300,What is the highest FLap by a Honda NSR500 bike after Race 16?,1 -45302,"How much tonnage Tonnage (GRT) has a Nationality of united kingdom, and a Date of 27 june 1941?",3 -45304,What is Canada's highest round before 1973?,1 -45305,What year was The Saber nominated for best action?,5 -45322,What is the number for the international with 669 domestic earlier than 2005?,5 -45323,"What year was the international lower than 17,517 and domestic was less than 545?",5 -45329,What is the smallest rate of burglary when forcible rape is 39.1 and motor vehicle theft is less than 568.8?,2 -45330,"When population is greater than 832,901 and murder and non-negligent manslaughter is 11.6, what is the smallest burglary?",2 -45331,"What is the total rate of murder and non-negligent manslaughter when larceny-theft is 3,693.9 and burglary is more than 1,027.0?",4 -45333,What is the electorates in 2009 for Modi Nagar?,5 -45335,What is the largest issue date for an album that reached position of 3?,1 -45338,How many strokes off par was the player who scored 157?,3 -45339,Which player who won in 1977 and scored great than 155 was the closest to par?,1 -45348,What is the lowest total with an all around of 10 and a rope higher than 10?,2 -45349,What is Bianka Panova's highest total with lower than place 1?,1 -45351,What is the highest game with a 24-23 record?,1 -45352,"What is the highest game with a 1-0 record, and the Hornets scored more than 100?",1 -45362,What is the highest grid for rider Fonsi Nieto?,1 -45363,What was the total number of Laps for the rider whose time was +7.951?,3 -45364,What was the highest number of laps for rider Shuhei Aoyama in a grid higher than 24?,1 -45367,What is the earliest year with a Drama Desk award when the Mineola Twins was a nominated work?,2 -45369,What is the most recent year that the Mineola Twins was nominated for outstanding actress in a play and a Drama Desk award?,1 -45371,In what year was The House of Blue Leaves nominated for outstanding actress in a play?,4 -45374,How many Total has a Player of dave stockton?,3 -45378,What is the number of against when Central Murray is Tooleybuc Manangatang and there are fewer than 13 wins?,1 -45379,How many byes when the draws are fewer than 0?,5 -45380,What is the byes for Woorineen when losses are more than 13?,4 -45381,How many wins when there are 4 losses and against are fewer than 1281?,5 -45382,How many against when losses are 11 and wins are fewer than 5?,5 -45391,"Which Week has an Attendance larger than 63,369?",2 -45393,"Which Week has a Game site of oakland-alameda county coliseum, and an Attendance larger than 52,169?",2 -45397,How many against on the date of 08/06/1985?,4 -45402,"What is the lowest number of households for the entry with a median income of $41,778 and a population greater than 38,319?",2 -45405,In what year was the winner a soccer player from Virginia?,4 -45406,In what year did Morgan Brian win?,5 -45409,"What is the lowest Draws, when Against is ""1547"", and when Wins is greater than 3?",2 -45410,"What is the total number of Wins, when Losses is ""6"", and when Draws is greater than ""0""?",3 -45411,"What is the lowest Draws, when Byes is less than 2?",2 -45412,"What is the total number of Draws, when Against is ""1134"", and when Byes is less than 2?",3 -45413,"What is the sum of Wins, when Against is less than 1033, when Golden Rivers is ""Nullawil"", and when Byes is less than 2?",4 -45419,"Which Year has a Competition of european championships, and Notes of 66.81 m?",4 -45431,What season had a viewer rank of #4?,3 -45432,Which season had less than 25.4 viewers and had a viewer rank of #6?,2 -45434,"What is the total number of gold medals of the ranked 2nd nation, which has less than 2 silvers?",3 -45435,What is the total number of gold medals of the nation with 0 silver and more than 1 bronze?,3 -45436,"What is the lowest number of bronze of the nation with more than 13 total medals, more than 10 gold medals, and less than 22 silvers?",2 -45447,What is the average end year of the player from swe and a summer transfer window?,5 -45456,"When the year won is 1981, 1987, and the finish is t46, what is the lowest total?",2 -45458,WHTA IS THE SNATCH WITH A TOTAL OF LARGER THAN 318 KG AND BODY WEIGHT OF 84.15?,5 -45459,"WHAT IS THE SNATCH WITH TOTAL KG SMALLER THAN 318, AND CLEAN JERK LARGER THAN 175?",2 -45480,What was the rank for 1.26 Ø-Pts in game 1458?,3 -45512,"What is the lowest 1988-89, when Average is greater than 0.965, when 1987-88 is ""40"", when 1986-87 is ""49"", and when Points is greater than 123?",2 -45514,"What is the lowest 1988-89, when Points is greater than 130, when 1987-88 is ""37"", and when Played is less than 114?",2 -45516,Name the the highest Draw which has Points of 22 and Goals Conceded smaller than 26?,1 -45517,Name the highest Played of Goals Scored smaller than 18 and a Lost larger than 10?,1 -45518,Name the average Played with a Points of 0*?,5 -45519,"Count the Draw which has Lost of 0, and a Goals Scored larger than 0?",4 -45520,Name the Goals Conceded which has a Draw of 0 and a Played larger than 0?,5 -45522,What is the total number of bronze medals for teams with less than 0 silver?,3 -45523,What is the average number of bronze medals when the team's silver are more than 1 but the total medals are less than 9?,5 -45530,"What is the average Total, when Finish is ""T47""?",5 -45533,What is the lowest official ITV1 rating with 45.4% share?,2 -45534,"How many Goals against have Wins larger than 12, and a Club of ud las palmas, and a Position larger than 5?",3 -45535,"Which Goals against has Points smaller than 26, and Goals for smaller than 38, and a Position larger than 14, and a Goal Difference smaller than -32?",1 -45536,"Which Goals against have a Club of cd castellón, and Points smaller than 24?",5 -45537,"How much Played has Goals against smaller than 34, and Wins smaller than 13?",4 -45538,"Which Played has a Position smaller than 4, and Wins larger than 16, and Points of 38, and Goals against larger than 35?",5 -45545,"How many Matches have an S/Rate smaller than 133.72, and a Team of yorkshire carnegie?",3 -45547,"How many Matches have Balls smaller than 224, and an Average larger than 38.25, and an S/Rate larger than 139.09?",4 -45548,"How many Matches have an Average larger than 26.53, and an S/Rate of 165.4, and a 100s smaller than 1?",3 -45560,How many enrollments have a location of Guelph and a 1-year ranking of 727 larger than 717?,3 -45561,What average bronze has a total less than 1?,5 -45562,What average gold has China (chn) as the nation with a bronze greater than 1?,5 -45563,Which is the highest gold that has a bronze greater than 4?,1 -45565,What is the average against for a test match?,5 -45568,"Which Total Pld has a Total Pts smaller than 153, and a 2004–05 Pts of 43, and a 2005–06 Pts smaller than 49?",2 -45569,"Which Total Pld has a 2004–05 Pts of 43, and a Team of olimpo, and a 2005–06 Pts larger than 49?",1 -45570,Which Total Pld has a 2005–06 Pts of 27?,1 -45571,Which 2005–06 Pts has a 2004–05 Pts of 48?,2 -45574,What is the Average Qualifying Goals for Jack Froggatt where the Final Goals is greater than 0?,5 -45576,What is the total number of Total Goals scored by Stan Mortensen where the Qualifying Goals is greater than 3?,3 -45577,What is the Average Finals Goals if the Total Goals is less than 1?,5 -45578,What was Adam Scott's total score when playing in Australia with a to par of e?,4 -45584,"What is the lowest total goals when position is df, and FA Cup Goals is smaller than 0?",2 -45585,What Viewers (m) has an Episode of school council?,5 -45586,"What Viewers (m) has a Rating of 1.7, and an Episode of the game of life?",1 -45593,"Name the date of Tournament of paris indoor , france?",4 -45599,What's the Serie A when the coppa italia was 5?,5 -45600,"What's the total when the champions league was 0, the coppa italia was less than 0, and the Serie A was more than 1?",4 -45601,"What is the championsleague when the total was greater than 1, the coppa italia was more than 2, and the Serie A was 1?",4 -45605,What is the Total for the Player with a To par of +11?,1 -45606,What is the Total of the Player with a To par of –13?,4 -45620,What is the total rank with more than 392 total points and an 24.8 average?,3 -45621,"What is the highest average with less than 3 places, less than 433 total points, and a rank less than 2?",1 -45622,What is the total average with 54 total points and a rank less than 10?,3 -45623,"What is the total rank by average for 2 dances, which have more than 37 total points?",3 -45626,What is the highest Number of seasons in Liga MX for Club cruz azul?,1 -45627,"What is the highest Number of seasons in Liga MX for Club cruz azul, when their season in the top division is higher than 68?",1 -45628,"What is the total number of Top division titles for the club that has more than 40 seasons in top division, a First season of current spell in top division of 1943-44, and more than 89 seasons in Liga MX?",3 -45629,"How many top division titles does Club Guadalajara have, with more than 42 seasons in Liga MX?",4 -45631,What number is in Bois de Warville with a time less than 810?,4 -45632,What is number 21's highest time?,1 -45633,What number with the opponent Fokker D.vii have with a time of 1655?,4 -45635,What number has the opponent Fokker d.vii with a time of 600?,4 -45648,"What is the rank with a higher than 2 total, 21 gold and more than 12 bronze?",5 -45649,How many golds does Germany have with more than 1 silver?,4 -45650,What is the total number of rounds of the player with a pick of 20?,3 -45652,"What is the total number of Premier, when Second is ""55""?",3 -45653,"What is the total number of Second, when First is greater than 18, when Season is 1992-93, and when Premier is greater than 16?",3 -45654,"What is the lowest Total, when Second is ""55""?",2 -45655,"What is the highest Total, when Season is ""1996-97"", and when Second is less than 33?",1 -45656,"What is the sum of Second, when Total is less than 70, when Premier is less than 20, and when First is greater than 18?",4 -45660,How much Snatch has a Total (kg) smaller than 257?,4 -45661,"Which Snatch has a Clean & Jerk of 180, and a Bodyweight smaller than 69.83?",2 -45662,What is the total number of military deaths when there are 78 military and/or civilian wounded and more than 27 total deaths?,3 -45663,What is the average number of military deaths when there are fewer than 38 civilian deaths (including foreigners) and 33 military and/or civilian wounded?,5 -45680,How many people attended the Away team of middlesbrough?,3 -45683,WHAT IS THE FLOOR NUMBERS WITH 01.0 10 light street?,4 -45701,"What is the highest draft after round 2, is from the United States and has picked less than 113?",1 -45702,"What is the average draft with a pick larger than 42, and player Grant Eakin after round 8?",5 -45704,What were the lowest goals when the matches were smaller than 29?,2 -45705,What is the lowest match for goals larger than 36?,2 -45706,"For the 2013 completion schedule, what is the total S.no.?",4 -45708,"When the completion schedule is 2016 for the state of jammu & kashmir, what is the smallest S.no.?",2 -45715,What is the quantity when the DRG was E 62 01–E 62 05?,3 -45754,What is the total amount of money that Payne Stewart has?,4 -45757,"What is the lowest rank for China Eastern Airlines, Korean Air with more passengers than 97,055?",2 -45758,"What is the smallest rank for passengers more than 73,754?",2 -45760,"What is the highest rank when there are fewer than 124,296 passengers?",1 -45782,What is the position with a neutral H/A/N and more than 2 innings?,5 -45785,What is the average goals scored when less than 34 were played and there were more than 2 draws?,5 -45786,What is the average goals scored of the team who scored 44 points and placed higher than 5?,5 -45787,What is the lowest place of the team who conceded 36 goals and lost more than 6 times?,2 -45789,what is the average wins when percent is more than 0.4 and teams is chargers~?,5 -45790,What is the average wins when teams is lions and the percent is more than 0?,5 -45791,"what is the highest wins when the losses is less than 1, team is rams and the games is more than 8?",1 -45796,"What parish has the lowest area and a population of more than 1,776 and a 579 of 5,008 census ranking?",2 -45797,What is the population of northfield parish that has an area less than 342.4?,4 -45798,"What is the population of the parish with a census ranking of 579 of 5,008?",4 -45799,What is the population of the parish that has an area of 304.06?,4 -45800,What is the earliest year the world junior championships has 1500 m notes?,2 -45802,What is the average year with 7th (heats) position?,5 -45805,How many people attended the game against the Kaizer Chiefs?,4 -45812,count the the average Total of ian baker-finch?,5 -45826,What is all the total election that has conservative as 2nd party?,4 -45833,"What is the lowest Against, when Venue is ""Twickenham , London"", when Status is ""Six Nations"", and when Opposing Teams is ""France""?",2 -45834,"What is the total number of Against, when Date is ""27/02/2005""?",3 -45835,"What is the highest Against, when Date is ""27/02/2005""?",1 -45869,"What is the total Design flow (LPM) with a Partner of app, a Construction Start of 2008 january, and a Population Served larger than 3500?",4 -45878,"What is the lowest against team in the Six Nations status in Lansdowne Road, Dublin?",2 -45892,How many laps have 16 points and With a Laps Led of greater than 0?,4 -45893,What is the average grid for Marco Andretti with a finishing position higher than 19?,5 -45894,What is Car number 98's lowest grid?,2 -45895,What is the highest Laps Led with a grid of less than 4 and a finishing position of 15?,1 -45896,What is the average Qiangshu lower than rank 4 and less than 9.22 Jianshu?,5 -45897,"What is the average Jianshu higher than rank 2, with a Qiangshu smaller than 9.85?",5 -45921,"How many weeks have an attendance less than 26,048?",4 -45931,What pick number was player Greg McKegg?,5 -45941,"What is the average Finish, when Team is ""Buck Baker"", and when Start is less than 13?",5 -45942,"What is the average Year, when Start is ""11""?",5 -45943,"What is the lowest Year, when Finish is ""29"", and when Start is less than 24?",2 -45944,"What is the highest Year, when Finish is ""51"", and when Start is less than 64?",1 -45952,"What was the attendance on September 19, 1971, after week 1?",5 -45959,"What Goals has a Team of zamora, and Average larger than 0.89?",5 -45960,What is the sum of Goals win an Average larger than 1?,3 -45961,"What is the smallest Matches with a Goalkeeper of josé bermúdez, and Goals larger than 18?",2 -45962,"What is the total of Matches with Goals of 18, and an Average larger than 0.55?",4 -45963,"What is the largest Average with Goals smaller than 34, Matches larger than 30, and a Team of cultural leonesa?",1 -45964,Which To par has a Score of 78-74-71-75=298?,5 -45965,"How much To par has a Country of united states, and a Money ($) of 90?",3 -45966,"What is are the highest matches with £5,000 in prize money?",1 -45972,What were the highest laps for glenn seton gregg hansford?,1 -45975,"What is the maximum league cup goals when there has been 0 FA cup appearances, and MF is the position, with 1 league appearance, and smaller than 0 total goals?",1 -45979,What's the average Played for a draw of 5 and more than 43 points?,5 -45983,What is the best top 10 when there are fewer than 0 wins?,1 -45990,"Which Week has Attendance of 51,558?",2 -45991,"Which Attendance has a Result of w 24-14, and a Week smaller than 7?",4 -45992,"Which Attendance has an Opponent of at los angeles rams, and a Week larger than 12?",1 -46017,How many matches did Atlético Ciudad have with an average higher than 0.61?,3 -46019,What was the highest amount of losses when there were 45 goals and the play was smaller than 38?,1 -46020,What were the lowest goals when there were mor than 15 wins and the goal difference was larger than 35?,2 -46021,What were the highest losses when the goal was smaller than 45 and the points was smaller than 18?,1 -46022,What were the highest goals against when the position was larger than 19 and the goals smaller than 36?,1 -46023,What is the to par for the player with fewer than 148 total points?,4 -46031,"On average, when were vineyard schools founded?",5 -46033,"What is the earliest date when the championship was Monterrey WCT, Mexico?",2 -46035,"How many Losses have a Geelong FL of newtown & chilwell, and more than 11 wins?",3 -46048,What is the maximum grid when the laps were greater than 22?,1 -46049,What is the minimum grid when there was more than 22 laps?,2 -46050,How many total laps were ridden when the grid was 7 and the rider rode the Honda CBR600RR?,4 -46067,"What is the 2005 sum with a 2009 less than 1,850,654?",4 -46068,"What is the average 2003 with 2,154,170 in 2010 and a 2008 less than 2,266,716?",5 -46069,"What is the average 2009 with a 2003 greater than 3,791, 107,982 in 2007, and a 2006 less than 98,264?",5 -46070,"What is the sum of the 2008 with a 2007 of 4,244,115 and less than 3,296,267 in 2003?",4 -46076,What is the largest Against with an Opposing Teams of wales?,1 -46079,What is the smallest Against with a Date of 18/02/1989?,2 -46083,What's the rank that has a total of less than 1?,4 -46084,What's the bronze medal count when the silver is less than 3 and the gold is 1?,4 -46085,What's the gold medal count ranked 2 with a total of more than 21?,3 -46086,What's the smallest total with a bronze count of 5 and a gold count less than 8?,2 -46088,Incumbent John Sullivan has what as biggest first elected?,1 -46096,Which Seat has a Season 6 of kevin o'leary?,1 -46117,What is the attendance total when Southend Manor is the away team and there are less than 93 ties?,3 -46120,What is the average Density of 53 No. munic.?,5 -46141,Which Year has a cause of firedamp and a Death toll larger than 11?,4 -46142,"Count the lowest Year which has gas explosion, Colliery of tylorstown colliery, and a Death toll larger than 57?",2 -46150,What is the sum of the clubs remaining with 34 new entries this round and more than 34 clubs involved?,4 -46152,What is the total rank of the athlete with a total larger than 19.42 and a taijiquan less than 9.87?,3 -46153,What is the lowest rank of the athlete with a taijiquan greater than 9.42 and a 19.02 total?,2 -46154,What is the highest taijijian with a 9.87 taijiquan and a total less than 19.77?,1 -46164,Which Year has a Date of 5–6 february?,5 -46185,"What is the total area with the census ranking of 3,129 of 5,008, and a Population smaller than 460?",3 -46186,"What is the total area with the Census Ranking of 3,129 of 5,008, and a Population larger than 460?",3 -46189,"What is the round number when nationality was United States, and player is Jeffrey Foss?",3 -46193,"What is the highest run 2 of athlete eric neilson, who has a run 3 larger than 55.97?",1 -46194,What is the highest run 3 of the athlete with a 55.44 run 2?,1 -46196,"What is the sum of the run 1 of athlete matthias guggenberger, who has a run 2 greater than 55.24?",4 -46219,What year had Best Actor in a Musical as a category?,4 -46233,What was the total number of wins that had an against greater than 1136 but losses less than 15 with Ultima with less than 2 byes?,4 -46234,What's the average number of wins for those with less than 2 byes?,5 -46235,What's the greatest losses for those with more than 13 wins?,1 -46236,What was the greatest number of wins for a team that had 7 losses and more than 0 draws?,1 -46237,What's the number of byes for someone who had 7 wins and an against number greater than 1412?,4 -46238,What's the total wins of a team with more than 2 byes?,3 -46243,"Can you tell me the total number of Draw that has the Artist of de spelbrekers, and the Points smaller than 0?",3 -46246,What is the population of the town with an area larger than 3.09?,5 -46247,"What is the area of the community with a census ranking of 636 of 5,008?",5 -46248,What is the area of drummond village?,1 -46250,"What is the area of the village with a census ranking of 1,442 of 5,008 and a population less than 1,778?",1 -46252,WHAT IS THE TOTAL WITH A TO PAR OF 10?,1 -46255,What is the sum of the scottish cup of the forward player with less than 2 league cups and a total greater than 6?,4 -46266,"What is the lowest Year, when Notes is ""5.19km, 18controls""?",2 -46282,In what Week was the Record 4–7–1?,2 -46284,"In what Week was the Attendance 17,737?",3 -46287,"What is the largest WNBA game average with 9,290 (4th) is the average, and less than 157,934 is the total for the year?",1 -46288,"How many years in all was less than 105,005 the total for the year?",3 -46289,"What is the total for year average that less than 7,742 is the WNBA game average, and 7,625 (10th) is the average, and before the year 1999?",5 -46290,"What is the total of the year that more than 13,142 is the high, and 10,387 (2nd) is the average, and there was less than 0 sellouts?",4 -46291,"What is the maximum sellouts for the 2008 year, with less than 161,369 total for year?",1 -46292,"What is the highest First Elected, when Party is ""Republican"", and when District is ""Louisiana 7""?",1 -46299,"What is the total of Losses with a Result of runner-up, Wins of 1, and a Year smaller than 2006?",4 -46300,"What is the smallest Draws with a Result of runner-up, and Losses larger than 1?",2 -46301,"What is the number of Year with a Result of champions, and Matches larger than 5?",3 -46302,What is the greatest Wins with Losses larger than 1?,1 -46303,"What is the total number of Year with Wins of 1, and Losses smaller than 1?",4 -46304,"What is the greatest Wins with Matches smaller than 5, and a Year of 1994?",1 -46307,What's the sum of attendance when banbury united is the away team and tie no is over 102?,4 -46308,What's the sum of tie no for home team burgess hill town?,4 -46309,"What is the highest population of Deuel county's 1,819 households?",1 -46317,What is the round for the Norisring circuit?,5 -46320,"What week were there 56,023 people in attendance?",3 -46321,"What is the attendance number later than week 9 on November 20, 1983?",3 -46331,"How many losses for the team with less than 4 wins, more than 0 byes and 2510 against?",5 -46332,How many wins for team with 1800 Against and more than 0 byes?,1 -46333,What is the least wins for a team with against less than 814?,2 -46334,How many losses for the team with 3 wins and more than 1919 against?,2 -46338,"Which Year completed has a Dam type of concrete gravity, and an Impounded body of water of deep creek reservoir?",2 -46340,"Which Year completed has a Dam type of earthfill embankment, and a Dam constructed of khancoban dam?",1 -46354,How much money was there when the to par was 15?,4 -46362,What is the against when the opposing team is Italy?,3 -46363,What is Cha Bum-Kun's average number of goals per match?,3 -46364,"How many caps does Jon Dahl Tomasson, who has less than 0.46 goals per match, have?",3 -46386,What is the highest tonnage of the Brig Ship Type and the disposition of Ship of Prize?,1 -46388,What is the lowest total for 1985-1986 when the total points are 124?,2 -46395,What is the highes win % that manager juan carlos chávez's team had when they lost less than 4 times?,1 -46402,What is the highest goal difference of the club with more than 34 played?,1 -46403,What is the total number of points of the club with a goal difference greater than 17 and more than 34 played?,3 -46404,"What is the lowest goal difference of club real betis, who has less than 18 wins?",2 -46405,What is the sum of the points of the club with more than 34 played?,4 -46406,What is the lowest number played of the club with more than 15 wins and less than 42 goals against?,2 -46407,"What is the total number of wins of the club with a goal difference less than 21, 4 draws, and less than 21 losses?",3 -46425,"Which To par has a Country of australia, and a Year(s) won of 1990?",2 -46432,"What is the lowest rank of Hungary where there was a total of 8 medals, including 2 silver?",2 -46433,What is the highest rank of Great Britain who has less than 16 bronze?,1 -46437,"Which season had a season finale of May 13, 2012?",4 -46442,What was the pic for Canada for player Yvon Bouillon earlier than 1974?,5 -46445,"What is the total overall for the pick that went before round 4, who went to Tennessee for college, and was picked at a number bigger than 9?",4 -46446,"What is the pick number average for the player who was drafted before round 7, and went to college at Tennessee?",5 -46450,"What is the highest league up with less than 3 championships, a total less than 2, and a FA cup larger than 0?",1 -46451,What is the average total for less than 1 championship?,5 -46452,"What i the total number of championships less than 2, and a league cup larger than 1?",3 -46464,What is the lowest height for Rans Brempong?,2 -46478,How many medals were won total for the country that won 1 silver and was ranked 2 or lower?,3 -46479,How many silvers did the country with more than 0 gold and a rank above 1 win that had a total less than 4?,3 -46480,How many bronzes were won by the country with a total higher than 5?,4 -46481,How many bronzes were won for the country that had a larger than 3 rank and a silver win count above 0?,4 -46482,What is the highest value for Other that has CONCACAF value of 0 a U.S. Open Cup larger than 0?,1 -46484,"Which Pop/Area (1/km²) has a No P. larger than 1, and a Name of albergaria-a-velha?",5 -46485,"Which Area (km²) is the lowest one that has a Population of 17,089?",2 -46492,what is the round when the position is (c)?,1 -46493,what is the round for jake gardiner?,5 -46497,"When the team Heathmere of the South West DFL won more than 11 games, what is the maximum byes?",1 -46498,"What is the most games lost when the against is greater than 1401, and the draws greater than 0?",1 -46499,"What is the maximum draws when less than 2514 is the against, and less than 0 byes?",1 -46500,What is the wins average when 17 games were lost?,5 -46502,"What is the number of silver when rank was 5, and a bronze was smaller than 14?",4 -46503,"What is the highest bronze number when silver is 0, and the total is smaller than 1?",1 -46504,"What is the total when the nation was Argentina, and a Goldwas smaller than 0?",3 -46536,what is the highest place when the national final is 4th and the points is less than 139?,1 -46537,what is the lowest place when the language is croatian?,2 -46542,"What is the total number of Year, when Result is ""Nominated"", when Category is ""Outstanding Actor in a Musical"", and when Award is ""Drama Desk Award""?",3 -46543,"What is the sum of Year, when Award is ""Outer Critics Circle Award"", and when Nominee is ""Nathan Lane""?",4 -46557,"What is the total (kg) when the snatch was 84, and bodyweight was less than 57.35?",5 -46558,"What is the clean & jerk when the total (kg) is more than 204, and snatch is more than 98?",5 -46559,"What is the total (kg when the bodyweight is more than 57.8, and the clean & jerk is less than 103?",4 -46563,"What is the best top-10 result when events are fewer than 39, top-5 is 1 and more than 5 cuts are made?",1 -46564,How many cuts made when the top-5 is greater than 1?,5 -46565,What is the best top-5 when top-10 is 1 and there are more than 0 wins?,1 -46566,"What is the number of cuts made when the top-5 is 0, top-10 is 1 and events are fewer than 12?",5 -46571,What is the highest Apps of kairat after 2008 and a Level smaller than 1?,1 -46572,What is the total Level with 27 Apps after 2006?,4 -46573,What is the lowest Apps with more than 1 level?,2 -46574,what is the total levels in 2007?,4 -46575,"How many times is the award ceremony laurence olivier award, result is won and the nominee is imelda staunton?",3 -46577,What's the total byes for more than 1 draw?,3 -46579,What's the highest pick for SS position?,1 -46580,What pick did the Minnesota Twins have?,5 -46581,"What is the average Draws, when Losses is less than 2?",5 -46582,"What is the average Wins, when Against is less than 1786, when Losses is less than 4, and when Byes is less than 2?",5 -46589,"How many ranks have 40 as the apps, with goals per match greater than 1?",4 -46590,"What is the lowest rank that has goals per match less than 1.237, real madrid as the club, goals less than 53, with apps greater than 40?",2 -46597,What's the latest year the miss internet www pageant had a result of second runner-up?,1 -46604,"What is the lowest Total, when Silver is greater than 7, and when Gold is greater than 73?",2 -46606,"What is the average Silver, when Gold is less than 0?",5 -46610,"How many kills did basobas, florentino have?",1 -46611,"What is the average number of people killed with a Perpetrator of wirjo, 42?",5 -46629,What is the sum of men's wheelchair from Ireland and more than 1 total?,4 -46630,"What is the average total for the Men's Open of 7, and the men's wheelchair more than 0?",5 -46646,How much money did Willie Klein take home from the game in which he had a to par score larger than 13?,4 -46647,"What week had an attendance more than 63,268 and Kansas City Chiefs as the opponent?",3 -46648,"What was the attendance on September 11, 1988?",5 -46650,What was the lowest win when there were 34 points and more than 13 draws?,2 -46651,What was the highest win when there were more than 64 goals scored and a position smaller than 2?,1 -46654,What is the total number of Goals scored that has more than 45 Points?,3 -46655,"What was the total number of Goals conceded when there were more than 4 losses, less than 5 draws, and more than 9 wins?",3 -46656,What is the sum of Goals scored when there was less than 20 Games played?,4 -46661,"What is the sum of cents that has 53ET cents less than 113.21, and a harmonic more than 1?",4 -46662,"What is the sum of cents that has 12ET cents of 100, and less than 17 harmonic?",4 -46677,What is the average amount of money of players in t8 place with a 68-71-69-72=280 score?,5 -46684,"Which Pick # has a Nationality of canada, and a Team from of sudbury wolves?",2 -46685,"Which Pick # has a League from of ontario hockey league, a Nationality of united states, and a Team from of brampton battalion?",3 -46690,What is the greatest first elected for Pennsylvania 10?,1 -46695,"How many floors are in the building built after 2007, and ranked #10=?",5 -46726,"What is the most silver medals won among nations that won more than 40 medals total, less than 25 of them being gold, and more than 15 of them being bronze?",1 -46736,"What's the height in feet of Mount Queen Bess with a height in metres less than 3298 and a prominence in feet of more than 7,126?",1 -46737,"What's the total number of prominence in metres when the prominence is 7,356 ft and less than 2692 metres in height?",3 -46738,"What's the total number of prominence in metres of Otter Mountain with a height of less than 2692 metres and taller than 11,663 ft?",3 -46739,What's the average year that sara orlesky and farhan lalji are the sideline reporters?,5 -46740,What was the attendance on september 29?,1 -46741,What was the attendance on september 8?,5 -46742,"Which Week has a Result of l 10–30, and an Attendance larger than 57,312?",5 -46751,What is the number of silver when bronze is less than 0?,3 -46752,"What is the gold when silver is less than 1, rank is 12, and total is less than 3?",1 -46753,"What shows for gold when the rank is less than 3, and silver less than 1?",4 -46754,"What is the total when gold is 1, and rank is more than 4, and bronze is 0?",3 -46755,"What shows for bronze when silver is 1, rank is smaller than 4, and gold is larger than 1?",4 -46756,"What is the gold when silver is 1, rank is larger than 3, total is smaller than 2, bronze is smaller than 0?",4 -46763,What number of examines after 2005 has a pass percentage of 78.35% with less than 297 students?,3 -46768,What is the total sum of the player from the United States who won in 1986?,4 -46770,"What is total number of the to par of player john mahaffey, who has a total less than 298?",3 -46771,What is the sum of the total of the player who won in 1979?,4 -46789,What is Fiji's lowest total?,2 -46814,What was the average money when the score was 68-69-68-72=277?,5 -46815,What was the highest money when the score was 69-68-67-69=273?,1 -46824,"What is the year that saw a passenger change of +32,9%?",3 -46825,What year had cargo tonnes of 13 585?,5 -46835,"Which Year Built has a Parish (Prestegjeld) of bremanger parish, and a Location of the Church of bremanger?",5 -46847,"What is the lowest money ($) that has t8 as the place, with a to par greater than 19?",2 -46864,What is the Total for Seve Ballesteros?,4 -46870,"What is the average Money ( $ ), when Score is ""69-69-76-69=283""?",5 -46875,What is the total of the player who won before 1991 and has a to par less than 14?,3 -46876,"What is the total to par of player jeff sluman, who won before 1993 and has a total greater than 154?",3 -46877,"What is the sum of the total of player rich beem, who has a to par greater than 17?",4 -46881,"What is the total number of Against, when Date is ""16/03/1996""?",3 -46885,"What is the average Against, when Status is ""Five Nations"", and when Date is ""16/03/1996""?",5 -46886,In what year did the team of aston martin racing have a position of 6th?,3 -46887,Which year did the team of pescarolo sport have a Class Position of 7th?,1 -46891,What is the lowest Tournaments with Highest Rank of Maegashira 13?,2 -46895,"What is the average Year, when Country is ""U.S."", and when Location is ""Edmond , OK""?",5 -46896,"What is the lowest Killed, when Perpetrator is ""Sherrill, Patrick Henry , 44""?",2 -46897,"What was the highest goals with fewer than 16 losses, fewer than 11 wins, and a goal difference greater than -9?",1 -46898,"What is the highest wins entry with fewer than 51 goals, more than 39 points, and a goal difference smaller than 13?",1 -46899,"What is the lowest wins entry that has a goal difference less than 33, position higher than 13, and 42 goals?",2 -46900,"What is the total number of goals for entries that have more than 7 draws, 8 wins, and more than 5 losses?",3 -46918,What is the total Cores with a Clock Speed of 1.3ghz?,3 -46923,What's the average annual interchange for a rank over 26 in liverpool with an annual entry/exit less than 14.209 and more than 10 platforms?,5 -46924,What's the highest annual interchange for wimbledon railway station?,1 -46925,What's the lowest number of total passengers (millions) for an annual entry/exit of 36.609?,2 -46927,How many ranks are in liverpool with more than 3 platforms and an annual interchange less than 0.778 million?,3 -46928,"Which Number of households has Per capita income of $21,571, and a Population smaller than 9,783?",5 -46929,"Which Number of households has a County of cook, and Population smaller than 5,176?",5 -46937,Which Money (£) has a Player of jodie mudd?,3 -46938,What is the total Money (£) of Player of nick faldo?,4 -46939,"What is the total Money (£) with a Place of t6, and a Player of ian baker-finch?",3 -46940,What position was the team who had less then 63 goals against and less than 6 losses?,5 -46941,How many times did the team lose who had 1 of 37 points and less than 60 goals against?,2 -46942,"How many times did the team lose who had a goal difference of +2, 52 goals for, and less than 9 draws?",2 -46943,How many draws did clitheroe have when their position was less than 12 and they lost less than 4 times?,4 -46954,What is the seat number when Series 3 shows Dana Bérová?,5 -46958,"What is the fewest loses for the club that is below 8 in position, and had played less than 30 games?",2 -46959,"What is the loses total when there is less than 4 draws, less than 105 conceded goals, less than 38 goals scored, and the club is positioned greater than 2?",4 -46960,"How many total goals conceded are there when the points are greater than 58, less than 27 wins, and less than 1 draws?",4 -46961,How many total goals scored when less than 30 games have been played?,3 -46962,When less than 30 games have been played what is the average goals scored?,5 -46965,"What is the highest FLT goals with 0 league cup goals, a GK position, and 2 league cup apps?",1 -46968,What season had Dalian Wanda as the winner with Yanbian Aodong winning 4th?,4 -46969,What is the number of clubs before 2003 with a 4th place winner of Shenzhen Jianlibao?,5 -46970,What is the number of clubs when Dalian Shide won and Sichuan Quanxing won 4th?,5 -46972,"How many Byes have an Against of 972, and more than 11 wins?",4 -46973,Which Byes have a Lexton Plains of skipton?,1 -46977,"Of the ships with diesel-electric hybrid engines, length of 443 feet, and over 190 guests, what is the lowest number of staterooms?",2 -46980,How many wins were there in 1994?,4 -46982,How many picks have a Player of pong escobal?,4 -46988,"How much Premier League has an FA Cup of 0, and a Total of 1, and a UEFA Cup larger than 1?",4 -46989,"How many totals have a Premier League smaller than 6, and a League Cup larger than 0?",4 -46990,Which FA Cup has a Total smaller than 1?,5 -46991,"What week is the opponent the Indianapolis Colts with an attendance of 68,932?",3 -46993,What week has a result of L 17-31 first?,1 -46995,What week was she safe for a salsa dance?,4 -46998,"What is the total rank for the player with less than 2 silvers, 4 golds, and more than 2 bronze?",3 -46999,"What is the sum of rank with more than 1 silver medal, 1 gold medal, and less than 6?",4 -47017,How many lanes have 1:53.70 as the time?,3 -47018,"How many ranks have chen yin as the name, with a lane greater than 8?",4 -47020,How many lanes have a rank greater than 8?,4 -47027,"Which week was on october 30, 1983?",4 -47030,"How many July 1, 2013 projections have a Rank of 27?",3 -47032,"What'd the total Dolphin points when there was an attendance of 52,860?",3 -47033,"What's the most in attendance when the Dolphins points were less than 24 and, they played the New England Patriots?",1 -47042,How many people attended the home game against the New York Jets?,4 -47043,"How many people attended the September 14, 1968 game?",3 -47048,What is the start of the Team of Andretti Green Racing with a finish higher than 3 in a year before 2007?,5 -47049,What is the lowest start in a year after 2008?,2 -47051,Where did the team of Rahal Letterman in 2006 start?,3 -47056,What was the highest number of 2009 electorates for Raisen when the consituency number was 142?,1 -47057,"How much Population density (per km²) has a Name of total northern villages, and a Population (2006) larger than 11414?",3 -47058,"Which Population density (per km²) has a Change (%) larger than 4.9, and a Land area (km²) smaller than 15.59, and a Population (2011) larger than 790?",1 -47059,"How much Population (2011) has a Land area (km²) larger than 15.69, and a Population density (per km²) larger than 57.3?",4 -47060,"Which Land area (km²) has a Population density (per km²) larger than 112.6, and a Population (2006) larger than 785, and a Name of pinehouse?",1 -47062,"With a previous number of 68165, what is the oldest converted date?",1 -47063,"With a converted less than 1966 and a number of 32 (2nd), what is the largest number listed for withdrawn?",1 -47066,"Which Car # has a Driver of ryan newman, and a Position larger than 10?",2 -47067,"Which Car # has a Team of hendrick motorsports, and a Driver of mark martin, and a Position larger than 4?",5 -47076,What was the rank for the finish time of 1:42.054?,5 -47080,How many times is runners-up less than 0?,3 -47081,"How many games have a Result of 4–0, and an Attendance larger than 12,256?",3 -47090,What the least quantity having a T2A class?,2 -47091,Which lane did the swimmer who had a Reaction time of 0.185 and a time of 20.9 swim in?,4 -47092,What was the 200-metre time for the swimmer from Slovenia in lane 9?,3 -47111,"How much Col (m) has a Prominence (m) of 2,344?",3 -47112,Which Prominence (m) has a Col (m) of 350?,5 -47113,"Which Elevation (m) has a Prominence (m) smaller than 2,456, and a Peak of mount kyllini, and a Col (m) smaller than 506?",1 -47120,Which Ends have a Name of zambrano?,1 -47143,"What are the total losses with 2 matches, 2 against, 0% of draws and less than 1 wins?",4 -47144,"What is the sum on wins with an against ratio of 0.83, and more than 1 loss?",4 -47153,What's the number of electorates for constituency number 56?,4 -47156,"What is the number of career caps for a full back, when tour Apps is smaller than 29?",3 -47161,What's the lowest grid with and entrant of fred saunders?,2 -47172,What is the highest Rank 1960—?,1 -47177,What's Italy's rank?,4 -47179,"What is the lowest attendance on Monday, November 10 when linköpings hc was the home team and there were more than 18 rounds?",2 -47200,what is the least capacity (mw) when the rank is less than 46 and the province is newfoundland and labrador?,2 -47201,"what is the lowest rank when the type is hydro, the name is grand rapids generating station and the capacity (mw) is more than 479?",2 -47204,"How many years have toyota team tom's as the team, with Laps greater than 64?",3 -47206,What is the total against on 08/12/1992?,4 -47209,How many gold medals for germany (GER) having a rank less than 15?,3 -47210,How many silver medals when the bronze is more than 2 and having a rank more than 5?,1 -47211,What's the average number of silver medals when bronze is less than 0?,5 -47212,What's the average number of silver medals for germany (GER) having more than 3 bronze?,5 -47217,"Which Tries for has Points against larger than 87, and Tries against smaller than 28, and Points diff of +63?",5 -47218,"Which Points for has Points against smaller than 93, and Tries for larger than 25?",2 -47219,"Which Tries for has Points against smaller than 124, and Points for smaller than 241, and Tries against smaller than 11?",1 -47220,"How many Tries against have a Team of dinamo bucureşti, and Tries for smaller than 19?",3 -47221,"What week had attendance of 48,667?",3 -47224,What is the Place of Draw 1 by Artist Monika Kirovska?,5 -47225,What were the most byes of Terang-Mortlake when they had more than 11 wins and more than 1118 against?,1 -47226,How many wins did South Warrambool have?,5 -47227,How many byes when there are more than 16 wins?,5 -47228,What is the least amount of Byes when there are more than 2 wins and 1946 against?,2 -47229,How many wins when the draws are less than 1 and more than 4 losses?,5 -47230,What was the lowest population of the GEO ID 3805373380 and the water square mileage smaller than 5.729?,2 -47231,What is the lowest GEO ID for the longitude of -102.158045 and the water in square miles larger than 0.979?,2 -47232,What is the average ANSI code for the town of Sherman and the smaller of the water area in square miles than 0.005?,5 -47233,What is the average longitude for the water area of 0.093 and has a GEO ID tag larger than 3808174460?,5 -47238,How much total time was in lane 4?,3 -47239,"Which Rank has a Reaction time larger than 0.20400000000000001, and a Time larger than 45.56?",1 -47240,"How many ranks have more than 7 lanes, and an Athlete of michael mathieu, and a Reaction time larger than 0.203?",4 -47241,"Which Time has a Reaction smaller than 0.20400000000000001, and a Rank of 1?",4 -47242,"What's the average Top-25, that has an Events that's smaller than 12, and has a Top-5 that is larger than 0?",5 -47243,"What's the listed average of Cuts made that has a Top-5 of 3, and a Top-10 that's smaller than 5?",5 -47244,What's the sum of Top-25 that has an Events that is smaller than 10?,3 -47245,"What's the sum of Top-10 that has Events that's larger than 16, and has a Top-5 that's also larger than 5?",3 -47246,"What is the lowest Cuts made that has a Tournament of PGA Championship, and has a Top-5 that is smaller than 2?",2 -47250,"What is the earliest year with a result of nominated, and a nominee(s) of john wells, for an episode of ""makemba""?",2 -47254,What is the average year with a 1:42.85 time?,5 -47264,What was the highest pick number of the player who went to LSU in college?,1 -47267,What lane was Emily Seebohm in?,3 -47273,What is the highest rank in Uzbekistan with a time larger than 11.44?,1 -47274,What is the average heat ranked at 30?,5 -47275,What is the average time in a rank of 61?,5 -47276,How much Capacity has a Vehicle of 2003 holden commodore ute?,3 -47278,"Which Capacity has a Class of cm22, and a Vehicle of 1999 subaru impreza wrx sti?",2 -47280,What is the total number of losses for teams with more than 0 byes?,3 -47281,What is the sum of draws for teams with against of 1731 and under 10 losses?,4 -47293,"What is the lowest total that has a rank less than 8, a silver greater than 6, and 20 as the bronze?",2 -47294,"What is the average silver that has a gold greater than 3, with soviet union (urs) as the nation, and a bronze greater than 26?",5 -47295,"What is the highest silver that has 57 as the total, with a bronze greater than 20?",1 -47297,"How many bronzes have 1 as the total, with spain (esp) as the nation, and a gold greater than 0?",3 -47298,"Which Prominence (m) has a Peak of nakanai mountains high point, and an Elevation (m) smaller than 2,316?",5 -47299,"How much Col (m) has a Prominence (m) larger than 1,897, and a Rank smaller than 6?",3 -47303,Which player was from Fermanagh and had an average score of 22?,5 -47304,How many total points did Oisin McConville have from his 5 matches?,3 -47305,"How many attendances have October 30, 1977 as the date, with a week greater than 7?",3 -47306,"What is the lowest attendance that has l 42-35 as the result, with a week less than 13?",2 -47308,What is the highest heat of the athlete from spain with a lane less than 7?,1 -47309,What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3?,5 -47310,What is the lowest Gold count if the Bronze is 4 and Silver is greater than 5?,2 -47311,What is the Average for Silver medals that have more than 17 Golds?,5 -47312,What is the highest number of Silver medals with a Total greater than 14 and more than 15 Bronze medals?,1 -47318,What is the total number of medals won by teams that won more than 11 bronze medals?,3 -47319,What is the lowest react of the athlete from the United States who has a lane less than 4?,2 -47320,What is the lowest of the athlete from sri lanka who has a lane greater than 8?,2 -47321,"What is the average react of athlete muna lee, who is ranked greater than 3?",5 -47322,What is the average lane of the athlete from cuba who has a time greater than 22.57 and react less than 0.245?,5 -47323,What is the average react of the athlete with a time less than 22.29 and a rank greater than 1?,5 -47326,What is the highest result for Wallace Spearmon when the reaction time is greater than 0.167?,1 -47328,What is the lowest result for Christian Malcolm with a reaction time greater than 0.185 and a lane higher than 3?,2 -47329,"What are the lowest conceded with 1 draw, and a score larger than 14?",2 -47330,"What are the lowest losses with more than 13 scored, and more than 7 draws?",2 -47331,What is the average played for less than 8 points?,5 -47341,how many times is the name matt targett and the lane higher than 7?,3 -47342,what is the highest time when the rank is less than 5 and the name is eamon sullivan?,1 -47343,what is the average rank when the lane is more than 4 and the name is dominik meichtry?,5 -47345,"What is the total number of 2012 Employees (Total) when 2007 Employees (Total) is 8,985, and rank (2010) is smaller than 9?",3 -47346,"What is the lowest 2010 Employees (Total) when the 2007 Employees (Total) is see note, and the 2012 Employees (Total) is larger than 99,400?",2 -47347,What shows for 2010 Employees (Total) when the employer is University of Alberta?,4 -47349,What year was the 190 South Lasalle Street?,1 -47356,"Which Total has a Rank of 4, and a Silver larger than 2?",2 -47357,"How much Total has a Rank of 5, and a Bronze larger than 3?",4 -47358,"Which Silver has a Nation of total, and a Bronze smaller than 18?",1 -47359,"How much Silver has a Nation of total, and a Total smaller than 54?",3 -47366,"Which Place is the highest one that has a Draw larger than 1, and 49 Points?",1 -47368,What is the bronze number when the total is 54/,5 -47369,What is the least bronze number when the silver is less than 0?,2 -47370,"What is the least silver when the total is more than 2, bronze is 3, gold is more than 0, and rank is 1?",2 -47371,"What is the number of silver when the total is more than 2, and bronze is less than 3, with a rank of 7?",3 -47372,"Which Time has a Lane smaller than 4, and a Rank larger than 6?",5 -47373,"Which Rank has a Nationality of france, and a Name of alain bernard, and a Lane smaller than 6?",5 -47375,When the date is 8 october 2008 what is the sum of attendance?,4 -47382,"Which Level has a League Contested of northern premier league premier division, and a Season of 2011–12?",5 -47383,What is the least Top-5 when 1 is the cuts made?,2 -47384,"With events less than 0, what is the fewest Top-5?",2 -47385,How many wins of average has cuts made less than 0?,5 -47386,"How many events total is the Top-5 2, and 4 is the cuts made, and less than 0 wins?",3 -47387,"In the Open Championship with more than 3 cuts made, what is the average wins?",5 -47390,What is the average population for an area less than 433.7km and a 23013 code?,5 -47391,What is the total code number for Amadiba?,3 -47392,What is the total capacity for the Leicester Tigers?,3 -47395,What year was the player David Rose?,4 -47398,"What is the population where the median family income is $48,446 and there are more than 35,343 households?",5 -47399,"What is the population where the median household income is $87,832 and there are fewer than 64,886 households?",5 -47406,"How many Points have a Position larger than 4, and Losses larger than 5, and a Conceded of 15, and a Scored larger than 11?",3 -47407,How many positions have Played smaller than 12?,4 -47411,"What is the fewest mintage from Dora de Pédery-Hunt, and the year was before 2002?",2 -47412,"What is the most mintage with common eider as the theme, and the year less than 2008?",1 -47413,"What is the earliest year when the 25th Anniversary Loonie was the theme, and the mintage was less than 35,000?",2 -47418,"What is the Week number on September 6, 1946?",4 -47420,What was the lowest ranking rower from Great Britain?,2 -47444,"How much Converted has a Number of 35, and a Withdrawn smaller than 1952?",3 -47445,"How much Withdrawn has a Number of 42, and a Previous Number(s) larger than 68178?",4 -47446,"Which Withdrawn has a Previous Class of j69, and a Previous Number(s) smaller than 68532, and a Converted larger than 1959?",1 -47447,What is the average latitude for townships in Dickey county with water under 2.106 sqmi and population under 95?,5 -47448,What is the highest GEO ID for land masses over 38.117 sq mi and over 2.065 sq mi of water?,1 -47449,What is the number of GEO IDs for areas in Riggin township with water area over 0.587 sq mi and ANSI codes over 1759257?,3 -47465,What is the least lane number that Natalie Coughlin was in when she was ranked greater than 1?,2 -47470,"What total has a position smaller than 4, a B score higher than 9.125, and an A score less than 6.6?",5 -47493,What is the highest bronze for less than 2 total trophies?,1 -47494,"Which Total has a Finish of t64, and a Year won larger than 2006?",1 -47495,"Which year won has a Finish of t24, and a Country of england?",5 -47496,"What is the smallest bronze value for countries with totals over 2, golds of 0, silvers under 1, and ranks over 10?",2 -47498,What is the average year joined of the 277 county?,5 -47506,What is the highest year for the Bethesda Game Studios Developer?,1 -47507,What is the lowest year for the game called The Elder Scrolls v: Skyrim?,2 -47511,What is the average year that the medical school in dominican republic was established?,5 -47512,What are the most wins with byes more than 0 and 1637 against?,1 -47513,What are the total byes for the Red Cliffs with more than 4 losses and more than 2422 against?,3 -47514,What's the total wins for Wentworth with less than 0 byes?,3 -47516,What is the number of attendance values for ties having an opponent of Middlesbrough and result of 3-1?,3 -47519,What is the average rank of a player with fewer than 3 matches?,5 -47535,What is the Opponents in the game with a Date of nov. 25?,2 -47537,"What is the lowest number of goals joe keenan, who has more than 1 assists, had in 2007/08?",2 -47538,What is the lowest number of goals of the player with 9 (0) games and less than 0 assists?,2 -47540,"When the nationality is united states, and the time is 58.06, and the heat is larger than 5 what is the lowest rank?",2 -47541,"What is the highest rank when the lane is larger than 6, and the heat is 3, and the nationality is colombia?",1 -47542,What is the total lane for a heat larger than 7?,3 -47543,"What is the highest heat when the nationality is poland, and the lane is smaller than 6?",1 -47544,Which Lead Pitch/mm has a Body Width/mm larger than 10.16?,4 -47545,"How much Body Width/mm has a Part Number of tsop40/44, and a Body Length/mm smaller than 18.42?",4 -47546,Which Lead Pitch/mm has a Part Number of tsop24/28?,1 -47547,What is the highest amount of silver when gold is 1 and bronze larger than 0?,1 -47548,What is the Time of the Athlete with a Reaction time of 0.164?,4 -47549,What is the Time of the Athlete in Lane 4?,3 -47550,What is the Lane of the Athlete from Great Britain with a Reaction time of less than 0.218 and a Time larger than 44.74?,4 -47552,"What is the week with attendance of 73,572?",1 -47553,What week was the opponent the San Diego Chargers?,3 -47554,What week was the result of l 38–21?,1 -47555,What's the total of Rank for the County of Galway and has a Total that's larger than 13?,4 -47557,"What's the highest Rank for the County of Offaly, the Player of Mark Corrigan, and the Total that is smaller than 8?",1 -47564,"What's the smallest react of Zimbabwe, ranked after 1 in a lane after 3 and a time less than 20.3?",2 -47565,What is the total number of white (Hispanic/Non-Hispanic) having a black (Hispanic/Non-Hispanic) of 9.9 and Hispanic under 99.5?,3 -47566,"What is the average black value (Hispanic/Non-Hispanic) having a white (Hispanic/Non-Hispanic) under 61.9, Multiracial (Hispanic/Non-Hispanic) under 12.5 and Hispanic under 99.4?",5 -47567,What is the highest Amerindian (Hispanic/Non-Hispanic) value having a Black (Hispanic/Non-Hispanic) of 15.7 and White (Hispanic/Non-Hispanic) over 69.5?,1 -47576,What is the highest enrollment in Lagrange where the mascot is panthers?,1 -47577,What is the enrollment at the school of Hamilton community?,5 -47582,"What is the total in 2000–2012, with more than 2 silver, 0 Bronze, and a Rank smaller than 70?",4 -47584,What's the average Round of Pete Laframboise?,5 -47602,What is the total number of bronze medals for the team with more than 4 silver and less than 30 gold medals?,3 -47603,what is the least penalty points when the judge e is 72.22?,2 -47621,How many FA cup goals did dick taylor score in the year that he had 0 league goals?,2 -47622,What is the goals number of goals for the player who had 2 league cup apps and 0 FA cup goals?,3 -47624,What is Lisbeth Trickett's time?,3 -47625,What is the average rank for 57.05 time?,5 -47626,What lane is from Great Britain and a 57.78 time?,3 -47639,what is the total number of electorates (2009) when the name is govindpura?,3 -47640,What is the rank of Si Sa Ket province with less than 14 bronze medals?,3 -47641,How many total medals does rank 3 with less than 40 silver medals?,1 -47642,How many average gold medals for provinces higher than rank 9 with 25 bronzes?,5 -47656,What is the total number of episodes for クロサギ?,3 -47658,"Which Score-Final has a Rank-Final of 2, and a Year smaller than 2008?",4 -47659,"How many years have a Rank-Final smaller than 7, and a Competition Description of olympic games, and a Score-Final smaller than 186.525?",4 -47660,Which Score-Final has an Apparatus of floor exercise?,1 -47661,"Which Year is the first one that has an Apparatus of uneven bars, and a Rank-Final smaller than 3?",2 -47664,What the round with the time 1:15?,5 -47667,"What is the A score for the person with a total less than 15.95, position less than 7, and B score more than 8.225?",1 -47668,What is the B score for the person with a total of 16.325 and an A score of more than 7.3?,5 -47669,What is the Position of the person with a total less than 16.65 and an A score of 7.4?,2 -47675,What are the highest points with 2012 as the year?,1 -47676,"What are the highest matches that have points less than 88, and goals less than 0?",1 -47677,How many tries have goals greater than 0?,4 -47678,"What are the lowest points with 2013 as the year, and goals less than 0?",2 -47679,"How many goals have 28 as the points, and matches greater than 11?",3 -47680,"Which Laps have a Rider of russell holland, and a Grid smaller than 10?",1 -47681,"Which Laps have a Bike of kawasaki zx-6r, and a Time of +26.891?",2 -47686,What's the draw that's played less than 36 and has 42 points?,5 -47687,What the lost that has less than 10 points and less than 38 goals scored?,4 -47688,what the most lost for Alianza with a draw less than 6?,1 -47689,What the lost in place less than 3 and having more than 63 goals scored?,4 -47691,"What is listed as the highest Nominal GDP World Bank, 2009 (million USD) that has a GDP per capita World Bank, 2009 nominal (USD) of 14267?",1 -47694,What is the total Rank for ümit karan when Apps is more than 39 and Rate is more than 0.58?,4 -47695,"When rank is more than 10, what is the total rate?",4 -47702,What is the least clock speed (MHz) with January 1986 as introduced?,2 -47703,"With April 1986 as the introduced, what is the least clock speed (MHz)?",2 -47709,What is the rank for the team that had a time of 6:41.45 and note FA?,4 -47710,What rank was the team from Australia?,3 -47711,What is the highest game that has July 31 as the date?,1 -47712,"What is the total of the River Mile in Greenup, Kentucky?",4 -47714,What is the highest River Mile that has a pool length of 42.2 miles or a lock/lift drop of 21 feet?,1 -47716,What is the lowest ranking for 8:13.67?,2 -47720,What is the total rank and fc notes from South Africa?,3 -47724,"What was the latitude for van meter who had a land(sqmi) larger than 35.747, Water(sqmi) of 0 and a GEO ID smaller than 3809981860?",3 -47725,"What was the population fo the township with a Latitude of 48.853051, and a Water (sqmi) smaller than 0.9590000000000001?",1 -47726,"Van Meter has a water(sqmi) of 0 and a longitude larger than -98.444062, what was their highest ANSI code?",1 -47727,What was the lowest water(sqmi) in the county of dickey where the longitude was smaller than -98.444062?,2 -47737,How many points does mia martini have?,3 -47754,What is the average number of bronze medals won by Poland?,5 -47755,What is the average number of gold medals Switzerland received when they ranked larger than 1st and received fewer than 10 bronze medals and more than 1 silver medal?,5 -47756,What is the rank when the col is larger than 0?,3 -47757,"What is the rank when the elevation is 1,628, and Col (m) is larger than 0?",3 -47758,"What is the elevation of Vanuatu, when the rank is smaller than 3?",5 -47760,"What is the average number of losses when there are more than 4 wins, and the against matches is more than 1728?",5 -47761,"What is the total number of draws when there is 1 Win, and less than 1728 against matches?",3 -47762,What is the highest number of wins when there are less than 2 losses?,1 -47763,What is the highest number of losses for the Cobden club when there is less than 1 win?,1 -47764,"What is the average number of wins for the Terang Club, when there are less than 0 draws?",5 -47767,"In what Year is the Location of the Festival Koror, Palau?",4 -47770,"How many counties have people before profit as the party, and a borough greater than 0?",4 -47771,"How many counties have 2 as the total, 0 as the city with a town less than 1?",4 -47772,"What average city has a total less than 2, with a borough greater than 0?",5 -47773,What is the rank # of the swimmer in Lane 5?,3 -47788,what is the year when the score is 59-32?,4 -47795,How many wins are there when the draws are less than 0?,4 -47796,What are the most losses when there are 5 wins and draws less than 0?,1 -47797,What are the most wins of Terang with the draws less than 0?,1 -47798,What is the lowest against when the draws are more than 0 and the losses are less than 3?,2 -47799,What are the least losses of Warrnambool with more than 6 wins and less than 630 against?,2 -47800,What are the draws of Cobden when there are more than 3 losses?,5 -47801,"What average bronze has 0 as the silver, 17 as the rank, and a gold less than 1?",5 -47802,"What is the lowest silver that has 2 as the bronze, with a total greater than 4?",2 -47803,"How many bronzes have a total less than 11, with 11 as the rank, and a gold less than 1?",3 -47806,What was the lowest draw for Beathoven when the place was smaller than 16?,2 -47814,"Which Points have Drawn of 1, and a Played larger than 14?",1 -47815,"Which Position has Drawn larger than 1, and a Played smaller than 14?",1 -47816,"Which Lost has Drawn larger than 1, and a Played larger than 14?",2 -47817,"How much Lost has Points larger than 15, and a Name of ev pegnitz?",3 -47824,how many times is the player jim furyk?,3 -47825,What is the lowest lane in which an athlete got a time larger than 20.75 and a react smaller than 0.166?,2 -47826,What is Christian Malcolm´s highest react when his time was below 20.58?,1 -47839,How many bronze medals for Romania when the silver count is more than 1?,5 -47853,What is the highest place of a song by Henri Dès that has fewer than 8 points?,1 -47859,"What is the total point value when there are less than 12 draws, the rank is less than 17, and Philipp Kirkorov is the artist?",3 -47860,"What is the total ranking when there are less than 16 draws, less than 1 point, and the English translation is in love with you?",4 -47861,"What is the highest draw number when there are more than 31 points, a rank greater than 6, and the English translation is listen to me?",1 -47862,What was the population of Green County?,2 -47868,What's the date for Details of 1000 copies?,2 -47881,What is the average expenditures on R&D for Croatia after 2007?,5 -47882,What is the lowest expenditures on R&D for Poland after 2011?,2 -47886,How much Year Left has a Location of howe?,4 -47894,What rank is Vaud with the lowest point is Lake Geneva?,4 -47895,Wich rank is given to the Canton of Schaffhausen?,4 -47902,"What is the latest year when Neal Baer was a nominee, and the result was nominated?",1 -47903,That is the total year that Neal Baer is a nominee?,4 -47915,"What is the number of AIDS Orphans as % of Orphans when the Double (AIDS Related) number is 41,000, and the Paternal (Total) is larger than 442,000?",4 -47916,"What is the Total Orphans number when the number of Total Orphans (AIDS Related) is < 100, and the Maternal (Total) is smaller than 31,000?",2 -47918,How many clubs are involved when the clubs remaining are 2?,4 -47920,What is the number of clubs remaining in the second round?,2 -47922,How many clubs are involved when there are 4 winners from the previous rounds and more than 4 clubs remaining?,2 -47930,"What year had Nintendo EAD, Monolith Soft as developers?",4 -47935,What year did the team from City of Aurora join?,5 -47936,What was the total enrollment 08-09 of Franklin County?,3 -47938,What is the rank of the team with a time of 1:00.61?,5 -47939,What's the lane with a time of 1:00.66?,5 -47951,"What is the average goals when the last appearance was before 1984, there were more than 17 appearances, the first appearance was before 1961 and the position was mf?",5 -47956,What is the total time of the athlete from Canada with a lane less than 8 and a rank less than 8?,3 -47957,What is the total react number with a time less than 20.05 and a lane less than 6?,3 -47958,"What is the average react of bryan barnett, who has a lane less than 2?",5 -47965,What is the place when less than 1 point is scored?,5 -47966,What is the highest draw number when 23 points are scored?,1 -47967,What is the lowest heat that had a time of 1:02.85 in a lane larger than 7?,2 -47968,What is the sum of the lanes before heat 7 that elizabeth simmonds swam?,4 -47971,What's the year that has a Baden Freiburger FC?,3 -47977,"What is the lane with a time of 1:56.64, and a tank smaller than 7?",3 -47982,"What is the most silver won by the country with more than 1 gold, 3 bronze, ranked 1, and less than 12 as the total?",1 -47984,What is the most silver won by Norway?,1 -47993,What is the lowest round that has kazushi sakuraba as the opponent?,2 -47994,"Japan (JPN) with a total of less than 5, has what average gold medals?",5 -47995,"What is the average bronze medal when gold is greater than 0, and there is less than 0 silver medals?",5 -47996,"What is the sum of bronze medals when the rank is greater than 2, and less than 2 total medals with silver medals being more than 0?",3 -47997,"With a greater than 4 rank, and the silver medal greater than 0, and the bronze medal less than 1, what is the average total?",5 -47998,What is the fewest gold medals when the bronze medals is greater than 5?,2 -48003,What is the highest pick when the college is saginaw valley state?,1 -48007,"What is the altitude (meters) is associated with the Name Mount Launoit, with the range as Belgica Mountains?",4 -48008,"What is the Altitude (meters) associated with a rank smaller than 10, and the range Mühlig-Hofmann Mountains?",3 -48017,"What's the total with silver being less than 0, less than 1 gold, and 3 bronze?",4 -48019,What's Sara Isakovič's lane number that had a heat of 3?,4 -48020,What's the heat that was timed 2:08.54?,3 -48037,What is the lowest league cup goals for the entry with fa cup goals greater than 0 and FA cup apps larger than 2?,2 -48038,What is the sum of league cup appearances for the players with FA cup goals larger than 0 and FA cup appearances less than 2?,4 -48039,"What is the highest league cup appearances for the player with league cup goals of 0, and FA cup appearances of 2, and 4 league goals?",1 -48043,"What is the total number for the position that has less than 2 draws, less than 9 losses and more than 24?",3 -48044,"What is the highest played with more than 0 draws, less than 3 losses, and less than 27 points?",1 -48045,What is the total number played with 8 points and a position more than 6?,3 -48046,"What is the total number played with 1 drawn, and less than 7 points?",3 -48047,What is the most silver when bronze is more than 1 and total is more than 48?,1 -48048,what is the most bronze when the total is 9?,1 -48049,what is the least bronze when the nation is soviet union and the total is less than 11?,2 -48051,What is the long figure when gain is less than 0?,5 -48052,"What is the loss when the average/gain is less than 16.7, gain is 104 and long is larger than 4?",5 -48057,What is the highest rank for a 6:52.70 time and notes of sa/b?,1 -48058,What is the lowest rank that has paul biedermann as the name?,2 -48060,What is the highest lane that has nimrod shapira bar-or as the name?,1 -48061,What is the latest year they were nominated?,1 -48063,"Which Drawn has a Position smaller than 8, and a Played smaller than 14?",1 -48064,"Which Points have a Drawn smaller than 2, and a Lost of 12, and a Name of ev bad wörishofen?",1 -48068,Which Draw had 8 Televote Points?,3 -48074,"What is the highest rank with the notes of sa/b, and a time of 6:39.07?",1 -48082,"What is the highest number of losses for Presidente Hayes, when the draws were more than 4?",1 -48083,"What is the number of wins when position was larger than 6, and conceded was smaller than 19?",3 -48085,"What is the number of wins when scored was less than 26, and conceded was larger than 23?",4 -48087,What was the lowest amount of wins before season 2009 for 97 points?,2 -48088,How many wins had a podium larger than 6 after season 2008?,3 -48090,"what is the lowest week when the attendance is 54,714?",2 -48092,"Which Rank has a Reaction of 0.198, and a Time smaller than 46.3?",1 -48093,Which Lane has a Time larger than 47.83?,5 -48094,"Which Reaction has a Rank smaller than 4, and a Nationality of trinidad and tobago, and a Time larger than 45.13?",5 -48095,"Count the Rank-Final which has a Year larger than 2008, and an Apparatus of balance beam, and a Rank-Qualifying larger than 4?",3 -48096,Which the lowest Score-Fina has a Rank-Final of 7 and a Year larger than 2009?,2 -48097,"Name the Year with a Rank-Final smaller than 2, an Apparatus of team, and a Score-Qualifying smaller than 248.275?",5 -48102,"What is the Rank of the game with an Attendance of 93,039?",3 -48107,What is the average year in which the finish position was 13th?,5 -48108,What is the average year for the Olympic Games?,5 -48119,Which Commenced operations have an Airline of valuair?,1 -48121,How many Viewers have a Rank smaller than 2?,4 -48122,"What is the longitude for the Township that has a ANSI code less than 1036534, a water (sqmi) of 0, and a GEO ID greater than 3809959540?",3 -48123,What is the population in 2010 for the longitude of -97.578927?,3 -48124,What is the total population in 2010 for the township located in Mountrail which has land less than 34.424 sq miles and a GEO ID less than 3806159940?,4 -48125,What is the highest recorded latitude for the township that has an ANSI code greater than 1759541 and a population in 2010 of 72?,1 -48127,"How many Lanes have a Time larger than 13.59, and a Rank larger than 8?",4 -48128,"How many lanes have a Nationality of france, and a Rank larger than 8?",4 -48131,What is the average year having a rank among provinces over 5 and ten-year percentage change of 67.3?,5 -48132,What is the highest population for the province having a rank under 5?,1 -48133,What is the number of population values having a rank among provinces under 5 with a five-year percentage change of 3.6?,3 -48134,What is the highest year having a ten-year percentage change of 7.9?,1 -48140,What lane has a time of 1:57.71?,4 -48142,"Which Crude death rate (per 1000) has Deaths of 768, and a Crude birth rate (per 1000) smaller than 29.7?",2 -48143,"Which Attendance has an Opponent of perth glory, and a Round of 9?",2 -48144,What is the lowest rank of rider darren gilpin?,2 -48145,What is the highest rank of rider colin martin?,1 -48156,What is the total number of places for a song with a draw of 21 and more than 36 points?,3 -48157,What is the lowest numbered game against Phoenix with a record of 29-17?,2 -48168,What is the average year for a Saar of FK Pirmasens and Hessen of Wormatia Worms?,5 -48169,"What is the smallest year for a Main of Eintracht Frankfurt, Rhein of Waldhof Mannheim, Sarr of FK Pirmasens, and Hessen of Wormatia Worms?",2 -48176,What is the lowest time for Paulo Villar in lane 9?,2 -48185,How many Gold medals did Puerto Rico receive with 1 Silver and a Total of 1 or less?,3 -48186,What is the Total number of medals for the Nation with 7 or less Bronze medals and 1 Silver medal with a Rank of 9 or larger?,2 -48187,How many Silver medals did the Nation with 10 or more Bronze receive?,2 -48188,what is the average wins when draws is less than 0?,5 -48189,what is the average losses when the club is warrnambool and wins is less than 12?,5 -48190,what is the most losses when the club is terang and draws is less than 0?,1 -48191,"What is the sum of losses when wins is more than 6, club is camperdown and against is more than 1238?",4 -48195,How many cable channels have callsign CBFT-DT?,3 -48196,What is the lowest Digital PSIP for channels over 29 with callsign CFTU-DT?,2 -48208,What is the rank for the person with time 11.14?,5 -48209,"What is the rank when time is 11.15 and lane is bigger than 7 with notes Q, PB?",4 -48210,"What is the lane for notes Q, SB and time less than 11.22?",4 -48212,"What is the lowest played when draws P.K. Wins / P.K. Losses is 3/0, and points is larger than 18?",2 -48213,How many lanes does Australia have with a reaction smaller than 0.138?,3 -48218,What is the time with fewer than 5 lanes for the United States?,4 -48222,What is the total number of losses with less than 6 wins and less than 0 draws?,3 -48223,"What is the average number of against with less than 10 losses, more than 0 draws, and more than 7 wins?",5 -48224,What is the total number of byes with more than 0 losses and 1526 against?,3 -48225,What is the lowest number of draws with more than 2 byes?,2 -48226,"What is the lowest against of the wimmera fl warrack eagles, which have less than 16 wins?",2 -48227,How many races did the German racer that won less than 10 races ride?,3 -48228,"What is the average win as a percentage of German racer Rudi Altig, who has ridden in over 79 races?",5 -48229,what is the highest top-5 when cuts made is more than 39?,1 -48230,what is the highest events when wins is more than 0 and cuts made is more than 14?,1 -48231,what is the highest top-5 when wins is more than 1?,1 -48232,How many times is the tournament the masters tournament and the top-10 is less than 2?,3 -48239,"What is the lowest laps that has an on lap less than 4, with 35 as a class pos.?",2 -48244,what is the highest runners when the jockey is frankie dettori and the placing is higher than 1?,1 -48253,"What is the total number of laps for a team of team player's, and has a grid of 9, and points larger than 10?",3 -48254,"What is the lowest points for a time/retired of +30.7 secs, and laps smaller than 165?",2 -48264,What is the lowest number of matches that has a Clubs of 46 → 32?,2 -48265,What is the highest number of matches that has a round of Third Round?,1 -48268,"Which Against has Wins of 11, and Losses smaller than 7?",5 -48270,Which Byes have Losses smaller than 4?,5 -48271,"What's the total draws when the losses are less than 10, less than 2 byes, and 13 wins?",3 -48272,What's the total draws for Ararat when the byes are less than 2?,4 -48273,What's the total losses when there are 8 wins and less than 2 byes?,4 -48274,What's the least losses for Horsham Saints with more than 13 wins and less than 1211 against?,2 -48275,What are the draws when the losses are less than 1?,4 -48276,What are the amount of wins when the draws are less than 0 and the against is 1348?,2 -48277,What was the total city area for vehari city with a serial number bigger than 36?,3 -48278,What was the lowest city population for the district of rajanpur district with a area of 6 km squared and a serial number less than 29?,2 -48279,What is the sum of the serial numbers for narowal city?,4 -48280,"What is the sum of the area for the bahawalnagar district with a population more than 134,936?",4 -48282,"After pick number 158, what is the next round a USC player was picked?",2 -48286,What is the sum of bronzes for teams with more than 0 silver and a total under 1?,4 -48287,"What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2?",5 -48293,Which Against has a Round of fourth round?,2 -48295,"What is the average quantity for coaches manufactured in 1921/23, and had 40 seats?",5 -48297,What is the smallest quantity having a Class to 1928 of BDi-21?,2 -48300,"Which B Score has a Total larger than 15.325, and an A Score smaller than 6.4?",4 -48301,"Which Total has an A Score of 6.5, and a Position larger than 5?",2 -48303,What is the latest week when the chicago bears are the opponent?,1 -48306,What's the total starts with more points than 1 and the driver is Nasser Al-Attiyah?,3 -48307,What's the smallest number of podiums having more than 6 starts and 5 finishes?,2 -48308,"What's the number of stage wins for Federico Villagra having more than 1 finish, less than 8 starts and less than 1 podium?",3 -48309,What's the finishes for Lambros Athanassoulas having 0 podiums and 0 stage wins?,4 -48310,What is the average number of electorates (2003) reserved for sc with a constituency number of 50?,5 -48311,Which Finals have a Pre-Season larger than 0?,2 -48312,How much A-League has a Pre-Season larger than 0?,3 -48319,What is the lowest rank for Chris Brown with react greater than 0.244?,2 -48320,What is the highest rank of an athlete from Belgium with react greater than 0.162?,1 -48321,"What is the average number of partners for the firm with a rank under 71, other over 77, and largest city of Philadelphia?",5 -48322,"What is the smallest rank for the city having partners of 342, other under 147, and largest city of Cleveland?",2 -48324,What's the 2008 that has 3.4 in 2009 and more than 2.9 in 2005?,1 -48325,What's the 2006 if there's less than 6.7 in 2007 and less than 3.4 in 2009?,4 -48326,"What's the total in 2005 if there's more than 10.2 in 2006, less than 29.5 in 2007, more than 4.9 in 2009 and less than 43.8 in 2010?",3 -48327,What is the 2009 when there's 11.8 in 2005 and less than 12.6 in 2006?,2 -48328,What's the 2005 of TV3 when there is less than 42 in 2007 and less than 29.5 in 2010?,1 -48332,How much Enrollment has a School of indianapolis tindley?,3 -48334,How many Total Goals values have 0 League Cup Goals?,3 -48335,"What is the smallest number of FA Cup Goals for players with 4 FA Cup Appearances, 49 Total Appearances, and more than 17 total goals?",2 -48336,What is the average number of League Goals for palyers with 0 FA Cup Goals?,5 -48337,what is the highest silver when the total is 4 and bronze is less than 1?,1 -48338,"what is the gold when the bronze is 1, total is 6 and silver is less than 3?",4 -48341,"What is total number of height of province, with community of com. dom. lto. America?",3 -48351,What is the average attendance for games against the Pittsburgh Steelers when the opponents scored more than 0 points?,5 -48355,What is the Attendance of Game 24?,4 -48367,What is the average amount of points larger than 154 laps?,5 -48369,What is the lowest win % with a 0-2 record and more than 2 apps?,2 -48370,What is the lowest apps for rank 3 and 0% wins?,2 -48384,"In week 7, what was the average attendance?",5 -48396,"What is the number of silver when bronze is 0, and rank is less than 2?",4 -48397,"What is the silver when the Total is 1, and Gold is 1?",5 -48398,What is the number of silver when the total is less than 1?,3 -48399,What is the largest silver number when the rank is smaller than 1?,1 -48400,What is the number of bronze when the total is smaller than 1?,5 -48401,"What is the highest number of bronze when silver is larger than 0, rank is larger than 3?",1 -48402,What is the lowest number of silvers for countries in rank 12 with more than 0 bronze?,2 -48403,What is the most number of silvers for teams in rank 5 with more than 6 total medals?,1 -48404,What is the fewest number of golds for teams with a total of 3 and fewer than 2 silvers?,2 -48405,What's the number of wins when the flags were less than 8 and 52.11% of wins?,3 -48406,What's the most flags that had 473 wins and less than 633 losses?,1 -48408,What are the losses of Warrnambool with a draw less than 19?,5 -48410,How many gold medals for Bulgaria (BUL) with 2 silvers and a less than 18 rank?,4 -48411,What's the most bronze medals for Great Britain (GBR) with more than 1 silver and ranked more than 6?,1 -48412,What's the total silver medals having less than 2 gold and 2 bronze?,3 -48417,what is the lowest vuelta wins when the rank is 19 and combo is more than 0?,2 -48418,How many times is the country ireland and points more than 4?,3 -48426,What average year has international meeting & national championships as the tournament?,5 -48427,"What is the lowest year that has hypo-meeting as the tournament, with 8002 as the points?",2 -48432,"What's the population that has a median family income of $50,553?",3 -48433,What is the highest rank for the team of egypt?,1 -48441,What year was the developer(s) Bioware?,5 -48446,"What is the total for Danny Pinheiro Rodrigues ( fra ), in a Position smaller than 7?",5 -48447,"What is the total for Chen Yibing ( chn ), when his B Score was smaller than 9.225?",3 -48448,"What is the A Score when the B Score is more than 9.05, and the total is less than 16.525?",3 -48449,"What is the position for Oleksandr Vorobiov ( ukr ), when the total was larger than 16.25?",3 -48450,"What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75?",4 -48454,What is the average rank for Denmark?,5 -48463,"What's the number of bronze when they are ranked 29, had a total more than 3 and less than 2 golds?",2 -48464,What's the bronze medal count for Rank 33 when the silver count was less than 2 and the total was more than 4?,1 -48465,How many silver for rank 22 when gold count was more than 0 and Bronze count was less than 5?,4 -48466,What's the bronze count for South Africa (RSA) with a total more than 16?,1 -48467,"What was the lowest election result for President Leonardo Marras with an area smaller than 227,063 people?",2 -48469,What is the average election result for the province of Grosseto from 1766 and prior?,5 -48470,"What is the total number of all bills co-sponsored associated with all amendments sponsored under 15, all bills sponsored of 6, and 0 amendments cosponsored?",3 -48471,What is the fewest amendments sponsored associated with 150 bills originally cosponsored and over 247 bills cosponsored?,2 -48472,What is the highest number of bills cosponsored associated with under 24 bills sponsored and under 16 amendments sponsored?,1 -48473,What is the highest number of amendments cosponsored associated with 53 amendments originally cosponsored and over 54 bills sponsored?,1 -48475,What is the Lane of the swimmer from Uzbekistan in Heat 1?,3 -48484,With a parallel bars score of 14.625 what is the average total?,5 -48485,What is the Rank of the Athletes with a Time of 3:43.491?,3 -48487,What is the Rank of the Athletes from Ukraine?,3 -48493,What is the sum of the area in km with a population of 110 in 2011?,4 -48494,What is the average population in 2006 that has more than 5 people in 2011 and an area 5.84km?,5 -48495,What is the lowest lane with a 0.216 react?,2 -48496,What is the total rank for the lane before 2?,4 -48499,What is the earliest year that had the Legend of Zelda: Twilight Princess game?,2 -48501,"Which Debut year has a Player of noel carroll, and Games smaller than 12?",1 -48502,Which Goals have a Player of noel carroll?,2 -48503,"How many debut years have Years at club of 1950–1951, and Games larger than 14?",4 -48505,What was the earliest year of release for Peaches: Francine Barker with the wounded bird label?,2 -48506,What was the latest year of release for the greatest hits title?,1 -48508,what is the highest latitude when the township is kingsley and the geo id is higher than 3803942820?,1 -48509,what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?,5 -48510,what is the geo id when the longitude is -98.435797 and the land (sqmi) is less than 36.039?,1 -48511,Name the lowest Year Joined which has a Mascot of pioneers?,2 -48518,What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?,4 -48547,How many Heats have a Name of miguel molina?,3 -48554,What is the earliest heat with a finisher from the Czech Republic and a rank over 41?,2 -48555,What is the total number of heats with a finisher named Gregor Tait in lanes over 6?,3 -48560,"When the president was Yoweri Museveni, and the year was 1993, with rank of 6 under political rights, what was the total of civil liberties?",4 -48561,"What is the year average when not free was the status, and less than 7 was the civil liberties, and less than 6 political rights?",5 -48562,What is the least political rights rank in 1976?,2 -48564,Which episodes has the lowest average ratings of 8.7%?,2 -48571,"What is the total weeks with more 56,134 attendees against the minnesota vikings?",4 -48572,What year was the main role a character named Guan Yu (關羽)?,2 -48575,What is the year that has a character named Wu Ji Wei (無極威)?,5 -48576,Which Round has an Opponent of aleksandr pitchkounov?,2 -48578,"Mortlake club has more than 924 against, less than 14 losses, and how many total draws?",3 -48579,What is the total number of wins for Cobden club when there are more than 2 draws?,4 -48580,"When against is 797 and wins is more than 10, what is the sum of draws?",3 -48581,Club warrnambool has less than 9 wins and what average of draws?,5 -48582,What is the average number of draws for Mortlake club when they have less than 0 wins?,5 -48583,Which Foreign population has a Population (2004) larger than 234733?,5 -48584,Which Population (2004) has a Moroccan population larger than 234506?,5 -48589,What is the highest grid that has gregorio lavilla as the rider?,1 -48591,How many overs when there are 5231 runs and fewer than 37 matches?,4 -48592,What are the fewest wickets when player's career spanned 1946-1960 and maidens were more than 419?,2 -48593,What is the largest number of wickets when there are more than 630 maidens and a best of 7/72?,1 -48597,"What is the attendance in the game in the 2010-11 season, when the score was 2–0?",2 -48600,"What year were the Hoak Packers, Fresno, CA the 4th Place Team?",2 -48602,"What year was the 1st Place Team the Hoak Packers, Fresno, CA, and 4th Place was Wells Motors, Greeley, Co?",1 -48603,"What year was the 4th Place Team of the Wyoming Angus, Johnstown, Co?",3 -48611,How much Quantity has a Type of 1′c1′ h2t?,3 -48615,"what is the highest place when lost is more than 4, points is less than 18 and team is Team of atlético veragüense?",1 -48616,"what is the least lost when the place is higher than 4, goals scored is 12 and points is more than 4?",2 -48617,how many times is the team tauro and played less than 18?,3 -48618,what is the least played when points is 36 and place is more than 2?,2 -48619,what is the average points when goals conceded is 14 and goals scored is less than 32?,5 -48621,How many weeks in total has bye as the date?,3 -48626,What was the average pick made by the Texas Rangers?,5 -48631,What are the least losses of Mortlake having less than 970 against?,2 -48632,What's the total against when the draws are more than 0?,3 -48633,What's the total wins when the draws are less than 0?,3 -48634,What's the least against number for Cobden with draws more than 0?,2 -48635,What's the most against when the draws are more than 0?,1 -48636,What are the total wins when there are 1261 against?,4 -48638,What is the rank for China?,4 -48640,"What is the Week number on October 10, 1976?",3 -48645,"Which Rank has a Show of alcatraz, and a Number of Viewers larger than 1,229,000?",2 -48651,What is the lowest lane in the Czech Republic and a time larger than 21.05?,2 -48652,What is the highest lane with a rank larger than 2 in Guyana?,1 -48653,What is the sum rank of Solomon Bayoh when his time was smaller than 22.16?,4 -48657,what is the heat when the athlete is anita pistone?,4 -48658,"how many times is the rank more than 29, the athlete is barbara pierre and the heat less than 5?",3 -48660,What is the sum of matches played for teams with more than 10 losses and under 5 points?,4 -48661,"What is the total number of positions for teams with more than 5 points, 3 draws, and under 2 losses?",3 -48662,What is the average number of losses for teams with under 4 losses and under 21 points?,5 -48670,What is the most recent season for the Prema Powerteam with a Masters of Formula Three series?,1 -48676,Can you tell me the Total number of Rankthat has the Lane of 4?,3 -48677,"Can you tell me the lowest Rank that has the Nationality of australia, and the Name of leisel jones, and the Lane larger than 4?",2 -48679,What is the highest Against for a game against Bristol City?,1 -48684,What is the lowest rank has 7:09.06 as the time?,2 -48692,How many appearances did the player for the Rayo Vallecano club that scored more than 37 goals make?,3 -48701,"What is the average upper index MJ/Nm 3 for the upper index Kcal/Nm 3 entry of 19,376?",5 -48702,"What is the Upper index Kcal/ Nm 3 of iso-butane, and a Lower index MJ/ Nm 3 smaller than 84.71?",3 -48703,"What is the Lower index Kcal/ Nm 3 entry, for the row with entries of an Upper index Kcal/ Nm 3 smaller than 19,376, and a Lower index MJ/ Nm 3 of 74.54?",5 -48704,"What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 of 47.91, and an Upper index MJ/ Nm 3 larger than 53.28?",4 -48705,"What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 larger than 47.91, for propylene, and an Upper index MJ/ Nm 3 larger than 77.04?",4 -48706,"What is the entry for Lower index MJ/ Nm 3 for the row that has an Upper index Kcal/ Nm 3 larger than 19,376, for lpg, and an Upper index MJ/ Nm 3 smaller than 86.84?",5 -48707,What match number has a ground of H and the opponent Chelsea under 18s?,5 -48715,"What is the average 2006 metropolitan population of Lima with a GDP per capita over $13,100?",5 -48716,"What is the lowest 2006 metropolitan population for a Mexico City, Mexico with a GDP per capita of less than 20,300?",2 -48717,Who placed highest with a time of 1:47.70?,2 -48718,"How much Col (m) has an Elevation (m) smaller than 3,187, and a Prominence (m) smaller than 1,570?",3 -48719,"Which Elevation (m) has a Prominence (m) larger than 2,120, and a Peak of mount karisimbi, and a Col (m) larger than 1195?",2 -48720,"Which Prominence (m) has an Elevation (m) of 3,095?",2 -48722,Which episode was the last written by chris hawkshaw this season?,1 -48723,"What is the highest col for the prominence of 1,834 meters and elevation higher than 1,834 meters?",1 -48724,What is the greatest 2007 when the change 06-07 was 14.7%?,1 -48733,What is the Rank of the Swimmer in Lane 5?,5 -48734,What is the Rank of the swimmer with a Time of 49 in Lane 7 or larger?,3 -48735,What is the Lane of the swimmer with a Rank of 8?,1 -48743,"How many people attended the September 21, 1980 game?",5 -48744,"Which Doubles have a Total larger than 176, and a Date smaller than 1907, and Doubles, I Class smaller than 21?",1 -48745,"Which Total has a Date of 1602, and Greater Doubles smaller than 16?",1 -48746,"How much Total has Semidoubles smaller than 78, and Doubles, II Class smaller than 17?",3 -48747,"Which Greater Doubles have Doubles, II Class smaller than 17?",5 -48748,"How much Total has Doubles of 45, and Doubles, II Class larger than 18?",3 -48749,Which Rank has a 2nd run of 1:17.170 (8)?,1 -48750,"Which Rank has a Total smaller than 10, and a 3rd run of 36.457 (2)?",1 -48752,What is the value of the size (steps) that has just ratio 10:9 and a size (cents) more than 160,3 -48755,What is the average size (cents) with an interval of major third and size (steps) more than 5,5 -48756,What is the average number of points for places over 7 and having a draw order of 4?,5 -48757,"What is the sum of placings for the song ""Tavo Spalvos""?",4 -48758,How many league goals did the player with 10 league apps and 0 FA cup goals have?,3 -48759,What was the sum of league goals where the toal was 8 and league cup goals were larger than 0?,4 -48761,"When the average ratings is 10.3%, what is the average episodes?",5 -48762,What is the fewest episodes with the Romaji title Regatta~Kimi to Ita Eien~?,2 -48765,what is the most episodes when the average ratings is 18.8%?,1 -48769,"Of all the schools that left before 2003, what is the average year joined?",5 -48770,"What year did the Ingots, who left after 2007, join?",3 -48782,What is the total enrollment of the aa IHSAA class?,3 -48783,What is the lowest enrollment at the pioneer school?,2 -48784,What is the average enrollment of the IHSAA A class in wolcott?,5 -48785,What is the Shirt No for Henry Bell Cisnero whose height is less than 190?,1 -48786,What is the Shirt No for the person whose height is 188?,4 -48787,What is the height of the person whose position is Libero?,1 -48788,"What is the total for the person with free of 47.667, and technical less than 47.417?",4 -48789,"What is the technical number for Jiang Tingting & Jiang Wenwen, and the total was more than 96.334?",1 -48790,"What is the free of Apolline Dreyfuss & Lila Meesseman-Bakir, when the total was larger than 90.333?",2 -48791,What is the average number of games drawn among teams that played over 14 games?,5 -48792,What is the total number of points combined from the teams that played over 14 games?,3 -48793,"How many points did the ESC Riverrats Geretsried, who lost more than 3 games, score?",4 -48794,What is the average number of games drawn among the teams that lost over 13 games?,5 -48810,What is the sum of totals for ranks under 3 with tallies of 2-5?,4 -48812,"What is the sum of the numbers in series written by sam meikle, which have 21 numbers in the season?",4 -48815,What is the least game that was played in Alexander Memorial Coliseum on October 16?,2 -48816,What average game was played on October 16?,5 -48818,"What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrivals and more than 1,449 tourism receipts in 2011 US dollars per arrival?",5 -48820,What is the highest number of tourism receipts in 2011 US $ per capita with 19.4 % of GDP in 2003 tourism receipts and less than 655 US $ per arrival in 2011 tourism receipts?,1 -48821,"What is the lowest tourism arrivals in 2011 in millions with 507 US $ per arrival in 2011 tourism receipts and less than 11,869 million of US $ in 2011 tourism receipts?",2 -48822,"What is the highest tourism arrivals in 2011 in millions with a 3.82 tourism competitiveness in 2011 and more than 1,102 US$ per arrival in 2011 tourism receipts?",1 -48844,"How much Distance has a County of faulkner, and a Total smaller than 1.5?",4 -48845,How much Distance has Notes of north end terminus of ar 155?,4 -48846,How much Latitude has a Water (sqmi) smaller than 0?,3 -48847,Which Land (sqmi) has a GEO ID smaller than 3800587900?,2 -48848,"Which Water (sqmi) has a Township of yorktown, and a GEO ID smaller than 3802187940?",2 -48869,What is the lowest number of goals with 8 (2) w-leagues?,2 -48870,"Which UEFA Champions League has a La Liga of 17, and a Copa del Rey larger than 0?",2 -48871,"Which Copa del Rey has a Name of guti, and a FIFA Club World Championship smaller than 0?",4 -48872,Which Copa del Rey has a La Liga smaller than 0?,4 -48873,"Which FIFA Club World Championship has a UEFA Champions League of 0, and a Total smaller than 3, and a Name of geremi?",2 -48874,What is the average rank for Hungary?,5 -48878,"What is the average Laps that have gregorio lavilla as the rider, with a grid greater than 13?",5 -48880,"What is the highest grid that has +44.866 as the time, with laps greater than 25?",1 -48889,What's the least amount of wins for Germany in the 1999 season having 0 points?,2 -48890,How many wins when the points are 0 and podiums are less than 0?,4 -48891,What's the fastest laps during the 1995 season having poles & podiums at 0?,4 -48892,"How many years have an Award of venice film festival, and a Title of lust, caution?",3 -48896,What is the average draw for 186 games?,5 -48897,What is the number of games for less than 2 seasons and more than 7 draws?,4 -48898,"What is the total number of losses for less than 48 games, and less than 7 draws?",3 -48899,"What is the total number of games with more than 18 loses, a Total League, and more than 317 draws?",3 -48906,What's the least 180's of John Part having a LWAT less than 28 with 100+ less than 180?,2 -48907,"What's the LWAT having more than 43 for 180s, 194 for 100+, and more than 128 for 140+?",5 -48908,What's the total 140+ when the 100+ is 173?,3 -48909,What's the 100+ when the 140+ is less than 128 and the LWAT of 29?,4 -48916,How many years have a Form album of the thing?,4 -48919,How many years were there albums by heat wave?,4 -48921,What is the lowest number of floors for the number 2 ranked Joyus Housing?,2 -48923,What is the rank for the city of sewri?,3 -48924,"What rank has a status of proposed, with 80 floors for Celestia Spaces 4?",5 -48929,What is the least amount of silver for Italy with a total less than 5?,2 -48930,What is the total for Austria when there is less than 1 bronze?,5 -48931,"What is the total when silver is more than 3, and rank is 2?",1 -48932,"What is the gold number when total is more than 1, and bronze is 0, and rank is 5?",4 -48941,Name the lowest Time of jamaica with a Lane larger than 4 and a Rank smaller than 1?,2 -48942,Name the lowest Rank with a Lane of 5 and a Time smaller than 11.06?,2 -48943,Name the lowest Rank of carmelita jeter with a Time smaller than 11.08?,2 -48944,When the points are 98 what is the draw?,3 -48962,"What is the average duration in 2007/08 with more than 3.8 in 2002/03, more than 8.9 in 2003/04, and less than 34.4 in 2001/02?",5 -48963,"What is the total duration in 2006/07 with 191,321 in 2003/04 and less than 160,920 in 2001/02?",3 -48965,"Which Laps have a Time/Retired of + 4 laps, and a Grid larger than 18?",5 -48983,What is the sum of the rank of the rower with an r note from Australia?,4 -48986,What rank did the time of 7:31.90 receive?,3 -48988,How many Episodes have a Romaji Title of slow dance?,4 -48989,How many Episodes have a Romaji Title of dragon zakura?,3 -48991,"Which Catalog has a Date of july 15, 2011?",5 -48999,"How many places have an Artist of augustė, and a Draw smaller than 6?",3 -49000,What is the latest year the world championships were held in Thun?,1 -49002,"What is the smallest ANSI code for adler township when Longitude is more than -101.333926, GEO ID is less than 3806700900, and Land ( sqmi ) is more than 35.84?",2 -49003,"Cass county has 0.008 Water (sqmi), less than 35.874 Land (sqmi), more than 35 Pop. (2010), and what average latitude?",5 -49008,"Which Year has a Venue of bydgoszcz, poland, and an Event of junior team?",5 -49010,Which Year has a Competition of commonwealth youth games?,5 -49011,What is the total for 1986?,3 -49013,What is the lowest rank for El Paso Natural Gas Company Building?,2 -49014,"What is the lowest 2013 population estimate of south africa, which has a percentage greater than 19.8 and a 2011 population greater than 51,770,561?",2 -49016,What is the lowest 2013 population estimate of the province with a 23.7 percentage?,2 -49018,What was the earliest year with a note of 18.04 m wl?,2 -49024,What was the rank of flori lang when his time was less than 22.27,4 -49025,"What lane had a heat after 12, a rank of 38 and a time larger than 22.67?",5 -49032,What is the Rank of the rower with a Time of 8:23.02?,3 -49033,What is the most gold when the rank is 7 and bronze is less than 0?,1 -49034,what is the most gold when the total is 7?,1 -49035,what is the least gold when the rank is 10 and silver is less than 0?,2 -49036,what is the lowest total when the nation is sweden (swe) and silver is less than 0?,2 -49037,"what is the average total when silver is more than 2, bronze is 12 and gold is less than 12?",5 -49038,What is the longitude with a latitude of 48.930222 with a Geo ID smaller than 3806755660?,3 -49040,What is the total longitude of Nogosek and a GEO ID larger than 3809357060?,3 -49041,What Band number has a Power (W) of 400 or less?,4 -49042,What Band's Power (W) is 400 or less?,1 -49054,"What is the lowest total medals when there were 0 gold medals, 0 silver medals, and more than 1 bronze medal?",2 -49055,"What is the sum of the bronze medals when there were less than 8 total medals, 0 silver medals and a rank of 9?",4 -49057,What was the average rank for the team that had more than 5 medals and more than 6 gold medals?,5 -49060,What is the greatest B score when the A score was less than 6.5?,1 -49063,What is the Week of the game against the Minnesota Vikings?,2 -49064,What is the Week of the game against Green Bay Packers?,5 -49066,"What is the Week number on October 5, 2003?",2 -49067,"What is the Week number with an Attendance of 62,123?",3 -49068,How many households are in Ottawa?,4 -49070,What is the sum of enrollments for schools located in Culver?,4 -49072,How many years was Reasons to be Pretty nominated for best play?,3 -49073,What is the first year that Reasons to be Pretty had a nominee for best performance by a leading actor in a play?,2 -49079,"What is average quantity, when DRG number is 99 011?",5 -49085,"When against is more than 1244 with less than 8 losses, what is the average of wins?",5 -49096,What is the rank of the person with more than 5 games played?,4 -49097,"How many golds have a bronze greater than 1, a silver greater than 1, with total as the rank?",3 -49098,"How many golds have a bronze greater than 1, total as the nation, and a silver less than 18?",3 -49099,How many bronzes have west germany as the nation?,4 -49100,"How many golds have denmark as the nation, with a total less than 1?",3 -49101,"How many totals have 1 for the gold, 12 for the rank, and a sliver greater than 0?",3 -49102,"What is the lowest silver that has 1 for the bronze, 1 as the total, 17 as the rank, with a gold less than 0?",2 -49108,What Year has an ISBN OF ISBN 4-06-182042-7?,5 -49109,What is the bronze number for the nation with less than 0 gold?,2 -49121,"what is the highest finishes when the points is less than 337, the stage wins is 2 and the wins is more than 0?",1 -49122,what is the average starts when the chassis is focus rs wrc 08 and finishes is more than 27?,5 -49123,what is the finishes when points is more than 337 and starts is more than 26?,4 -49124,"what is the average starts when the podiums is more than 0, stage wins is more than 39 and points is more than 456?",5 -49129,"With a Total of more than 149, what is Davis Love III's To par?",5 -49130,What is the Total of the Player with a To par of 6 and Year won after 1993?,2 -49131,What is the Year won of Davis Love III with a Total of less than 149?,3 -49141,"what is the least maglia rosa when the rank is 108=, the country is united kingdom and young rider is less than 0?",2 -49142,How many bronze medals for the United Kingdom when the silver was less than 0?,5 -49143,How many bronze medals for West Germany having a total more than 2?,3 -49144,What is the amount of silver for rank 11 having less than 0 gold?,2 -49152,"What is the average GEO ID with a latitude less than 46.57958, a latitude of -102.109898 and more than 35.99 square miles of land?",5 -49154,"What is the highest latitude when there are more than 0.518 square miles of water, a longitude less than -99.830606, and a population of 18?",1 -49155,What is the average lane for Australia?,5 -49156,What is the highest rank for Josefin Lillhage?,1 -49161,what is the most free when the total is 81.167 and the rank is higher than 23?,1 -49162,How many tracks have an unformatted capacity per side of 2000kb?,3 -49164,How many tracks have a single density?,3 -49171,What are the average league goals that have 2 (1) as the total apps?,5 -49172,"What is the highest league goals that have barry endean as the name, wirh FA cup apps greater than 0?",1 -49179,What's the lowest rank of Lane 3?,2 -49180,What's the highest lane of rank 4 with a time less than 24.72?,1 -49181,What's the time of Britta Steffen in a lane less than 4?,4 -49182,What's the lowest rank of the United States with a time less than 24.63?,2 -49191,what is the average races when points is 9 and poles is less than 0?,5 -49193,"how many times is races more than 14, position is 9th and wins less than 0?",3 -49201,"Which Attendance has a Score of 4–3, and Points smaller than 5?",1 -49203,"How much Attendance has an Arena of arrowhead pond of anaheim, and Points of 5?",4 -49204,"How much 1969 has a 1967 smaller than 0.73, and a 1964 larger than 0.07?",3 -49205,"Which 1964 has a Country of united states, and a 1969 smaller than 7.3?",2 -49206,"Which 1965 has a 1962 of 0.35000000000000003, and a 1967 smaller than 0.53?",2 -49213,What lane has a time of 24.83 and a heat less than 11?,4 -49214,What is the total number of heat for Chinyere Pigot?,3 -49218,What is the lowest number of bronze medals for a nation with fewer than 1 total medal?,2 -49229,What was the latest year that has a Rookie of the Year of omg wtf (brooklyn) and League Champion of bronx gridlock?,1 -49231,How many Points have an Arena of bell centre?,3 -49232,"How much Attendance has a Loss of divis (0–3–0), and Points smaller than 38?",4 -49233,"With a 1st run of 53.300 (7), and greater than 21 total, what is the average rank?",5 -49236,What is the sum number of year when Call of Duty 4: Modern Warfare was the game?,3 -49237,What is the earliest year when action was the genre?,2 -49238,What is the smallest year when Ubisoft Montreal was the developer (s)?,2 -49239,What is the latest year when Call of Duty 4: Modern Warfare was the game?,1 -49248,How much Enrollment has a School of shakamak?,3 -49256,What's the most league cup apps for Jimmy Lawson having 0 league cup goals?,1 -49257,What's the total goals for Alan Sweeney having 0 FA Cup goals and fewer than 0 League Cup apps?,5 -49258,What's the total number of league cup apps when the league goals were less than 0?,3 -49262,How many totals does cork have whose rank is larger than 2?,4 -49265,What was the highest number of gold medals when there were 0 silver medals?,1 -49266,What's Brazil's rank when it has notes of R?,3 -49267,What rank was the premier Sir John See?,3 -49274,"What is the FIPS code for the municipality that has an area of 114.76 sq mi (297.23 sq km) and had a 2010 population of less than 166,327?",5 -49275,"What is the FIPS code for the municipality that has an area of 58.60 sq mi (151.77 sq km) and had a 2010 population smaller than 166,327?",3 -49276,"In what year was Yauco, which had over 42,043 people in 2010, founded?",5 -49278,What is the attendance for a week smaller than 9 with a result of L 38-20?,1 -49281,"How many Deaths have a Fate of damaged, and a Tonnage (GRT) smaller than 4,917?",3 -49283,"How much tonnage has a Fate of sunk, and a Flag of great britain, and a Date of 26 september 1940, and Deaths of 2?",4 -49284,"Which tonnage has a Date of 26 september 1940, and a Ship Name of ashantian?",2 -49285,"What is the highest lane for Brazil, ranked less than 8?",1 -49286,What is the total population with less than 789 males?,3 -49287,"What is the lowest female number of the hiroo 1-chōme district, which has more than 1,666 households?",2 -49288,"What is the highest number of males where there are 1,202 females and more than 1,127 households?",1 -49289,"What is the total number of females where the total population is less than 2,195?",3 -49294,What is the rank if the person with a time of 1:40.626?,4 -49295,What is the rank of the person with a time of 1:44.757?,1 -49296,What is the rank of Israel?,1 -49299,What is the lowest Chorley with a 6 Preston and a 4 for West Lancashire?,2 -49300,What is the average rating for a Flyde that has a Burnley less than 0?,5 -49301,What is the highest rated West Lancashire with a Pendle greater than 1 and a Rossendale more than 2?,1 -49302,What was the average Chorley for the Labour party that had a Rossendale greater than 0 and a Pendle less than 1?,5 -49320,What is the average capacity for the vehicle having a navigator of Macneall?,5 -49324,What is the bronze with more than 2 gold and less than 14 total and 4 silver?,5 -49325,How many silvers are there with a total of 11?,4 -49326,How many silvers are there with more than 2 golds in Germany?,3 -49327,What is the average reaction for brigitte foster-hylton after heat 1?,5 -49329,What is the latest round for Pohang Steelers as the away team?,1 -49332,What is Joselito Escobar's Pick number?,4 -49346,"What is the lowest prominence for a peak with elevation of 3,615 meters?",2 -49347,"What is the Col entry for the peak with an elevation of 2,308 meters?",3 -49356,"Count the sum of Col (m) which has an Elevation (m) of 3,011, and a Country of equatorial guinea ( bioko )?",4 -49357,"COunt the sum of Prominence (m) of an Elevation (m) of 2,024?",4 -49358,Count the Prominence (m) of Col (m) smaller than 0?,5 -49359,"Name the lowest Col (m) with a Peak of pico basilé, and a Prominence (m) smaller than 3,011?",2 -49360,What is the Week of the game with TV Time of Fox 4:15ET?,3 -49389,"In what week was the December 21, 1969 game?",5 -49398,What was Christian Kubusch's lane when the heat was more than 2 and time was DNS?,4 -49399,What's Bulgaria's lane?,5 -49400,What's Great Britain's lane with a heat less than 3?,5 -49401,What's Spain's lane with a heat less than 4?,5 -49402,What's the heat in the lane less than 3 with a time of 14:48.39?,5 -49403,What's China's heat for Zhang Lin in a lane after 6?,4 -49409,What is the production number directed by Robert McKimson in series mm titled People Are Bunny?,4 -49417,COunt the average Enrollment in hope?,5 -49419,what is the lowest league goals when the league apps is 1 and the fa cup goals is more than 0?,2 -49420,what is the highest fa cup goals when the total goals is more than 3 and total apps is 31 (1)?,1 -49422,how many times is the total apps 1 and the fa cup goals less than 0 for bob mountain?,3 -49423,What is the highest attendance for the match against west ham united at the venue of a?,1 -49431,What's the CR number that has an LMS number less than 14761 and works of Hawthorn Leslie 3100?,5 -49446,Name the highest Entered of Eliminated by of rosey and the hurricane?,1 -49447,"Which Episodes have a TV Station of ntv, and a Japanese Title of あいのうた?",5 -49449,"Which Episodes have a TV Station of tbs, and a Japanese Title of 今夜ひとりのベッドで?",1 -49459,Which Quantity has an Axle arrangement of 2′c h2?,5 -49463,"How much 2000 has a 2005 smaller than 583,590, and a 2009 smaller than 156,761, and a 2002 larger than 1,393,020?",4 -49464,"Which 2011 has a 2004 smaller than 271,691, and a Country or territory of vietnam, and a 2009 larger than 265,414?",5 -49465,"Which 2007 has a Country or territory of china, and a 2002 smaller than 670,099?",2 -49466,"what is the giro wins when jerseys is 2, country is portugal and young rider is more than 0?",4 -49467,"what is the highest jersey when points is 0, different holders is less than 3, giro wins is less than 1 and young rider is more than 1?",1 -49468,"how many times is young rider more than 0, country is france and points less than 1?",3 -49469,what is the least different holders when the country is ireland and giro wins is less than 1?,2 -49471,What is the Rank of the Rider with a Speed of 111.072mph in Team 250CC Honda?,5 -49489,What's the highest Year Left that's got a Conference Joined of Sagamore with a Year Joined larger than 1942?,1 -49490,What's the highest Year Left for the School of Danville?,1 -49497,What is the total S ÷ D with a 3298 (1986) [3 H] nizoxetine and an N ÷ D greater than 37.01?,3 -49499,What is the sum of the [3 H]CFT with an N ÷ D less than 393.8 and a [3H] paroxetine of 1045 (45)?,4 -49500,What is the highest S ÷ D with a 2420 (220) [3H] paroxetine and an N ÷ D less than 393.8?,1 -49508,The film titled Bosko's fox hunt had what as the smallest production number?,2 -49509,What is the smallest production number for the LT series with the Dumb Patrol title?,2 -49510,What was the average capacity for vélez sársfield?,5 -49514,What is total number of years that has genre of first-person shooter?,4 -49515,Which year is the lowest for genre of action-adventure?,2 -49519,"Which the lowest Against has a Status of tour match, and a Venue of ravenhill , belfast?",2 -49520,"Name the average Against that has a Venue of twickenham , london on 25 november 1978?",5 -49521,Name the highest Against on 21 november 1978?,1 -49536,"What is the total latitude of the greenland township with more than 34.846 sqmi of land, a geo id less than 3805529660, and an ANSI code greater than 1036405?",3 -49537,"What is the sum of the land in sq mi with an ansi code less than 1036538, a 2010 population less than 42, a longitude greater than -99.442872, and more than 0.882 sq mi of water?",4 -49538,"What is the highest water (sq mi) of the township glenila, which has more than 33.576 sq mi of land and a latitude greater than 48.832189?",1 -49539,"What is the sum of the 2010 population with a latitude greater than 47.710905, a longitude of -101.79876, and less than 35.695 sq mi of land?",4 -49540,What is the lowest land in sq mi with a longitude of -99.172785 and less than 0.973 sq mi of water?,2 -49546,"What is the total engine capacity of the a4 transmission, which has an urban mpg-US greater than 19, an mpg-us extra-urban greater than 38.6, and an aveo model?",3 -49547,"What is the highest engine capacity with a bmw manufacturer, an mpg-UK extra-urban of 52.3, a 176 CO 2 g/km, and an mpg-us urban greater than 27.3?",1 -49552,"what is the average ga cup goals when the league cup apps is 2, the fa cup apps is 3 and the league goals is 3?",5 -49553,what is the highest fa cup goals when flt goals is more than 0?,1 -49555,"How much Silver has a Total larger than 9, and a Gold of 14?",3 -49557,"How much Silver has a Rank of 4, and a Bronze smaller than 12?",3 -49558,How many bronzes have a Total of 9?,4 -49559,"How much Gold has a Nation of mongolia, and a Total larger than 18?",4 -49564,"What is the rank of the athletes that have Notes of fb, and a Time of 6:47.30?",4 -49565,What is the least rank for athletes with a time of 6:36.65?,2 -49566,What is the average react for a rank more than 8?,5 -49567,"What is the highest rank for the react of 0.198, and the time more than 20.42?",1 -49568,"What is the sum of time with a lane larger than 6, a nationality of canada, and the react smaller than 0.151?",4 -49579,"Which Points have a Club of london wasps, and a Drop larger than 1?",5 -49580,"How many Points have a Name of stephen myler, and Tries smaller than 0?",4 -49581,"How many drops have Tries smaller than 5, and Points larger than 212?",3 -49582,What is the pick number for New Mexico?,5 -49588,"What is the lowest number of Electorates (2003) in District bhind, Reserved for none, and Constituency Number 11?",2 -49592,"Which Year has a Manager of bobby dews, and Playoffs of lost in 1st round?",2 -49593,How many years have a Record of 73-65?,3 -49598,What is the latest year that ended with a 3rd day of rowed-over?,1 -49601,What is the sum of the heights for the Cornell Big Red?,4 -49603,What is the lowest listed In service for a vessel of xavery czernicki class?,2 -49606,What is the highest In service for a vessel with a listed Unit of 12th minesweeper squadron?,1 -49610,What is the average draw number of an entrant with a time of 22:29?,5 -49613,How many countries sampled has a world ranking of 33 in 2010 and less than 3 ranking in Latin America?,4 -49621,What is the lowest viewership in millions of the episode broadcast on 7 September 2001?,2 -49623,How many times is the points 8 and the place larger than 8?,3 -49624,what is the average draw when the place is 5 and points more than 15?,5 -49625,what is the highest draw when points is less than 11 and language is norwegian?,1 -49626,What is the total number of picks from the PBA team of purefoods tender juicy hotdogs?,3 -49631,What is the Population of the Place with an Area (km 2) larger than 498.77?,3 -49632,What is the Population of Tshepiso with a Code of 70409 or smaller and an Area (km 2) smaller than 5.97?,2 -49634,What's the lane number when time was 20.45 and the react was less than 0.164?,1 -49639,How many years had a Venue of eindhoven?,3 -49654,"How many Total Positions have a 2002 Position smaller than 3, and a Team of shandong luneng?",3 -49660,What is the total number of league goals for Simon Charlton?,3 -49664,"What is the lowest poles that have 0 as a win, 0 as the top 5, with 66th as the postion?",2 -49693,What is Hungary's highest Rank?,1 -49697,Which Heat has a Rank of 8?,1 -49706,what is the total when the rank is total and the silver is less than 10?,4 -49707,what is the least silver when gold is 0?,2 -49708,what is the total silver when total is 30 and bronze is more than 10?,3 -49709,"what is the total when bronze is more than 1, nation is hong kong (hkg) and gold is less than 3?",4 -49711,Peter Hopwood has how many laps in all?,3 -49713,"What is the number of matches with an average larger than 6.33, with a rank of 1?",4 -49714,"What is the total when matches is less than 3, and rank is smaller than 2?",2 -49715,"What is the average when the tally is 3–11, with more than 4 matches??",3 -49716,What rank has an average of 6.33?,5 -49717,What is the average number of laps with a dnf pos.?,5 -49718,What is the lowest Rank for a Guam Player?,2 -49719,What is the Rank of the Guam Player?,5 -49720,"Which Week has a Result of l 20–13, and an Attendance larger than 49,598?",1 -49721,"How many weeks have an Opponent of at san francisco 49ers, and an Attendance smaller than 34,354?",3 -49723,What week did the dallas cowboys play?,4 -49724,Name the average React of the Time smaller than 20.05 in jamaica with a Lane larger than 5?,5 -49734,What is the lowest number pick from san diego chargers?,2 -49740,"What is the total heat number of sun yang, who has a lane less than 2?",3 -49748,What is the enrollment number for Rockville?,3 -49750,What is the Attendance of the game against Minnesota Vikings?,3 -49751,what is the average score for søren kjeldsen?,5 -49752,What's the against of South Warrnambool when the draw is less than 0?,4 -49753,"What's the smallest draw of Warrnambool when the against was less than 1299, more than 7 wins, and less than 2 losses?",2 -49754,What's the against when the draw was more than 0 and had 13 losses?,3 -49755,"What's the against when there were more than 2 losses, more than 3 wins, and draws more than 0?",5 -49756,What's the highest amount of losses of Camperdown when the against was less than 945?,1 -49760,In what year was the venue Gold Coast and the Men's 35s NSW?,4 -49763,"What is the average for the team with highest less than 13,500 and games played are fewer than 5?",2 -49764,what is the sum of league goals when the fa cup goals is more than 0?,4 -49765,"what is the average league cup goals when the league cup apps is 4, league goals is less than 4, fa cup apps is 1 and total apps is 35?",5 -49766,what is the average league cup goals when the position is df and total goals is more than 4?,5 -49767,"what is the average fa cup goals when the fa cup apps is 0, total goals is less than 1 and position is df?",5 -49768,What year had a score of 0.586?,3 -49783,What is the total number of rank for the country of greece?,3 -49786,"What shirt No has a Birth Date of April 12, 1986 (age27)?",2 -49788,"What is the shirt no with a position of setter, a nationality of Italy, and height larger than 172?",4 -49792,What is the fewest number of bronze medals won among the nations ranked 12 that won no gold medals and 1 medal overall?,2 -49800,"Which Silver has a Total of 11, and a Gold smaller than 8?",2 -49801,"Which Silver has a Total of 1, and a Rank of 12?",2 -49805,Which Size has a County of 62 perry?,1 -49817,"What is the average total when the silver is larger than 2, and a gold larger than 1, and a nation of total?",5 -49818,"When the rank is 11, and bronze a smaller than 1 what is the lowest total?",2 -49819,"What was the A Score when the B Score was 9.05, and position was larger than 6?",5 -49820,What is the total when the B Score was 9.15 for Cheng Fei ( chn )?,5 -49821,"What was their position when the score of B was less than 9.05, a total was 15.275, and A Score larger than 6.4?",5 -49823,What year had Third-Person Shooter?,5 -49824,What year was Portal?,1 -49837,What is the highest week that has espn 8:30pm as the TV time?,1 -49840,"What's the Dolphin Points when the attendance was less than 69,313 and had an opponent of the Buffalo Bills?",5 -49841,"What's the game with an attendance of 71,962?",2 -49849,What is the lowest game when the score is 102-104?,2 -49852,Which Pendle has a Burnley smaller than 0?,4 -49853,How much Rossendale has a Fylde smaller than 0?,3 -49854,How much Hyndburn has a Fylde larger than 3?,4 -49855,"How much Burnley has a Fylde smaller than 1, and a Rossendale larger than 0?",4 -49862,"What is the lowest attendance for December 14, 1958 after week 12?",2 -49863,What is the total for the week in the game against the Chicago Bears,3 -49864,"What is the highest attendance for December 14, 1958 for after week 12",1 -49883,"How many Byes have Wins smaller than 11, and a Wimmera FL of minyip murtoa, and Losses smaller than 6?",3 -49884,"Which Losses have an Against smaller than 1018, and Wins smaller than 14?",5 -49885,"Which Byes have an Against larger than 1018, and a Wimmera FL of horsham diggers?",2 -49886,Which Losses have a Wimmera FL of minyip murtoa?,5 -49887,"Which Against has Losses smaller than 5, and a Wimmera FL of warrack eagles, and Draws smaller than 0?",5 -49903,What lane was Henrique Barbosa in?,3 -49907,What year was The Walking Dead?,3 -49910,"Which Elevation (m) has a Prominence (m) of 2,876, and a Col (m) larger than 0?",4 -49911,"How much Elevation (m) has a Prominence (m) larger than 2,876?",3 -49918,"What is the most silver medals when the total is more than 2 medals, and with a rank of total, and the number of gold medals is greater than 44?",1 -49919,"What is the fewest gold medals when there is 0 bronze medals, and the rank is 19, and silver medals are less than 1?",2 -49920,"What is the largest amount of bronze medals when the silver medals are less than 1, and Belgium (BEL) is the nation, and the gold medals are less than 0?",1 -49921,"With silver medals less than 1, and total medals less than 2, what is the most bronze medals?",1 -49924,"Can you tell me the total number of Byes that has the Wins of 14, and the Losses larger than 2?",3 -49925,"Can you tell me the average Wins that has the Against of 1132, and the Losses smaller than 7?",5 -49931,What is the year that the Gary team with mascot of the Tornado joined?,2 -49933,What is the year that the Roughriders left the conference?,1 -49937,"How many losses have jake sharp as the name, with a long less than 30?",3 -49938,"What is the average long that has 1581 as a gain, with a loss less than 308?",5 -49939,"How many gains have a long greater than 8, with avg/g of 124.9?",4 -49940,"How many longs have a gain less than 379, and 0.8 as an avg/g?",4 -49941,"What is the lowest gain that has toben opurum as the name, with an avg/g less than 54.1?",2 -49943,"Which Points have a Grid larger than 7, and a Driver of alex tagliani, and a Lapse smaller than 85?",1 -49944,What is the total number of wins for a nation that played fewer than 8 matches and a Wins percentage of 62.5%?,3 -49945,What is the highest number of matches for a nation with a Loses percentage of 26.67% and fewer than 90 draws?,1 -49948,What is the lowest final score of the American Cup competition before 2009?,2 -49957,What was John Jones's pick#?,4 -49958,"What was the pick # of the player who has a hometown/school of Atlanta, GA?",5 -49962,What is the enrollment for the AAAA class in IHSAA?,4 -49965,What is the total enrollment at Laville?,3 -49966,What is the highest average for teams ranked higher than 9?,1 -49972,What is the least amount of wins when against is 1314?,2 -49973,"What is the number of against when the wins were 8, and a Club of South Warrnambool, with less than 0 draws?",4 -49974,"What is the number of wins when the against is larger than 1155, for Warrnambool, with more than 0 draws?",5 -49981,What is the Week of the game with a Result of L 24-0?,1 -49982,"What is the Week number on December 18, 1960?",3 -49985,How many picks were taken before round 3 and played Linebacker?,3 -49986,What is the average number of silver medals won among nations that won 9 medals total?,5 -49987,Which Round has a Pick larger than 179?,1 -49988,What is jamar martin's highest pick?,1 -49994,What's the most enrolled having the dragons for a mascot and an AAA for the IHSAA Class?,1 -50000,How many picks on average did Jay Bruchak have before round 6?,5 -50001,How many rounds did Pierre Bland have a pick larger than 148?,3 -50002,What was the earliest round that Purdue had a pick larger than 10?,2 -50003,How many picks did Jay Bruchak have?,3 -50006,"How many weeks have an Attendance of 62,289?",4 -50007,"Which Week has an Attendance larger than 65,070?",1 -50008,"Which Week has an Opponent of atlanta falcons, and an Attendance smaller than 63,114?",2 -50010,"What's the population with a code more than 90902 and an area less than 1,335.47?",2 -50011,"What's the most area of Bochum Part 2 with a population less than 15,911?",1 -50017,"How many draws are there when there are 11 wins, and more than 7 losses?",4 -50018,What is the draws when there are less than 3 losses and more than 16 wins?,1 -50019,"What is the wins when there are 5 losses, and against is more than 1205?",1 -50020,"What is the losses when Sunrayia FL is Red Cliffs, and the against is more than 2294?",5 -50021,"What is the number against when losses are smaller than 3, and wins arelarger than 16?",3 -50025,"what is the average dynamo when draw is more than 0, played is less than 15 and spartak is more than 1?",5 -50026,what is the highest spartak when played is less than 15 and dynamo is less than 3?,1 -50027,what is the most draw when the competition is soviet league and dynamo is more than 34?,1 -50028,what is the sum of spartak when played is 102 and draw is less than 19?,4 -50029,"what is the least dynamo when spartak is more than 9, competition is totals and draw is more than 24?",2 -50033,What is Anna Rogowska's average result?,5 -50035,"What is the sum of staterooms in with a year buit of 2008, and a crew less than 28?",4 -50036,"What is the total for guests with a ship name of rv indochina, and a crew smaller than 28?",3 -50038,what is the average rank when the day 1 is less than 71 and the country is romania?,5 -50039,how many times is the athlete jin di and the total less than 118?,3 -50040,"What is the highest goal for a GEO nat., that ended after 2010?",1 -50045,What was the voting order when bunny carr was the commentator?,4 -50048,Which Bronze has a Total smaller than 1?,5 -50049,"How much Silver has a Bronze larger than 1, and a Gold of 0, and a Rank smaller than 4?",3 -50050,"Which Bronze has a Rank of 4, and a Gold smaller than 0?",1 -50051,"How much Gold has a Bronze smaller than 2, and a Silver of 0, and a Rank larger than 3?",4 -50053,What is the total number of people in 2011 speaking the mother tongue language spoken by 120 in 2006?,3 -50054,How many people ha Romanian as their mother tongue in 2006?,1 -50057,What's the total number of points when the English translation is Long Live Life and the draw is less than 2?,3 -50059,What are the lowest points when the language is Portuguese?,2 -50061,What's the lowest Col ranked less than 6 with an Island of Molokaʻi?,2 -50063,What's the rank when the col (m) is less than 33 and has a summit of Haleakalā?,4 -50079,How many draw is in a place that is less than 1?,3 -50081,Emilya Valenti has what draw average?,5 -50086,what is the score for the 5th position and a score less than 7,2 -50087,what is the total scored for the 8th position and a score more than 6.6,1 -50090,"Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Body Length/mm larger than 18.4?",2 -50091,Which Body Length/mm has a Lead Pitch/mm smaller than 0.5?,5 -50092,"How much Body Width/mm has a Body Length/mm of 18.4, and Pins of 40?",3 -50093,"Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Part Number of tsop48?",2 -50094,"Which Lead Pitch/mm has a Part Number of tsop40, and a Body Length/mm larger than 18.4?",1 -50095,What was the least attendance when the time was 3:15?,2 -50097,"Which Bronze has a Gold larger than 1, and a Total larger than 11, and a Silver larger than 5?",5 -50098,How many silvers have more than 2 golds?,3 -50107,How many Gold medals for the Nations with 6 or more Bronze medals and 18 or more Silver?,5 -50108,How many Gold medals did the Soviet Union receive?,5 -50113,"What is the lowest league goals that has fw as the position, total goals greater than 9, with league cup goals greater than 4?",2 -50114,"What is the earliest year that a team event was included at Vilamoura, Portugal?",2 -50117,"What is the number of points for the song ""viva rock 'n' roll"", with more than 3 Draws?",5 -50119,"What is the highest Place with more than 3 draws, for the Song ""dajana"", with less than 31 points?",1 -50131,what is the earliest year when the result is won and the role/episode is fox mulder?,2 -50134,What is the average total of the 0-8 tally?,5 -50135,What is the total rank of the match with tipperary as the opposition?,3 -50136,"What is the lowest total of player tommy ring, who has a rank greater than 1?",2 -50137,What is the average rank of the match where offaly was the opposition and the total was greater than 9?,5 -50143,"What is number of silver for the country with more than 0 gold, rank of 14, and more than 4 bronze?",3 -50144,What is the number of gold for the country ranked 19?,4 -50145,What is the least amount of silver when there is less than 0 bronze?,2 -50146,"What is the most bronze when the total is 14, and there are more than 6 gold?",1 -50151,"What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208?",4 -50159,How many points did team Rothmans Honda have in 1992?,2 -50161,How many total points were in 1992?,3 -50164,"Which FA Cup Goals have League Cup Apps larger than 0, and a Name of trevor cherry?",1 -50165,How many League Goals have League Cup Goals smaller than 0?,4 -50169,What is the lowest number of episodes in a series with an airing date of 12 jan- 6 feb?,2 -50179,How many gold medals did Brazil win with a total of more than 55 medals?,5 -50180,How many teams won more than 2 silver medals and fewer than 2 Bronze medals?,3 -50181,What is the fewest gold medals won by Greece?,2 -50182,"What is the lowest rank of the United States, with fewer than 4 bronze medals?",2 -50183,What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals?,1 -50184,"Which React has a Lane smaller than 4, and a Rank larger than 4, and a Time larger than 23.22?",5 -50185,"What shows for against when draws are 0, and losses are 16?",5 -50186,"What is the highest number of wins when draws are larger than 1, and byes are larger than 0?",1 -50188,What is the sum of winners when 1983 is the years won?,3 -50189,Which Rank has a Total of 12?,5 -50191,"How much Rank has a Tally of 0-10, and an Opposition of cork?",3 -50192,"Which Total has a Rank smaller than 3, and a County of cork?",2 -50193,Which Rank has a Tally of 4-0?,5 -50194,"Which Lane has a Rank larger than 3, and a Time larger than 45.63, and a Reaction smaller than 0.28800000000000003, and an Athlete of geiner mosquera?",1 -50195,"How many reactions have an Athlete of alleyne francique, and a Lane larger than 9?",3 -50197,"What is the lowest year that has all-ireland hurling final as the competition, and 6-08 (24) as the waterford score?",2 -50206,What is the total sum ranked less than 5 with a 37.076 (2) 3rd run?,4 -50212,What is the sum of the prominence in m of slovakia?,4 -50214,"Whta is the lowest col in m of gerlachovský štít peak, which has an elevation greater than 2,655 m?",2 -50215,"What is the lowest elevation in m of moldoveanu peak, which has a prominence in m less than 2,103 and a col in m less than 498?",2 -50216,"What is the average prominence in m of pietrosul rodnei peak, which has an elevation less than 2,303?",5 -50218,"What is the B Score when the total is more than 16.125, and position is 3rd?",4 -50219,"What is the lowest A Score when the B Score is 9.15, and total is 16.05?",2 -50221,What rank was Lassi Karonen?,3 -50222,What was the rank when then time was 7:52.53?,2 -50229,"Which Water (sqmi) has a Pop (2010) of 359, and a Longitude smaller than -97.176811?",1 -50230,"Which Land (sqmi) has a Water (sqmi) smaller than 0.04, and a Longitude of -96.794706?",2 -50231,"How much Latitude has a Water (sqmi) of 0.267, and an ANSI code larger than 1759605?",4 -50232,"Which ANSI code has a GEO ID larger than 3809927140, and a Water (sqmi) smaller than 0.492, and a Pop (2010) of 37, and a Latitude larger than 48.245979?",2 -50239,"Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels?",5 -50240,"How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del?",3 -50241,"What is the 1957 number when the 1955 is smaller than 0.63, and 1952 is larger than 0.22?",3 -50242,What is the 1952 rate when the 1954 is more than 4.2?,4 -50243,"What is the 1955 rate when the 1956 is more than 2.9, and 1953 is larger than 4.5?",4 -50245,How many players were signed from Sevilla?,3 -50246,In what Week resulting in the bottom 3 was Endre Jansen Partner?,1 -50248,In what Week was the Locking Dance?,1 -50253,What was the highest peak position for the album one of the boys?,1 -50254,How many sales had a peak position of 1 and a certification of 6x platinum?,3 -50256,How many sales had a peak position more than 2 and a Certification of 3x platinum?,3 -50260,"Which Bronze has a Nation of austria, and a Total larger than 6?",1 -50262,"Which Total has a Rank of 5, and a Bronze smaller than 0?",5 -50263,"Which Total has a Bronze of 5, and a Silver smaller than 1?",2 -50264,What is the highest year with a formula of Grand Prix?,1 -50267,How many years had a formula of Grand Prix?,3 -50269,What is the 2010 total for ghana?,3 -50271,What is the average lane for Kenya with react larger than 0.212?,5 -50272,what is the highest rank for tim maeyens?,1 -50277,What is the sum of the gold medals of the nation with 4 silvers and more than 6 total medals?,4 -50278,"What is the highest number of bronze medals of west germany, which has more than 0 golds?",1 -50279,"What is the average total medals of the soviet union, which has more than 2 bronze and more than 0 silver medals?",5 -50280,"What year did the ship Europa, have the dates of 14 – 23 October?",5 -50290,How many League Goals have an FA Cup Apps of 0 (1)?,3 -50291,What is the lowest round number in which Will Wilcox was selected?,2 -50293,"Which Col (m) has an Elevation (m) smaller than 1,624?",2 -50294,"How much Elevation (m) has a Prominence (m) larger than 1,754?",4 -50295,"Which Col (m) has a Prominence (m) larger than 1,519, and a Peak of jiehkkevárri, and an Elevation (m) larger than 1,834?",2 -50296,What is the highest score when the 1st half is smaller than 289 and rank smaller than 61?,1 -50297,What is the lowest first half when the score is larger than 621 and the rank 35?,2 -50300,What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals?,1 -50310,What round did the match at the Golden Trophy 1999 event end?,4 -50316,"What is the lowest rank that has university park, pa as the location?",2 -50324,What was the year of Bridget Jones: The Edge of Reason that was nominated?,2 -50351,"What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941?",2 -50352,"What is the lowest week that has 51,499 as the attendance?",2 -50363,What is the lane total when rank is 2?,4 -50365,"Which Floors have a Pinnacle height ft (m) of 1,136 (346), and a Pinn Rank larger than 4?",5 -50366,"How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990?",4 -50367,"Which Floors have a Pinnacle height ft (m) of 995 (303), and an Std Rank larger than 6?",1 -50368,What is the average time with a rank lower than 2 for Andy Turner?,5 -50370,What is the lowest year when the city is casablanca?,2 -50371,What year was the expansion in the city of San Juan?,3 -50383,What episode has average ratings of 7.4%?,5 -50384,What is the episode on Fuji TV titled Absolute Boyfriend?,2 -50385,What is the episode on NHK with average ratings of 9.2%?,3 -50399,What was the rank for Great Britain?,3 -50411,"what is the rank for athlete hauffe, seifert, kaeufer, adamski?",4 -50424,"Of the series that last aired August 20, 2010, what is the lowest number of seasons?",2 -50425,"Of the series that first aired April 8, 2011, what is the total number of episodes?",4 -50426,What's the total when the position was more than 6 and had an A Score of less than 7.6?,1 -50427,What's the total when A Score was less than 6.9?,5 -50428,What's the total of Water (sqmi) with a Land (sqmi) of 35.918 and has a Longitude that is smaller than -97.115459?,4 -50429,What;s the total of Longitude with an ANSI code of 1036573 and has Water (sqmi) that is smaller than 0.404?,3 -50430,What's the lowest listed longitude that has a Latitude of 46.843963 and Water (sqmi) that is smaller than 0.052000000000000005?,2 -50431,What is the total heat ranked higher than 7?,4 -50436,"What is the lowest pick of a player for the SS, P Position for the Minnesota Twins?",2 -50438,what is the rank when the assumed office is 9 april 1903?,4 -50441,what is the rank when assumed office on 12 may 1857?,4 -50442,What is the average v-band for Ka-band values under 33 and Q-bands of 1?,5 -50445,"What year has a Nominee of —, and a Result of nominated?",5 -50454,"When earnings ($) is more than 583,796 after 1998 with 1 LPGA wins and greater than 10 Money list rank, what is the smallest average?",2 -50455,"In 2005 the earnings is less than 615,499 with less than 2 LPGA wins and what smallest Money list rank?",2 -50456,"What is the sum of money list rank after 1999 when the average is less than 73.27 and earnings is 583,796?",3 -50459,"What is the average enrollment 08=09, for the team that had a previous conference of lake and IHSAA class of 3A?",5 -50470,Churai has what as the fewest number of electorates?,2 -50487,what is the highest rank when the time is 7:52.65?,1 -50491,What is the most time for the swimmer from South Africa who was in a lane greater than 3?,1 -50493,what is the round when the pick # is less than 236 and the position is offensive guard?,5 -50501,How many events did clay win?,3 -50504,"Which Event has a Surface of semifinal, and a Winner of hard (i)?",1 -50506,"What year was finish Toulouse, and stage was larger than 12?",4 -50507,"What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre?",1 -50514,"How many Games have Years at club of 1971–1974, and a Debut year larger than 1971?",4 -50515,"Which Games have Years at club of 1974–1975, and Goals of 4?",5 -50517,"Which Games have Years at club of 1977, and Goals of 17, and a Debut year smaller than 1977?",5 -50518,"Which Goals have Games smaller than 41, and a Player of mark amos?",2 -50519,What is Melaine Walker's Rank?,4 -50528,How many gold medals did Denmark win?,2 -50529,What is the total number of gold medals won among nations that won more than 27 bronze and less than 305 medals total?,3 -50530,"How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total?",3 -50531,"What is the highest championship that has 1 as the league cup, and 17 as the total?",1 -50532,How many league cups have an FA Cup less than 0?,3 -50534,"What is the average rank of west germany (frg), which has more than 1 silver, less than 11 gold, and 2 bronze medals?",5 -50557,What is the lowest heat number for a swimmer with a time of 2:34.94?,2 -50558,What is the rank of the player from Ukraine with react less than 0.26?,3 -50559,"What was the highest week with a w 21-17 result, and more than 45,254 in attendance?",1 -50571,"Which Size has an IHSAA Class of aa, and a Location of milan?",4 -50575,What lane number was Hungary and had a heat of 4?,3 -50594,What's the most melamine content that has more than 1 samples failed and produced by Guangzhou Jinding Dairy Products Factory?,1 -50596,What the most samples failed for 可淇牌嬰幼兒配方乳粉 and had less than 1 samples taken?,1 -50597,How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4?,4 -50603,What is the earliest closed year in the country of france?,2 -50614,What is the sum of heat for christophe lebon when lane is less than 4?,3 -50616,Serbia has a heat less than 2 and what sum of rank?,3 -50617,"When rank is 33, what is the smallest lane?",2 -50619,Which Year Introduced has a Memory (GB) of 0.125–2?,1 -50631,What is the production number for Bell Hoppy in the MM Series?,3 -50632,How much Scored has Losses smaller than 0?,4 -50633,"Which Wins have Losses smaller than 6, and a Position of 4, and Played larger than 9?",2 -50634,"How much Conceded has Wins smaller than 3, and Points larger than 11?",3 -50635,"Which Draws has Points smaller than 15, and a Conceded larger than 10, and a Position larger than 8, and Wins of 1?",2 -50636,How many losses have 11 points?,3 -50639,"What is the average number for the song ""O Sudha""?",5 -50642,what is the fa cup goals when total apps is 10 (4)?,4 -50643,"how many times is the fa cup apps more than 0, the position mf and the league goals 4?",3 -50645,What is the total number of electorates in 2009 with a constituency of 193?,3 -50648,"What is the week for November 28, 1982?",2 -50650,"What is the attendance in a week earlier than 4, and result is w 31-20?",5 -50654,How many different dates are there for founded teams for the venue of champion window field?,3 -50656,"How much Gross Domestic Product has a US Dollar Exchange of 12.19 algerian dinars, and an Inflation Index (2000=100) larger than 22?",4 -50657,Which Gross Domestic Product has an Inflation Index (2000=100) smaller than 9.3?,5 -50658,"Which Inflation Index (2000=100) has a Per Capita Income (as % of USA) of 10.65, and a Year smaller than 1990?",1 -50664,What is the earliest year with a label-Nr of st-43?,2 -50670,What is the Attendance of the game in Week 12?,1 -50675,What is the game number for series 4-2?,3 -50677,What is the game number on April 7?,3 -50679,What was the production number of the episode titel of pre-hysterical hare?,3 -50683,"How many lanes have a Time of 53.61, and a Rank larger than 3?",4 -50689,"How much Enrollment has an IHSAA Class of aaaaa, and a Mascot of spartans?",3 -50690,How much Enrollment has a School of fort wayne homestead?,4 -50694,What is the highest pick number for a pick drafted by the denver broncos?,1 -50696,"How many weeks has 54,187 as the attendance?",3 -50697,"How many weeks have an attendance greater than 55,121, and l 27-7 as the result?",4 -50700,What is the Rank of the Swimmer with a Time of 2:25.65 in a Lane larger than 3?,5 -50701,What is the Rank of Qi Hui?,3 -50702,"How many Forfeits have Wins smaller than 8, and Losses larger than 16?",3 -50703,How many Losses have a Millewa of nangiloc?,3 -50704,How many Losses have Draws larger than 0?,1 -50706,What is the average rank of Elise Matthysen in lanes under 8?,5 -50717,What is the rank for the man from China with notes of QS?,1 -50718,What is the rank for the competitor from Bulgaria?,2 -50723,What is the highest total for players with under 2 Egyptian Premier League goals and 0 Egypt Cup goals?,1 -50724,"What is the aveage Egypt Cup value for players with 0 CAF Champions League goals, 6 Egyptian Premier League goals, and totals under 6?",5 -50725,how many times is gold more than 0 and the rank less than 2?,3 -50726,what is the highest total when the nation is france and silver is more than 1?,1 -50727,what is the least silver for germany when gold is more than 4?,2 -50728,"How many times is the total less than 15, rank less than 5, bronze is 4 and gold smaller than 3?",3 -50732,What is the total of Barangay with an area larger than 865.13?,4 -50733,What is the lowest population density for the district of Santa Cruz and a Barangay larger than 82?,2 -50734,"What is the highest population density that is less than 115,942 and a Barangay less than 82?",1 -50735,"What is the total population with a population density less than 29,384.8 in San Nicolas?",4 -50736,What is the average number of golds for teams in rank 17 with more than 4 silver?,5 -50737,"What is the average total for teams with under 34 bronzes, 0 silver, and under 14 gold?",5 -50738,What is the fewest number of golds for teams with 0 silver?,2 -50744,"What is the least rank for the premier that assumed office on 17 may 1919 and was in office for 7 years, 335 days?",2 -50746,"What average rank of the premier has NSW as the state, Liberalism as the party, and 22 March 1877 was the assumed office?",5 -50753,What is the total number of medals for West Germany with more than 1 bronze medal and more than 2 gold medals?,3 -50758,What is the sum of the ranks for bulgaria?,4 -50766,"Can you tell me the average Total that has the Silver larger than 1, and the Bronze smaller than 8?",5 -50767,"What was the highest number of bronze medals when there were a total of 4 medals, 1 silver medals, and less than 2 medals?",1 -50768,Count the Pommel Horse that has Rings smaller than 59.85 and a Team Total larger than 361.2?,4 -50769,Name the highest Parallel Bars of the united states with a Vault smaller than 63.85?,1 -50770,Name the highest Horizontal Bar which is in france and Rings smaller than 58.975?,1 -50772,what is the place when the televote/sms is 2.39%?,4 -50773,how many times was the televote/sms 2.39% and the place more than 9?,3 -50775,How many production numbers have a Title of bosko in dutch?,4 -50777,"How many Goals have Years at club of 1961–1966, and a Debut year larger than 1961?",3 -50778,"Which Debut year has Goals of 0, and Years at club of 1963, and Games larger than 5?",5 -50779,"Which Debut year has a Player of bob hayton, and Games smaller than 2?",5 -50790,How many times is avg/g 2?,3 -50791,what is the avg/g for john conner when long is less than 25?,4 -50803,"what is the earliest year when the champion team members are charisse borromeo, jennifer ong, larissa co?",2 -50806,What is the highest total number of medals for a team ranked smaller than 1 and had 20 gold medals?,1 -50808,What is the highest total medals when there were 0 gold medals and 1 silver?,1 -50818,What sum of draw had more than 22 in Jury and a Televote of 130?,4 -50819,What is the total of the jury that is 2nd place and the total is larger than 190?,4 -50820,"What's the average L/km combines when the L/100km Urban is 13.9, the mpg-UK combined is more than 28.5 and the mpg-UK extra urban is less than 38.7?",5 -50821,"What's the least mpg-UK combined when the mpg-UK urban is 25.4, the L/100km extra urban is less than 6.9 and the L/100km urban is more than 11.1?",2 -50822,What's the CO2 g/km of a Fiat running on diesel with the L/100km urban more than 6.3 and an mpg-UK combined of 43.5?,3 -50823,"What's the total L/100km extra urban fueled by diesel, when the mpg-UK combines is more than 19.2, mpg-US is less than 50 and the L/100m combined is less than 5.7?",3 -50824,"What's the engine capacity when the mpg-UK urban is less than 12.2, the mpg-UK extra urban is less than 18.8 and the mpg-US turban is less than 7.2?",4 -50825,What's the mpg-US urban when the mpg-UK urban is 20 and the mpg-UK extra urban is less than 37.2?,4 -50845,What's the rank when the obese children and adolescent count is 14.2%?,4 -50852,"What's the least Expert's View when willing to take risks is more than 27, communication ability is 30, ability to compromise is less than 26, and imagination is more than 14?",2 -50853,What's the most overall when the executive appointments were 28 and the background was smaller than 37?,1 -50859,what is the enrollement for the year joined 1958 in clarksville?,4 -50864,What was the last year MCA had a Release?,1 -50865,What is the lowest pick for the Buffalo Bills?,2 -50867,"How much Attendance has a Result of 2–4, and a Visitor of brynäs if?",4 -50869,"What is the smallest electorate for the Conservative party in South West Devon constituency, with over 2 conservatives and a name of Plymstock Radford?",2 -50870,"In what Year of Census or Estimate is the Toronto Population larger than 1,556,396?",4 -50878,"What year was olympics, Canada and the Men's Eight Event ended with a silver medal?",1 -50881,What year did Canada get a silver in the olympics in the Men's Coxless Pair event?,2 -50887,"What is the number of silver medals when there are more than 1 gold, and more than 6 bronze?",2 -50888,What is the total when the Yugoslavia number of silver won is more than 1?,1 -50889,What is the total attendance before week 1?,4 -50901,"What is the total number of gold with less than 1 silver, from Belgium?",3 -50902,"Which Lost has Points smaller than 15, and a Name of sc forst, and Drawn smaller than 0?",5 -50903,"How much Position has a Lost of 8, and a Played larger than 14?",4 -50904,"Which Drawn has a Lost larger than 8, and Points smaller than 7?",4 -50905,"How much Drawn has a Name of erc lechbruck, and Points smaller than 17?",3 -50908,What is the fewest draws for percentages of 5.02%?,2 -50909,"What is the average draws for the song ""Europe is My Home!""?",5 -50911,What is the average pick of the kansas city chiefs?,5 -50919,What is the game number on December 21?,3 -50925,What was the total for united states player phil mickelson?,2 -50926,"With a less than 4 rank, and a time less than 24.42 what is the smallest lane?",2 -50927,"The swimmer from the United States in a lane less than 5, had what as the average time?",5 -50929,Which Losses have Draws smaller than 0?,1 -50930,Which Losses have Draws larger than 0?,1 -50931,"How much Against has Losses smaller than 7, and a Wimmera FL of horsham?",4 -50932,"How many Draws have Wins larger than 7, and a Wimmera FL of nhill, and Losses larger than 8?",4 -50947,What is the Rank of the Rowers with a Time of 7:30.92?,4 -50955,What is the lowest week that has Minnesota Vikings as the opponent?,2 -50959,"What was the earliest week on September 26, 1965?",2 -50960,What is the total time for one south broad?,4 -50967,What is the number of Gold medals for the Nation with a Total of 5 and Rank larger than 1?,2 -50968,What is the total number of Silver for the Nation with more than 1 Bronze and a Rank less than 5?,3 -50970,What is the smallest decile with an Area of otumoetai?,2 -50972,"How many deciles have a Gender of coed, an Authority of state, and a Name of mount maunganui school?",4 -50975,What is the smallest decile with a Name of st mary's catholic school?,2 -50976,"What is the average birth rate that has a total fertility rate of na, and a natural growth smaller than 2.5?",5 -50978,What is the average births that had a death rate of 0.4,5 -50979,"What was the amount of Births (000s) that had a death rate larger than 7.6, and a Year of 1990-2009?",4 -50983,"What is the average value for 2005, when the value for 2008 is greater than 0, when the value for 2007 is greater than 310, when the Average annual is 767, and when the Total is greater than 4,597?",5 -50984,"What is the average value for 2005, when the value for Average annual is 767?",5 -50992,"Which total is highest with 0 gold and more than 0 silver, in Ukraine?",1 -50993,What is the total rank with more than 2 silver and total larger than 10?,4 -50994,"What is the total rank with a total larger than 2, and less than 0 gold",4 -50995,Which is the highest bronze with gold less than 0?,1 -50996,"What is the total with a rank less than 5, gold larger than 5 and bronze larger than 8?",4 -50997,"Result of 1st, and an Extra of 4 x 400 m relay is in what lowest year?",2 -51013,How many losses did the Burnaby Lakers accumulate when they scored 8 points in 1998 playing less than 25 games?,4 -51015,Which pick was used on Ian Hazlett?,2 -51032,How many lanes had a rank smaller than 4 and a time of 2:01.51?,3 -51034,"How many employees at nokia, ranked under 3?",1 -51038,"Moving from Nancy after 2005, what is listed as the lowest rank?",2 -51066,"What is the Area of the town with a Population Density of 36 km and a population greater than 3,546?",4 -51079,"What is the lowest year that has athens, greece as the venue?",2 -51082,"For all countries with 7 bronze medals and a total number of medals less than 13, what's the sum of silver medals?",4 -51083,"For countries with total number of medals less than 5 and more than 2 bronze medals, what's the lowest number of gold medals?",2 -51091,How many laps were there when the start was 12?,3 -51094,Name the total number of ERP W when the call sign is w217bf,3 -51095,Name the total number of frequency Mhz for when it has ERP W of 1 and call sign of w215bj,3 -51096,"Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3",5 -51113,What is the monetary sum with a score of 75-71-75-72=293?,4 -51122,What is the lowest altitude of the flight with a mach bigger than 0.905 and a duration of 00:06:17?,2 -51131,What is the average year with an award of platinum?,5 -51134,What is the largest number of goals with less than 101 assists and 172 points?,1 -51135,How many total points does Mike Hyndman have with more than 119 assists?,4 -51136,How many assists does David Tomlinson have?,4 -51137,How many points does Shawn Mceachern with less than 79 goals?,4 -51153,What's the sum of years when the Artist of the queen were less than 1?,3 -51162,"What is the average silver for a rank less than 8, were there were no more than 4 bronze and 12 in total?",5 -51163,"How many gold did Gabon have when they were ranked no higher than 17, and less than 7 in total?",4 -51174,what is the least year for 4 points?,2 -51176,what is the average year for 0 points and ferrari v8?,5 -51198,What is the highest Total Medals that has 0 Gold Medal and a Ensemble of east 80 indoor percussion?,1 -51199,What is the lowest Total Medals that has madison independent and Bronze Medals larger than 0,2 -51200,what is Gold Medals that has salem blue devils and a Silver Medals less than 1?,2 -51211,How many points were earned with a Chassis of a Ferrari 156?,3 -51226,"What was the average year that the Nashville Metros did not qualify for the Playoffs, did not qualify for the Open Cup, and had the Regular Season 7th, Southeast?",5 -51248,What is Oriol Servia's average Grid on races with more than 43 laps?,5 -51254,Name the least decile for state authority and area of eketahuna with roll more than 44,2 -51265,what is the lowest votes of the candidate ranked 5th and riding in victoria?,2 -51273,What was the attendance on April 7?,4 -51283,What's the average payout of toney penna with a +2 par?,5 -51284,What is the attendance number of the game on April 16?,3 -51285,What was the average pick of northwestern state college under round 3?,5 -51287,"In what round smaller than 10, was the center les studdard picked in?",2 -51315,What did Ku Hyo-Jin rank?,3 -51316,What was the rank of the person who swam in Lane 7 with a time of 2:25.86?,4 -51344,What is the total attendance for games when the record was 23-23?,3 -51345,"What is the total number of points for the conference division, a league position of 9th, and a lost result less than 13?",3 -51346,What is the drawn result with a league position of 15th and a lost result that is more than 17?,4 -51353,Name the least attendance with visitor of edmonton,2 -51354,What is the lowest numbered lane of Sue Rolph with a rank under 5?,2 -51356,What is the lowest number of league cups with 4 championships?,2 -51357,"What is the highest value for FA cups, that has a total of 0 4, with less than 4 championships?",1 -51358,"How many FA cups were there without any league cups, but a total of 0 2?",2 -51363,Name the most games for eredivisie when jurrie koolhof is manager when goals are less than 10,1 -51364,Name the least rank when games are more than 34 and the season is 2009-10,2 -51365,Name the least point for mv agusta and rank of 13th for wins less than 0,2 -51367,Name the total number of points with year less than 1955 and rank of 5th with wins less than 0,3 -51368,What is the total decile in the area of Normanby with a roller smaller than 157?,4 -51370,What is the average goals against average for those playing more than 78 games?,5 -51378,"What's the total built by the United Kingdom and holds 1,300 passengers?",3 -51387,"What is the rank of airport with a (IATA/ICAO) of bcm/lrbc code and an amount of 240,735 in 2010?",2 -51388,"What is the average for the year 2008 of the team that in 2010 had an average of 240,735 with rank lower than 5?",5 -51395,What is the highest score in round 4 and total of 284 in a year more recent than 1998?,1 -51396,What is the maximum ¥ for a round 2 score of 65 and a round 4 score smaller than 67?,1 -51397,What is the earliest year when the Dunlop Phoenix Tournament was played with a round 4 score larger than 72?,2 -51398,What is the lowest round with a place of t15 in a year earlier than 1998?,2 -51400,What was the most recent race at Kyalami with Keke Rosberg competing?,1 -51403,How many years did Wilson Fittipaldi race?,3 -51414,How many laps have 1 as the start?,3 -51419,"What year has an issue price over 15.95, and a special notes from edmonton oilers gift set?",3 -51426,"When west indes was a holder at the end of the series for the 1991 season with an england greater than 1, what is the smallest west indies?",2 -51429,"When the Brewers score was 5-7, what was the lowest attendance?",2 -51445,"what's the number of games with a Goals Against smaller than 14, and a Wins larger than 1, and a Draws smaller than 2, and a Goals For of 3?",1 -51446,"what's the total win count for Games smaller than 7, and a Goals For larger than 2, and a Goals Against smaller than 6, and Draws of 1",3 -51447,"for a Goals Against smaller than 9, and a Goal Differential of 0, and a Draws smaller than 2, and a Wins of 1, what's the goal total?",4 -51458,Name the least year for wins more than 0,2 -51459,Name the least wins for 6 points,2 -51462,ilm of taukukauppiaat has how many total number of years?,3 -51466,"what is the pick # when overall is more than 131, position is wide receiver and the round is less than 5?",3 -51467,what is the highest round for anthony gonzalez?,1 -51468,How many times is brannon condren with and overall more than 131 drafted?,3 -51470,What is the grid for the rider who rides a Suzuki and has the time of +1:01.894?,1 -51483,What is the least attendance that has 3-5 as a record?,2 -51484,What is the average attendance for the date of april 4?,5 -51488,What is recorded as the lowest Year that has the Title of Cold Feet?,2 -51491,"What is the total number of Year for the Title of The Queen, has an Award of British Academy Film Award, and has a Result of Won?",3 -51501,"How much is the total assets of a company based in Stockholm, Sweden with a market capitalization smaller than 39.8 with revenues greater than 5.8 and profit of 1.1?",3 -51506,What is Ken Walter's lowest pick number with an overall pick number larger than 195?,2 -51514,What is the average year of an entrant that had fewer than 6 points and a Maserati Straight-6 engine?,5 -51518,"Which lane has a time less than 49.67, is from Michael Klim and less than 1 rank?",1 -51519,What is the lowest lane with Lorenzo Vismara and a time higher than 49.67?,2 -51579,Name the sum of points for 1984,4 -51594,How many games lost for the team that drew 5 times and had over 41 points?,5 -51595,How many games played for the army team with over 51 points and under 5 games drawn?,3 -51596,How many points for the navy team that lost over 11?,4 -51611,How much is the total ERP W for an 107.9 fm freqeuncy MHz?,3 -51613,"What is the smallest ERP for allentown, pennsylvania?",2 -51614,Which grid has a time/retired of +3.9 secs in less than 96 laps?,5 -51616,What is the fewest number of laps for a Dale Coyne Racing team with a mechanical time/retired and fewer than 5 points?,2 -51617,What is the highest points total scored by Dan Clarke in a grid higher than 10?,1 -51618,"What is the earliest episode of the series that is set in Boston, Massachusetts?",2 -51630,"What is the lowest image with a 20w Harrison, and less than 20 for Ashmolean?",2 -51631,"What is the number of Ashmolean with 14s Harrison, and image less than 542?",3 -51635,"What is the highest Red List for the muridae family and species Authority of microtus pinetorum (le conte, 1830)?",1 -51637,"What is the largest total with a Silver of 1, and a Rank larger than 7?",1 -51638,"How many totals have a Bronze smaller than 3, a Nation of zimbabwe, and a Silver smaller than 6?",3 -51639,"What is the smallest silver with a Bronze smaller than 6, a Total of 3, and a Rank smaller than 9?",2 -51640,"How many ranks have 0 golds, a Nation of namibia, and a Total smaller than 1?",3 -51641,"How many totals have a Bronze of 0, and a Gold smaller than 0?",4 -51642,"What is the total silver with a Rank larger than 9, and a Total larger than 1?",4 -51649,What was the position of the team that had a goal difference of less than -11 and played less than 38 games?,4 -51650,"Which position had a goal difference of less than 27, lost more than 13 games, scored less than 42 goals and drew 6 games?",1 -51651,What was the number of wins with goals against of less than 32?,3 -51652,How many Antonov An-2 Colt aircraft are in service?,5 -51663,for the name of jamar jackson what is the total of Number?,3 -51673,What First game has a Lost greater than 16?,5 -51679,What is the lowest division in the playoffs and did not qualify for the Open Cup in 2002?,2 -51681,How many points were there before 1955?,3 -51682,What is the lowest amount of points held by the Epperly Indy roadster in 1959?,2 -51692,How many draws with 1 loss?,4 -51693,How many losses does Alex Wilkinson have?,3 -51704,What is the highest points gained of the match where fans took 907 and there were more than 44.9 miles one way?,1 -51705,What is the points gained of the match where fans took 403 [sunday]?,4 -51709,How many losses occurred with regular season standing of 17th from 20 later than 1996?,3 -51710,What is the earliest season with a regular season standing of 11th from 15 and more than 10 wins?,2 -51714,What is the latest year for the Tyrrell 018 Chassis that has less than 3 points?,1 -51716,Name the least wickets when matches are more than 10 and 10 WM is more than 1,2 -51718,Name the most runs for wickets of 66 and matches less than 13,1 -51723,What was average attendance during week 15?,5 -51724,What's the smallest week that had a result of t 17–17?,2 -51733,How many floors are there at 32 n. main street?,4 -51749,"What's the average amount of Runs that has 40 innings, and Not outs larger than 6?",5 -51750,"What's the total Innings that has Runs of 1598, and Matches less than 41?",3 -51751,"What is the highest total number of seats with a Seat percentage of 46.5% and less than 394,118 party list votes?",1 -51752,What is the number of party list votes for a vote percentage of 2.6% with 0 total seats?,4 -51770,"How many electors has 465,151 naders and more than 143,630 Peroutka?",4 -51771,"What is the highest Peroutka with 46 others, and less than 15 electors?",1 -51777,How many average Cars Entered have a Third Driver of manny ayulo?,5 -51778,What are the largest Cars Entered with a Season of 1958?,1 -51779,What is the largest season with a Third Driver of jimmy davies?,1 -51780,"What are the largest Cars Entered with a Winning Driver of rodger ward, and a Season smaller than 1959?",1 -51782,How many points did Judd v8 has in 1989?,3 -51783,How many years has Sasol Jordan Yamaha as an Entrant?,5 -51802,"What is the average capacity of stadiums in the City of London that belong to schools with an enrollment less than 30,000?",5 -51805,What is the heat number of the athlete who finished in 2:23.95?,5 -51808,"What is the average for 2009 when 2001 is more than 0, 1996 is less than 1 and 2004 is more than 2",5 -51809,What is the listing for 2009 when 1989 is less than 0?,4 -51810,"what is the average for 2005 when 1995 is more than 3, 1996 is less than 4, and 2011 is more than 5?",5 -51811,"what is the listing for 1999 when 1990 is more than 0, 2003 is 3, 2007 is more than 1 and 1996 is more than 0?",4 -51812,"what is the listing for 2012 when 2004 is more than 0, 2008 is more than 1 1994 is 8 and 2005 is less than 11?",2 -51813,"what is the listing for 1992 when 1999 is more than 1, 2008 is less than 2 and 2003 is less than 2?",4 -51827,"What is the smallest season with 6 races, 2 wins, and a Series of all-japan gt championship>",2 -51828,What was Mark Brooks total score when he finished more than 2 above par?,5 -51830,How many constructions has a Wheel arrange- ment of 4-4-0?,4 -51839,"Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average?",5 -51840,"Pick # that has a Name of jaimie thomas, and a Round smaller than 7 is how many numbers?",3 -51855,How many goals was by Rix from Eng who started before 2005 in the youth system?,3 -51867,What is the number of losses that coach John Kowalski has with a PTS smaller than 9?,3 -51868,What is the average PCT when it has a PTS smaller than 9 a wins larger than 1?,5 -51869,What is the sum of PTS when there is a PCT smaller than 0.1?,4 -51873,What's the smallest rank of noriko inada?,2 -51874,How many total losses have teams that played more than 30 games?,3 -51875,"What is the number of the rank when the time is 2:15.98, in a lane larger than 7?",3 -51876,What is the number of the rank for the name of Chen Yan in a lane less than 2?,3 -51877,What is the smallest lane for rank 6?,2 -51878,What's the total for a league cup less than 1?,3 -51879,What's the FA Cup that has a league less than 1?,4 -51880,"Which town has the most villages with the hanzi 南流乡 and a population larger than 24,802?",1 -51887,Name the most attendance for october 11,1 -51889,The highest year for the series titled dragon laws ii: kidnapped is what?,1 -51892,What is the total number of years that an entrant had more than 0 points?,3 -51893,Name the total number of years for brm straight-4,3 -51894,Name the total number of points for chassis of bmw t269 (f2),3 -51895,"Whats the highest Promotions that has a Team of Pallacanestro Messina, along with Relegations larger than 0?",1 -51896,"What are the lowest points with a Chassis of zakspeed 841, and a Year smaller than 1985?",2 -51897,What is the lowest year with tyres in g and less than 0 points?,2 -51899,What are the average points with a Chassis of zakspeed 881?,5 -51906,"What is the average decile with Years of 1–8, and an Area of waipara?",5 -51908,"What is the smallest roll with a Decile larger than 6, and a Name of broomfield school?",2 -51919,Name the average year for janaprakal chandruang,5 -51921,What was the first year Fabrice Soulier was a runner-up?,2 -51922,How many entrants were there in 2011?,3 -51930,How many caps did Mitchell Duke have overall?,3 -51941,What team has the most wins with at least 18 goals and less than 5 losses?,1 -51942,"How many times has the Cornwall HC team, that has scored more than 18 goals, lost ?",3 -51943,What is the series number that has a production code of 50021–50025?,1 -51945,How many team numbers have john keane as the player?,3 -51948,"Which average purse was earned by Erika Wicoff and has a winner's share greater than $9,750?",5 -51949,"What are the smallest goals with wins smaller than 16, and a Draws larger than 14?",2 -51950,"What are the average wins with a Points of 42-2, and Goals against of 67, and Played smaller than 44?",5 -51951,"Which average wins have a Club of barcelona atlètic, and Goals for larger than 56?",5 -51952,"Which lowest position has goals against smaller than 78, Points of 42-2, and Wins larger than 15?",2 -51953,"Which lowest played has a Position of 2, and Goals against larger than 53?",2 -51954,How many goal differences have Played larger than 44?,4 -51955,"What year was the race in Vienna, Austria?",2 -51964,What is the largest draw with 37 games from England?,1 -51965,How many draws have a Cambridge United career of 2008–2009 and less than 13 losses?,3 -51971,Visitor of minnesota has what average attendance?,5 -51974,"With a record of 48-51 for the team, the lowest 2005 attendance was listed as how many?",2 -51975,What would be the lowest Attendance that also showed a loss of Obermueller (1-2)?,2 -51977,How many weeks in total were games played at Cleveland Browns Stadium?,3 -51980,How many losses did Notre Dame have in 1904?,5 -51993,What is the total number of points when draw is 4?,3 -51994,"what is the goals scored when draw is less than 8, points is 19 and goals conceded is more than 26?",4 -51995,"what is the points when the goals conceded is less than 24, place is less than 6 and goals scored is less than 26?",4 -51996,what is the place when losses is less than 12 and points is less than 19?,4 -51997,what is the average place when lost is more than 12?,5 -51998,In what Year were there 48 of 120 Seats and a % votes larger than 34.18?,4 -52000,"What is the highest Isolation (km) when the elevation was smaller than 1320, and a Municipality of hinnøya?",1 -52001,What is the average Isolation in the municipality of Sunndal at an elevation of more than 1850?,5 -52002,"What is the highest elevation for the peak daurmål, and an Isolation (km) larger than 4?",1 -52005,Which lane did George Bovell swim in?,4 -52006,What is the average of the top-25 with 16 cuts and less than 23 events?,5 -52007,What is the highest top-25 with more than 9 top-10 but less than 29 events?,1 -52008,"What's the Overall average that has brad scioli, and a Pick # larger than 5?",5 -52009,"What's the lowest Overall average that has a College of Arkansas, and a Round larger than 3?",2 -52010,"Which highest Overall has a Pick # of 4, and a Round larger than 7?",1 -52011,"What's the overall average that has a round less than 7, and a Pick # of 4?",5 -52028,How many podiums associated with 1 vuelta and over 7 tours?,3 -52029,What is the total for miguel induráin with a Vuelta larger than 1?,2 -52030,"What is the grid associated with a Time/Retired of + 1 lap, and under 7 points?",2 -52038,"Which lowest year has a Position of rb, and a College of louisiana state?",2 -52039,How many years have a Player name of ronnie bull?,4 -52045,"Name the least number with density more than 262 with population more than 22,415 and area less than 335.14",2 -52047,What is the usual attendance for july 2?,5 -52052,"Role of narrator, and a Radio Station/Production Company of bbc audiobooks, and a Release/Air Date of 13 november 2008 is what sum of the year?",4 -52061,Name the least attendance for opponent of new orleans saints and week more than 2,2 -52066,Name the total number of laps with rank of 8,3 -52078,What is the total number of points for entrants with a Jordan 192 chassis?,4 -52080,What is the lowest number of points for an entrant with a Jordan 192 chassis?,2 -52087,Name the average yeara for engine of renault v10 with points more than 4,5 -52088,Name the sumof points for year less than 1994 and chassis of lola lc89b,4 -52090,Name the sum of points for 1991,4 -52099,Name the laps for qual of 144.665,4 -52100,Name the total number of Laps for year of 1961,3 -52105,What is the total overall when Kenny Lewis is the player in a round after 5?,3 -52108,How many attended the game on 4 February 2003?,5 -52115,How many losses did the team with 0 wins and more than 72 runs allowed have?,4 -52116,"What is the lowest amount of losses the United States, ranked higher than 3 with more than 6 wins, have?",2 -52117,How many runs allowed did the team ranked 2 with more than 2 losses have?,5 -52118,How many total wins did the team ranked lower than 1 with a run ratio less than 5.85 and more than 4 losses have?,3 -52119,"What is the highest run ratio Japan, which has less than 58 runs and 5 wins, have?",1 -52120,What is the average number of losses the team with less than 25 runs allowed and 5 wins have?,5 -52124,What is the total points listed that includes P listed Tyres after 1986?,4 -52125,What point is the lowest for listings of chassis labeled AGS JH23 before 1988?,2 -52126,What is the total point for the year listed in 1988?,4 -52127,What was the attendance on August 2?,1 -52129,What was the attendance on August 23?,3 -52130,What is the highest wins a tournament with 3 cuts and more than 4 events has?,1 -52131,What is the lowest number of events a tournament with more than 1 top-10 and more than 0 wins has?,2 -52132,How many laps did the 6th placed in 1998 complete?,4 -52136,What's the lowest rank of a player who played in 2012?,2 -52143,Bowler of shane bond has what lowest overall number?,2 -52145,"What is the area of a nation has a population under 44,788,852, and a GDP greater than $83.351 billion?",3 -52146,"What is the population of the place that has an area (km²) of 30,528, and a GDP (billion US$) larger than 58.316?",4 -52147,"What is the GDP of the place with over 54,292,038 people and an Area (km²) greater than 30,528?",2 -52169,What average Total has a Rank of 3 and a Bronze award larger than 3?,5 -52170,What average Total has a Gold award of 13 and a Bronze award less than 13?,5 -52171,"What is the average Gold award that has a Silver award greater than 2, and a Bronze award less than 13, and a Total greater than 24?",5 -52173,What was the lowest attendance recorded at a game on September 28?,2 -52174,What is the average gold that has a total of 2 and more than 1 bronze.,5 -52180,"What match number took place on August 3, 2007?",1 -52194,What is the highest number of matches with less than 2 draws that had an efficiency percent of 25%?,1 -52195,What is the total number of Draws with less than 4 matches?,3 -52196,What is the average MHz Frequency of radio rezonans?,5 -52203,"What is the lowest total that has draws less than 2 and wins less than 1, losses bigger than 1 with a goal difference of 1:2",2 -52204,What is the average number of draws that have a total of 1 and a goal difference of 2:0?,5 -52205,What is the lowest number of draws that have a goal difference of 0:2 and wins greater than 0?,2 -52209,What was the average attendance when the record was 19-13?,5 -52221,Name the most attendance for 25 january 2004,1 -52222,What is the average Attendance for the final round?,5 -52223,What is the smallest number of people to attend a game with an H/A of h and the opponent was Roma?,2 -52231,"What is the total population of Rosenthal that's less than 24,300 for the population and has a population for Glengallan less than 3,410?",4 -52232,"What is the greatest Rosenthal poulation for a region that has 30,554 people and a Glegallan population less than 4,088?",1 -52233,"How many people are there for Glengallan having a Rosenthal population less than 1,582 for years before 1976 with a total population of 25,917?",3 -52234,"How many people live in an area that has a population in Rosenthal smaller than 2,460 while having a population of 4,639 for Glegallan as well as having an Allora population greater than 2,106?",3 -52235,"When were the years on which warwick had a population greater than 10,956 and allora had a population bigger than 2,439?",4 -52236,"How many people in Stanthorpe had a population matching Rosenthan of 1,553 and a population greater than 25,917?",3 -52238,What is the least amount of wins earlier than 1964 with more than 7 points?,2 -52239,What is the least points for class 125cc with 1 win earlier than 1961?,2 -52241,What is the least amount of points when there is 1 win?,2 -52243,How many goals have more than 38 played and more than 9 draws?,4 -52244,How many losses has more than 59 goals against and more than 17 position?,2 -52263,What is the average year for a merzario a2 chassis?,5 -52272,What is the greatest point of an Entrant of connaught engineering alta straight-4 engine before 1957,1 -52274,Name the least year for david eddy,2 -52282,What is the average round for te position?,5 -52283,Name the average overall for james davis,5 -52284,Name the most overall for james davis and round more than 5,1 -52285,Name the total number of overall for villanova and round less than 2,3 -52303,what year has general nominated in the category or choice breakthrough artist?,3 -52307,What is the average Year with Chassis equalling cooper t60?,5 -52315,Name the average decile for state authority and area of fernridge,5 -52316,"What was the week on October 11, 1998?",2 -52323,Name the total number of ranks for kujalleq with former name of brattahlíð and population less than 47,3 -52327,"What is the average decile of Ruapehu college, which has a state authority?",5 -52328,"What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?",4 -52350,Name the average points for chassis of stevens and year less than 1950,5 -52351,Name the least points for chassis of kurtis kraft 500a,2 -52352,Name the total number of year for chassis of kurtis kraft 4000 and points more than 2,3 -52357,Name the total number of popular votes for mn attorney general in 1994,3 -52358,Name the average popular votes in years after 1990 with percentage of 4.94%,5 -52359,Name the least popular votes for year less than 1994 and percentage of 0.96%,2 -52369,"What is the fewest total goals scored for players with under 171 league appearances, 151 total appearances, and the DF position?",2 -52370,"What is the total number of Years that has the Group, Method Fest Independent Film Festival?",3 -52371,"What is the average Year that has the Group, Logie Award, the Award, Most Outstanding Actor, and the Result, nominated?",5 -52381,"If the Ovrs is less than 2, what's the average in Wkts?",5 -52382,"If Adam Voges had less than 28.5 Ovrs, what are his highest Wkts?",1 -52383,"How many sacks have 2006 as the year, and a solo less than 62?",4 -52384,"What is the average pass def that has green bay packers as the team, 62 as the solo and sacks less than 2?",5 -52385,How many sacks have 72 as the solo and a TTkl less than 112?,3 -52386,"How many TTkl have 2004 as the year, and a pass def greater than 5?",4 -52387,"What is the highest decile of Tarras school, which had a state authority?",1 -52388,What is the decile of the school with a roll larger than 513?,4 -52394,Name the average year for brookvale oval and margin more than 46,5 -52395,Name the most year for brookvale oval,1 -52396,Name the average year for manly-warringah sea eagles,5 -52402,What was the attendance of the Blue Jays' game when their record was 47-43?,4 -52405,How many races have less than 2 podiums and 19th position before 2009?,5 -52407,When was radek necas with less than 2.04 height born?,5 -52408,"How tall was the member of Nymburk, who was born in 1982?",1 -52409,What Kerry number does Taylor county have with more than 65 others#?,3 -52410,What is the smallest bush# with 66.0% bush and less than 65 others#?,2 -52414,What is the average Heat for anjelika solovieva?,5 -52415,What is the average lane with Netherlands Antilles Nationality?,5 -52418,What is the highest laps of the year when the rank was 14?,1 -52427,What is the total dist with Johnny Murtagh and less than 26 runners?,4 -52434,What's the average Year for the Position of 7th (sf)?,5 -52435,What's the highest Year for the Venue of Santiago De Chile and the Event of 800 m?,1 -52438,How many points have a Year larger than 1966?,3 -52439,"What is the smallest number of points with an Engine of climax v8, and a Year of 1966?",2 -52443,"What was the average number of ""goals for"", scored in the club Real Oviedo that had a ""goal difference"" lower than -16 and fewer than 9 wins?",5 -52444,"How many people played at the club that had a ""goal difference"" of -8 and a position lower than 12?",4 -52445,"How many ""goals against"" were scored at the club that had a ""goal difference"" of 0, 12 wins, and more than 44 goals?",3 -52446,"What is the smallest number of ""goals for"" out of the clubs where there were 18 wins and fewer than 38 ""goals against""?",2 -52447,When did Manny Pacquiao win his first championship?,2 -52449,What is the latest result where a person from the Philippines won?,1 -52453,What was the area in Glenella with a population of 522 in 2011?,5 -52454,What is the population density of Siglunes when the change was smaller than -8.1 percent?,3 -52459,How many US events did jason bennett win?,5 -52465,"What is the highest number of points scored when Acadie-Bathurst had 4 tied games, less than 257 goals, and over 72 games played?",1 -52466,What is the average of games played with a percentage of 3.33% and less than 29 losses?,5 -52467,"What is the total number of games played that correlates with a first game in 1991, a percentage of 22.22%, and less than 7 losses?",3 -52468,What is the highest number of draws that correlates with a percentage of 0.00% and less than 1 loss?,1 -52481,What is the lowest numbered Lane with a Time of 1:10.57 and Heat larger than 2?,2 -52482,What is the Heat for Smiljana Marinović?,3 -52488,Name the total number of start when finish is less than 4,3 -52489,Name the sum of year when start is less than 30,4 -52490,Name the most year with start more than 2,1 -52491,Name the most year with start less than 2,1 -52493,Name the most finish for 2006,1 -52494,What was the total attendance at games when Detroit was the visiting team and the record was 36–13–5?,3 -52501,Name the sum of spectators for time more than 20.05 and team #2 of estonia,4 -52507,What is the average attendance San Jose home games?,5 -52514,How many people were in attendance when the Washington Nationals had a score of 7-3 and a loss of Worrell (0-1)?,3 -52522,"When in the 1st league position, how many people watch as they faced West Ham United?",2 -52524,What is the average bronze medals of Uganda's swimmers when they earned over 2 medals?,5 -52525,What is the highest number of silver medals that Ireland earned when they scored less than 3 bronze medals and earned 1 medal?,1 -52526,What's the highest silver and 1 gold that the nation of djibouti received with a total less than 3?,1 -52527,What's the total number that had a rank larger than 17 and a gold greater than 0?,3 -52529,Name the least total for 1978 years won,2 -52531,Name the average total for years won of 1975,5 -52533,Name the total number of total with finish of t45,3 -52538,tell me the average roll for the featherston area and integrated authority.,5 -52540,tell me the average roll for pirinoa school.,5 -52541,tell me the total number of decile with a roll showing 251.,3 -52544,"what is the year when the location is san diego, california and defeated is houston baptist (texas)?",3 -52554,What was the population of Puerto Rico in 2010?,1 -52580,What are Tiger Woods' average earnings?,5 -52588,What was the rank of the player in lane 6?,5 -52589,Name the average year with Laps of 6,5 -52594,"what is the highest gold count when total is more than 3, bronze less than 3, and nation of belarus with silver count more than 2?",1 -52595,"with silver count at 0, what is the lowest bronze count?",2 -52596,what is the gold count with total less than 3 and more than 1 silver?,2 -52616,what is the total number of rounds when method is tko (punches) and time is 0:40?,3 -52619,Name the average debt as % of value for operating income more than -16 and % change on year being 62,5 -52621,Name the total number of revenue for italy with team of internazionale with operating income less than 27,3 -52622,Name the most revenue for operating income more than 27 for hamburg and debt as % of value less than 0,1 -52626,"Name the sum of inversions for opened of april 20, 2002",4 -52640,"Name the total number of population hervey bay with population woocoo less than 640 and population of maryborough less than 19,257",3 -52641,"Name the average population hervey bay with population maryborough more than 11,415 and population region total less than 48,308 and population tiaro less than 2,066 and population woocoo of 491",5 -52642,"Name the most population hervey bay for when population maryborough of 22,977 and population tiaro less than 3,287",1 -52643,"Name the least year for population woocoo more than 750 and population region total more than 74,210 with population tiaro of 4,449 and population maryborough less than 24,465",2 -52645,How many laps were ridden in the race that had a Time/Retired of +37.351?,3 -52646,How many laps did Mattia Pasini ride?,2 -52649,What is the average number of goals for a player who had a Leeds career from 1960–1964 and made fewer than 120 appearances?,5 -52656,What is the lowest rank of a swimmer named Elizabeth Van Welie with a lane larger than 5?,2 -52658,What is the lowest lane of a swimmer with a time of 2:07.57 and a rank larger than 1?,2 -52662,What was the average attendance on 18 October 2000?,5 -52672,What year shows the Entrant of bmw motorsport?,4 -52673,Which Entrant of stp march engineering scored the lowest points?,2 -52674,What year had the Chassis of march 762 and more than 0 points?,3 -52675,Which engine of bmw had the lowest points and chassis of march 792 that is newer than 1979?,2 -52688,Name the average established for championships less than 1 and club of erie seawolves,5 -52689,Name the most championships for club of erie seawolves,1 -52698,"What is the inegi code for mexicali with 13,700 km area?",5 -52701,"On May 17, what is the highest Attendance?",1 -52702,What is the highest number of points for the Modena Team Spa after 1991?,1 -52703,What was the earliest year for the Ligier Gitanes?,2 -52705,In episode 7 what was the highest amount of money requested by Jerry Mantalvanos & Paul Merker ?,1 -52707,How much money did gaming alerts ask for?,3 -52716,What is the typical match smaller than 2?,5 -52717,What are the total number of matches smaller than 2 with a tally of 1-19?,3 -52718,What is the average total in the county of tipperary with a rank less than 1?,3 -52727,What was the attendance for the game that went 2:42?,1 -52728,"How many laps for sébastien bourdais, and a Grid smaller than 1?",4 -52745,What is the event year radek štěpánek was the round and there were less than 3 aces?,3 -52746,How many players were in the event after 2011 with less than 9 aces?,3 -52748,What is the highest number of players during 1r year with a clay set and more than 4 aces?,1 -52755,Name the total number of points for 1952,3 -52756,Name the total number of years for talbot-lago t26c and points less than 3,3 -52774,In which season did Fc Pakhtakor Tashkent represent the country of Uzbekistan with more than 6 apps?,1 -52775,How many seasons have 1 goals and more than 11 apps?,3 -52776,What game that had a record of 39-44 had the lowest attendance?,2 -52780,What was the lowest attendance at a game that had a score of 5-4 and a loss of Williams (2-4)?,2 -52782,What is the total played games of a 22 G.A.?,3 -52786,Name the least rank for lane less than 5 for germany and sandra völker,2 -52787,Name the total number of rank for lane 7,3 -52788,Name the most time for katrin meißner and rank less than 5,1 -52792,What is the University of Southern California's highest Round?,1 -52801,"In the WCHL League, what is the last Assists with less than 65 Goals?",2 -52802,What are the most Points with an Assist of 46?,1 -52816,What is the average Acquired when the Number shows as 7?,5 -52817,What is the total of 2013 with 6th?,1 -52838,Overall of 62 is what average round?,5 -52839,"College of san diego state, and a Pick # smaller than 30 is what lowest overall?",2 -52840,"College of san diego state, and a Pick # smaller than 30 has what lowest overall?",2 -52844,What year were the Olympic Games?,4 -52845,"What's the year in 5th position that happened in Osaka, Japan?",2 -52846,"What year was the venue in Barcelona, Spain?",2 -52857,Name the sum of frequecy with brand of exa fm,4 -52859,Name the lowest frequency for brand of radio manantial,2 -52860,"Score of new york yankees – 2, brooklyn dodgers – 3 involves how many number of games?",3 -52862,"brooklyn dodgers – 3, new york yankees – 5, and a Game larger than 1 had what attendance figure?",4 -52864,Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5),2 -52866,What is the average points that Centro Asegurador earned with the McLaren M23 chassis?,5 -52883,What were the highest points before the year 1974?,1 -52902,What is the lowest amount of points for a Ford Cosworth DFR (Mader) 3.5 V8 engine?,2 -52903,What year was a Rial Arc2 chassis used?,4 -52905,Name the least silver when gold is less than 0,2 -52906,Name the least silver for nation of total when bronze is more than 24,2 -52911,What was the average attendance when the record was 17-18?,5 -52912,What was marlboro brm's lowest points by using brm p160b?,2 -52913,What is the total points in 1974?,3 -52915,What is the lowest points of using mclaren m14a as chassis?,2 -52916,"Location of saint paul, and a Final-Score larger than 14.35, and a Event of all around is what sum of year?",4 -52917,"Competition of u.s championships, and a Event of all around has what average year?",5 -52922,What is the population for the place with a Former Name of bluie west-1?,2 -52931,How many games did they play in 1905?,5 -52938,What is the total amount of decile with the authority of state around the Pokuru School and a roll smaller than 109?,4 -52939,Name the most laps for corvette racing in 2004,1 -52941,Name the total number of laps for 23rd position,3 -52944,Name the highest year with points more than 0,1 -52945,Name the highest points when year is more than 1953,1 -52947,Name the least points with chassis of kurtis kraft 3000 and year before 1951,2 -52948,"What is the total region population with a Mirani population of 5,220 and a Mackay population less than 75,020?",3 -52949,"What is the Pioneer population with a Sarina population less than 3,268 and a Mirani population less than 4,412?",4 -52950,"What is the Mirani population with a total region population less than 48,530, a Mackay population less than 13,486, and a Pioneer population larger than 9,926?",4 -52951,"What is the lowest Pioneer population in 1966 with a Sarina population greater than 4,611?",2 -52952,"What is the lowest Pioneer population with a Sarina population less than 7,537 and a Mirani population less than 5,379 in 1966?",2 -52974,What is the highest round for UFC 109?,1 -52976,"What was the earliest week that had an attendance of less than 16,375, for a game played on November 22, 1964?",2 -52977,"What was the week of the game played December 6, 1964?",4 -52978,What is the fewest losses that had an against score of 2190 and more than 0 draws?,2 -52979,What is the fewest number of draws for teams with more than 0 byes?,2 -52980,"What is the sum of losses for Geelong Amateur, with 0 byes?",4 -52981,What is the sum of the number of wins for teams with more than 0 draws?,4 -52988,How many people boarded and de-boarded the Amtrak in Linthicum?,3 -52989,"In California what was the total rank at Irvine station when the number of boarding and deboardings was less than 683,626?",4 -52990,"At south station what was the total rank when boarding and deboardings were smaller than 1,360,162?",4 -52991,"Which is the highest rank that has 8,995,551 boardings and deboardings?",1 -52998,What is the lowest VIII Edition Gold with a Silver of 4?,2 -52999,What is the highest Edition I Bronze with a Gold higher than 9 and a Silver higher than 10?,1 -53000,What's the Total for a Mexico City game with a Gold of less than 4 and a Bronze of less than 2?,3 -53009,Name the total number of attendance for october 8,3 -53011,"What season had the highest attendance/g than 3,289?",1 -53015,"In 1972, what was the highest number of points with a Ford engine and an entrant of Brooke Bond Oxo Team Surtees?",1 -53023,"What is the largest heat with a time of 4:57.90, and a Rank larger than 22?",1 -53025,What is the total attendance at games against the New York Mets with a record of 18-18?,3 -53026,What is the total attendance at games with a score of 4-2?,3 -53040,"What is the lowest group number that has a Fraction less than 0.000748, a Half-Life of 55.72 and a Decay Constant larger than 0.012400000000000001?",2 -53041,"What is the lowest Half-Life with a Yield, Neutrons per Fission greater than 0.0054600000000000004 and a Fraction less than 0.002568?",2 -53043,What is the first year of the European Championships competition?,2 -53053,What is the average number of floors at 170 Fourth Avenue North?,5 -53061,What is the total of the first season in Segunda División that has a City of cañete?,4 -53064,"What is the smallest capacity for a First season in Segunda División of 2013, and Top division titles larger than 0?",2 -53065,"What's the total enrollment ofr Mcgill University that has a capacity less than 25,012?",3 -53066,"What's the smallest season for Montreal that's greater than 5,100 for capacity?",2 -53084,How many years have had the position of 2nd?,3 -53094,Name the averag scored for 2011 long teng cup and 2 october 2011,5 -53096,"What is the region total before 1986 with a Waggamba of 2,732, and a Goondiwindi less than 3,576?",4 -53097,"What is the average year that had a value less than 2,575 in Inglewood?",5 -53098,"What is the highest value in Waggamba were Inglewwod had 2,771, but Goondiwindi had less than 4,374?",1 -53099,"What is the lost amount in Goondiwindi after 2001, and Inglewood had more than 2,586?",2 -53100,"In 1996, what was the value for Inglewood when Goondiwindi had more than 4,374, and there is a region total higher than 9,114?",5 -53101,"What is the region total after 2001 when Goondiwindi had more than 4,103 and Inglewood was at 2,613?",3 -53119,What is the round for bob randall?,5 -53125,What was the average number of yards Michael Henig had in a year when he had more than 12 starts/,5 -53126,What was the average number of starts Michael Henig had in a year when he had more than 1201 yards?,5 -53133,What is the largest gold with a Total larger than 16?,1 -53134,"What is the largest silver with a Total smaller than 2, a Bronze smaller than 1, and a Nation of yugoslavia?",1 -53135,"What is the smallest bronze with a Nation of west germany, and a Gold larger than 0?",2 -53137,What is the largest silver with less than 0 gold?,1 -53138,What's the average total viewers that has 17.6% Share?,5 -53146,What is the number for year built of W27 that was withdrawn in 1967 with a To LoW year earlier than 1926?,3 -53147,What is the number of the year withdrawn for a LSWR number greater than 210 and a To LoW year of 1923?,3 -53151,Name the least year for start of 17th,2 -53154,"What's the total number of Rogers Cable (Ottawa) channels that have a Digital PSIP greater than 9.1, and a Vidéotron (Gatineau) of channel 14?",3 -53160,What was the attendance for the game on August 16?,4 -53162,What is the highest number of points the cosworth straight-4 engine scored?,1 -53163,What is the latest year that shadow racing team scored more than 0 points?,1 -53174,What's the total score of Danny Edwards?,4 -53178,"What is the lowest rank of the region with an area larger than 3,185,263 and a population of 16,760,000?",2 -53179,"What is the lowest area of the region with a population less than 22,955,395 in Bangladesh with a density less than 1034?",2 -53180,What is the highest population of the region with a rank bigger than 9?,1 -53181,"What is the average population of the region with a density less than 487, a rank of 9, and an area larger than 377,944?",5 -53182,"What is the rank of the region with an area larger than 41,526, a density greater than 345, and a population larger than 48,456,369?",3 -53183,What is the TDP (w) of the chipset with a codename sb850?,3 -53184,"What is the average Fab (nm) of the chipset released in q4 2008 with a RAID larger than 0,1,5,10?",5 -53191,"What is the average issue price with from Toronto maple leafs gift set, and a Mintage of 3527?",5 -53193,When was a mintage of 1264 with more than 24.95 issued?,1 -53194,Name the most year for team motul brm and chassis of brm p201 and points less than 0,1 -53197,Name the most year for points more than 0,1 -53198,Name the sum of points for chassis of brm p160e and year more than 1974,4 -53200,What are the average points after 1992?,5 -53201,"What is the sum of points in 1991, for footwork a11c chassis?",4 -53202,"How many points does an entrant of Martini Racing, the engine of an Alfa Romeo flat-12 a chassis of brabham bt45, and the year 1976 have?",3 -53204,What is the average points of a Cosworth v8 engine in 1973.,5 -53228,"What was the Goal in Stade Roi Baudouin, Brussels?",5 -53230,Which Site that has a Sex and other data of old male?,1 -53240,Name the total number of drawn for danish and mathias,3 -53246,How much money did the player Ed Oliver win?,4 -53249,"How many years have less than 28,505 attendance?",5 -53253,How many people attended the Royals game with a score of 17 - 6?,4 -53265,What is the most points when the entrant was Jaguar racing earlier than 2001?,1 -53267,What is the most points when the chassis was Jaguar R3 later than 2002?,1 -53268,What is the lowest relative permeability with a skin depth larger than 0.112 inches?,2 -53269,What is the average relative permeability with a resistivity smaller than 1.12 and a surface resistance relative to copper smaller than 1?,5 -53270,What is the sum of skin depth with a resistivity of 1.12 and a relative permeability larger than 1?,4 -53272,"Of those with a height of 7-0, who weighs the most?",1 -53273,What does DeShawn Stevenson weigh?,4 -53274,Name the highest roll for coed and authority of state integrated with sacred heart school,1 -53277,"What is the average Redline RPM of engines with engine code M57TUD30, made after 2002?",5 -53282,What Country has a number smaller than 56 in 2005 and of 14 in 2006?,3 -53283,What Country has a number smaller than 3 in 2004 and larger than 1 in 2005?,3 -53297,"How many people were in attendance in a week over 4 on December 6, 1981?",3 -53298,Name the least game for october 10 at shibe park,2 -53299,What is the lowest bronze total that has a rank of 1 and more than 34 total medals?,2 -53300,What is the lowest bronze total that has a silver total of 13 medals?,2 -53301,"With Appearances larger than 1, what is the Wins for the Reno Aces Team?",2 -53302,"For the Reno Aces, what are the Losses when they had 1 Appearances and a Winning Percentage of 1?",4 -53303,"In 2009, what Appearances had a Winning Percentage of less than 0?",5 -53307,"What's the lowest in Votes with a Rank of 5th, has an Occupation of retired, along with a Riding of Brant?",2 -53309,What is the sum of the people in attendance when there was a Loss of clement (5–7)?,4 -53312,How many people went to the game that lasted 2:37 after game 2?,4 -53314,What is the total number of the ERP W with a call sign of w242ak?,3 -53317,"In Round 10, what was the Overall for Ed Tomlin?",5 -53319,What Average Pick # has an Overall of 296?,5 -53321,"With an Overall larger than 107, in what Round was Jim Duncan picked?",4 -53322,What is the highest Pick # for the College of Maryland-Eastern Shore?,1 -53323,What is Brown Motors best point total using the Offenhauser L4 engine since 1950?,1 -53336,What is the total of Frequency MHz with a Class of b1?,4 -53340,what heat number had a time of 58.44?,3 -53345,What is the average Apps of indonesia with Goals smaller than 1000?,5 -53352,Name the most rank with bronze of 0 and silver more than 1 and gold more than 0,1 -53353,Name the average silver with total less than 1,5 -53354,Name the average year for result of nominated,5 -53363,What is the number of people who attended the game later than game 6?,3 -53365,Which is the average year with the date of February 24?,5 -53367,"How many goals have a Date of december 4, 2010, and a Score of 1-0?",3 -53370,What is the largest goal with a Score of 3-0?,1 -53393,What is the lowest roll number of Katikati college?,2 -53394,What is the highest roll number of the school in Te puna with a decile larger than 2?,1 -53396,What is the highest roll number of the school with a state authority and a decile smaller than 8?,1 -53397,"What is the total value for Lost, when the value for Points is greater than 21, and when the value for Draw is 2?",4 -53398,"What is the total number of Goals Scored, when the Team is San Salvador F.C., and when the Points are less than 10?",1 -53399,"What are the total amount of Goals Conceded when the Points are less than 26, and when the value for Played is less than 18?",4 -53400,"What is the average value for Lost, when the value for Goals Scored is greater than 20, and when the value for Played is less than 18?",5 -53402,What is the sum of Money of the game that was played in the United States with Sam Snead as a player?,4 -53403,What is the Money ($) of the game with a score of 69-74-70-73=286?,1 -53407,What is the sum of the total for a routine score of 26.6?,4 -53417,When did the Chiefs have their first bye?,2 -53422,How many days with frost were there in the City/Town of Lugo have?,4 -53423,"What is the lowest number of sunlight hours, and number of days with frost, more than 30, for the city of Ourense?",2 -53424,What is the largest amount of sunlight hours for the City of Pontevedra?,1 -53425,"for the rank of 3 for the united states, what is the average lane?",5 -53426,"for the rank more than 1 and nationality of netherlands, what is the lane?",5 -53437,The sun of total that has a tour of 7 and a Giro smaller than 3 is 12.,4 -53443,What is the sum of all laps with rank 3?,3 -53444,What is the sum of all laps starting at 10 and finishing at 20?,4 -53452,What is the total national rank of Canada with lanes larger than 3?,4 -53453,"For the team with 39+1 points and fewer than 7 draws, how many wins were scored?",3 -53454,"For a goal difference greater than 3 and fewer than 8 losses, what is the most draws scored?",1 -53468,"What was the final number for the winning manufacturer with Mercedes-benz, and a circuit of hockenheimring?",3 -53483,"How many people are in Livingstone when less than 6,406 are in Firzroy, less than 3,967 in Mt. Morgan, more than 52,383 in Rochhampton, and less than 102,048 in total region?",3 -53484,"How many people in the total region when there are more than 6,406 in Fitzroy, 27,017 in Livinstonge, and less than 58,382 in Rochhampton?",3 -53485,"How many people were in Mt Morgan earlier than 1933 when the Total Region had 44,501?",3 -53486,"What is the sum of people in the total region when more than 5,060 were in Mt. Morgan?",4 -53487,What is the total swimsuit with Preliminaries smaller than 8.27?,4 -53488,"What's the average interview with Preliminaries larger than 8.27, an Evening Gown of 8.85, and an Average smaller than 8.842?",5 -53489,"How many swimsuits have an Evening Gown larger than 9, and an Interview larger than 8.405?",3 -53493,How many matches did goalkeeper Wilfredo Caballero have an average less than 1.11?,4 -53494,What is the average goals less than 41 that goalkeeper Claudio Bravo had?,3 -53495,What is the highest average of goals less than 45 for team Real Sociedad?,1 -53501,"Name the least year for paris, france venue",2 -53502,What's the total number of picks for mckinney high school?,4 -53503,What was the highest pick for the player Adam Jones?,1 -53504,What's the total number of picks for the player Matt Murton?,4 -53533,When were the Houston Texans the visiting team later in the season?,1 -53535,What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?,4 -53536,What is the total number of medals won by nations that had 7 bronze medals and more than 18 gold medals?,4 -53537,What nation with Rank 1 won the fewest gold medals while winning more than 11 silver but fewer than 7 bronze medals?,2 -53538,What is the highest total medals won by a nation that had 7 bronze but more than 12 silver medals?,1 -53539,"What nation won the fewest gold medals while being in Rank 1, with a total of 37 medals and more than 7 bronze medals?",2 -53544,How many runners had placings over 8?,3 -53546,What is the average prize for the Buttercross Limited Stakes?,5 -53547,How many total runners had jockeys of Olivier Peslier with placings under 2?,4 -53560,What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury?,2 -53561,"What are the lowest number of points with a Year of 1978, and a Chassis of ensign n177?",2 -53562,What are the highest number of points with an Entrant of warsteiner brewery?,1 -53569,What is the lowest Height (m) on the island of Burray?,2 -53579,What year was the Album/Song Speaking louder than before?,4 -53580,"What is the most recent year with the Album/Song ""the best worst-case scenario""?",1 -53585,"What is the total decile with an Authority of state, and a Name of newfield park school?",4 -53586,"What is the largest decile with a Roll larger than 34, a Gender of coed, and an Authority of state integrated, and an Area of georgetown?",1 -53587,"What is the smallest roll with an Authority of state, a Name of newfield park school, and a Decile smaller than 2?",2 -53590,Add up all the Ends columns that have goals smaller than 0.,4 -53593,Which position has 50+12 points and fewer than 10 draws?,1 -53594,How many positions have goals of fewer than 40 and more than 38 played?,3 -53595,"How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played?",4 -53596,"What are the average number of played with goals of less than 43, more than 9 draws, a higher position than 17 and 30-8 points?",5 -53597,What is the total number of losses of the player with an avg/g smaller than -3.3 and a gain larger than 126?,3 -53598,"What is the total number of losses Jackson, T., who had more than 27 gain, an avg/g smaller than 55.9, and a long less than 34, had?",3 -53599,"What is the total number of long Dubose, E., who had 0 losses, a gain less than 17, and an avg/g bigger than 0, had?",3 -53603,Matches of 127 has how many total number of inns?,3 -53604,"Name of clem hill, and Inns larger than 126 has the lowest runs?",2 -53605,"Runs smaller than 6106, and Inns smaller than 146 has what total number of matches?",3 -53606,"Seasons of 1987–2007, and a Runs larger than 11622 is the highest inns?",1 -53617,What is the average attendance of game 1?,5 -53618,What is the attendance amount of the race with a time of 2:07?,1 -53620,What is the amount of Draws for the game that had a score of 45+7 and a position below 3?,3 -53621,What was the number of draws when the Elche CF club played 38 and had a goal difference of -16?,2 -53650,"If the games played are smaller than 18, what are the lowest goals conceded?",2 -53651,"If the place is smaller than 8 and they played more than 18, what is the total number of goals conceded?",3 -53652,What is the sum of the place that has less than 2 losses?,4 -53654,What is the smallest width for a frame size of 5k and a height shorter than 2700?,2 -53660,"What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34?",4 -53661,"What is the sum of the value ""League Cup"", when the Total is less than 1, and when the League is less than 0?",4 -53662,"What is the greatest Total, when the FA Cup is 0, when the Name is Robbie Williams Category:Articles with hCards, and when the League Cup is less than 0?",1 -53663,"What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3?",5 -53664,"What is the sum of League Cup, when the Other is less than 1, when the Name is Gareth Farrelly Category:Articles with hCards, and when the League is greater than 1?",4 -53671,What is the sum of gold medals with a total of 12 medals and less than 4 bronze medals?,4 -53672,What is the smallest number of gold medals corresponding to the total rank with more than 4 bronze medals?,2 -53673,What is the smallest number of bronze medals with more than 4 gold medals?,2 -53689,"How many Baia Mare have an Electrica North Transylvania under 14.476, Bistrita of 643, and Zalau under 737?",3 -53690,What is the smallest Satu Mare value associated with Baia Mare over 523?,2 -53696,"Position of guard, and a Pick # larger than 9 is what highest round?",1 -53698,"College of idaho, and an Overall smaller than 141 is what average round?",5 -53699,"Name of David Kimball, and an Overall smaller than 229 is what highest round?",1 -53700,How many points did the car with the brm v8 engine have?,3 -53702,How many points did he average in 1964?,5 -53703,Before the year 1963 what was the fewest points the climax v8 engine had?,2 -53704,What was the earliest year that had less than 1 point?,2 -53710,"How many were in attendance on October 27, 1963?",1 -53714,"What is the total bronze with a Silver of 2, and a Gold smaller than 0?",4 -53715,"What is the average total with a Rank larger than 11, a Nation of switzerland, and a Silver smaller than 0?",5 -53716,"What is the total Gold with a Bronze smaller than 7, a Total of 1, a Nation of cape verde, and a Silver smaller than 0?",4 -53719,When is the earliest year with a Power of 90kw (121hp) @ 4000?,2 -53720,When is the earliest year with a Torque of 330n·m (243lb·ft) @ 2000-2500?,2 -53721,What week 14 has the lowest attendance?,2 -53722,"Which sum of week that had an attendance larger than 55,767 on September 28, 1986?",4 -53723,"What is the highest attendance on September 14, 1986?",1 -53731,What is the highest number of the match with julio césar vásquez as the opponent?,1 -53737,"What is the earliest year of Valdimir Poelnikov, who has a final position-tour bigger than 72, a final position-vuelta less than 77, and a final position-giro less than 57?",2 -53738,"What is the number of final position-tours Mariano Piccoli, who has more than 20 final position-giros, before 1999 has?",3 -53739,What year was the rider with a final position-tour of 88 and less than 11 final position-giros?,4 -53741,What was the highest attendance when the opponent was the Indians and the record was 13-4?,1 -53743,What is the number of ranking when the nationalits is England with more than 53 goals?,4 -53744,What is the lowest ranking for Paul Mctiernan?,2 -53747,"Round 1 of beat lee janzen 3&2, and a Year smaller than 1998 has what total number of place?",3 -53748,Round 1 of 71 has how many highest money?,1 -53749,"Round 1 of 66, and a Money ($) larger than 400,000 has what sum of year?",4 -53750,"Round 1 of 70, and a Money ($) larger than 500,000 has the highest year?",1 -53751,"When was the latest debut in Europe for Henrik Larsson, with less than 108 games?",1 -53752,What were the lowest goals with a debut before 1961 in Europe?,2 -53753,What was Thierry Henry's average goal when his rank was higher than 7?,5 -53758,"When the call sign is wpib, what is lowest ERP W?",2 -53761,"With a type of mass suicide located in France and a low estimate greater than 16, the sum of the high estimate numbers listed is what number?",4 -53762,What is the sum of low estimate(s) that is listed for the date of 1978?,4 -53763,What is the highest total number of finals a club with more than 2 runners-up and fewer than 1 winner went to?,1 -53764,How many receptions were smaller than 161 receiving yards but also had less than 14 rushing TDs?,3 -53765,What was the greatest number of rushing yards for a runner who had 283 rushes and less than 10 rushing TDs?,1 -53767,"How many goals were scored by the team that played less than 38 games, and had points of 47+9?",1 -53768,"What is the average wins of the team with more than 13 draws, a goal difference of -14, and losses less than 14?",5 -53774,"Attendance larger than 55,189 is which average game?",5 -53780,What is the highest number of laps with a 21 start?,1 -53782,What is the average number of laps in 1949?,5 -53783,What is the total number of laps with a 128.260 qual?,3 -53797,What is the most recent championship for FISA?,1 -53798,What is the average points earned for entrants with ATS V8 engines?,5 -53804,"What is the average number of bronze medals associated with 0 silver, 1 total, and ranks over 16?",5 -53805,"What is the highest total number of medals associated with 1 gold, more than 0 silver, and 2 bronze?",1 -53806,"What is the total number of Total values associated with mroe than 3 silvers, more than 2 bronze, and a rank of 3?",3 -53807,"What is the smallest Silver value associated with teams having more than 0 gold, 0 bronze, and a rank of 14?",2 -53809,Graham rahal for n/h/l racing has a qual 2 greater than 59.384 and how much lowest best?,2 -53810,What is the total best for Bruno junqueira,4 -53812,When was the first year when Fowler joined?,2 -53820,"In the Class T, what is the total of the 1958 UTA?",3 -53824,What is the total number of years that Scuderia Guastalla was an entrant?,3 -53825,What was the earliest year that Scuderia Ferrari was an entrant with 0 points?,2 -53826,What is the total number of years that has a chassis of Ferrari 625 and 2 points?,3 -53831,What is the latest year that chou tien-chen played men's singles?,1 -53833,"What is the decile sum with a roll smaller than 25, and franz josef area?",4 -53835,What is the overall pick average with the pick # lower than 15?,5 -53836,"What is the lowest rank for Spain when more than 10 medals were won, 3 of which were bronze?",2 -53842,"What is the smallest year with a Mintage smaller than 10,000?",2 -53845,What is the largest Attendance with a Loss of darling (0–1)?,1 -53852,What is the highest total with a t12 finish?,1 -53859,What year did the King team have fewer than 10 points?,5 -53860,What are the average points for the Project Indy team that has the Ford xb engine?,5 -53866,How many wins does Benelli have before 1962?,3 -53878,What is the highest Bronze with the Event 1972 Heidelberg and Total less than 5?,1 -53879,What is the Total with the Event 2004 Athens and Gold less than 20?,4 -53880,What is the lowest Bronze with a Ranking of 22nd of 32 and Gold larger than 4?,2 -53886,What is the number of titles for the city of győr with a rank larger than 4?,4 -53893,What is the average total of Gay Brewer from the United States with a to par of 9?,5 -53895,What is the smallest goal during the 2006 fifa world cup qualification competition?,2 -53897,Name the total number of years for chassis of maserati 250f and points less than 0,3 -53899,Name the sum of points for chassis of maserati 250f and entrant of officine alfieri maserati,4 -53900,Name the lowest points for officine alfieri maserati,2 -53902,What is the attendance of the game on July 26?,4 -53903,"How many years did the team place 2nd in Antwerp, Belgium?",3 -53905,"How many years did the team place 2nd in Auckland, New Zealand?",3 -53912,What was Len Sutton's total number of completed laps when his qualifying time was 142.653?,3 -53916,"In Los Banos, California, when the ERP W is than 10, what is the average Frequency MHz?",5 -53919,Name the sum To par for score of 71-74-71-72=288,4 -53929,What was arrows racing team's highest points after 1982?,1 -53930,How many years has 2 points?,4 -53933,Name the least track with song of little sister,2 -53937,What was the highest attendance of a game that had a score of 3-5?,1 -53946,What is the total gold from New zealand and a rank less than 14?,4 -53947,What is the average of the silver that has less than 0 gold,5 -53949,What is the total gold in Norway with more than 1 bronze?,4 -53950,What is the total bronze from Puerto Rico with a total of less than 1?,4 -53958,How many total League goals does Player John O'Flynn have?,4 -53959,What is the earliest year that had a Lotus 49B chassis?,2 -53960,Name the least lane for lenny krayzelburg,2 -53962,"Name of calvin o'neal, and a Round smaller than 6 had what number total overall?",3 -53975,What is the lowest number of league cups associated with 0 FA cups?,2 -53976,"How many FA cups for the player with under 5 champs, 0 league cups, and over 3 total?",4 -53977,How many league cups associated with under 10 championships and a total of under 3?,4 -53980,"Group position of 1st, and a Result F–A of 2–0 has what average attendance?",5 -53999,Name the total number of division for apps more than 5 for greece,3 -54000,Name the average apps for smederevo,5 -54002,How many points after 1960 for fred tuck cars?,1 -54006,Name the total number of people that went when the record was 16-22,3 -54013,Name the least bronze for silver being less than 0,2 -54014,Name the sum of rank for bronze less than 1 and gold of 1 with total less than 1,4 -54015,Name the sum of rank for silver less than 0,4 -54016,Name the least rank when silver is less than 1 and bronze is less than 1 with total more than 1,2 -54026,"What is the value for lowest Sacks, when the Team is New Orleans Saints, and when the value for Tackles is 132?",2 -54028,"What is the total value for Solo, when the value of Sacks is 2, and when the Team is New York Jets?",3 -54034,"What is the sum of all attendance on November 17, 1961?",4 -54035,What is the smallest attendance in week 5?,2 -54037,"What is the sum of matches played that has a year of first match before 2000, fewer than 21 lost, and 0 drawn?",4 -54038,"What is the lowest number of matches played that has more than 0 draws, a percentage of 12.50%, and fewer than 3 losses?",2 -54039,What's the total value of សាមសិប?,4 -54041,What is smallest Khmer valued less than 90 have a kau sip ALA-LC?,2 -54042,How much is the total value of kau sĕb UNGEGN ?,4 -54043,What is the lowest number of losses for the club cádiz cf?,2 -54048,Game 1's sum of attendance is?,4 -54066,What was the average of points with ranks smaller than 7 but with total point games of 113?,5 -54067,What is the sum of the roll with an area of Waikaka?,4 -54068,What is the roll number for East Gore School?,3 -54069,What is the lowest decile with 1-6 years and area of Maitland?,2 -54075,"For nations with more than 6 silvers and more than 10 golds, what is the lowest total?",2 -54076,What is the lowest rank for nations with more than 3 bronze medals and more than 36 total medals?,2 -54077,"Which country has the most bronze and has more than one silver, 1 gold, and less than 4 total medals.",1 -54078,What nation has the most bronze medals with over 11 total medals?,1 -54079,How many silver medals does Cuba have?,4 -54084,What year was the game that ended with a score of 24-14?,5 -54097,How many attended on march 1?,5 -54104,What is the sum of UCI points for Kim Kirchen?,4 -54105,How many games for the player that has an over 2.7 assist average and over 598 total assists?,3 -54106,How many assists does cam long average in under 132 games?,1 -54108,"What is the lowest ranking seating capacity smaller than 7,485, and a stadium at St. Colman's Park?",2 -54110,"In 1971, how many total points did the entrant stp march have?",3 -54113,What is Bartolo's Total G when his L Apps is 29 and his C Apps are larger than 5?,5 -54114,What is the lowest round for Southern College?,2 -54118,What is the earliest year in the 125cc class with more than 102 points and a rank of 2nd?,2 -54120,"For years before 1996, having a rank of 3rd in the 125cc class, what is the sum of the points?",4 -54129,How many times did Ken Wright expired in North Western?,3 -54130,Which species on Réunion island is part of the procellariiformes order and is part of the hydrobatidae family and has less than 21 species worldwide?,4 -54131,How many species does the sternidae family have worldwide with less than 9 species on Réunion?,3 -54132,How many species on Réunion do the dromadidae family have with a worldwide speices larger than 1?,4 -54139,What is the average Decile with a state authority and a Name of mapiu school?,5 -54145,What is the highest amount of money a play from Scotland United States has?,1 -54146,"How many Goals have a Pct % larger than 0.557, a points value smaller than 90, and a games value larger than 68?",3 -54147,What is the draw record (%) total for clubs with more than 3 wins with 10 matches and more than 1 draw?,3 -54148,"How many draws, more than 6, does Newcastle Knights have with a record (%) larger than 25?",1 -54149,Which club has the most losses with 10 matches played and more than 1 draw?,1 -54160,How many lanes have a Nationality of iceland?,4 -54161,What is the smallest rank with a Lane of 1?,2 -54173,"With a Tally of 0-14, what is the Rank in Kilkenny County?",3 -54175,"In Limerick County, what is the Rank with a Total larger than 12 and Tipperary as the Opposition?",5 -54181,What is the year when Scuderia Lancia Corse competed?,3 -54194,What's the total rank of the lane smaller than 8 with a time of 59.80?,4 -54195,What's the top rank that's lane is smaller than 1?,1 -54196,What year did deputy prime minister Mariano Rajoy Brey take office?,4 -54199,How many points did Connaught Type A chassis earn on average before 1955?,5 -54200,What is the lowest points with 6 draws and lower than rank 10?,2 -54201,What is the lowest draw with rank 4?,2 -54202,How many draws has lower than rank 10 in rumba/cha-cha/jazz dance?,3 -54203,How many draws have rumba/tango dance styles?,3 -54204,What's the sum of the totals for Russia with more than 1 gold and less than 10 bronze?,4 -54225,How many people were in attendance on may 2?,2 -54226,How many people were in attendance on may 17?,2 -54227,How many weeks did the single that entered the charts 14 september 2002 stay on the charts ?,3 -54229,How many ECTS credit points occur with Master in Management?,3 -54234,What is the average pots of Alfa Romeo v12 after 1983?,5 -54235,What year did dave f. mctaggart win the men's singles and robert b. williams ethel marshall win the mixed doubles?,1 -54239,What was the total against in uefa champions league/european cup with more than 1 draw?,4 -54240,What is the total against with 1 draw and less than 8 played?,4 -54251,"What is the sum of the game with a PWin% of —, Term [c] of 1987–1988, and Win% less than 0.506?",4 -54253,What is the of games when for the term [c] of 1969 – 1973?,4 -54259,"How many draws have 1 win, 1 loss, and a Goal Differential of +1?",4 -54266,What is the total diagram for builder york?,4 -54268,What diagram built in 1962 has a lot number smaller than 30702?,2 -54271,In what year has a Post of designer?,4 -54275,What's the attendance of the san diego chargers game before week 6?,3 -54276,"How many wins have a Top-25 of 1, Less than 2 cuts, and fewer than 5 events?",3 -54277,How many events have a Top-25 of 1 and made less than 1 cut?,1 -54278,"During the PGA Championship, what's the lowest amount of events with wins greater than 0?",2 -54279,What's the lowest number of cuts made while the win was less than 0?,2 -54299,What is the latest season where Al Ahly is the runners-up?,1 -54310,How many total rounds were there at UFC 114?,3 -54315,How many decile has a roll less than 20?,5 -54325,What is the lowest round a fullback went in?,2 -54331,What is the total number of live births in 2006 with 98.40% of the population as Whites and has more than 2 for the TFR?,4 -54332,"What is the lowest total GFR that has 95.80% of the population as Whites, and a TFR total larger than 2.14, in 2006?",2 -54333,"In 2006, what is the highest number for Live births in the County of Cumbria that has a TFR larger than 1.76?",1 -54334,Question doesn't make sense since there is no team of pramac d'antin ducati,2 -54337,"What is the rank of the cinema when the headquarters are in toronto, ON and the screens is less than 1,438?",5 -54338,what is the rank of the cinema when the number of sites is more than 62 and the circuit is cineplex entertainment?,4 -54339,what is the number of sites when the number of screens is 687 and rank is more than 7?,5 -54340,"what is the lowest number of sites when the headquarters are in columbus, ga and the rank is smaller than 4?",2 -54346,Which average bronze had a silver greater than 2 and a gold larger than 7?,5 -54347,When the total was 11 and silver was greater than 4 what was the highest gold?,1 -54348,How many bronze had a total less than 4 and gold bigger than 1?,3 -54349,"What is the enrollment associated with a capacity greater then 35,650?",2 -54351,Which average Home Run has a Game of 89?,5 -54361,What is the oldest model Porsche v12 that has points less than or equal to 0.,2 -54364,What is the highest pts after 1952 with connaught type a?,1 -54368,What is the average capacity for 150 suites?,5 -54371,What is the highest capacity in Aslantepe in 2002-2005?,1 -54376,"What is the total amount of Khmer, when the Notes are literally ""one hundred thousand""?",3 -54389,What is the july average low associated with a january average high of 30.4?,3 -54395,"What are the smallest assets with a Company of piraeus bank, and a Revenue (US$ billion) smaller than 3.9?",2 -54396,"What is the average market value with a revenue greater than 6.2, a Company of national bank of greece, and a Rank smaller than 1?",5 -54404,How many points did the Weslake v12 get in 1966?,1 -54409,What is the average dismissals of 83 test and catches less than 33?,5 -54422,Which total number of starts has more than 2 wins and a money list rank greater than 1?,3 -54423,"What is the sum of number of wins that have earnings of more than (€)2,864,342 and money list rank of 3?",4 -54424,What is the sum of Top 10 performances that have more than 2 wins and is higher than number 16 in the Top 25?,4 -54425,What is the greatest money list ranking that has a Top 25 higher than 2?,1 -54436,What is the lowest Laps that has a Year after 2002 with Alexander Frei Bruno Besson?,2 -54446,What is the average Points for a year before 1955?,5 -54447,"What is the total year with a Team of scuderia ferrari, an Engine of ferrari 106 2.5 l4, and more than 12 points?",4 -54448,How many wins has a podiums greater than 1 and 9 as the races with a season after 1984?,3 -54449,"What is the highest Podiums with 0 as wins, and a season later than 1985?",1 -54461,How many points were awarded to the Ford DFZ 3.5 V8?,4 -54479,Which tracks have a length of 18:36?,2 -54486,What is the total points that an 1951 Entrant alfa romeo spa have?,4 -54504,What was the Attendance during the Home game where St. Johnstone was the Opponent?,3 -54514,What is the largest year with an Entrant of ron harris / team lotus?,1 -54524,"What is the average Games Played for Bo Oshoniyi, who had more than 1170 minutes and 10 loses?",5 -54525,"What is the highest goals against the goalkeeper of Dallas Burn, who had a GA average larger than 1.46, had?",1 -54526,What is the lowest number of losses a goalkeeper with more than 2776 minutes had?,2 -54527,What is the lowest minutes a goalkeeper with 13 games played has?,2 -54536,What is the largest Founded with an Institution of cloud county community college?,1 -54537,What is the total Founded with a Main Campus Location of liberal?,3 -54547,What's the highest League Cup with an FA Cup thats larger than 2?,1 -54548,"What's the total number of FA Cup with a Play-offs of 3, and the Name of Mitch Cook Category:Articles with hCards and has a Total thats less than 11?",3 -54549,What's the total of number of FA Cup that has a League small than 29 with Play-offs less than 0?,3 -54550,What's the lowest Play-offs with a League of 4 and FA Cup larger than 1?,2 -54551,"What's the total number of League Cup with a Play-off larger than 2, and a Name of Mitch Cook Category:Articles with hCards?",3 -54552,"What is the number for the Channel 4 weekly rank when there are more than 2.19 million viewers for the episode ""zero worship"" which was earlier than episode 34?",3 -54553,"What is the average Channel 4 weekly rank for less than 2.19 million viewers on December 7, 2007?",5 -54554,"What is the number of viewers in millions for the episode on October 10, 2008, and a Channel 4 weekly rank a smaller than 30?",3 -54560,Name the sum of year for connaught engineering and points less than 0,4 -54561,What is the average win percentage of a season with a GB of 5?,5 -54563,What is Chitwood's lowest completed number of laps with a qualifying time of 124.619?,2 -54594,Name the total number of years for chassis of ensign n175,3 -54595,What was the Blue Jays lowest attendance when their record was 52-48?,2 -54602,Name the sum of year for olimpija ljubljana with height less than 2.04,4 -54604,What was the attendance at the ballpark during the game where the Blue Jays had a record of 26-35 during the 1996 season?,3 -54614,How many races were in the Mallala Motor Sport Park circuit?,3 -54615,"What was the first race in Launceston, Tasmania?",2 -54621,What is the amount of 000s from 1996?,4 -54623,Name the average concacaf for merconorte larger than 0 and player of jared borgetti,5 -54624,Name the least merconorte for interliga of 2 and matches more than 260 with superliga more than 7,2 -54631,What is the average year for Maserati Straight-4 Engines?,5 -54632,Name the sum of ERP W for class of d and frequency mhz of 98.7,4 -54638,What is the fewest number of points for clubs with less than 2 draws and more than 8 matches played?,2 -54639,What is the fewest drawn matches for teams with 2 points and fewer than 6 losses?,2 -54640,What is the most number of losses for Quetta Zorawar?,1 -54641,What is the sum of the drawn values for teams with 2 losses?,4 -54643,Name the average total for gold less than 1 and rank less than 5,5 -54644,"Name the sum of silver when total is mor ethan 1, bronze is 1 and gold is les than 0",4 -54645,Name the most gold when bronze is more than 0 and rank is more than 5 with total more than 2,1 -54646,"Name the average bronze with silver more than 0, total of 6 and gold more than 0",5 -54647,Name the sum of total with gold more than 1 and bronze more than 0,4 -54654,Tell me the average goals for losses of 19 and goals against more than 59,5 -54655,Name the average position when the goals against are more than 42 and draws less than 16 with goals of 44,5 -54657,What year did the team make conference semifinals?,3 -54659,"What's the smallest area in Russia that is ranked 23 with a population more than 522,800?",2 -54674,"Before the year 1988, what is the lowest number of points that entrant Coloni SpA scored?",2 -54680,"What is the week with a date of October 9, 1983, and attendance smaller than 40,492?",3 -54681,What is the lowest attendance with week 14?,2 -54683,How many years did Barclay Nordica Arrows BMW enter with Cosworth v8 engine?,4 -54684,How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point?,4 -54685,How many years was ensign n180b a Chassis with 4 points?,4 -54689,How many Deciles are coed?,3 -54690,Which is the lowest Decile that is coed?,2 -54693,What was the earliest year in which long jump was performed in the world indoor Championships in 5th position?,2 -54694,"What was the latest year in which she took 4th position in Budapest, Hungary?",1 -54702,How many years has an engine of audi 3.6l turbo v8 and 1st as the rank with an audi r8r as the chassis?,3 -54704,What is the average year Rich Beem had a to par less than 17?,5 -54705,What is the earliest year won with a total bigger than 156?,2 -54706,What is the total for Bob Tway for the year won before 2002 with a to par bigger than 7?,3 -54707,What is the to par for Paul Azinger from the United States after 1986 for a total bigger than 145?,3 -54708,What is the earliest year won Paul Azinger had with a to par higher than 5?,2 -54709,What is the year won by Australia with a to par bigger than 16?,3 -54713,What is the year when kurtis kraft 500f was the chassis?,4 -54714,What is the earliest year when the points were more than 0?,2 -54723,What is the earliest Year when the City is Peabody?,2 -54724,"What is the total number of Years when the LLWS is 4th place, and when the City is Westport?",3 -54731,Name the average points for dallara 3087 lola t88/50 and year before 1988,5 -54732,Name the sum of points for 1992,4 -54735,What is the most apps that a has a total season and 3 goals?,1 -54736,What is the final number of apps with 2 goals?,3 -54738,What is the total number of total viewers with a share of 18.8% and a weekly ranking under 16?,3 -54740,What is the average grid with more than 23 laps?,5 -54741,What is the average grid with more than 23 laps?,5 -54742,What is the average decile for te puru school?,5 -54743,"What is the total decile with an Area of whitianga, and a Roll smaller than 835?",4 -54753,"What is the total with lower than rank 8, and higher than 27.6 score and 13.8 difficulty?",2 -54754,What is the average medal total of the country who had 0 silver medals and participated in less than 15 games?,5 -54755,"What is the least Points with Chassis of forti fg01b forti fg03, and a year less than 1996?",2 -54756,"What is the lowest year for an engine of ford zetec-r v8, and points greater than 0?",2 -54757,What are the average points for an engine of ford zetec-r v8?,5 -54759,Name the total number of roll for st joseph's school when decile is less than 5,3 -54767,What is the total laps for the year 2011?,4 -54769,What is the total of the Divison that is from the country Serbia and Montenegro with apps smaller than 12 with more goals than 0?,4 -54770,What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1?,4 -54786,What is the lowest value of a team with revenue less than 374 and a debt of 84%?,2 -54787,"What is the highest operating income that change by 2% and is less than $1,036m?",1 -54792,What is listed as the highest ERP W with a Call sign of W262AC?,1 -54793,What's the sum of ERP W with a Frequency MHz that larger than 97.7?,3 -54796,"What was E.J. ""Dutch"" Harrison's lowest To Par?",2 -54813,What was the lowest attendance at a game that had a loss of lohse (12–11)?,2 -54815,What is the average year of Maja Pohar's Women's singles matches?,5 -54818,What is the sum of Mpix with a maximum fps HDRX of less than 12 with a width larger than 5120?,4 -54819,What is the lowest maximum of fps with a width of 3072 and a height less than 1620?,2 -54824,What is the average 2006 value for wheat with a 2005 value greater than 7340?,5 -54825,"What is the average 2002 value for Sunflower, which had a 2010 value less than 5587 and a 2007 value greater than 546?",5 -54826,"What is the average 2001 value with a 2010 value greater than 414, a 2011 value of 7192, and a 2005 value larger than 7340?",5 -54827,What is the 2006 value with a 2011 value greater than 4113 and a 2008 value less than 7181?,4 -54831,what is the smallest number of laps imre toth has?,2 -54832,what is the smallest number of laps marco simoncelli has with grid less than 8 and gilera as the manufacturer?,2 -54841,"What is the highest Division when the playoffs were the quarter finals, with a Regular Season of 5th?",1 -54842,What is the year when they did not qualify for the playoff and the Regular Season shows as 10th?,3 -54844,"What is the highest points value for 1962, in the 125cc class, and with 0 wins?",1 -54845,What is the highest points value for the 500cc class in years after 1962 with 0 wins?,1 -54846,"For Team AJS, what is the total number of points for drivers with 0 wins?",3 -54851,What's the lowest Gold if the Rank is over 4 but the Total is less than 1?,2 -54852,What's the highest bronze with a less than 1 Rank?,1 -54853,What's the average total if the Bronze is 5 and the Silver is less than 4?,5 -54856,"What is the lowest number of Votes, when the Candidate's Name is Trevor Ennis?",2 -54859,Name the most cuts made with top-25 more than 4 and top 5 of 1 with wins more than 0,1 -54860,Name the top-25 with wins less than 1 and events of 12,4 -54866,What is the most amount of points for a team before 1983?,1 -54870,"Name the total number of average for wickets less than 265, runs less than 4564 and matches less than 52",3 -54871,"Name the total number of average for wickets more than 537, career of 1899/00-1925/26 and matches less than 211",3 -54872,Name the least average with wickets more than 265 and career of 1888/89-1913/14 and matches more than 51,2 -54873,Name the total number of matches with wickets less than 537 and career of 1898/99-1919/20 with runs more than 4476,3 -54879,What is the average number of points for an Offenhauser L4 engine with a Trevis chassis?,5 -54882,How many players were drafted from the Boston Cannons in the round?,4 -54883,Which round was a player from the Long Island Lizards drafted in first?,1 -54888,Name the sum of laps for 12 grids,4 -54889,Name the most # of total votes with % of popular vote of 32.41% and # of seats won more than 95,1 -54897,What is the sum of the week for the Denver Broncos?,4 -54898,"What is the attendance number for December 2, 1979?",4 -54901,"Played that has a Points of 38, and a B.P. larger than 5 has what sum?",4 -54902,"B.P. of 0, and a Pts Agst smaller than 247 has how many total number of played?",3 -54903,"Pts Agst of 572, and a Pts For larger than 346 has what total number of position?",3 -54904,What is the most number of rounds that the Team from RBR Enterprises and having a Chevrolet Silverado ran?,1 -54921,"Goalsagainst that has a Points of 108, and a Lost smaller than 14 has what average?",5 -54922,"Lost of 42, and a Goalsfor larger than 195 contains how many number of games?",3 -54923,"Season of 2002–03, and a Lost larger than 14, what is the lowest goals?",2 -54924,"Goalsagainst of 285, and a Season of 2006–07, and a Games smaller than 70 has what average points?",5 -54925,"Goals for of 288, and Points smaller than 85 what is the highest goals against?",1 -54932,"Which game had an attendance of 5,000 and was away?",5 -54934,How low is the Attendance that has an Opponent of devil rays and a Date of may 13?,2 -54935,How high is the Attendance with a Record of 29-25?,1 -54939,"What is the average Total, when the value for Silver is less than 1, when the value for Gold is 0, when the Nation is Switzerland, and when the value for Bronze is 2?",5 -54940,"What is the average Total, when the Nation is Sweden, and when the value for Bronze is less than 3?",5 -54941,"What is the average value for Gold, when the value for Silver is greater than 2, and when the Nation is West Germany?",5 -54942,"What is the value for Gold, when the value for Bronze is less than 0?",3 -54944,What is the average roll for Fairfield school?,5 -54946,"how many points are there for a Chassis of porsche 718, and a Year smaller than 1964?",3 -54957,What car had the fewest laps with a qual of 138.750?,2 -54969,what is the average season when results is less than 2 times in 2nd and more than 6 times in 3rd?,5 -54970,How many times was the motorcycle ducati 916 2nd place when wins is less than 7?,4 -54998,What's the best average score with a bad score of 15?,5 -55006,How many gold medals does the country ranked higher than 2 with more than 8 bronze have?,4 -55007,"What is the highest rank a country with less than 3 gold, more than 2 silver, and less than 5 total medals has?",1 -55016,What is the average total produced when the prime mover is 12-251c?,5 -55018,What is the smallest total produced with a model of M-420?,2 -55025,What are the lowest points that have a Mugen V8 engine and a Reynard 91D chassis?,2 -55026,What are the highest points that have a Mugen V8 engine and happened in 1991?,1 -55027,How many years did John Player Lotus used Cosworth v8?,4 -55034,What is the earliest year with less than 3 points and Parmalat Forti Ford was the entrant?,2 -55035,What is the average Points when equipe ligier gauloises blondes is the entrant?,5 -55036,What is the smallest amount of points for parmalat forti ford entrant later than 1995?,2 -55040,What is John Cole's overall pick number?,3 -55055,What was the 1st Year Al Harrington (9) the leader in Rebounds?,2 -55057,Name the average with tally of 0-29 and total more than 29,5 -55059,"For engines of Maserati Straight-6 and entrants of H H Gould, what is the latest year?",1 -55060,"What is the fewest number of points scored by Goulds' Garage (Bristol), engines of Maserati Straight-6, in years before 1956?",2 -55062,What is the most points that the Maserati 250F chassis scored in years after 1955?,1 -55064,What is the lowest age of an astronaut named Stu Roosa?,2 -55084,Result F–A of 2–0 had what total number of attendance?,3 -55089,what is the wind speed when brenda morehead was in the united states?,2 -55090,what is the highest rank in dresden with a time faster than 10.88?,1 -55095,What is the highest lane for heat 6 with a time of dns?,1 -55096,"What is the lowest lane with a time of 2:05.90, and a Heat larger than 3?",2 -55098,What is the average Lane where Belarus is the nationality?,5 -55099,What is the highest lane for nisha millet?,1 -55111,What is the total of David Toms?,4 -55112,What is the average of Fiji with t10 Finish?,5 -55120,Which line after 1959 had the highest amount of points?,1 -55121,Which line has the lowest amount of points and a year of 1954?,2 -55122,What is the total amount of points that Christy has in the years before 1954?,4 -55123,"Which is the latest year that has an engine of Offenhauser l4, a chassis of Kurtis Kraft 500c, and the entrant of Federal Engineering?",1 -55129,What was Bob Jameson's lowest bonus where he had less than 15 rides?,2 -55130,How many rides did it take to get less than 3 bonus pts in no more than 7 matches?,2 -55131,"What is the total for 34 matches with 111 rides, but no more than 15 bonus points?",5 -55132,How many rides did it take Ray Day to get 274 points in total with less than 3 bonus points?,3 -55138,How many episodes have a share of 16.2% and an episode number of less than 1?,3 -55158,What was the earliest year that had a start of Saint-Gaudens and a stage smaller than 15?,2 -55168,What were the total Pints after 1957?,4 -55169,What was the most recent year for Dean Van Lines?,1 -55182,Which was the lowest gold when silver was smaller than 0?,2 -55183,"Which is the highest total at rank 6, bronze 2, and gold larger than 0?",1 -55184,Which is the highest bronze at Chinese Taipei when the rank was higher than 5 and total was smaller than 1?,1 -55195,What is the Height that has a year born before 1977,3 -55196,"What is the lowest Total Region that has a Year after 2001, and a Broadsound greater than 6,843?",2 -55197,"What is the highest Total Region that has a Broadsound greater than 1,590, a Year after 1966, a Belyando greater than 11,362, and a Nebo of 914?",1 -55198,"What is the sum of Total Regions that have the Year 1954, and a Nebo greater than 447?",4 -55199,"Before the Year 1947, what is the sum of Broadsound that have a Belyando greater than 11,362, and a Total Region equal to 5,016?",4 -55200,"After 2001, what is the sum of Belyando that have a Nebo greater than 2,522?",4 -55201,What is the number of Bronze for the Nation of Uganda with less than 2 Gold and Total medals?,3 -55202,"With less than 7 Silver medals, how many Gold medals did Canada receive?",1 -55208,Name the most performances for geoffrey fitton,1 -55214,How many laps resulted from a Qual of 165.229?,1 -55223,"drop goals larger than 0, and a Penalties of 52, and a Number larger than 5 had what lowest score?",2 -55224,"Player of jaco coetzee, and a Tries larger than 6 had what total number of score?",3 -55225,What is the highest round that has a draftee from Washington State University?,1 -55226,What round was Bob Randall selected in?,1 -55231,What is the sum of all the points won by Peter Whitehead in an alta f2 Chassis?,4 -55233,How many total points were earned with ferrari 125 Chassis after 1952?,4 -55234,What is the total number of Points that Peter Whitehead earned in a Ferrari 125?,4 -55240,"What was the rank of a transfer fee larger than 13 million, and after 2008?",3 -55242,"When seats for 2001 is greater than 15 and % 2001 is greater than 100, what is the % 2006?",5 -55243,What is the sum of % for 2001 if 2001 seats equals 7?,3 -55244,"If 2006 is 13% and 2001 is greater than 12.1%, what is the greatest number of seats for 2001?",1 -55257,What rank did the United States swimmer come in who posted 11.26 seconds in the 100-meter youth female division?,3 -55258,What is the lowest overall with more than 17 rounds?,2 -55278,What is the total number of weeks that the Steelers had a record of 1–0?,3 -55285,what is the number of losses with draws less than 1 and 6.3% efficiency?,5 -55286,what is the number of draws for ali said gouled?,3 -55287,what is the number of draws when there are 4 losses and 28.6% efficiency?,3 -55293,What is independence community college's newest campus?,2 -55306,"What is the average place for the song called ""homme"" that has voes larger than 1320?",5 -55307,"What is the sum of the draw for the song ""Beautiful Inside"" which has a place larger than 2?",4 -55309,"What is the average place for a song with votes smaller than 8696, the song ""turn the tide"", and a draw larger than 3?",5 -55313,What is the total Decile with Waikanae Area?,4 -55321,What is the total number that Tom Watson parred larger than 10?,3 -55341,"What is the Redcliffe population with a Pine Rivers population greater than 164,254 and a total population less than 103,669?",4 -55342,"What is the Pine Rivers total population after 1947 with a Redcliffe population smaller than 68,877, a total population greater than 50,785, and a Caboolture population greater than 12,207?",3 -55343,"What is the average Caboolture population with a Redcliffe population greater than 27,327, a Pine Rivers population greater than 119,236, and a total population greater than 344,878 after 1971?",5 -55357,what is the money for argentina?,3 -55365,What is the lowest number of games drawn associated with over 39 games played?,2 -55366,What is the highest number of losses when there are under 1 games played?,1 -55369,what is the seats 2006 total with %2001 of 39 and seats 2001 less than 12?,1 -55370,what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5?,4 -55371,what is the total number of seats 2001 with seats 2006 more than 10 and voter communities of cdu?,4 -55387,What is the lowest Preliminary score of a contestant that has an Evening Gown score of 8.472?,2 -55395,What is the total number of 1st prize ($) that has a United States country with a score lower than 271 and in a year after 1964 with a winner of Bobby Mitchell?,3 -55396,What is the round for marcus howard?,4 -55397,What is the highest laps with a 30 finish?,1 -55399,What is the lowest laps with a 142.744 qual?,2 -55408,What is the highest points with g Tyres and Minardi m187?,1 -55410,How many years were g Tyres and Minardi m187 used?,5 -55416,How many goals did he score with under 26 appearances for werder bremen?,3 -55417,How many goals did he have in the bundesliga with under 7 appearances?,5 -55426,"Can you tell me the total number of Rank that has the Area (km 2) smaller than 2,040, and the Population smaller than 1,234,596?",3 -55427,"Can you tell me the sun of Population that has the Country/Region of hong kong, and the Rank smaller than 2?",4 -55434,How many gold medals for the school with 2 total medals and under 0 bronzes?,3 -55435,How many gold medals for bellbrook HS with less than 1 silver?,3 -55437,How many gold medals for the school with less than 1 total?,3 -55441,What is the earliest year with 16 points?,2 -55443,Name the sum of year for penrith panthers opponent,4 -55445,Name the average year for 46 margin,5 -55453,What is the average year that has a final Tour position of 54 and a final Vuelta position over 55?,5 -55455,How many Giro positions are associated with the year 1971 and Tour final positions over 50?,3 -55456,How many laps did the rider Alex Baldolini take?,4 -55457,How many laps were completed in the time of +7.213 with a grid number larger than 7?,3 -55458,What is total number of laps for bikes manufactured by KTM with a time of +3.578 and a grid number larger than 4?,3 -55462,What is the greatest number of caps for Bruce Djite?,1 -55465,What is the highest place of a swimmer from the Netherlands?,1 -55471,"How many points did the team with more than 68 games, 4 ties, and more than 272 goals against have?",4 -55479,What is the earliest round drafted for a University of Southern California player?,2 -55480,What round drafted was the 1b and a Signed of no cardinals - 1969 june?,3 -55486,What is the most recent year that Gulf Racing Middle East won?,1 -55499,What was the smallest attendance at a game when the record was 7-15?,2 -55500,What was the average attendance at a game when the record was 6-13?,5 -55501,"What is the yield, neutrons per fission of the group with decay constants less than 0.301, a half-life of 22.72, and a group number larger than 2?",4 -55502,"What is the decay constant with a half-life less than 22.72, a yield, neutrons per fission of 0.0031000000000000003, and a group number less than 3?",3 -55503,"What is the lowest half-life with a yield, neutrons per fission bigger than 0.0031000000000000003 and a decay constant less than 0.030500000000000003?",2 -55504,"With Round 3 and Pick # over 10, what is the higher Overall number?",1 -55505,What is the highest round for College of Nebraska if the Overall is under 190?,1 -55507,What was the attendance on 21 August 2004?,4 -55508,What is the average rank of an athlete that holds a time higher than 53.38?,5 -55509,What lane did the swimmer with a time of 52.84 have?,1 -55510,What lane did the rank 3 swimmer use?,1 -55514,How much does it cost for United States and Byron nelson?,3 -55516,Name the average pop for chūgoku and prefecture of okayama,5 -55517,Name the highest pop for tottori,1 -55518,Name the sum of pop for shizuoka,4 -55519,Name the total number of pop for ibaraki,3 -55532,"With games started smaller than 16 plus receptions of 51, what is the smallest amount of touchdowns listed?",2 -55533,"What are the highest number of games played that had game starts of 10, receptions of 6 and fumbles smaller than 3?",1 -55538,What year did Willis McGahee play fewer than 15 games with the Baltimore Ravens?,2 -55539,"After the 2013 season, what was the fewest number of games that Willis McGahee played in a single season?",2 -55546,What are the average points of Scuderia Scribante with a Brabham bt11 chassis before 1968?,5 -55547,How many points are there for a Mclaren m23 chassis later than 1972?,3 -55548,What is the average change to have a land area of 546.74 and a population density greater than 0.5?,5 -55552,"What was the sum of the scores before the year 2002, that had the venue of Halmstad?",4 -55553,What was France's highest score when the venue was Bokskogens?,1 -55554,"What was the earliest year during which the winner was Matthew King, and during which the score was higher than 270?",2 -55555,What was the average year during which the score was 270?,5 -55556,"What were the total number scores after 2005, when the winner was David Patrick?",3 -55557,What was the average year that the venue was Bokskogens?,5 -55561,"What was the average Value ($M) when the Country was England, the Operating income($m) was greater than -5, and the Revenue ($M) was smaller than 103?",5 -55562,"What was the total amount of Value ($M), when the Country was Spain, the Rank was 19, and the Debt as % of value was larger than 159?",3 -55563,"What was the sum of Value ($M), when the Revenue ($M) was less than 307, the Team was Valencia, and the Rank was smaller than 19?",4 -55564,"What was the total amount of Value ($M), when the Rank was higher than 6, and the % change on year was -27?",3 -55565,"What was the sum of Revenue ($M), when the Debt as % of value was higher than 27, and the Operating income($m) was 77?",4 -55572,what is the least bronze when gold is more than 0 for russia?,2 -55573,what is the highest rank for italy when gold is more than 1?,1 -55574,what is the total when bronze is more than 1 and gold smaller than 1?,4 -55576,What is the smallest transfer rate for a 3243 device?,2 -55578,How many draws has a Club of real valladolid that was played less than 38?,1 -55579,"How many losses are there with 5 goal differences, drew more than 10 times, and 43 goals against?",3 -55583,What is the average total number of medals for a nation with 2 silver medals and a rank larger than 7?,5 -55584,"What is the lowest rank of Ukraine with fewer than 14 silver medals, fewer than 3 bronze medals, and a total of 4 medals?",2 -55585,What is the total of bronze medals from nations with more than 16 total medals and ranks larger than 3?,3 -55586,What is the total number of bronze medals with a total of 4 medals and 1 gold medal?,3 -55589,How many laps had a qualification of 136.168?,3 -55604,"How many Persian Wars have a School of rashtriya indian military college, and an 1860-1878 smaller than 0?",3 -55605,"What is the largest Persian War with a Crimean War of 0, an 1860-1878 larger than 0, a Location of united kingdom, and a Zulu War smaller than 1?",1 -55606,"What is the average Crimean War with a Second Afghan War totaling 1, and a School of hamblin and porter's school, cork?",5 -55613,What was the highest attendance week 12?,1 -55616,"What is the total number of First Elected that has counties represented of Anne Arundel, District of 30, and a Ways and Means Committee?",3 -55619,What is the 1USD= that has the Uruguayan Peso (uyu) and 1 Euro is greater than 25.3797?,4 -55620,What is the 1USD= in Chile and has 1 Euro greater than 635.134?,3 -55621,"If the 1USD= 5,916.27, what is the lowest 1 Euro amount?",2 -55623,What is the total attendance for the August 8 game?,4 -55638,What are the lowest points for the engines of the Lamborghini v12 and the Chassis on Minardi m191b?,2 -55640,What is the total of the year with a point larger than 0 or the Chassis of Minardi m190?,4 -55641,What are the lowest points from 1992 with a Chassis of Minardi m192?,2 -55643,"What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area?",3 -55649,What is the highest gold number count where a county had over 9 golds and 10 silvers?,1 -55650,How many bronze medals did the country with 7 medals and over 5 silver medals receive?,4 -55655,What is the total number of weeks that the Seahawks had a record of 5-5?,3 -55677,What is the highest rank of a swimmer in lane 5?,1 -55678,What is the lowest rank of Jens Kruppa in a lane larger than 2?,2 -55697,What was the average total medals received by Roland Hayes School when there were 0 gold medals?,5 -55698,What was the total number of medals received by James Logan High School when it received less than 1 silver medal?,3 -55699,What is the highest number of bronze medals received by an ensemble who received fewer than 0 gold medals?,1 -55701,Name the most goals with losses less than 15 and position more than 8 with points of 42+4,1 -55702,Name the average goals against for draws of 8 and wins more than 22 with losses less than 12,5 -55703,Name the least wins for goal difference being less than -20 with position less than 20 and goals for of 35,2 -55704,Name the average losses for draws larger than 6 and played more than 38,5 -55705,Name the least goals against for played more than 38,2 -55708,"In 1962, what was the total number of points, when the Engine was Ferrari v6?",3 -55710,"What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66?",4 -55711,"What was the sum of the years, when the entrant was Scuderia Centro Sud, and when there were 6 points?",4 -55719,"What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2?",2 -55720,"How many Bronze medals were received by the nation that Ranked less than 5 and received more than 2 Gold medals, less than 4 Silver medals with a Total of 9 medals?",5 -55731,Which game is on the date October 16?,5 -55741,what is the highest frequency mhz with the call sign w292cu?,1 -55763,What was the earliest year that Yvette Alexander took office and was up for reelection after 2016?,2 -55764,What is the earliest year a Chairman who took office after 2011 is up for reelection?,2 -55766,What was the most laps with a finish of 10 and qualification of 106.185?,1 -55767,What is the most laps with a qualification of 106.185?,1 -55782,Name the most lot number with notes of b4 bogies and diagram of 185,1 -55787,What was the average attendance when Chicago Bears were the home team?,5 -55789,What is the largest number in attendance when the record is 1-1-0?,1 -55826,What is the average earnings of a United States player who had a score of 72-68-74-72=286?,5 -55836,What year did finish 1st in LMP1 class?,5 -55841,What is the lowest Decile for a school with a roll smaller than 3?,2 -55844,What is the total number of Rolls of State schools in Hapuku with a Decile greater than 4?,3 -55876,How many laps were done in 2012?,4 -55878,Name the average gold for czech republic and bronze less than 1 when total is less than 14,5 -55879,Name the highest rank when silver is 4 and bronze is less than 3,1 -55880,Name the total number of total for bronze of 4 and silver more than 6,3 -55882,What is the draw number of the song with a place lower than 6 and more than 38 votes?,4 -55883,What is the total number of votes Sahlene with a place below 1 has?,3 -55884,What is the highest place of the song with 38 votes and a draw great than 3?,1 -55885,"How many votes did Yvetta Kadakas & Ivo Linna, who had less than 4 draws, have?",4 -55887,What year was the start 33?,4 -55890,"What's the average number of floors that were built in 2004, and have a roof (m) of 106?",5 -55891,"What's the total number of floors built after 2006, and have a rank of 12?",4 -55892,"What is the sum of attendance for H/A values of ""n""?",4 -55904,"What is the year with a Kurtis Kraft 500a chassis, and less than 1.5 points?",4 -55905,What is the year with a kurtis kraft 500a chassis?,4 -55906,What is the lowest Pick # of Saint Vincent College?,2 -55907,What is the Overall for Pick # less than 5 Jack Harmon?,2 -55912,What is the fewest number of silver medals received by a nation who received 40 bronze medals and more than 42 gold medals?,2 -55913,"What is the lowest number of silver medals received by Austria when they receive more than 3 total medals, more than 22 bronze medals, and fewer than 395 gold medals?",2 -55914,What is the average number of silver medals with more than 6 gold meals and less than 5 bronze medals?,5 -55915,How many ranks are for Switzerland with more than 2 total medals?,3 -55918,"What is the highest round of the match with Rene Rooze as the opponent in Saitama, Japan?",1 -55919,What is the highest round of the match with a time of 0:57?,1 -55933,What is the earliest year of a film from Mexico?,2 -55934,What is the average year of the film from France/Hong Kong?,5 -55940,What is the highest population of Trondra Island in the Scalloway Islands?,1 -55941,How many matches were drawn associated with a percentage of 7.14% and more than 12 losses?,3 -55943,What is the total number of drawn matches from first game years before 2006 and fewer than 2 matches played?,4 -55944,"What is the highest number of losses associated with 2 matches played, a first game after 1997, and more than 0 draws?",1 -55970,What is the average position of Eesti Põlevkivi Jõhvi when they had less than 13 points and worse than a -12 goal differential?,5 -55975,What was the lowest lap with the ranking of 19?,2 -55976,Name the least ovrs for wkts of 0,2 -55977,Name the average econ for runs more than 703 and ovrs more than 25.5,5 -55978,What is the average year that has a car that won 0 stages with a position of DNF?,5 -55987,Name the sum of roll for morrinsville school,4 -55990,Name the total number of roll for state authority and stanley avenue school with decile more than 5,3 -55992,"What year had a population region total of 63,073 and a population maroochy smaller than 35,266?",1 -55993,What is the grid total associated with 18 laps?,3 -55996,"What is the grid total associated with a Time/Retired of +33.634, and a Laps smaller than 19?",2 -56002,"What are the smallest goals with a Goal Ratio of 0.14, and a Debut in Europe smaller than 1995?",2 -56003,"What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985?",5 -56004,What lowest games have 20 goals and a Goal Ratio smaller than 0.14?,2 -56005,What is the largest goal ratio with Goals smaller than 0?,1 -56006,"What lowest games have a Goal Ratio of 0, and Goals smaller than 0?",2 -56007,"How many debuts in Europe have less than 76 goals, more than 151 games, and a rank greater than 5?",3 -56008,What is the average points of the Ferrari 1512 Chassis after 1965?,5 -56013,"What number has the builder ruston hornsby, the date 1961, and the name Topsy?",3 -56014,What is the number with the builder hunslet and a works number greater than 822?,3 -56018,Name the sum of Hull number with portugal destination,4 -56019,Name the sum of hull number for italy and year more than 1999,4 -56031,Name the total number of first elected for dranesville,3 -56032,"What year was the venue at Sydney Cricket Ground, and the opponent was Parramatta Eels?",3 -56034,"What year was the average attendance 80,388?",5 -56041,What was the average number of points with bonus pts less than 31 with the rider dennis gavros?,5 -56042,How many total matches involving dennis gavros had total points less than 167?,3 -56043,What is the smallest number of matches with Bonus Pts of 19 and Total Points greater than 421?,2 -56045,How many dates does the ladies category correspond to Rothaus-Cube?,3 -56052,When did Deng Xuan first win Women's singles?,2 -56053,When did Julie Still first win Women's singles?,2 -56054,"What is the lowest cuts made of the Masters tournament, which had a top-25 less than 0?",2 -56055,"What is the highest number of wins a tournament with 1 cuts made, a top-25 less than 1, and less than 2 events has?",1 -56056,"What is the average number of events the Masters tournament, which has more than 0 top-25, has?",5 -56057,What is the total number of top-25 a tournament with less than 2 events has?,3 -56074,Name the total number of overall for defensive tackle,3 -56075,"What is the 2012-list rank of a country with the lowest 2012-list rank out of all the countries with a 2010-list rank better than 13, a 2009-list rank of 0, a 2008-list rank lower than 4?",1 -56078,"In 1991, what was the lowest total?",2 -56079,What are the total lanes that have a rank larger than 22?,4 -56081,"What rank is from Japan, has a lane smaller than 7 and a heat smaller than 3?",4 -56082,What was Jim Hoff's sum of losses and a wins smaller than 12?,4 -56083,What was the average of games that were one in 1978 that were smaller than 141?,5 -56084,What was the sum of Richie Hebner winning games that were smaller 34?,4 -56085,What was the average of wins with manager George Scherger smaller than 3 and losses smaller than 1?,5 -56094,"How many golds have a Total of 11, and a Bronze smaller than 3?",4 -56095,"How many golds have a Bronze of 0, a Total larger than 1, a Nation of chad, and a Silver larger than 0?",4 -56096,"What is the smallest silver with a Gold of 1, and a Nation of lithuania?",2 -56097,"What is the total bronze with a Gold larger than 1, a Rank of 2, and a Silver smaller than 12?",3 -56103,What was the average attendance when the New York Mets were opponents with a record of 51-33?,5 -56110,Name the sum of attendacne for 16 weeks,4 -56113,How many yards lost by the player with more gained than 51 and average/g of 3.6?,3 -56114,What are the gains for the player with average of 26.8 and lost yard fewer than 13?,4 -56124,Name the average attendance with dallas visitor,5 -56133,Which year has has a Engine of maserati straight-6?,3 -56140,What is the match total for a score over 299 and under 412 innings?,4 -56141,What is the high run total associated with a high score of 385 and under 407 innings?,1 -56146,What was the score to par for 156 strokes?,3 -56147,How many strokes for arnold palmer with a to par of greater than 9?,5 -56149,What is the earliest first game for a rugby team that has 7 lost games and 0 draws?,2 -56150,How many games were played by a team that won 0.00% of their games and 0 draws?,4 -56185,What is the year in which Yong Yudianto won the men's singles?,2 -56187,What is stephen arigbabu's height?,2 -56188,"For all games with los angeles as visitor, what is the highest attendance of all?",1 -56189,"For all games with calgary as home, what is the average number of attendees?",5 -56203,What is the winning total from 1976?,1 -56204,What year was owner Michael E. Pegram's last win?,1 -56214,What is the sum of the lap with a finish of 24?,4 -56219,"What year did she compete in tampere, finland?",5 -56226,What is the highest Rank of Karen Pickering when she had a time of less than 55.71?,1 -56227,What is the highest Lane number of a person with a time of 55.94 with a Rank that's bigger than 8?,1 -56233,"When Regions center has a rank less than 11, what is the greatest number o floors?",1 -56234,What is the average rank for a building with 24 floors?,5 -56235,What is the rank for Omni nashville hotel?,4 -56236,What is the greatest rank for Fifth third center?,1 -56237,"When a building is 292 (89) ft (m) tall, has less than 23 floors, and ranks less than 14, what is the average year?",5 -56243,What's the smallest amount of Laps that had a finish of 7 with a start of 6?,2 -56244,"What is the smallest bronze with a Gold smaller than 3, and a Silver larger than 1, and a Rank of 6, and a Nation of hungary?",2 -56245,What is the average bronze with a rank of 4 and less than 1 silver?,5 -56247,"What lowest bronze has a total of 3, a Nation of hungary, and a Gold smaller than 0?",2 -56248,"How many gold have a Rank of 7, and a Bronze of 1, and a Silver smaller than 0?",4 -56249,"How many Totals have a Silver smaller than 2, and a Nation of ukraine, and a Gold smaller than 3?",3 -56259,Name the total number of ERP/Power W for frequency of 89.3 fm and facility ID less than 40430,3 -56261,What was the attendance on June 27?,2 -56267,When is the earliest year in milan that guillermo vilas was champion?,2 -56270,"What is the Facility ID that has a City of license of wheeling, and a ERP kW less than 4.5?",1 -56273,How many dates of demolition are located on Wood Street?,3 -56283,"What is the average year of events that took place in Antwerp, Belgium?",5 -56284,"What's the year of the event that took place most recently in Antwerp, Belgium with team competition notes?",1 -56291,What is the total of Goals Conceded that has Points smaller than 21 and a Lost thats smaller than 8?,4 -56292,"What's the total of Lost that's got Points larger than 28, Draw of 5, and Place that's smaller than 1?",4 -56293,"What's the total of Goals Scored with Points that's smaller than 27, and a Team of C.D. Atlético Balboa?",4 -56294,What is listed as the Highest Played and that has a Place that is larger than 10?,1 -56295,"What is listed as the Highest Played, has Points of 17, and Draw that is smaller than 5?",1 -56314,What is the average defenses a champion with 404 days held and a reign larger than 1 has?,5 -56315,What is the lowest defense a champion with 345 days held has?,2 -56332,How many people attended when opponent was twins?,3 -56338,How many votes did candice sjostrom receive?,5 -56340,"How many votes for the candidate after 1992, 1.59% of the vote, and the office of us representative 4?",5 -56343,"What is the lowest total amount of medals from countries with 0 gold medals, more than 2 bronze medals, and more than 1 silver medal?",2 -56344,"What is the total number of silver medals for countries of rank 14, with less than 1 total medals?",4 -56345,How many tackles for the player with over 0 fumble recovries and 0 forced fumbles?,3 -56346,How many forced fumbles for jim laney with under 2 solo tackles?,3 -56347,What is the high total for players with over 15 solo tackles?,1 -56348,"How many fumble recoveries for scott gajos with 0 forced fubmles, 0 sacks, and under 2 solo tackles?",4 -56353,What is the total number of decile for the redwood school locality?,3 -0,Tell me what the notes are for South Australia ,0 -1,What is the current series where the new series began in June 2011?,0 -2,What is the format for South Australia?,0 -3,Name the background colour for the Australian Capital Territory,0 -5,what is the fuel propulsion where the fleet series (quantity) is 310-329 (20)?,0 -6,who is the manufacturer for the order year 1998?,0 -9,what is the powertrain (engine/transmission) when the order year is 2000?,0 -10,What if the description of a ch-47d chinook?,0 -11,What is the max gross weight of the Robinson R-22?,0 -12,What school did player number 6 come from?,0 -13,What school did the player that has been in Toronto from 2012-present come from?,0 -14,What school did the player that has been in Toronto from 2010-2012 go to?,0 -15,What position did the player from Baylor play?,0 -16,Who played in the Toronto Raptors from 1995-96?,0 -17,Which number was Patrick O'Bryant?,0 -18,What school did Patrick O'Bryant play for?,0 -20,Which school was in Toronto in 2001-02?,0 -21,Which school did the player that played 2004-05 attend?,0 -22,Which position does Loren Woods play?,0 -24,Which country is the player that went to Georgetown from?,0 -25,Which school did Herb Williams go to?,0 -26,When did the player from Hawaii play for Toronto?,0 -27,During what period did Dell Curry play for Toronto?,0 -28,What's the number of the player from Boise State?,0 -29,What's Dell Curry nationality?,0 -30,which player is from georgia,0 -31,what school is rudy gay from,0 -32,what nationality is the player who played from 1997-98,0 -33,what position did the player from connecticut play,0 -34,During which years was Marcus Banks in Toronto?,0 -35,Which positions were in Toronto in 2004?,0 -36,What nationality is the player Muggsy Bogues?,0 -37,What years was the player Lonny Baxter in Toronto?,0 -39,"When the scoring rank was 117, what was the best finish?",0 -40,"When the best finish was T69, how many people came in 2nd?",0 -42,"When the money list rank was n/a, what was the scoring average?",0 -45,What college did the Rookie of the Year from the Columbus Crew attend?,0 -47,What position did the #10 draft pick play?,0 -48,what's the years played with singles w-l of 3–2,0 -49,what's the doubles w-l for player seol jae-min (none),0 -50,what's the singles w-l for kim doo-hwan,0 -52,what's the doubles w-l with years played value of 1 (1968),0 -53,what years are played for player  im chung-yang,0 -54,What is the name of the 375 crest length?,0 -56,What is the canton of grande dixence?,0 -57,What is the name where lago di luzzone is?,0 -58,What is the guardian mātṛkā for the guardian whose consort is Svāhā?,0 -59,"Where the mantra is ""oṃ yaṃ vāyuve namaḥ"", what is the direction of the guardian?",0 -60,What weapon is used by the guardian whose consort is śacī?,0 -61,What are the directions for the guardian whose weapon is khaḍga (sword)?,0 -62,What are the weapons used by guardians for the direction East?,0 -63,What are the directions for the guardian whose graha (planet) is bṛhaspati (Jupiter)?,0 -65,What are the members listed with the sorority classification,0 -66,Name the member that has 12 chapters,0 -67,Where is the headquarters of Alpha Nu Omega,0 -69,what is the typhoid fever number for the year 1934,0 -70,What are all the typhus number when smallpox is 4,0 -72,what is the typhoid fever number for the year 1929,0 -77,What is the capital (endonym) where Douglas is the Capital (exonym)?,0 -79,What is the country (exonym) where the official or native language(s) (alphabet/script) is Icelandic?,0 -80,In which country (endonym) is Irish English the official or native language(s) (alphabet/script)?,0 -81,Which country (exonym) is the country (endonym) isle of man ellan vannin?,0 -83,"What was the ranking of the season finale aired on May 8, 2006? ",0 -85,what's the land area with seat of rcm being granby,0 -86,What is the population for County Mayo with the English Name Carrowteige?,0 -87,What is the Irish name listed with 62% Irish speakers?,0 -88,What is the population for the Irish Name Leitir mealláin?,0 -89,What is the county for the Irish name Carna?,0 -91,What is the population for the English name Spiddal?,0 -95,What is Australia's role in the UN operation Unama?,0 -96,"What is the UN operation title with the UN operation name, Uncok?",0 -98,When was it where 65 Australians were involved in the UN?,0 -99,What year is the season with the 10.73 million views?,0 -100,What is the season year where the rank is 39?,0 -102,What is the year of the season that was 12?,0 -103,In 2012 what was the average finish?,0 -108,NHL players are all centre in Florida panthers.,0 -109,NHL team player San Jose Sharks is United States nationally.,0 -110,All players are position mark polak.,0 -111,Position in nhl team centre are all smaller pick than 243.0,0 -112,What college/junior/club teams do the players from the St. Louis Blues come from?,0 -113,What teams do the players from TPS (Finland) play for?,0 -114,What high school team did Doug Nolan play for?,0 -115,What club team is Per Gustafsson play for?,0 -116,What is the nationality of Shayne Wright?,0 -117,How many votes did Southern England cast whilst Northern Ireland cast 3?,0 -120,How many votes did Northern Ireland cast if the total was 35?,0 -122,What teams had 9 in the top 5 and 1 wins?,0 -123,What teams did the player vadim sharifijanov play for?,0 -124,What positions do the hartford whalers nhl team have?,0 -126,"What positions does the college/junior/club team, molot perm (russia) have?",0 -127,The nhl team new york islanders is what nationality?,0 -128,What is the name of the vacator for district Louisiana 1st?,0 -129,What is the notion when the crystal structure is tetragonal and the formula is bi 2 sr 2 cacu 2 o 8,0 -130,How many times is the formula tl 2 ba 2 cuo 6?,0 -131,What is the crystal structure for the formula yba 2 cu 3 o 7?,0 -137,What's the 1981 census of Livorno?,0 -138,Which NHL team has player Mike Loach?,0 -139,What is the NHL team that has Peter Strom?,0 -140,What team is Keith Mccambridge on?,0 -142,"Who was the succesor that was formally installed on November 8, 1978?",0 -144,"What score did Goodman give to all songs with safe results, which received a 7 from Horwood and have a total score of 31?",0 -145,"What score did Dixon give to the song ""samba / young hearts run free"", which was in second place?",0 -147,What year was number 7 built?,0 -148,What is we two when the case/suffix is loc.?,0 -149,What is them two (the two) when we two is ngalbelpa?,0 -150,What is them two (the two) when you and i is ngœbalngu?,0 -151,What is who-two where you and i is ngœban?,0 -152,What is we two where you two is ngipen?,0 -153,What is who-two when you two is ngipelngu?,0 -154,what's the points with driver  mark martin,0 -155,what's the points with driver  rusty wallace,0 -158,What actor was nominted for an award in the film Anastasiya Slutskaya?,0 -159,What was the film Falling up nominated for?,0 -160,What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love?,0 -161,What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love?,0 -162,Which films does the actor Alla Sergiyko star in?,0 -163,Which nominations was the film 27 Stolen Kisses nominated for?,0 -164,Which actor from Serbia was nominated for best actor in a supporting role?,0 -165,Vsevolod Shilovskiy is from what country?,0 -166,Which nominations are connected to the film Totalitarian Romance?,0 -167,Srdjan Dragojevic worked on a film which earned what nomination?,0 -168,Which actors are from Ukraine?,0 -169,What was the film that vadim ilyenko directed?,0 -170,What was the actors name that vadim ilyenko directed?,0 -171,What was the actors name for fuchzhou and nomination was best non-professional actor?,0 -172,What film did michaylo ilyenko make with best actor in a supporting role?,0 -173,What was the actor's name for best debut?,0 -178,What circuit was the race where Hideki Mutoh had the fastest lap?,0 -180,"what is the episode # for title ""the yindianapolis 500 / personality problem""",0 -181,what is the episode # for production code 227,0 -182,who directed the movie written by is sib ventress / aydrea ten bosch,0 -183,"what is the production code with title ""skirting the issue / moon over my yinnie""",0 -187,What is the score with partner Jim Pugh?,0 -189,What is the score of the match with partner Jim Pugh?,0 -190,What year was the championship in Wimbledon (2)?,0 -191,What is the score of the match with opponents Gretchen Magers Kelly Jones?,0 -193,"Which politican party has a birthday of November 10, 1880",0 -194,"Which representative has a birthday of January 31, 1866?",0 -195,What is the Singles W-L for the players named Laurynas Grigelis?,0 -196,What is the Current singles ranking for the player named Mantas Bugailiškis?,0 -198,Who played Peter Pan in the 1990 Broadway?,0 -199,Who played in the 1991 Broadway before Barbara McCulloh played the part in the 1999 Broadway?,0 -200,Who played in the 1990 Broadway after Tom Halloran played the character in the 1955 Broadcast?,0 -201,What character did Drake English play in the 1998 Broadway?,0 -202,What date was BBC One total viewing greater then 11616996.338225884?,0 -206,what's the salmonella with escherichia being espd,0 -207,what's the ↓ function / genus → with shigella being spa32,0 -208,what's the salmonella with shigella being ipgc,0 -209,what's the salmonella with escherichia being sepb (escn),0 -210,what's the shigella with yersinia being yscp,0 -212,What year was a movie with the original title La Leggenda del Santo Bevitore submitted?,0 -213,"what's the camp with estimated deaths of 600,000",0 -214,what's the operational period with camp  sajmište,0 -215,what's the estimated deaths with operational period of 17 march 1942 – end of june 1943,0 -216,what's the current country of location with operational period  of summer of 1941 to 28 june 1944,0 -217,"what's the occupied territory with estimated deaths of 600,000",0 -218,what's the occupied territory with operational period of may 1940 – january 1945,0 -219,Which overall pick was traded to the Cleveland Browns?,0 -220,Overall pick 240 was a pick in which round?,0 -222,What position is played by pick 255 overall?,0 -223,Which player was chosen in round 17?,0 -225,The record of 9-4 was against which opponent?,0 -226,The game number of 8 had a record of what?,0 -229,What round was Bill Hill drafted?,0 -230,What was the name of the quarterback drafted?,0 -231,Where is the college where Keith Hartwig plays?,0 -232,What is the name of the linebacker at Illinois college?,0 -234,Which round did Tommy Kramer play in>,0 -235,What is Rice's collage score?,0 -238,Which player went to Emporia State?,0 -240,What college did Bill Cappleman go to?,0 -241,"For the headstamp id of h2, what was the color of the bullet tip?",0 -242,"For the functional type of light ball, what were the other features?",0 -246,What number of completions are recorded for the year with 12 games started?,0 -249,Which person is in the tronto/broadway and has a uk tour of n/a,0 -251,Who was Class AAA during the school year of 2000-01?,0 -252,Who was Class AAA during the same year that Class A was (tie) Apple Springs/Texline?,0 -253,Who was Class AAAAA during the school year of 1995-96?,0 -254,Who was Class AAA during the same year that Class AAAAA was Brownsville Pace?,0 -259,What was the original air date of an episode set in 1544?,0 -261,"Who wrote the episode that was set in winter 1541/february 13, 1542?",0 -262,"What episode number of the season was ""The Northern Uprising""?",0 -263,What is the name of the track that lasts 5:30?,0 -264,What is the album namethat has the track title Sweetness 甜甜的 (tián tián de)?,0 -265,What is the duration of the song where the major instrument is the piano and the date is 2004-02-03?,0 -267,What is the major instrument of the song that lasts 4:32? ,0 -269,What is the playoffs for the usl pro select league?,0 -271,What was the team where series is formula renault 2.0 nec?,0 -275,What is the podium for 144 points?,0 -281," what's the league where regular season is 2nd, northwest",0 -282,what are all the regular season where year is 2011,0 -287,What is the name of the episode told by Kiki and directed by Will Dixon?,0 -288,"Who is the storyteller in the episode called ""The Tale of the Jagged Sign""?",0 -289,Who wrote Episode #3?,0 -290,"Who are the villains in the episode titled ""The Tale of the Forever Game""?",0 -292,Who are the villains in the episodes where Megan is the storyteller and Lorette LeBlanc is the director?,0 -294,Name the species when petal width is 2.0 and petal length is 4.9,0 -295,Name the sepal width for i.virginica with petal length of 5.1,0 -297,Name the sepal length for sepal width of 2.8 and petal length of 5.1,0 -298,Name the sepal width when sepal length is 6.5 and petal width is 2.2,0 -299,Name the sepal lengh when sepal width is 2.9 and petal width 1.3,0 -301,Who is the director of the episode whom Scott Peters is the writer?,0 -302,Who is the villain in episode #7?,0 -304,When did the episode written by Jim Morris air?,0 -305,What was Datsun Twin 200's fastest lap?,0 -306,"In the Datsun Twin 200 race, what was the fastest lap?",0 -307,What's the report for the True Value 500?,0 -308,What was Johnny Rutherford's fastest lap while Al Unser was the pole position?,0 -310,"Which countries have a scouting organization that was founded in 1926, and joined WOSM in 1930?",0 -311,"Does Venezuela admit only boys, only girls, or both?",0 -312,"Which organizations were founded in 1972, but became WOSM members until 1977?",0 -313,"Does the Scout Association of Hong Kong admit boys, girls, or both?",0 -314,"Does the Ghana Scout Association (founded in 1912) admit boys, girls, or both?",0 -316,What is the print resolution (FPI) for December 2002?,0 -317,What is the maximum memory for the model discontinued in November 2001?,0 -318,What is main presenters of La Granja?,0 -319,What is the main presenter of bulgaria?,0 -322,What is the league apps for season 1923-24?,0 -323,What is the team for season 1911-12?,0 -325,who's the premier with in 1970,0 -326,who are all the runner-up for premier in richmond,0 -329,Which street is 12.2 miles long?,0 -330,Where does Route 24 intersect?,0 -331,Where is milepost 12.8?,0 -333,Who were the operational owners during the construction date of April 1892?,0 -334,Where can you find Colorado and Southern Railway #9?,0 -335,"What is the wheel arrangement for the train in Riverdale, Georgia?",0 -336,When was the train 2053 built?,0 -338,Which college has the men's nickname of the blazers?,0 -339,Name the joined for the wolfpack women's nickname,0 -340,Name the left of the Lady Pilots.,0 -341,"Name the women's nickname when the enrollment is 1500 in mobile, Alabama.",0 -342,"Which conference is in Jackson, Mississippi?",0 -343,What is the men's nickname at the school that has the lady wildcats women's nickname?,0 -344,"What is the Mens Nickname for the member location of Jacksonville, florida?",0 -347,What is the year the institution Tougaloo College joined?,0 -348,What is the date of vacancy when the date of appointment is 28 november 2007 and replaced by is alex mcleish?,0 -349,What is the date of appointment when the date of vacancy is 21 december 2007?,0 -350,Who replaced when team is wigan athletic?,0 -351,What is the date of vacancy when the team is manchester city and replaced by is mark hughes?,0 -352,What is the date of appointment when replaced by is roy hodgson?,0 -353,Who replaced when position in table is pre-season?,0 -355,Did any team score games that totaled up to 860.5?,0 -356,What was the score of the game when the team reached a record of 6-9?,0 -357,What type institution is point park university,0 -359,point park university is what type of institution,0 -361,"Who wrote the episode titled ""black""?",0 -362,"Who are the writers for the episode ""solo""?",0 -363,what is the original air date of the episode no in season 9?,0 -364,"What is the title of the episode written by denis leary, peter tolan and evan reilly?",0 -366,When was Kamba active?,0 -367,What was the cyclone's pressure in the storm that death was equal to 95km/h (60mph)?,0 -368,What were the active dates for the storm that had 185km/h (115mph) deaths?,0 -369,What was the damage (usd) from the cyclones that measured 1003hPa (29.62inHg) pressure?,0 -370, what's the average where high score is 120,0 -371, what's the player where 50 is 2 and n/o is 0,0 -372, what's the player where inns is 21,0 -373,Which general election had a pq majority and a 44.75% of the popular vote?,0 -378,"On december 16, 1985, all the records were what?",0 -385,In which stadium is the week 5 game played?,0 -386,In Penney's game what is the probability where the 1st player wins if the probability of a draw is 8.28% and the 2nd player chooses B BR?,0 -387,"If the first player chooses RB B, what is the second player's choices?",0 -388,What is the probability where the second player wins where their choice is R RB and the first player has a 5.18% chance of winning?,0 -389,What are the chances the first player will win if the 2nd player has an 80.11% chance of winning with the choice of R RB?,0 -390,What are the chances that player 2 wins if player 1's choice is BB R?,0 -391,How high is the chance that player 1 wins if player 2 has an 88.29% chance of winning with the choice of R RB?,0 -392, what is the nfl team where player is thane gash,0 -394, what's the nfl team where player is clifford charlton,0 -395, what's the position where player is anthony blaylock,0 -397,Which province has a density of 971.4?,0 -400,Which province has a gdp of 38355€ million euros?,0 -401,What is the population estimate for the place that gad a 18496€ million euro gdp?,0 -402,"What is the title when original air date is may15,2008?",0 -404,Who directed the episode where u.s. viewers (million) is 12.90?,0 -406,What date did the DVD for season six come out in region 2?,0 -408,"What DVD season/name for region 2 was released August 22, 2010?",0 -410,what is the score for the dams?,0 -413,Which series with 62 points?,0 -416,what is the name of the report that lists the race name as long beach grand prix?,0 -417,what is the report called where the circuit took place at the nazareth speedway?,0 -418,what is the name of the race where newman/haas racing is the winning team and rick mears is at the pole position?,0 -419,meadowlands sports complex is the circuit at which city/location?,0 -420,What is the literacy rate for groups that grew 103.1% between 1991 and 2001?,0 -423,What is the population percentage of the group where the rural sex ratio is 953?,0 -424,"What is the original air date for the title ""felonious monk""?",0 -425,What is the title of the episode directed by Peter Markle and written by Jerry Stahl?,0 -427,Who does the lap-by-lap in 2011?,0 -428,Which network has Marty Reid as host and lap-by-lap broadcaster?,0 -431,"When did the episode titled ""Lucky Strike"" air for the first time?",0 -432,"Who was the writer of the episode titled ""One Hit Wonder""?",0 -433,What's the date of the first airing of the episode with series number 63?,0 -435,How many viewers tuned into the show directed by Matt Earl Beesley?,0 -436,Who wrote episode 94?,0 -437,Which episode was the number in the season where the number in the season is 10?,0 -438,"How many episodes were in the season that had the epiosde of ""crow's feet""?",0 -439,When did the 113 episode air?,0 -442,When did the no. 23 show originally air?,0 -443,Which circuits had a race on October 4?,0 -444,In which reports does Michael Andretti have the pole position and Galles-Kraco Racing is the winning team?,0 -446,Which rounds were held on August 9?,0 -449,Name the round of 32 in conference usa,0 -450,What is the record when round of 32 is 0 and metro atlantic conference?,0 -452,Who directed the episode with production code 7aff03?,0 -453,What is the title of the episode wtih 10.34 million U.S viewers?,0 -454,What place is the team that completed 6 races?,0 -455,"how much did the british formula three called ""fortec motorsport"" score?",0 -456,how many races were in 2009 with 0 wins?,0 -457,What years did art grand prix compete?,0 -458,What year had a score of 9?,0 -460,Who took test #4?,0 -462,Who had the challenge of night driving?,0 -464,Who directed El Nido?,0 -465,Who directed Dulcinea?,0 -466,What are the slovenian names of the villages that had 65.9% of slovenes in 1951?,0 -467,What are the slovenian names of the villages that had 16.7% of slovenes in 1991?,0 -469,what percent of slovenes did the village called čahorče in slovenian have in 1991?,0 -470,What is the slovenian name for the village that in german is known as st.margarethen?,0 -471,"For games on December 20, how many points did the scoring leaders get?",0 -472,Who was the scoring leader and how many points did he get in games on December 23?,0 -473,What is the pick # for the position de?,0 -474,Which player went to college at Saint Mary's?,0 -475,What is the position for the player with cfl team Winnipeg blue bombers?,0 -476,Which player went to college at Laval?,0 -477,What was the college for the player with the cfl team of Edmonton Eskimos (via calgary)?,0 -478,What's the team of the player from St. Francis Xavier College?,0 -479,What player is on the Montreal Alouettes CFl team?,0 -481,What's the pick number of the player whose position is CB?,0 -483,What player went to Ohio State College?,0 -486,Which CFL Teams drafted an OL in 2006?,0 -487,Which college is aligned to the Saskatchewan Roughriders?,0 -488,What Position did the Hamilton Tiger-Cats (via Ottawa) pick in the 2006 Draft.,0 -492,"Who directed the episode ""Escape""?",0 -494,"What episodes are there where the season premier is September 23, 2009?",0 -495,What is the season finale for season 4?,0 -496,How many season premiers have a rank of #21?,0 -497,"What are the seasons where September 26, 2007 is the season premier?",0 -498,What max processor has a maximum memory of 256 gb?,0 -499,What is the max memory of the t5120 model?,0 -501,"What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have?",0 -502,What is the ga date of the t5120 model?,0 -503,What is the sport of the La Liga league?,0 -507,Who were the directors of the film submitted with the title Young Törless?,0 -508,What was the original title of the film submitted with the title A Woman in Flames?,0 -509,In what years was a film submitted with the title The Enigma of Kaspar Hauser?,0 -510,Who were the directors of the film with the original title o.k.?,0 -511,What is the division for the division semifinals playoffs?,0 -512,"What is the number in series of ""say uncle""?",0 -513,What is the title written by David Mamet?,0 -514,What was the finale for 潮爆大狀,0 -515,What was the finale for 潮爆大狀,0 -516,How many viewers were there for the premier with 34,0 -518,Who was the director of the episode with a production code of 2393059?,0 -520,"When did the episode title ""Duet For One"" air?",0 -521,Which episode had 16.38 million U.S. viewers?,0 -522,"What is the production code of the episode written by José Molina that aired on October 12, 2004?",0 -523,"What was the original air date of the episode ""Quarry""?",0 -524,Which episode was directed by Jean de Segonzac?,0 -525,what are the original air dates with a production code of 2394087,0 -526,"Who are the writers for the title ""boxing sydney""",0 -527,"What are the production codes for the title ""all about brooke""",0 -528,Who are the writer(s) for the production code 2394084,0 -531,Who's the writer for the episode with a production code 2395114?,0 -532,"Who directed the episode titled ""Full Metal Betsy""?",0 -533,What's the number of the episode with production code 2395118?,0 -534,Who was the writer for the episode with production code 2395096?,0 -535,What generation of spectrograph is most likely to detect a planet with a radial velocity of 0.089 m/s?,0 -536,How long is the orbital period for the planet that has a semimajor axis of 5.20 au?,0 -537,What generation of spectrograph is Jupiter detected by?,0 -538,Which planet has an orbital period of 11.86 years?,0 -539,who directed the production code 2398204,0 -540,"when did ""unpleasantville"" air?",0 -541,What is player Alexis Bwenge's pick number?,0 -542,What player is pick #2?,0 -543,Which player's college is Saskatchewan?,0 -546,"when was the episode named ""the doctor is in... deep"" first broadcast ",0 -549,Which player went to Michigan State?,0 -550,Which player went to college in Oklahoma?,0 -551,Which position does Colt Brennan play?,0 -552,What is the height of the person that weighs 320 pounds?,0 -556,What CFL teams are part of Simon Fraser college?,0 -557,Which players have a pick number of 27?,0 -559,What schools did lenard semajuste play for?,0 -563,What teams drafted players that played for northwood school?,0 -564,What college did Craig Zimmer go to?,0 -565,What is the pick number of regina?,0 -566,What is the player who is lb and cfl team is saskatchewan roughriders?,0 -567,What is the cfl team that has a position of ol?,0 -569,What is the cfl team with ryan folk?,0 -570,What release date is when kids-270 is a reference? ,0 -571,what is the title where romaji is titles da.i.su.ki,0 -572,what are the title in japanese where the reference is kids-430?,0 -573,who is the reference when romaji title is heartbreak sniper?,0 -576,What was the partial thromboplastin time for factor x deficiency as seen in amyloid purpura,0 -578,What was the bleeding time for the factor x deficiency as seen in amyloid purpura,0 -579,What conditions had both prolonged bleeding times and prolonged partial thromboplastin times,0 -580,What was the bleeding time for factor xii deficiency,0 -581,What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected,0 -582,what's the tuesday time with location being millhopper,0 -583,what's the wednesday time with monday being 10:00-8:00,0 -584,what's the thursday time with location being hawthorne,0 -585,what's the saturday time with wednesday being 10:00-5:00,0 -586,what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00,0 -587,what's the monday time with tuesday being 9:00-6:00,0 -588,What are all the reports where Paul Tracy had the fastest lap?,0 -589,Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?,0 -590,Who had the fastest lap in the races won by Max Papis?,0 -592,What are the original names of the districts where the population in the 2010 census was 210450?,0 -593,What is the original name of the district with the current English name of South Bogor?,0 -596,What is the area in km2 for the district whose original name was Kecamatan Bogor Timur?,0 -598,What is the title of the episode directed by Mark Tinker?,0 -602,Who directed Episode 8?,0 -603,"Who directed the episode called ""Tell-tale Heart""?",0 -604,What was the original air date for Series 36?,0 -605,Who wrote Series 38?,0 -607,Who won the 1973 democratic initial primary for queens of 19%?,0 -608,What is the manhattan for richmond 35%?,0 -609,What is the queens where richmond staten is 42%?,0 -610,what's the party with brooklyn value of 51.0%,0 -611,what's the brooklyn with queens value of 16.8%,0 -613,what's the % with total value of 249887 and queens value of 6.8%,0 -614,Which teams were in the central division and located in livonia?,0 -615,Which teams are located in highland township?,0 -616,What conference was the churchill chargers team in?,0 -617,What was the titles of the episodes written by ken lazebnik?,0 -618,Who directed an episode that had 2.81 million U.S. viewers?,0 -619,What were the names of the episodes that had 3.02 million U.S. viewers?,0 -620,"What were the original air dates of the episode named ""winds of war""?",0 -621,Who directed episodes that had 2.61 million U.S. viewers?,0 -622,"How many millions of U.S. viewers watched ""Brace for Impact""?",0 -623,"How many millions of U.S. viewers watched the episode that first aired on March 31, 2013?",0 -624,Who wrote the episodes that were viewed by 2.12 million viewers?,0 -625,The episode written by Rebecca Dameron aired on what date? ,0 -627,"Who wrote the episode that aired on April 17, 2011? ",0 -629,"How many millions of views in the country watched ""Line of Departure""?",0 -630,What is the name of the shield winner in which the mls cup winner and mls cup runner up is colorado rapids?,0 -631,What is the name of the shield winner in which the mls cup winner and mls supporters shield runner up is Chivas usa?,0 -632,who is the of the shield winnerin which the mls cup runner-up and mls cup winner is real salt lake?,0 -633,Which shield winner has the mls cup runner up and the season is 2000?,0 -636,Which city had the charleston area convention center as its callback location,0 -637,When did the callbacks from rancho bernardo inn air,0 -638,The station located in Albuquerque has been owned since what year?,0 -639,What channels have stations that were affiliated in 2002?,0 -640,What market is KTFK-DT in?,0 -641," what's the engine where performance is 0–100km/h: 10.5s, vmax km/h (mph)",0 -642, what's the turbo where trim is 2.0 20v,0 -643," what's the torque where performance is 0–100km/h: 7.5s auto, vmax: km/h (mph)",0 -644, what's the transmission where turbo is yes (mitsubishi td04-16t ),0 -645, what's the fuel delivery where power is hp (kw) @6500 rpm,0 -646,""" what's the engine with turbo being yes (mitsubishi td04-15g ) """,0 -647,What is the english title that has finale as 33 and peak as 42?,0 -648,What is the english title where the premiere is less than 30.0 and the finale is bigger than 36.0?,0 -649,What is the rank of the chinese title 緣來自有機?,0 -650,What amount is the number of hk viewers where chinese title is 十兄弟?,0 -651,"What is the weekly rank with an air date is november 12, 2007?",0 -652,"What is the air date of the episode ""blowback""?",0 -654,What is the episode where 18-49 has a rating/share of 3.5/9,0 -655,What is the viewers where the rating is 5.3?,0 -656,What is the 18-49 rating/share where the viewers is 5.61?,0 -657,What is the highest of balmoor/,0 -660,What is the stadium for alloa athletic?,0 -663,When are team Galway's dates of appointment?,0 -664,When are the vacancy dates for outgoing manager Damien Fox?,0 -665,When is the date of vacancy of Davy Fitzgerald being a replacement?,0 -666,Which team has the outgoing manager John Meyler?,0 -668,What is the hand for 4 credits is 1600?,0 -671,What duration is listed for Christian de la Fuente?,0 -672,What was the final episode for Dea Agent?,0 -673,What days is greenock morton vacant?,0 -674,What are the dates of the outgoing manager colin hendry does appointments? ,0 -675,What teams does jim mcinally manage?,0 -676,What days are vacant that were replaced by john brown?,0 -677,What manner of departure is listed with an appointment date of 13 march 2008,0 -678,What is the date of appointment for outgoing manager Campbell Money,0 -680,What team plays at Palmerston Park?,0 -684," who is the champion where semi-finalist #2 is na and location is morrisville, nc",0 -685, what's the score where year is 2007,0 -687, who is the semi-finalist #1 where runner-up is elon university,0 -688, who is the runner-up where year is 2004 and champion is north carolina state,0 -689," who is the runner-up where location is ellenton, fl and year is 2004",0 -690,what's the naturalisation by marriage with numer of jamaicans granted british citizenship being 3165,0 -692,what's the naturalisation by marriage with regbeingtration of a minor child being 114,0 -693,what's the numer of jamaicans granted british citizenship with naturalisation by residence being 927,0 -696,"What were the results of episodes with the first air date of March 6, 2008?",0 -697,How many millions of viewers watched episode 15?,0 -698,"How many millions of viewers watched the ""Throwing Heat"" episode?",0 -699,How many millions of viewers watched the episode directed by Anthony Hemingway?,0 -700,The Catalog number is 80809 what is the title?,0 -702,"where catalog number is 81258 , what are all the studio ?",0 -703,"where title is am/pm callanetics , what are all the copyright information?",0 -705,Which losing team had a score of 24-12?,0 -706,What was the losing team in the 1993 season?,0 -707,What was the compression ration when the engine was Wasp Jr. T1B2?,0 -708,"What is the compression ration when the continuous power is hp (kw) at 2,200 RPM and the octane rating is 80/87?",0 -711,"When critical altitude is sea level, what is the compression ration for a supercharger gear ratio of 7:1?",0 -713,"The episode ""chapter five: dressed to kill"" had a weekly ranking of what?",0 -717,What was the date that the st. george-illawarra dragons lost?,0 -718,"Brett kimmorley, who was chosen for the clive churchill medal belonged to what team?",0 -719,What time slots have a 6.3 rating,0 -720,"What time slot is the episode ""the way we weren't"" in",0 -721,"What time slot is the episode ""who's your daddy"" in",0 -722,Which air date had an 11 share,0 -723,Which air date had the 18-49 rating/share of 3.3/9,0 -724,"Which characters had their first experience in the episode ""consequences""?",0 -725,What episode had the last appearances of the late wife of mac taylor?,0 -726,Which characters were portrayed by reed garrett?,0 -728,"What episode was the last appearance of the character, rikki sandoval?",0 -729,On which episode did actress Sela Ward make her last appearance?,0 -730,"Which actors first appeared in ""Zoo York""?",0 -731,How many episodes did actress Vanessa Ferlito appear in?,0 -732,"Which actors first appeared in episode ""Blink"" 1, 2, 3?",0 -734,Which episode did actor A. J. Buckley last appear in?,0 -738,"What is the rank (timeslot) with the episode name ""dangerous liaisons""?",0 -742,WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7?,0 -744,WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE?,0 -745,HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007?,0 -747,"What is the rank number that aired october 26, 2007?",0 -749,"What is the viewership on november 9, 2007?",0 -751,What was the range of finishing position for 15 awarded platinum points?,0 -753,How many platinum points were awarded when 70 silver points were awarded?,0 -754,How many platinum points were awarded when 9 gold points were awarded?,0 -755,How did the episode rank that had 2.65 million viewers?,0 -757,Which timeslot did episode no. 15 hold?,0 -758,"What was the timeslot for the episode that aired on May 12, 2009?",0 -759,"What's the 18-49 (rating/share) of the episode that originally aired on May 5, 2009?",0 -761,"What's the rating of the episode originally aired on May 5, 2009?",0 -762,What episode was seen by 2.05 million viewers?,0 -763," what's the extroverted, relationship-oriented where extroverted, task-oriented is director",0 -764," what's the extroverted, relationship-oriented where moderate is introverted sanguine",0 -765, what's the founder where moderate is ether,0 -766," what's the extroverted, relationship-oriented where date is c. 1928",0 -767, who is the founder where date is c. 1900,0 -768," what's the people-task orientation scale where extroverted, relationship-oriented is team type",0 -769,What is the batting team where the runs are 276?,0 -770,Name the batting team at Durham,0 -771,What is the batting team with the batting partnets of thilina kandamby and rangana herath?,0 -772,What is the fielding team with 155 runs?,0 -773,What is the batting partners with runs of 226?,0 -774,What is the nationality of David Bairstow?,0 -775,What are the players whose rank is 2?,0 -776,How many stumpings has Paul Nixon in his career?,0 -777,Where is Adam Gilchrist from?,0 -778,What are the title that have 19.48 million u.s. viewers?,0 -779,Which titles have 18.73 u.s. viewers.,0 -780,Who wrote all the shows with 18.73 u.s. viewers?,0 -781,What is the rank where the area is Los Angeles?,0 -783,What is the number of jews asarb where the metro area is philadelphia?,0 -784,what are all the open 1st viii with u15 6th iv being bgs,0 -785,what are all the u16 2nd viii with u15 3rd iv being bbc,0 -786,what are all the open 1st viii with u15 4th iv being gt,0 -788,what are all the u15 3rd iv with u15 4th iv being bbc,0 -791,What is the location of the school named Brisbane Girls' Grammar School?,0 -795,What number is the Monaco Grand Prix?,0 -796,Who is in the pole position for the French Grand Prix?,0 -797,"What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position?",0 -799,What number is the Canadian Grand Prix on the list?,0 -800,What is the rd for the canadian grand prix?,0 -801,What is the fastest lap for the european grand prix?,0 -802,What is the pole position for the ferrari at the austrian grand prix?,0 -803,What was the result of round 2r?,0 -804,Who did Tina Pisnik verse?,0 -806,Name the outcome for round 2r,0 -807,what's the night rank with viewers (m) of 6.63,0 -808,what's the overall rank with viewers (m) of 7.44,0 -810,what's the night rank with rating of 6.2,0 -811,"what's the viewers (m) with episode of ""legacy""",0 -813,What is the group a winner for modena?,0 -814,What is the group a winner for vis pesaro?,0 -815,What group a winner was for nocerina?,0 -816,What was the group d winner for modena?,0 -817,Who had the fastest lap at the brazilian grand prix?,0 -818,Who was on the pole position at the monaco grand prix?,0 -819,Who was the winning driver when Michael Schumacher had the pole and the fastest lap?,0 -820,what are all the location where date is 5 april,0 -821,what are all the pole position where date is 26 july,0 -822,who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos,0 -823,what are all the report where winning constructor is williams - renault and grand prix is south african grand prix,0 -827,What is the date of the circuit gilles villeneuve?,0 -828,What is the location of thierry boutsen?,0 -829,Who had the pole position at the German Grand Prix?,0 -831,Who was the winning driver on 13 August?,0 -832,What was the fastest lap at the Mexican Grand Prix?,0 -835,What is the percentage of Android use when Windows is 1.15%?,0 -836,On which dates was the value of Bada 0.05%?,0 -837,"When the value of ""other"" is 0.7%, what is the percentage for Windows?",0 -838,"When Symbian/Series 40 is 0.40%, what is the percentage of ""other""?",0 -839,Which source shows Blackberry at 2.9%?,0 -840,Which colleges have the english abbreviation MTC?,0 -841,What is the Japanese orthography for the English name National Farmers Academy?,0 -842,"What is the abbreviation for the college pronounced ""kōkū daigakkō""?",0 -844,What is the Japanese orthography for National Fisheries University?,0 -849,Which country has half marathon (womens) that is larger than 1.0?,0 -850,What is the make of the car that won the brazilian grand prix?,0 -851,Who drove the fastest lap for round 8?,0 -852,What day was the grand prix in jerez?,0 -853,What event was in detroit?,0 -855,What day is the french grand prix,0 -856, who is the winners where season result is 7th,0 -857, who is the winners where season result is 9th,0 -858, what's the grand finalist where winners is collingwood,0 -859, who is the season result where margin is 51,0 -860, who is the grand finalist where scores is 11.11 (77) – 10.8 (68),0 -861, who is the grand finalist where scores is 8.9 (57) – 7.12 (54),0 -863,what is the venue where the scores are 15.13 (103) – 8.4 (52)?,0 -864,what is the venue where the margin is 4?,0 -865,what is the crowd when the grand finalist was south melbourne?,0 -866,What was the date for monaco grand prix?,0 -867,What was the date for the pole position of alain prost?,0 -868,What is the race winer of the portuguese grand prix?,0 -869,what's the race winner with date being 12 june,0 -870,what's the constructor with location being hockenheimring,0 -871,what's the race winner with location being jacarepaguá,0 -873,what's the pole position with location being hockenheimring,0 -874,what's the report with rnd being 4,0 -875,What venue has an attendance of 30824 at Essendon in 1984?,0 -876,What other venue was a runner up to Hawthorn?,0 -877,What is the other premiership when the runner up wis Geelong?,0 -878,Who are all the runner ups when the score is 9.12 (66) – 5.6 (36)?,0 -879,Who had the fastest lap in the race where Patrick Tambay was on the pole?,0 -880,What race had Nelson Piquet on the pole and was in Nürburgring?,0 -882,Which race is located in kyalami?,0 -883,What is the fastest lap with pole position of gilles villeneuve?,0 -884,Who did the fastest lap in the dutch grand prix?,0 -885,Who did the fastest lap with the race winner john watson?,0 -886,What is the constructor for 9 May?,0 -887,What is the pole position for the race with the fastest lap by Nelson Piquet and the constructor is Ferrari?,0 -888,What is the report listed for the race in San Marino Grand Prix?,0 -889,Who was the constructor in the location Monza?,0 -891,what's the report with location  österreichring,0 -892,what's the report with race argentine grand prix,0 -895,what's the race winner with constructor  renault,0 -896,what's the date with rnd  1,0 -900,What was the constructor for round 15?,0 -901,Who won the Brands Hatch circuit?,0 -902,Who constructed the I Italian Republic Grand Prix?,0 -903,What race was held at Oulton Park?,0 -904,Did the I Brazilian Grand Prix have a report?,0 -905,what is the race where the pole position is niki lauda and the date is 27 april?,0 -906,what is the date where the constructor is ferrari and the location is anderstorp?,0 -908,what is the report where the location is kyalami?,0 -909,who is the pole position for the rnd 3,0 -910,what is the race where the fastest lap is by jean-pierre jarier?,0 -911,What circuit did Clay Regazzoni win?,0 -912,What was the date when Chris Amon won?,0 -913,What circuit is the Vi Rhein-Pokalrennen race in?,0 -914,What date is listed at place 13,0 -915,What date has a solitudering circuit,0 -918,What is the name of the circuit in which the race name is ii danish grand prix?,0 -919,What is te name of the constructors dated 26 march?,0 -921,what is the name of the constructor that has the circuit zeltweg airfield?,0 -922,What is the name of the winning driver where the circuit name is posillipo?,0 -923,What is the name of the circuit where the race xi Syracuse grand prix was held?,0 -924,What kind of report is for the Pau circuit?,0 -926,Who constructed the Syracuse circuit?,0 -927,What is the name of the race in the Modena circuit?,0 -928,What is the race name in the Monza circuit?,0 -929,When does V Madgwick Cup take place?,0 -930,Which driver won the race xiv eläintarhanajot?,0 -931,Who won the Modena circuit?,0 -933,What was the report of Mike Hawthorn's winning race?,0 -934,What was the name of the race in Bordeaux?,0 -935,What is the report for the race name V Ulster Trophy?,0 -936,What is the constructor for the Silverstone circuit?,0 -937,What's the report for the Silverstone circuit?,0 -938,"What's the report for the race name, XIII Grand Prix de l'Albigeois?",0 -939,Which date did the race name XII Pau Grand Prix take place on?,0 -940,Who was the winning driver for the goodwood circuit?,0 -941,How many millions of U.S. viewers whatched episodes written by Krystal Houghton?,0 -943,Who wrote an episode watched by 19.01 million US viewers?,0 -944,What are the titles of the episodes where Rodman Flender is the director?,0 -945,What is the original air date of the Jamie Babbit directed episode?,0 -946,What is the original air date when there were 12.81 million u.s viewers?,0 -948,Who was the director when there were 13.66 million u.s viewers?,0 -949,Name the percentage where the amount won was 25,0 -950,How many games were won with 2nd oha was standing and there were 62 games?,0 -951,What is the Liscumb when Gauthier is 34?,0 -952,What is the Bello when Ben-Tahir is 296?,0 -953,What is Ben-Tahir when Bello is 51?,0 -954,What is Haydon when Larter is 11 and Libweshya is 4?,0 -955,What is Liscumb when Haydon is 1632?,0 -956,What is Doucet when Lawrance is 36?,0 -957,"Which tv had the date december 7, 1986?",0 -958,Which kickoff has the opponent at new orleans saints?,0 -960,What year was the house named gongola made?,0 -961,What is the name of the green house?,0 -962,What is the green house made of?,0 -963,What is the benue house made of?,0 -965,Which channel had the game against the Minnesota Vikings?,0 -967,Where was the game played when the team's record was 1-3? ,0 -973,"What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:?",0 -974,What is the engine configuration $notes 0-100km/h for the engine type b5244 t2?,0 -975,What is the engine displacement for the engine type b5254 t?,0 -980,what's the comment with model name being 2.4 (2001-2007),0 -981,what's the model name with engine code being b5204 t5,0 -982,what's the dbeingplacement (cm³) with torque (nm@rpm) being 350@1800-6000,0 -983,what's the model name with torque (nm@rpm) being 230@4500,0 -984,what's the model name with engine code being b5254 t4,0 -985,Name the torque of the engine is d5244 t5,0 -986,What is the model of the engine d5244 t?,0 -987,What is the model of the enginge d5252 t?,0 -988,What is the model of the engine d5244 t7?,0 -989,What is the position of number 47?,0 -990,Name the position of Turkey,0 -991,Who is player number 51?,0 -992,What is the position for the years 1998-99,0 -994,Which player is from Marshall and played 1974-75?,0 -995,Which country is the player that went to Oregon?,0 -996,Which country is Jim Les from?,0 -998,Which player played for years 2000-02,0 -999,Which school is Kirk Snyder from?,0 -1001,Which position does John Starks play?,0 -1002,Which position does Deshawn Stevenson play?,0 -1003,Which player played 2004-05,0 -1004,Name the nationality who played for 1987-89?,0 -1005,Wht years did truck robinson play?,0 -1006,What is the player that played 2004-05?,0 -1007,What is the number of players that played 1987-89?,0 -1008,What is the nationality of bill robinzine?,0 -1009,What is the player that played in 2004-05?,0 -1010,What is the nationality of the player named Kelly Tripucka?,0 -1011,What years were the Iowa State school/club team have a jazz club?,0 -1012,Which player wears the number 6?,0 -1013,Which player's position is the shooting guard?,0 -1015,What position did the player from maynard evans hs play,0 -1017,Who are the players that played for the jazz from 1979-86,0 -1018,What years did number 54 play for the jazz,0 -1020,What is the nationality of the player who played during the years 1989-92; 1994-95?,0 -1023,What is the position for player Blue Edwards?,0 -1024,"Which player played the years for Jazz in 1995-2000, 2004-05",0 -1025,Which player is no. 53?,0 -1026,During which years did Jim Farmer play for Jazz?,0 -1028,What's Jim Farmer's nationality?,0 -1031,What school or club did number 35 play for?,0 -1032,How many years did number 25 play for the Jazz?,0 -1034,What position did Lamar Green play?,0 -1036,"What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?",0 -1037,What type of ships were delivered on October 1942?,0 -1038,When was the delevery date when there were 12 ways of delivery?,0 -1039,What are the episode numbers where the episode features Jack & Locke?,0 -1040,What are the episode numbers of episodes featuring Hurley?,0 -1041,List the episode whose number in the series is 111.,0 -1042,What date got 9.82 million viewers?,0 -1043,What school placed 4th when Oklahoma State University (black) took 3rd place?,0 -1044,What school took 3rd place in 2007?,0 -1046,What school took 4th place in 2002?,0 -1047,What school took 4th place in 2001?,0 -1048,Who were the runner(s)-up when Tiger won by 11 strokes?,0 -1049,What tournament did Tiger hold a 2 shot lead after 54 holes?,0 -1051,There were 68 worcs f-c matches played on Chester Road North Ground.,0 -1053,"What's written in the notes for the locomotives with cylinder size of 12"" x 17""?",0 -1054,"Which locomotives 12"" x 17"" are both ex-industrial and built by Manning Wardle?",0 -1055,"What's the size of the cylinders built by Longbottom, Barnsley?",0 -1056,Who is the builder of the locomotives with wheel arrangement of 2-4-2 T?,0 -1057,On what date did Hudswell Clarke build the locomotive with 0-6-0 ST wheel arrangements?,0 -1060,What is the date of debut that has a date of birth listed at 24-10-1887?,0 -1061,What is the name of person that scored 10 goals?,0 -1062,What is the name of the person whose date of death is 01-04-1954?,0 -1064,What was the date of Henk Hordijk's death?,0 -1065,What frequency is the pentium dual-core t3200?,0 -1066,What is the frequency of the model with part number lf80537gf0411m?,0 -1067,What is the FSB of the model with part number lf80537gf0411m?,0 -1068,What is the FSB of the model with part number lf80537ge0251mn?,0 -1069,What is the socket for the pentium dual-core t2410?,0 -1070,What is the release date for the model with sspec number sla4h(m0)?,0 -1072,What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934?,0 -1076,What was the founding of navy blue?,0 -1079,Name the tournament for arizona,0 -1080,"Name the state and federal when property taxes is 17,199,210",0 -1081,"What is the local sources for property taxes of 11,631,227?",0 -1082,"What is the number of local sources for state and federal 12,929,489",0 -1083,What seat does плоцкая губерния hold?,0 -1084,Whose name in Polish holds the Lublin seat?,0 -1085,"Who, in Polish, governs a location with a population of 1640 (in thousands)?",0 -1086,What seat does Gubernia Warszawska hold?,0 -1087,What population (in thousands) is Lublin's seat?,0 -1088,плоцкая губерния governs an area with what area (in thousand km 2)?,0 -1089,What is the up/down at the venue that hosted 7 games?,0 -1090,What was the attendance last year at Manuka Oval?,0 -1091,What was the lowest attendance figure at Football Park?,0 -1094,what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28,0 -1095,what's the winner with tournament value of kroger senior classic,0 -1096,what's the date with tournament value of ford senior players championship,0 -1097,what's the location with tournament value of quicksilver classic,0 -1098,what's the score with date  oct 1,0 -1099,What was the score for the Toshiba Senior Classic?,0 -1100,Who was the winner when the score was 281 (-6)?,0 -1102, what's the tournament where winner is raymond floyd (1),0 -1104, what's the date where location is illinois,0 -1106, what's the location where tournament is raley's senior gold rush,0 -1108,How much was the prize money for the 275000 purse?,0 -1109,What is the prize money for Virginia?,0 -1111,What's the winner of the Painewebber Invitational tournament?,0 -1112,Where was the GTE Suncoast Classic tournament held?,0 -1114,What are all the dates with a score of 203 (-13)?,0 -1115,For which tournaments was the score 135 (-7)?,0 -1116,Which tournaments have a first prize of $40000,0 -1119,Name all the tournaments that took place in Rhode Island.,0 -1120,What is the state that hosted a tournament with the score of 208 (-8)?,0 -1121,Where was the Fairfield Barnett classic tournament held?,0 -1123,When did the series number 23 air?,0 -1125,What was the airdate of 21 series number?,0 -1126,Which located featured the first prize of 33500?,0 -1127,Who won the Suntree Seniors Classic?,0 -1128,How much was the prize in the tournament where the winning score was 289 (9)?,0 -1129,When was the tournament that was won with a score of 204 (-6) played?,0 -1130,"Who wrote ""Stop Being all Funky""?",0 -1132,What was the title of the episode with the production code 311?,0 -1133,Who directed the episode written by Lamont Ferrell?,0 -1134,"What date was the result 6–2, 4–6, 6–4?",0 -1136,"If the Original Air Date is 10January2008, what directors released on that date?",0 -1137,The original air date of 29November2007 has what total no.?,0 -1138,Margot Kidder had what director?,0 -1140,Which viewers had Matt Gallagher as the director?,0 -1142,"Who write ""a grand payne""?",0 -1145,What is the title of production code 514?,0 -1146,What is the location of the institution barton college,0 -1147, Which institutions joined in 1993,0 -1148,what are the locations that joined in 2008,0 -1150,When was erskine college founded,0 -1151,"What is ithe range for married filing separately where head of household is $117,451–$190,200?",0 -1153,"What is the range for married filing separately in which the head of household is $117,451–$190,200?",0 -1154,"What is the range of married filing jointly or qualified widower in which married filing separately is $33,951–$68,525?",0 -1155,"What is the range of the head of household whereas single is $171,551–$372,950?",0 -1157, who is the coach where dudley tuckey medal is ben howlett,0 -1159, who is the dudley tuckey medal where leading goalkicker is scott simister (46),0 -1161,what are all the win/loss where season is 2009,0 -1162, who is the captain where coach is geoff miles,0 -1163,In 2005-06 what was the disaster?,0 -1164,What was the scale of disaster in Peru?,0 -1165,What's the area of the voivodenship with 51 communes?,0 -1166,How big (in km2) is the voivodenship also known by the abbreviation KN?,0 -1167,How many people lived in the voivodenship whose capital is Siedlce in the year of 1980?,0 -1170,What year did a school leave that was founded in 1880?,0 -1171,What is the nickname of the school with an enrollment of 2386?,0 -1172,"What year did the school from mars hill, north carolina join?",0 -1174,What is the nickname of the newberry college?,0 -1175,What was the gross tonnage of the ship that ended service in 1866?,0 -1177,What is the air date for the episode written by Wendy Battles and directed by Oz Scott,0 -1178,"How many US viewers (millions) were there for ""cold reveal""",0 -1179,Which episode was written by anthony e. zuiker & ken solarz,0 -1180,Which episode was directed by steven depaul,0 -1181,What where the tms numbers built in 1923,0 -1182,"What year was the carriage type is 47' 6"" 'birdcage' gallery coach built",0 -1183,What tms were built nzr addington in the year 1913,0 -1184, what's the date entered service with ships name koningin wilhelmina,0 -1185, what's the date where ships name is zeeland entered service,0 -1187,what are all the date withdrawn for service entered on 21 november 1945,0 -1188,what are all the date withdrawn for twin screw ro-ro motorship,0 -1189,what are all the date withdrawn for koningin beatrix,0 -1191,What is the original air date of season 18?,0 -1194,Who won third place with the runner up being dynamo moscow?,0 -1195,What position does Matt Hobgood play?,0 -1197,What high school did Jeff Malm attend?,0 -1199,Who was drafted from the school Mountain Pointe High School?,0 -1200,What school did the player Ethan Bennett attend?,0 -1201,What MLB Drafts have the position pitcher/infielder? ,0 -1202,"What positions were drafted from Las Vegas, NV?",0 -1203,What is the hometown of Bubba Starling?,0 -1205,What was the hometown of the player who attended Athens Drive High School?,0 -1206,What school did Pat Osborn attend? ,0 -1207,What is Josh Hamilton's hometown?,0 -1208,What school does Kerry Wood play for?,0 -1209,"What's the position of the player from Germantown, TN?",0 -1210,What player goes to Torrey Pines High School?,0 -1211,What position does Kerry Wood play in?,0 -1212,What's Shion Newton's MLB draft result?,0 -1213,What is the hometown of the pitcher who's school was Saint Joseph Regional High School?,0 -1214," What is the school of the player from Lake Charles, LA?",0 -1215,Where was mlb draft for the player who's school was Carl Albert High School?,0 -1216,"What school did the player attend who's hometown was Montvale, NJ?",0 -1217,"What is the school for the player who's hometown was Irvine, CA?",0 -1219,"What player is from Spring, Tx?",0 -1220,What town is Brighton High School in?,0 -1221,The catcher went to what school? ,0 -1223,What is the postion of the player listed from Dooly County High School?,0 -1224,What player represented Vista Murrieta High School?,0 -1225,What was the position of the player from Butler High School?,0 -1226,"What position belonged to the player from Paramus, New Jersey?",0 -1227,What town is Muscle Shoals High School located in?,0 -1228,"What pick was the player from Apopka, FL in the 2002 MLB draft",0 -1229,WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND?,0 -1230,WHAT IS THE HOMETOWN OF TONY STEWARD?,0 -1231,WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY?,0 -1233,WHAT SCHOOL DOES HA'SEAN CLINTON-DIX BELONG TO?,0 -1236,What is the hometown of the player who attended American Heritage School?,0 -1239,Which college has the player Rushel Shell?,0 -1240,Which players attend Stanford college?,0 -1241,"Which school is in the hometown of Aledo, Texas?",0 -1242,Zach Banner is a player at which school?,0 -1244,Which college does the player John Theus associate with?,0 -1245,"What player's hometown is Abilene, Texas? ",0 -1247,What position is Charone Peake? ,0 -1248,Running back Aaron Green went to Nebraska and what high school? ,0 -1249,"What player's hometown is Roebuck, South Carolina? ",0 -1250,"what are all the positions of players who's hometown is concord, california",0 -1251,who are all the players for st. thomas aquinas high school,0 -1252,who are all the players for mission viejo high school,0 -1253,What is the hometown of the players for de la salle high school,0 -1254,who are all the players for armwood high school,0 -1255,"What is the hometown of the players for placer, california",0 -1256,"What is the nba draft for the player from the hometown of virginia beach, va?",0 -1257,what is the college for the player who's school is camden high school?,0 -1258,what is the year for player is derrick favors?,0 -1260,what is the college for the player damon bailey?,0 -1261,"what is the player who's college is listed as direct to nba, school is st. vincent – st. mary high school and the year is 2001-2002?",0 -1262,Which hometown has the college Louisiana State?,0 -1263,"Which college is present in the hometown of Crete, Illinois?",0 -1264,Which school has the player Thomas Tyner?,0 -1265,"Which school is located in the hometown of Centerville, Ohio?",0 -1266,What player is from Ohio State college?,0 -1267,Which school is home to player Thomas Tyner?,0 -1268,Where is scott starr from?,0 -1269,Where is lincoln high school located?,0 -1270,Where is Shaq Thompson from?,0 -1271,Where did Darius Hamilton go?,0 -1272,Where is Norco HIgh School?,0 -1273,What is the height of the player that went to ohio state?,0 -1275,Name the numbers of the nba draft where the player went to kentucky,0 -1276,What was the rating in 1997?,0 -1277,Who narrated the lap-by-lap to a 13.4 million audience?,0 -1278,What was the number for Bötzow where Vehlefanz is 1.800?,0 -1279,What was the number for Vehlefanz where Bärenklau is 1.288?,0 -1280,What was the number for Schwante where Bärenklau is 1.270?,0 -1285,What is the date of vacancy for 10 december 2007 when quit?,0 -1287,What is the link abilities when the predecessors is ti-85?,0 -1288,What is the cpu of the calculator released in 1993?,0 -1289,what is the display size for the calculator released in 1997?,0 -1290,what is the display size for the calculator ti-82?,0 -1291,what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters?,0 -1293,Who was the dirctor for season 13?,0 -1294,"Who was the director for the title, ""funhouse""?",0 -1295,What is the episode title of the show that had a production code of 3T5764?,0 -1297,How many millions of U.S. viewers watched the show with a production code of 3T5769?,0 -1298,When was the show first aired that was viewed by 3.57 million U.S. viewers?,0 -1299,Who directed the show that was viewed by 2.06 million U.S. people?,0 -1300,What is the position of the player that came from the school/club team/country of Purdue?,0 -1301,Who is the player who's number is 3?,0 -1302,What is the height for the player in 1968-72?,0 -1303,Which player had a height of 6-0?,0 -1304,What is the position for the player that played in 2006?,0 -1305,What are all the names of the players who are 7-0 tall?,0 -1307,In connecticut the school/club team/country had a set height in ft. what is true for them?,0 -1308,"Rockets height was 6-6 in feet, list the time frame where this was true?",0 -1309,What is the hight of the player who's tenure lasted from 1969-70?,0 -1310,What school did the 7-4 player attend?,0 -1311, what's the years for rockets where position is guard / forward,0 -1314," what's the position where player is williams, bernie bernie williams",0 -1317,Which years had a jersey number 55,0 -1318,"Which school, club team, or country played for the rockets in the years 2000-01?",0 -1319,During which years did number 13 play for the Rockets?,0 -1322,What is the date settled for 40 years?,0 -1323,What is the median age where the area is 1.7?,0 -1324,Who is the thursday presenter of the show Big Brother 13?,0 -1325,"Who is the friday presenter for each show, when the monday presenter is Emma Willis Jamie East?",0 -1326,Who is the Tuesday presenter of Celebrity Big Brother 8?,0 -1327,Who is the Wednesday presenter of the show Big Brother 13?,0 -1328,List all of the shows with Alice Levine Jamie East is the Sunday presenter.,0 -1329,What are all the positions for the rockets in 2008?,0 -1330,What is the height of the school club team members in clemson?,0 -1331,"What years for the rockets did player ford, alton alton ford play?",0 -1332,"What years for the rockets did the player ford, phil phil ford play?",0 -1333,"What school/club team/country did the player fitch, gerald gerald fitch play for?",0 -1334,What is the weekly rank where the number is 4?,0 -1335,"What is the viewers for the episode ""woman marries heart""?",0 -1337,Where is ropery lane located?,0 -1338,Where is ropery lane and la matches 7 location?,0 -1342,what's the cylinders/ valves with model being 1.8 20v,0 -1343,Which units are commanded by Lieutenant Colonel Francis Hepburn?,0 -1344,What are the complements when the commander is Major William Lloyd?,0 -1345,How many were wounded when the complement was 173 off 2059 men?,0 -1346,How many where killed under Major-General Jean Victor de Constant Rebecque's command?,0 -1347,Who were the commanders when 8 off 0 men were wounded?,0 -1348,What is the gpa per capita (nominal) for the country with gdp (nominal) is $52.0 billion?,0 -1350,What is the GDP (nominal) for Uzbekistan?,0 -1352,What is the aspect ratio of the DVD released on 12/10/2009?,0 -1353,What is the name of the DVD where the number of discs is greater than 2.0,0 -1356,What is the name of the DVD where the number of discs is greater than 2.0,0 -1357,What were the wounded for complement of 46 off 656 men?,0 -1358,What was the missing for lieutenant general sir thomas picton?,0 -1360,Name the commander of 167 off 2348 men,0 -1363,WHAT POSITION DOES PATRICK WIERCIOCH PLAY?,0 -1365,WHERE IS ANDRE PETERSSON FROM?,0 -1366,What club team did JArrod Maidens play for?,0 -1367,What position does Cody Ceci play?,0 -1368,What is the Nationality when the club team is Peterborough Petes (OHL)?,0 -1369,Which player is in round 5?,0 -1370,What position is associated with an overall value of 126?,0 -1371,What position is the player Jordan Fransoo in?,0 -1373,What is the position of player Tobias Lindberg?,0 -1377,What is the position of player Marcus Hogberg?,0 -1378,3488 is the enrollment amount of what college?,0 -1380,The fighting knights has what type of nickname?,0 -1381,"Boca Raton, Florida had what joined amount?",0 -1385,Who directed the episode that was viewed by 2.57 million people in the U.S.?,0 -1386,Who directed the episode that was viewed by 2.50 million people in the U.S.?,0 -1388,what are all the percent (1990) where state is united states,0 -1390,what are all the percent (1990) where state is mississippi,0 -1393,What is the English version of the title Getto Daun?,0 -1396,What is the Japanese title for Fantasy?,0 -1397,How long is track number 8?,0 -1398,Who was the GT2 winning team when the GT3 winning team was #1 PTG?,0 -1401,What is the type where the country is esp?,0 -1402,What is the name where p is mf?,0 -1403,What is the type where the name is bojan?,0 -1404,What was the first day cover cancellation for the University of Saskatchewan themed stamp?,0 -1405,Who was responsible for the design of the Jasper National Park theme?,0 -1406,What is the paper type of the University of Saskatchewan themed stamp?,0 -1407,Who created the illustration for the stamp that was themed 100 years of scouting?,0 -1410,What is the nickname that means god holds my life?,0 -1411,Who had the high assists for game 49?,0 -1412,What was the score for the game in which Emeka Okafor (10) had high rebounds?,0 -1414,what are all the type where station number is c08,0 -1415,"what are all the type where location is st ives, cambridgeshire",0 -1416,what are all the registrations where station number is c26,0 -1417,what are all the location where station number is c11,0 -1418,what are all the registrations where location is yaxley,0 -1419,What is the issue price (proof) where the issue price (bu) is 34.95?,0 -1421,What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?,0 -1422,What is the year that the issue price (bu) is $26.95?,0 -1424,What is the number when birthday is 15 november 1973?,0 -1425,What is the bowling style of chris harris?,0 -1426,Where is the first class team of date of birth 20 november 1969?,0 -1427,What's Javagal Srinath's batting style?,0 -1428,Shivnarine Chanderpaul used what bowling style? ,0 -1431,"What's the musical guest and the song in the episode titled ""Checkmate""?",0 -1434,What is theoriginal air date of the episode directed by timothy van patten?,0 -1435,"What is the original air date for the title ""no place like hell""?",0 -1437,"What is the original air date where the musical guest and song is blackstreet "" yearning for your love ""?",0 -1438,"What is the title of the episode with the original air date of february 6, 1997?",0 -1440,"Which tittles have an original air date of March 19, 1998",0 -1441,"what are the original air dates with a title of ""spare Parts""",0 -1442,What was the attendance of the game November 24,0 -1443,Who had the highest assists on November 4,0 -1444,Who had the highest rebounds on November 4,0 -1446,What was the final score on March 26?,0 -1447,What is the team when the score is 88–86?,0 -1448,What is the score when high points is from pierce (30)?,0 -1451,"What is the team when location attendance is us airways center 18,422?",0 -1452,What is the record where high assists is pierce (6)?,0 -1453,What was the result of the game when the raptors played @ cleveland?,0 -1454,Who did the high points of game 5?,0 -1456,What is the team of april 25?,0 -1457,Who had the high rebounds when Chris Bosh (16) had the high points?,0 -1458,"What was the score when the location attendance was Air Canada Centre 18,067?",0 -1459,When did Chris Bosh (14) have the high rebounds?,0 -1460,Who had the high points on January 23?,0 -1463,Who had high points when high rebound is gray (8)?,0 -1464,What is the date deng (20) had high points?,0 -1465,"What was the score of united center 22,097?",0 -1467,What was the location attendance on the date of November 15?,0 -1468,"Where was the game played when the high assists were scored by billups , stuckey (4)?",0 -1469,What date was the game for the score L 88–79?,0 -1471,Which team was played when the high points was from Wallace (20)?,0 -1472,Which date was the team playing @ Memphis?,0 -1474,Who had the high assists on the date December 12?,0 -1475,What date was game 57 held on?,0 -1477,Who did the most high rebounds in the game 24?,0 -1478,What was the score of the game played on December 8?,0 -1481,What is the location when the high rebounds was from A. Horford (13)?,0 -1482,How had the high points when the high assists were from J. Johnson (7)?,0 -1483,Who had the high rebounds when the high assists were from J. Johnson (7)?,0 -1484,Which team was played on April 20?,0 -1485,Who had the high rebounds for the game on april 23?,0 -1486,What was the score in the game on May 11? ,0 -1487,Who was the high scorer and how much did they score in the game on May 3? ,0 -1488,What was the series count at for game 5? ,0 -1489,Where was the game on May 15 and how many were in attendance? ,0 -1490,What was the attendance on March 17?,0 -1491,What was the high assist total on May 11?,0 -1493,What is the score of the game with the streak l5,0 -1494,What is the attendance for the home game at Los Angeles Lakers?,0 -1495,What is the record for the game at home Los Angeles Lakers?,0 -1496,What was the result and score of Game #29?,0 -1497,Who was the leading scorer in Game #26?,0 -1498,Who had the high rebounds when the score was l 84–102 (ot)?,0 -1499,Who had the high assists when the high rebounds were from Nick Collison (15)?,0 -1500,Who had the high assists @ Dallas?,0 -1501,"Who had the high assists when the location attendance was Toyota Center 18,370?",0 -1502,What was the record when the high rebounds was from Nick Collison (11)?,0 -1505,Whom did they play on game number 25?,0 -1508,What is the leading scorer on february 1?,0 -1509, what's the score where record is 35–33,0 -1510, what's the home where date is march 27,0 -1511, what's the date where visitor is phoenix suns and record is 31–30,0 -1512, what's the home team where score is l 80–88,0 -1513, what's the leading scorer on march 2,0 -1514, what's the leading scorer where home is sacramento kings,0 -1515, what's the team where date is february 8,0 -1516, what's the location attendance where high rebounds is nick collison (14),0 -1517, what's the record where score is w 105–92 (ot),0 -1518, what's the location attendance where record is 14–39,0 -1520," what's the record where location attendance is keyarena 13,627",0 -1521,What is the score for april 29?,0 -1523,"Name the high points for toyota center 18,269?",0 -1524,what's the preliminaries with average being 9.135,0 -1525,what's the evening gown with preliminaries being 9.212,0 -1526,what's the interview with swimsuit being 9.140,0 -1527,what's the evening gown with swimsuit being 9.134,0 -1528,what's the preliminaries with average being 9.360,0 -1530,"What playoff result happened during the season in which they finished 1st, southern?",0 -1532,What was the result of the open cup when they finished 4th in the regular season?,0 -1535,What was the playoff result for theteam in the apsl in 1992?,0 -1536,What was the status of tropartic?,0 -1537,What is the status of joe gibbs racing?,0 -1538,What is the laops of marcis auto racing?,0 -1539,what's the author / editor / source with index (year) being press freedom (2007),0 -1541,what's the author / editor / source with world ranking (1) being 73rd,0 -1544,Who was the winning team in the 1989 season?,0 -1545,Who won the womens doubles when wu jianqui won the womens singles?,0 -1546,Who won the mixed doubles when ji xinpeng won the mens singles?,0 -1548,WHO WROTE THE STORY WITH THE PRODUCTION CODE OF 1ADK-03,0 -1549,"WHAT IS ""DAVE MOVES OUT"" PRODUCTION CODE?",0 -1550,"WHO WROTE ""DAD'S DEAD""",0 -1551,"WHO AUTHORED ""RED ASPHALT""?",0 -1553,"What's the season number of the episode titled ""Houseboat""?",0 -1554,"What's the season number of the episode titled ""Grad school""?",0 -1555,Who directed the episode with a production code 3ADK-03?,0 -1557,What is the pinyin for the English name Wuping County?,0 -1558,What is the area of the English name Shanghang County?,0 -1559,Which pinyin have a population of 374047?,0 -1562,"What is the the name of the NHL team that is in the same market as the NBA team, Nuggets?",0 -1563,What is the NHL team in the media market ranking number 7?,0 -1565,What are the comments when the vendor and type is alcatel-lucent routers?,0 -1566,What are the comments when vendor and type is enterasys switches?,0 -1567,What is the netflow version when vendor and type is pc and servers?,0 -1568,What are the comments when the implementation is software running on central processor module?,0 -1569,"What is the implementation when the netflow version is v5, v8, v9, ipfix?",0 -1573,What is the percent for when against prohibition is 2978?,0 -1574,What is the percent for in manitoba?,0 -1576,What train number is heading to amritsar?,0 -1577,How often does a train leave sealdah?,0 -1578,Where does the bg express train end?,0 -1579,What's the name of train number 15647/48?,0 -1581,Who is the academic & University affairs when the Human resources & operations is N. Charles Hamilton?,0 -1582,What year was communications and corporate affairs held by Jeff Rotman?,0 -1583,What was the built data for Knocklayd rebuild?,0 -1585,What is the built data on the scrapped information that is cannot handle non-empty timestamp argument! 1947?,0 -1587,What is the built data for number 34?,0 -1589,Who won the womens singles when Marc Zwiebler won the men's singles?,0 -1591,"For the model with torque of n·m (lb·ft)/*n·m (lb·ft) @1750, what is the power?",0 -1592,"For the model/engine of 1.8 Duratec HE, what is the torque?",0 -1594,"What is the torque formula for the model/engine which has 1,753 cc capacity?",0 -1595,What is the torque formula for the 1.6 Duratec ti-vct model/engine?,0 -1596,what's the date of birth with end of term being 2april1969,0 -1597,who is the the president with date of inauguration being 4june1979,0 -1599,what's the date of birth with end of term being 5july1978,0 -1600,what's the date of birth with # being 2,0 -1602,Who was the winning pitcher on june 25?,0 -1604,Who is the losing pitcher when the winning pitcher is roy oswalt?,0 -1605,Who is the winning pitcher when attendance is 38109?,0 -1607,Who's the player for the New York Rangers?,0 -1609,What is the nationality of the player from Buffalo Sabres?,0 -1610,What position does the player from Peterborough Petes (OHA) play on?,0 -1612,What team does George Hulme play for?,0 -1613,What position does Neil Komadoski play?,0 -1614,where is team player mike mcniven played for?,0 -1615,what college has nhl team chicago black hawks?,0 -1616,what is the college that has the nhl chicago black hawks?,0 -1617,who is the player with the nationality of canada and pick # is 65?,0 -1619,What is the position listed for the team the Philadelphia Flyers?,0 -1621,Which players have the position of centre and play for the nhl team new york rangers,0 -1622,Which nhl team has a college/junior/club team named university of notre dame (ncaa),0 -1623,what are all the position where player is al simmons,0 -1624,What nationality is pick # 89,0 -1625,Which college/junior/club teams nationality is canada and nhl team is minnesota north stars,0 -1627,What is the nationality of the player from the Detroit Red Wings?,0 -1628,What position does Jim Johnston play?,0 -1629,Which team does Pierre Duguay play for?,0 -1630,What country does the goaltender come from?,0 -1631, who is the writer where viewers is 5.16m,0 -1632," who is the writer for episode ""episode 7""",0 -1633,For which league is the open cup the quarter finals,0 -1634,What open cups where played in 2002,0 -1635,What leagues includes division 3,0 -1636,"What was the result of the playoffs when the regular season was 7th, southeast",0 -1637,What's the original air date of the episode with production code 2T6719?,0 -1638,Who's the writer of the episode see by 12.13 million US viewers?,0 -1641,What's the production code of the episode seen by 11.64 million US viewers?,0 -1642,What is the season where the winner is norway and the winner women is russia?,0 -1643,What is the winner women and third is italy and runner-up is finland?,0 -1645,what's the report with fastest lap being felipe massa and winning driver being jenson button,0 -1646,what's the grand prix with winning driver being jenson button,0 -1647,who is the the pole position with grand prix being italian grand prix,0 -1648,who is the the fastest lap with grand prix being european grand prix,0 -1649,"How many viewers, in millions, were for the episode directed by Tawnia McKiernan?",0 -1651,"How many U.S Viewers, in millions, were for series # 26?",0 -1652,What is the third year course in science?,0 -1653,What is the second year class following pag-unawa?,0 -1655,What is the first year course in the program where geometry is taken in the third year?,0 -1656,What is the second year course in the program where physics is taken in the fourth year?,0 -1657,Who won the womens singles event the year that Jonas Lyduch won?,0 -1658,Who won the mens doubles the year Alison Humby won the womens singles?,0 -1659,What are all the .308 Winchester cartridge types with 38 for the 300 m group (mm),0 -1660,For which 100 m group ( moa ) is the 300 m group ( moa ) 0.63,0 -1661,What are all the 300 m group (mm) with a .308 winchester cartridge type of ruag swiss p target 168 gr hp-bt,0 -1662,For which .308 winchester cartridge type is the 300 m group ( moa ) 0.51,0 -1663,For which 300 m group ( moa ) is the 300 m group (mm) 45,0 -1664,What are all the 100 m group (mm) with a .308 winchester cartridge type of .300 winchester magnum cartridge type,0 -1666,Who won the Men's Doubles when Karina de Wit won the Women's Singles?,0 -1668,Who won the Men's Doubles when Guo Xin won the Women's Singles?,0 -1669,Which college did Dennis Byrd come from?,0 -1670,Bob Johnson plays for which AFL team?,0 -1671,What position does the Cincinnati Bengals' player have?,0 -1672,What position does Syracuse's player have?,0 -1673,What college did the Cincinnati Bengals' player come from?,0 -1674,What is the pinyin for explaining music?,0 -1676,What is the pinyin for explaining beasts?,0 -1680,Who is the mens doubles when womens doubles is anastasia chervyakova romina gabdullina?,0 -1681,Who is themens doubles when the mens singles is flemming delfs?,0 -1682,Who was the womens doubles when the mixed doubles is jacco arends selena piek?,0 -1683,Who was the mens doubles when womens singles is mette sørensen?,0 -1684,Who is the Motogp winnder for the Catalunya Circuit?,0 -1685,Who is the 125cc winnder for the Phillip Island circuit?,0 -1686,What is the date of the German Grand Prix?,0 -1687,What circuit was on the date 4 May?,0 -1690,Name the mens singles for 1944/1945,0 -1692,How many times was iran barkley an opponent?,0 -1693,Who was the opponent when the result was ud 12/12 and date was 1993-05-22?,0 -1695,What is the name of the title winner in the ring light heavyweight (175) division?,0 -1697,Who won the mens singles in 2009?,0 -1698,What are the the University of Richmond's school colors?,0 -1699,What are the school colors of the University of New Hampshire?,0 -1700,What's the value of 1 USD in Paraguay?,0 -1701,What's the value of 1 Euro in the country where the value of 1 USD is 483.050 of the local currency?,0 -1702,What's the name of the central bank in the country where Colombian Peso (cop) is the local currency?,0 -1703,What's the name of the country where 1 USD equals 1.71577 of the local currency.,0 -1706,Who wrote the episode 14 in series?,0 -1707,Who directed the episode with production code 28?,0 -1708,"What is the original air date for the episode ""a pig in a poke""?",0 -1710,"Who wrote the episode titled ""the wedding anniversary""?",0 -1711,What's the title of the episode with a season number 25?,0 -1712,What's the title of the episode with a production code 136?,0 -1713,"What is the original air date for ""Oliver's Jaded Past""?",0 -1717,who is the class where note is reportedly still active as of 2012?,0 -1719,What titles were fought for on 1997-04-12?,0 -1720,What is the date of the match for the lineal super lightweight (140)?,0 -1721,What is the date of the match for the wbc flyweight (112) title?,0 -1722,Who's the leader in the young rider classification in stage 12?,0 -1723,Who's leading in the general classification in stage 1a?,0 -1725,What's the leader team in the Trofeo Fast Team in stage 20?,0 -1726,"Who's the winner in stage 1a, where the leader in the young rider classification is Francesco Casagrande?",0 -1727,Who's the leader in the general classification in stage 1a?,0 -1729,Name the trofeo fast team of stage 2,0 -1730,Name the young rider classification with laudelino cubino,0 -1732,What kind of bleeding does aspirin cause?,0 -1733,How in prothrombin affected by glanzmann's thrombasthenia.,0 -1734,How long does thromboplastin last when prothrombin is unaffected?,0 -1735,Is uremia affect prothrombin?,0 -1736,Is prothrombin time long when thromboplastin is prolonged?,0 -1737,How many live births were there in 2006 in South Yorkshire (met county)?,0 -1738,How many TFR were there in 2006 when the GFR was 53.8?,0 -1741,Where were the Womens Doubles in the 1951/1952 season and who won?,0 -1742,"Who was the womens singles winnerwhen the mens doubles were stefan karlsson claes nordin , bk aura gbk?",0 -1743,Who were the winners of mens doubles in the 1986/1987 season held?,0 -1744,"Who won the Mens Singles when the Mixed doubles went to Stellan Mohlin Kerstin Ståhl , Aik?",0 -1745,Who won the womens singles in the 1958/1959 season?,0 -1746,What county is in isolation of 29?,0 -1747,What is the county with an elevation of 1262?,0 -1748,Name the rank where the municipality is sunndal?,0 -1749,Name the county with the peak being indre russetind?,0 -1751,Who won the mens singles when sayaka sato won the womens singles?,0 -1754,Who won the men's double when Chou Tien-Chen won the men's single?,0 -1755,What team was promoted in the Serbian League East in the same season when Kolubara was promoted in the Serbian League Belgrade?,0 -1756,what's the series with reverse being swimming,0 -1757,what's the alloy with series being ii series,0 -1758,what's the denomination with year being 2008 and reverse being football,0 -1762,"Nigeria competed on July2, 1999.",0 -1765,what's the runners-up with nation being malaysia,0 -1768,how many winners from vietnam,0 -1772,Who is safe if John and Nicole are eliminated?,0 -1774,How many goals were scored by the player who played 17 matches?,0 -1775,What is the name of the player who played in 2009 only?,0 -1776,How many goals have been scored by Tiago Gomes?,0 -1777,Which athlete is from Mexico City?,0 -1778,What is the athlete from Edwardsville?,0 -1779,What was the wind on 21 june 1976?,0 -1781,What's the title of the episode with a broadcast order s04 e01?,0 -1785,What's the original air date of the episode with a broadcast order s04 e01?,0 -1787,Which police force serves a population of 17000?,0 -1788,"When total costs (2005) are $700,116, what is the cost per capita?",0 -1789,What is the cost per capita in the Courtenay municipality?,0 -1792,What is the value of total costs (2005) in the Coldstream municipality?,0 -1793,What is the interview score for the state of Virginia?,0 -1794,How much is the average score for New York state?,0 -1795,Which interview score corresponds with the evening gown score of 8.977?,0 -1798,Which interview score belongs to the state of Nevada contestant?,0 -1799,"For the competition Mithras Cup 2nd Rd (2nd Leg), what is the date and time?",0 -1800,Is the biggest win recorded as home or away?,0 -1801,What competitions record a date and time of 17.04.1920 at 15:00?,0 -1802,What records are hit where the opponent is Aylesbury United?,0 -1803,Who was the opponent during the biggest defeat?,0 -1805,What is the power when ch# is tv-26 and dyfj-tv?,0 -1806,What is the coverage for relay tv-37?,0 -1807,What is the ch# of dwlj-tv?,0 -1808,What is the coverage of relay 5kw of dyfj-tv?,0 -1809,What is the running of marlene sanchez?,0 -1811,What's Luis Siri's shooting score?,0 -1812,What's Eduardo Salas' riding score?,0 -1814,Who's the player with 2:05.63 (1296 pts) swimming score?,0 -1815,What's the fencing score of the player with 9:40.31 (1080 pts) in running?,0 -1816,What's Eli Bremer's fencing score?,0 -1818,Who wrote the title that received 1.211 million total viewers?,0 -1819,Who directed the title that was written by Adam Milch?,0 -1821,How many millions of total viewers watched season #8?,0 -1822,What is the English spelling of the strongs transliteration: 'adoniyah?,0 -1823,What is the hebrew word listed for strongs # 5418?,0 -1824,List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu,0 -1825,What is the strongs # for the hebrew word יִרְמְיָה?,0 -1826,What is the strongs # for the english spelling of the word jirmejah?,0 -1828,Which regular season contains playoffs in division finals?,0 -1832,In which season was Jeanne d'Arc (Bamako) the runner-up?,0 -1833,What was the regular season listing in 2007?,0 -1834,What was the playoff result in 2002?,0 -1835,What was the open cup results in 2004?,0 -1837,Kevin lucas appears in which seasons?,0 -1839,What seasons does stella malone appear?,0 -1840,What seasons does Nick lucas appear?,0 -1841,What seasons does Kevin Jonas appear?,0 -1842,What seasons does Nick Lucas appear in?,0 -1845,What is the title of season 3 ep# 12?,0 -1846,What is the length of the track named michigan international speedway?,0 -1847,Where is the track that opened in 1995?,0 -1848,What is the location of the daytona international speedway?,0 -1849,What is the location of the track that opened in 1950?,0 -1850,What is the power of the 3.2i v8 32v?,0 -1851,What type of quattroporte iv only produced 340 units?,0 -1852,When were 668 units produced?,0 -1853,what is the overall record when the club is dallas burn?,0 -1854,what is the goals for when the club is new england revolution?,0 -1855,What was the total prize money where John Tabatabai was the runner-up?,0 -1856,Who is the winner where the losing hand is Ah 7s?,0 -1857,What was the losing hand where the winning hand was 7h 7s?,0 -1859,When Fabrizio Baldassari is the runner-up what is the total prize money?,0 -1861,What is the sector when the population change 2002-2012 (%) is 79.6?,0 -1870,The Kansas City Wizards had a 9-10-9 record and what goals against avg? ,0 -1871,The Dallas Burn had a 12-9-7 record and what number of goals for? ,0 -1872,D.C. United had a 9-14-5 record and what goals against avg.?,0 -1874,what is the date (from) where date (to) is 1919?,0 -1876,what is the date (from) where the notes are apeldoornsche tramweg-maatschappij?,0 -1878,what is the location for the date (to) 8 october 1922?,0 -1879,what are the notes for date (from) 12 august 1897?,0 -1880,what's the livingstone with fitzroy being 9499,0 -1888,When was the ship launched when the commissioned or completed(*) is 6 june 1864?,0 -1889,When was the ship tecumseh launched?,0 -1890,What is the namesake of the ship that was commissioned or completed(*) 16 april 1864?,0 -1892,What is the program where the focus is general management?,0 -1893,what is teaching language where the focus is auditing?,0 -1894,WHat is the program where duration (years) is 1.5 and teaching language is german/english?,0 -1895,What is the teaching language with the duration (years) 3.5?,0 -1896,What is the program where the focus is risk management and regulation?,0 -1897,What are the release dates for songs in 2003?,0 -1898,"How many singles have a song titled ""Antisocial""?",0 -1899,"Which artist has a song titled ""Soothsayer""?",0 -1902,What is the driver for the team whose primary sponsor is Quicken Loans / Haas Automation?,0 -1904,What date did De Vries start?,0 -1906,What was the loan club when Derry played?,0 -1907,Who was the loan club for the Westlake game?,0 -1908,What was the position (P) for Clapham?,0 -1909,What district is represented by a Republican Appropriations Committee?,0 -1910,What are the districts represented by the Democratic Party and a Committee in Economic Matters?,0 -1912,What was the first win for pos 6?,0 -1913,What is the molecular target listed under the compounded name of hemiasterlin (e7974),0 -1914,What is the molecular target listed under the trademark of irvalec ®,0 -1915,What is the compound name listed where marine organism α is worm,0 -1917,What is the trademark listed for the molecular target : dna-binding?,0 -1919,What's the number of the episode directed by Tucker Gates?,0 -1920,"Who is the director of the episode titled ""Cheyenne, WY""?",0 -1921,What was the original air date for the episode with 3.90 u.s. viewers (millions)?,0 -1922,What is the original air date for no. 2?,0 -1923,"Who directed ""hot and bothered""?",0 -1924,Who directed the episode with 3.19 million u.s. viewers?,0 -1925,What's the price (in USD) of the model whose L3 is 18 mb?,0 -1926,What's the clock speed of the model that costs $910?,0 -1928,what is the tourney where the winner is kevin mckinlay?,0 -1929,what's the thursday iuppiter (jupiter) with tuesday mars (mars) being marterì,0 -1930,what's the sunday sōl (sun) with friday venus (venus) being vernes,0 -1931,what's the thursday iuppiter (jupiter) with friday venus (venus) being vendredi,0 -1932,what's the tuesday mars (mars) with day: (see irregularities ) being ancient greek,0 -1933,what's the saturday saturnus ( saturn) with wednesday mercurius (mercury) being mercuridi,0 -1934,what's the thursday iuppiter (jupiter) with saturday saturnus ( saturn) being jesarn,0 -1935,What is the sequencer when ion torrent pgm is 200-400 bp?,0 -1937,How much was solidv4 when pacbio is $300 usd?,0 -1938,What is solidv4 when sequencer is data output per run?,0 -1939,WHat is hiseq 2000 when 454 gs flx is 700 bp?,0 -1940,What is 454 gs flx when pacbio is 100-500 mb?,0 -1942,What's the Slovene word for Thursday?,0 -1943,How do you say Friday in Polish?,0 -1944,What's the Croatian word for Saturday?,0 -1945,"In the system where Sunday is ஞாயிற்று கிழமை nyāyitru kizhamai, what is Saturday?",0 -1946,"In language where Wednesday is বুধবার budhbar, what is Thursday?",0 -1947,"In language where Saturday is සෙනසුරාදා senasuraadaa, what is Tuesday?",0 -1948,"In language where Thursday is برس وار bres'var, what is Sunday?",0 -1949,"In language where Wednesday is برھ وار budh'var, what is Saturday?",0 -1950,What is saturday day seven when thursday day five is ሐሙስ hamus?,0 -1951,What is thursday day five when friday day six is პარასკევი p'arask'evi?,0 -1952,What is tuesday day three when thursday day five is kamis?,0 -1953,What is friday day six when thursday day five is پچھمبے pachhambey?,0 -1954,What is friday day six when monday day two is isnin?,0 -1959,When was the Super B capacity reached when the number of truck loads north was 7735?,0 -1960,When was the super b capacity reached when the freight carried s tonne was 198818?,0 -1961,How many loses corresponded to giving up 714 points?,0 -1962,How many draws were there when there were 30 tries against?,0 -1963,How many try bonuses were there when there were 64 tries for?,0 -1964,Which club gave up 714 points?,0 -1965,"What is the third entry in the row with a first entry of ""club""?",0 -1966,"What is the 8th entry in the row with a first entry of ""club""?",0 -1968, what was the drawn when the tries for was 46?,0 -1969,What was the won when the points for was 496?,0 -1970,What was the losing bonus when the points against was 445?,0 -1971,What was the tries against when the drawn was 2?,0 -1972,What was the drawn when the tries against was 89?,0 -1976,How many played where the points were 80?,0 -1977,what amount of points were lost by 13?,0 -1978,what are the total points agains the score of 63?,0 -1980,HOW MANY PLAYERS PLAYED IN THE GAME THAT WON WITH 438 POINTS,0 -1981,HOW MANY GAMES HAD A WIN WITH A BONUS OF 11,0 -1982,HOW MANY GAMES WERE TIED AT 3?,0 -1983,HOW MANY GAMES HAD BONUS POINTS OF 6?,0 -1984,HOW MANY GAMES WERE TIED AT 76?,0 -1986,What was the number of earnings were cuts made are 19 and money list rank is 3?,0 -1988,what are all the barrel lengths whith the name ar-15a3 competition hbar,0 -1989,What is the fire control for the sporter target,0 -1990,What is the days with rain figure for the city of Santiago de Compostela?,0 -1992,What is the value of barrel twist when the barrel profile is SFW?,0 -1993,What kind of hand guards are associated with a rear sight of A1 and stock of A2?,0 -1994,How many inches is the barrel length when the rear sight is weaver and the barrel profile is A2?,0 -1995,What is the muzzle device on the colt model le1020?,0 -1996,What is the barrell profile that goes with the gas piston carbine?,0 -1997,What models have an a2 barrel profile?,0 -1998,What hand guard system is used with a gas piston commando?,0 -1999,What is the bayonet lug status for a m4 hbar and m4le carbine equipped?,0 -2000,What is the barrel length for a cold model le6921sp?,0 -2001,Name the barrel length for rear sight a2 for factory compensator,0 -2002,Name the barrel twist for colt model mt6400,0 -2003,Name the forward assist for a2 barrel profile,0 -2004,Name the stock for colt model mt6601,0 -2006,How many games ended up with 16 points?,0 -2007,What was the tries against count for the club whose tries for count was 29?,0 -2008,How many points does Croesyceiliog RFC have?,0 -2009,What's the points for count for the club with 41 points and 8 won games?,0 -2010,What's the points for count for the club with tries for count of 29?,0 -2011,What's the try bonus count for the club whose tries against count is 83?,0 -2012,Where is the real estate agent from?,0 -2013,"What background does the person from New york, New york, have?",0 -2016,Where was Kristen Kirchner from?,0 -2020,What club has a tries for count of 19?,0 -2022,What's the number of drawn games for the club with a tries for count of 76?,0 -2023,What is the against percentage in the Vest-Agder constituency?,0 -2025,"How many for percentages are there when the against percentage is 35,782 (69)?",0 -2027,"List all total poll percentages when the for percentage is 59,532 (54).",0 -2028,What's the writer of Episode 1?,0 -2030,What's the original airdate of the episode directed by Pete Travis?,0 -2031,How many millions of viewers did watch Episode 5?,0 -2033,Who directed Episode 5?,0 -2034,How many viewers did Episode 5 have?,0 -2036,what's height with position being center and year born being bigger than 1980.0,0 -2037,what's player with position being forward and current club being real madrid,0 -2038,what's current club with player being nikolaos chatzivrettas,0 -2039,what's current club with height being 2.09,0 -2040,what's current club with position being center and no being bigger than 12.0,0 -2041,What is the opponent of the veterans stadium,0 -2045,Name the height for the player born in 1980 and center?,0 -2047,Name the current club for number 6,0 -2048,Name the current club for player sacha giffa,0 -2050,Which club had a player born in 1983?,0 -2051,How tall is Marco Belinelli?,0 -2053,What player is number 6?,0 -2056,what's the height with position being forward and current club being real madrid,0 -2057,what's the height with current club being dkv joventut,0 -2058,what's the current club with player being felipe reyes,0 -2059,Who directed the episode that had 6.04 million viewers? ,0 -2060,What number episode had 5.74 million viewers? ,0 -2061,When did the construction of the unit Chinon B1 with net power of 905 MW start?,0 -2062,What's the total power of the unit whose construction finished on 14.06.1963?,0 -2064,What's the shut down state of the unit that's been in commercial operation since 01.02.1984?,0 -2065,When was the start of the construction of the unit that's been in commercial operation since 04.03.1987?,0 -2068,what is the series number where the date of first broadcast is 16 october 2008?,0 -2070,"What teams played in Washington, DC the year that Ramapo LL Ramapo was the game in New York?",0 -2071,Which year did Maryland hold the title with Railroaders LL Brunswick?,0 -2072,Who played in Maryland the same year that New Jersey hosted Somerset Hills LL Bernardsville?,0 -2073,"After the year 2008.0, who played for Maryland the same year M.O.T. LL Middletown played in Delaware?",0 -2074,Who played in Maryland the same year that Deep Run Valley LL Hilltown played in Pennsylvania?,0 -2075,Where is Bluetongue Stadium located? ,0 -2076,"When was the team, whose captain is Matt Smith, founded? ",0 -2077,Who's the captain of the team whose head coach is Alistair Edwards? ,0 -2079,Where is Westpac Stadium located? ,0 -2080,What is the new hampshire in 2009?,0 -2089,What was the date of the game in week 14?,0 -2092,Name the captain for ben sigmund,0 -2093,Name the international marquee for shane stefanutto,0 -2094,Name the australian marquee for alessandro del piero,0 -2095,Name the vice captain for melbourne victory,0 -2097,Name the captain for emile heskey,0 -2098,What championship had a margin of playoff 2?,0 -2099,What was the margin of the Masters Tournament?,0 -2100,What was the winning score of the Masters Tournament?,0 -2101,What was the winning score of the PGA Championship (3)?,0 -2103,What is the scoring aerage for 111419?,0 -2104,What is the money list rank for 1966?,0 -2106,What is the county where kerry# is 59740?,0 -2107,In cook county Kerry# is?,0 -2108,"When bush# is 3907, what is Kerry#?",0 -2110,what's the mole with airdate being 8 january 2009,0 -2111,"what's the mole with prize money being €24,475",0 -2113,what's airdate with international destination being scotland,0 -2114,what's the mole with winner being frédérique huydts,0 -2115,what's runner-up with season being season 13,0 -2116,In what county did 29231 people vote for Kerry?,0 -2117,What's the name of the county where 48.3% voted for Bush?,0 -2118,What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes?,0 -2119,What's the name of the county where 54.6% voted for Bush?,0 -2121,Who are the blockers where points are scored by Zach Randolph (24)?,0 -2122,Who are the blockers where points are scored by Zach Randolph (24)?,0 -2124,Who had all of the blocks in 2012?,0 -2127,what are all the gold medals when the silver medals is smaller than 1.0?,0 -2132,what are all the date for gt3 winner oliver bryant matt harris,0 -2133,what are all the date for gtc winners graeme mundy jamie smyth and gt3 winners hector lester tim mullen,0 -2134,what are all the circuit for 9 september and gt3 winner hector lester allan simonsen,0 -2135,what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer,0 -2136,what are all the gtc winners for pole position no. 21 team modena,0 -2137,"What material is made with a rounded, plain edge?",0 -2139,When was the coin with the mass of 3.7 g first minted?,0 -2141,Name the gdp where gdp per capita 20200,0 -2143,What is the gdp of the country with an area of 83871 (km2)?,0 -2144,What was the gdp of the country with a gdp per capita of $18048?,0 -2146,What is the season for no award given for rookie of the year?,0 -2149,what are all the rating with viewers (m) being 2.89,0 -2150,what are all the overall with rating being 1.4,0 -2151,what are all the overall with viewers (m) being 2.61,0 -2152,what are all the rating with viewers (m) being 2.61,0 -2153,what is the year where the qualifying score was 15.150?,0 -2156,what is the final-rank for the uneven bars and the competition is u.s. championships?,0 -2159,When did the season of gurmeet choudhary premiere?,0 -2160,When was the season finale of meiyang chang?,0 -2161,What is the winner of rashmi desai?,0 -2162,When is the season finale of meiyang chang?,0 -2163,In what number kōhaku was the red team host Peggy Hayama? ,0 -2164,Who was the mediator in kōhaku number 53?,0 -2165,On what date was Keiichi Ubukata the mediator and Mitsuko Mori the red team host?,0 -2168,What is the # for the episode with a Production code of 3T7057?,0 -2169,What is the Original air date for the episode directed by Tricia Brock?,0 -2170,What is the Original air date for the episode written by Peter Ocko?,0 -2171,How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?,0 -2174,What was the release date of Sonic Adventure 2?,0 -2175,Was the release on April 8 available on Windows?,0 -2176,What title was released on August 27?,0 -2177,Is icewind dale available for windows,0 -2178,List all number of yards with an AST of 8.,0 -2179,Who did the Seahawks play when the listed attendance was 61615?,0 -2180,"What was the Seahawks record on September 18, 1983?",0 -2182,What was the score of the game when the attendance was 48945?,0 -2183,"Who did the Seahawks play on September 4, 1983?",0 -2184,What was the record set during the game played at Hubert H. Humphrey Metrodome?,0 -2185,On what date was the game against San Diego Chargers played?,0 -2186,What was the date of the game against Kansas City Chiefs?,0 -2187,"What was the result of the game played on September 16, 1984?",0 -2188,On what date did the game end with the result w 43-14?,0 -2189,What was the attendance at the game that resulted in w 24-20? ,0 -2190,Who did they play against in the game that ended in 2-2?,0 -2191,When was the record of 0-1 set?,0 -2193,What was the attendance when the record was 1-1?,0 -2195,What date did the Seahawks play the Kansas City Chiefs at the Kingdome?,0 -2197,"Where did the teams play on October 16, 1977?",0 -2198,What team was the opponent at Mile High Stadium?,0 -2199,What was the record when they played the Los Angeles Rams?,0 -2200,Where did they play the San Diego Chargers?,0 -2202,On what day was the team playing at milwaukee county stadium?,0 -2204,Which episode was watched by 11.75 million U.S. viewers?,0 -2205,"How many U.S. viewers, in millions, watched the episode that aired on November 13, 2007?",0 -2207,How many millions of U.S. viewers watched episode 185?,0 -2208,"Who directed the episode that originally aired on January 15, 2008?",0 -2211,What was the election date for H. Brent Coles?,0 -2212,What was the election date for Arthur Hodges?,0 -2213,What is the country for # 8,0 -2214,what is the country where the player is phil mickelson?,0 -2216,"What round was held at Knowsley Road, resulting in a lose.",0 -2217,What's the score of the QF round?,0 -2219,Who was the opponent in round 2?,0 -2220,When was the game happening at Halton Stadium?,0 -2221,What competition ended with a score of 38-14?,0 -2222,what's the population with country being chile,0 -2223,what's the s mestizo with asians being 0.2% and whites being 74.8%,0 -2224,what's the country with es mulatto being 3.5%,0 -2225,what's the s mestizo with population being 29461933,0 -2226,what's the native american with es mulatto being 0.7%,0 -2228,When did the episode directed by David Duchovny originally air?,0 -2229,"What's the title of the episode directed by David von Ancken, with a episode number bigger than 16.0?",0 -2234,what is the original air date for the episoe written by vanessa reisen?,0 -2235,"What is the u.s. viewers (million) for the title ""the recused""",0 -2237,what is the maximum completed for address on 410 22nd st e,0 -2239,what are all the building with 12 storeys,0 -2241,What is the region 2 for the complete fifth series?,0 -2243,What is the region 1 where region 4 is tba is the complete eighth series?,0 -2244,Name the region 4 for the complete fifth series,0 -2245,How many tries were against when the number won was 14?,0 -2246,What was the number of bonus tries when there were 522 points against?,0 -2248,What amount of points for were there when there was 52 points?,0 -2249,What was the number of points against when the amount won is 10?,0 -2250,What is listed under try bonus when listed under Tries for is tries for?,0 -2251,What is the original date of the repeat air date of 26/01/1969?,0 -2252,What is the repeat date of the episode that aired 22/12/1968?,0 -2253,who is the writer of the episode with prod.code 30-17,0 -2255,"In the 2008/2009 season one team had a season total points of 31, for that team how many total points were scored against them?",0 -2256,"In the 2008/2009 season one team had 1 losing bonus, How many points did that team score that year?",0 -2257,"In the 2008/2009 season one team had 47 tries against, how many games did they win that year?",0 -2258,"In the 2008/2009 season one team had 39 tries against, how many losing bonuses did they have that year?",0 -2259,Who were the candidates when ed markey was the incumbent?,0 -2261,Who were the candidates when Barney Frank was the incumbent?,0 -2263,What party did incumbent Albert Wynn belong to? ,0 -2264,What was the result of the election in the Maryland 7 district? ,0 -2266,What were the results in the election where Albert Wynn was the incumbent? ,0 -2267,Who were the candidates in the Maryland 5 district election? ,0 -2268,What district is Henry Hyde in,0 -2270,Which district is Joe Moakley?,0 -2273,Name the results for district new york 24,0 -2274,Name the district for carolyn mccarthy,0 -2276,Which party does the incumbent first elected in 1994 belong to?,0 -2278,Who was elected in 1972,0 -2280,what is the party with the incumbent jim demint?,0 -2281,what is the party for the district south carolina 4?,0 -2282,what is the party when candidates is jim demint (r) 80%?,0 -2283,what is the party when candidates is jim demint (r) 80%?,0 -2284,who are the candidates when the incumbent is lindsey graham?,0 -2285,What was the results when the incumbent was ernest istook?,0 -2286,What was the results for the district oklahoma 3?,0 -2288,What is the party when the candidates were ernest istook (r) 69% garland mcwatters (d) 28%?,0 -2289,when was the first elected for districk oklahoma 1?,0 -2290,What were the results for the district oklahoma 5?,0 -2293,Who were the candidates in district Pennsylvania 3?,0 -2295,What was the result of the election featuring incumbent norman sisisky?,0 -2296,Who were the candidates in the district first elected in 1998 whose incumbent ended up being Paul Ryan?,0 -2297,Who ran in the district elections won by Tom Petri?,0 -2300,Name the first elected for texas 6 district,0 -2301,Name the incumbent for texas 22 district,0 -2302,How did the election in the Florida 14 district end?,0 -2303,Who's the incumbent of Florida 12 district?,0 -2304,Who is the incumbent of Florida 9?,0 -2305,Who's the incumbent in Florida 6?,0 -2306,What party does Bill McCollum belong to?,0 -2307,What are the results in the county with Peter Deutsch as a candidate?,0 -2308,How did the election end for Robert Wexler?,0 -2309,What party was the winner in the district Maryland 6?,0 -2310,Who run for office in district Maryland 3?,0 -2311,List the candidates in district Maryland 1 where the republican party won.,0 -2313,What party is Frank Lobiondo a member of?,0 -2314,Who were the candidates in the district whose incumbent is Bill Pascrell?,0 -2315,What is the party of the district incumbent Jim Saxton?,0 -2316,What party is John McHugh a member of?,0 -2317,What's the party elected in the district that first elected in 1990?,0 -2318,What's the first elected year of the district that Ed Towns is an incumbent of?,0 -2320,What were the candidates in the district that first elected in 1980?,0 -2321,When was Chaka Fattah first elected in the Pennsylvania 2 district? ,0 -2323,When was incumbent Bud Shuster first elected? ,0 -2325,Incumbent Tim Holden belonged to what party? ,0 -2326,In what district was Tim Holden the incumbent? ,0 -2327,Which incumbent was first elected in 1984?,0 -2328,When was the incumbent in the Tennessee 4 district first elected? ,0 -2329,Who are the candidates in the Tennessee 3 district election? ,0 -2331,List all the candidates for the seat where the incumbent is Sam Gibbons?,0 -2332,Who were the candidates in district Wisconsin 4?,0 -2333,Who's the incumbent in the district that first elected in 1969?,0 -2334,Who's the incumbent of district Wisconsin 5?,0 -2336,What party was first elected in 1974?,0 -2337,What district is bill thomas from?,0 -2338,What district is bill thomas from?,0 -2339,Who was the incumbent of district Georgia 2?,0 -2340,What district is Mac Collins an incumbent in?,0 -2342,Who were the candidates in the district where Charlie Norwood is the incumbent?,0 -2343,"Which result did the Republican have with the incumbent, Billy Tauzin?",0 -2346,List all results in elections with Richard Baker as the incumbent.,0 -2349,what's the result with district being washington 7,0 -2351,"what's the result for first elected in 1948 , 1964",0 -2352,what's the first elected with district illinois 18,0 -2353,what's the party with candidates  jerry weller (r) 51.77% clem balanoff (d) 48.23%,0 -2354,what's the party for the first elected in 1980,0 -2355,what's the result with district illinois 15,0 -2357,Name thedistrict for 1994,0 -2358,Name the result for New York 11,0 -2361,What year was Larry combest elected,0 -2362,To what district does Bill Hefner belong?,0 -2363,Who ran unsuccessfully against Bill Hefner?,0 -2365,What party is Sanford Bishop a member of?,0 -2366,What party won in the district Georgia7?,0 -2368,Who opposed Marty Meehan in each election?,0 -2369,Who are the opponents in Massachusetts5 district?,0 -2370,What parties are represented in Massachusetts4 district?,0 -2371,Who is the incumbent in district Massachusetts7?,0 -2376,What party does ron klink represent?,0 -2377,Who was in the election that was for incumbent bud shuster's seat?,0 -2378,What district had someone first elected in 1982?,0 -2380,What was the result of the election where william f. goodling was the incumbent?,0 -2381,What party did incumbent Howard Coble belong to?,0 -2382,What party did incumbent Stephen L. Neal belong to? ,0 -2385,What are the locations where the year of election is 1980?,0 -2386,What location is Vin Weber from?,0 -2387,What is Larry Combest's district?,0 -2388,What is the status of incumbent Charles Stenholm?,0 -2390,What is the elected status of the Democratic party in 1989?,0 -2391,Who are the opponents in district California 9?,0 -2392,Who are the incumbents elected in 1974?,0 -2393,Which incumbent was first elected in 1958?,0 -2394,Who are all the candidates who ran in the district where Ralph Regula is the incumbent?,0 -2395,Which party does Del Latta belong to?,0 -2396,Which party does Tom Luken belong to?,0 -2397,Who were all the candidates when incumbent was Tim Valentine?,0 -2398,Name the incumbent for first elected 1958,0 -2399,What is the district for 1952?,0 -2400,What is the incumbent for 1974?,0 -2401,To what party does Cardiss Collins belong?,0 -2402,Who was the candidate in the Virginia 3 district election? ,0 -2403,What was the result of the election in the Virginia 3 district?,0 -2404,Who were the candidates when Lamar S. Smith was incumbent?,0 -2405,What party did Beau Boulter represent?,0 -2406,Who were the candidates when Jack Fields was the incumbent?,0 -2407,What was the final result for Les Aspin?,0 -2408,Who were the candidates that ran when Jim Moody was up for reelection after 1982?,0 -2410,Which party is associated with the person who was first elected in 1982?,0 -2412,What was the results for the candidates listed as bart gordon (d) 76.5% wallace embry (r) 23.5%?,0 -2413,Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%?,0 -2414,In what district would you find the candidates listed as jim cooper (d) unopposed?,0 -2415,who is the incumbent with candidates being bud shuster (r) unopposed,0 -2416,who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1%,0 -2417,what's district with candidates being curt weldon (r) 61.3% bill spingler (d) 38.7%,0 -2418,what's party with district being pennsylvania 21,0 -2420,what's the district with first elected being 1972,0 -2422,what's the result with candidates being billy tauzin (d) unopposed,0 -2424,what's the result with district being louisiana 2,0 -2425,who is the the candidates with first elected being 1977,0 -2426,What happened to the incombent who was elected in 1980?,0 -2427,How did the election end for Terry L. Bruce?,0 -2428,What party was Tony P. Hall affiliated with?,0 -2430,Name the candidates in 1964,0 -2432,Who are all the candidates vying for Henry B. Gonzalez' seat?,0 -2433,Name all the candidates vying for Albert Bustamante's seat.,0 -2434,In what district was the incumbent Michael Bilirakis? ,0 -2435,Who is the candidate in election where the incumbent was first elected in 1980? ,0 -2436,What party does incumbent Charles Edward Bennett belong to? ,0 -2437,What was the result of the election in the Florida 18 district? ,0 -2438,In what district is the incumbent Lawrence J. Smith? ,0 -2439,where is the district where the incumbent is del latta?,0 -2440,what is the party for district ohio 11?,0 -2441,who were the candidates for district ohio 6?,0 -2442,What is the party for District Georgia 9?,0 -2443,Which district shows a first elected of 1980?,0 -2444,What is the party for the incumbent Wyche Fowler?,0 -2445,Who are shown as candidates when George Darden is the incumbent?,0 -2446,What district has Dan Crane as incumbent?,0 -2447,In which district is Robert W. Edgar the incumbent?,0 -2448,To which party does Robert W. Edgar belong?,0 -2449,What district is incumbent jack hightower from?,0 -2451,What incumbent won the district of texas 22?,0 -2452,Who's the incumbent of the Louisiana 1 district?,0 -2453,Who were the candidates in the Louisiana 4 district?,0 -2454,Who's the incumbent in the district first elected in 1976?,0 -2455,what's the incumbent with district being massachusetts 2,0 -2456,what's the party with candidates being silvio conte (r) unopposed,0 -2457,what's the first elected with incumbent being joseph d. early,0 -2458,who is the the incumbent with dbeingtrict being massachusetts 2,0 -2459,what's the party with dbeingtrict being massachusetts 3,0 -2461,What are the candidates in the district whose incumbent is Gus Yatron?,0 -2462,What's the winning party in the Pennsylvania 6 district?,0 -2463,What candidate is a member of the Republican party?,0 -2464,What district is Ray Musto the incumbent of?,0 -2466,What was the outcome of the election in Pennsylvania 6 district?,0 -2467,Where was Al Gore elected,0 -2468,Election results of 1976,0 -2469,What was the incumbent for missouri 1?,0 -2470,What was the result of the election when someone was first elected in 1960?,0 -2471,What year was incumbent phil crane first elected?,0 -2472,What candidates were featured in the 1974 election?,0 -2473,What year was Jerry Huckaby first elected?,0 -2474,What other cadidate ran against Dave Treen?,0 -2476,What district did Dave Treen serve?,0 -2478,"In the Georgia 6 district, what is the elected party?",0 -2479,"In the race involving Billy Lee Evans as the seated Representative, was he elected again?",0 -2480,"Which district has Ronald ""bo"" Ginn as the seated Representative?",0 -2482,Which district is republican?,0 -2483,Name the result when the incumbent was george h. mahon,0 -2484,What was the incumbent of texas 3?,0 -2485,What was the incumbent for texas 19?,0 -2486,Which district has candidates is dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?,0 -2487,What is the result for the district missouri 2?,0 -2491,What district did S. William Green belong to?,0 -2492,What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974?,0 -2494,Who were the candidates when Shirley Chisholm was the incumbent?,0 -2495,What is the district that has Bob Wilson as an incumbent?,0 -2497,What district is Charles H. Wilson the incumbent of?,0 -2498,What party was the winning one in the elections in the California 30 district?,0 -2501,what is the district where the incumbent is richard kelly?,0 -2502,what is the result where the candidates is robert l. f. sikes (d) unopposed?,0 -2503,"who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed?",0 -2504,what is the district where the incumbent is james a. haley?,0 -2505,what is the district where the incumbent is richard kelly?,0 -2506,who are the candidates where the district is florida 8?,0 -2507,what year was the first elected incumbant Sidney R. Yates?,0 -2510,In which district is the incumbent John Breaux?,0 -2512,What were the results when the incumbent was John Breaux?,0 -2513,Name the candidates for texas 1,0 -2514,Name the incumbent for district texas 12,0 -2515,Name the candidates for texas 20,0 -2516,what is the district with the candidates edward boland (d) unopposed?,0 -2517,what is the party where the candidates are edward boland (d) unopposed?,0 -2518,what is the party where the incumbent is edward boland?,0 -2520,List all candidates in elections where the incumbent politician is Goodloe Byron.,0 -2522,What is the party of the election in which Robert Bauman is the incumbent?,0 -2523,List all results where the voting district is Maryland 7.,0 -2524,What are all the results where Robert Bauman is the incumbent politician?,0 -2525,Who were the candidates in the district won by the incumbent Del Latta?,0 -2526,Who were the candidates in the districts that was first elected in 1966?,0 -2527,Who was running for office in the California 10 district?,0 -2530,Phillip Landrum was first elected in 1952 from the ninth district of Georgia.,0 -2531,What party did the incumbent from the Illinois 12 district belong to? ,0 -2532,Who was the democratic incumbent in the Illinois 11 district who was re-elected? ,0 -2533,Which incumbent was first elected in 1964? ,0 -2534,What party did the incumbent from the Illinois 1 district belong to? ,0 -2535,What candidates ran in the election with don fuqua?,0 -2538,Who was the incumbent in 1940?,0 -2539,what is the party when the incumbent is sidney r. yates?,0 -2543,who were the candidates when the incumbent was ed derwinski?,0 -2545,Who is the incumbent in district Texas 15?,0 -2546,Which district elected incumbent Earle Cabell?,0 -2547,What was the result when Ray Roberts was elected?,0 -2549,Incumbent Bill Harsha was the winner in an election in which the candidates were who?,0 -2550,What was the party of the first elected candidate in 1954?,0 -2552,Which party is Lawrence H. Fountain part of?,0 -2553,Who was the first person elected in North Carolina 8?,0 -2554,who was the candidate elected to the democratic party in 1952?,0 -2555,What district did Joe Waggonner belong to?,0 -2556,What is the name of the incumbent who was first eleccted in 1940?,0 -2557,What party does incumbent edwin reinecke represent?,0 -2558,Who were the candidates in the election that featured incumbent don edwards?,0 -2559,Who's the incumbent of Indiana 4 district?,0 -2560,Who's the incumbent of the district with first election held in 1950?,0 -2561,Who was featured in the election of charles edward bennett redistricted from 2nd?,0 -2562,Name the first elected for the republican party,0 -2563,Name the district with philip philbin,0 -2564,Name the party with edward boland,0 -2565,What was the district who had their first elected in 1966?,0 -2566,Who was the candidate when the incumbent was Richard C. White?,0 -2567,What district did Donald Ray Matthews belong to?,0 -2568,What party did Don Fuqua belong to?,0 -2571,Who was the winner in the Louisiana 7 district?,0 -2572,what's party with district being tennessee 3,0 -2574,what's party with district  being tennessee 3,0 -2576,what's incumbent with district being tennessee 5,0 -2577,Who ran in the race for Jack Brooks' seat?,0 -2578,which section did seymour halpern run in,0 -2579,What district is incumbent albert w. johnson from?,0 -2581,What district is incumbent elmer j. holland from?,0 -2582,To which party does Frank T. Bow belong?,0 -2583,Who ran in the race for the seat of incumbent Carl W. Rich?,0 -2584,In which district is the incumbent Carl W. Rich?,0 -2585,Name the candidates where incumbent Carl Vinson is?,0 -2586,Name the candidates for massachusetts 8,0 -2587,What candidates were in the election when a republican was re-elected?,0 -2588,What district is incumbent frank chelf from?,0 -2590,Who were all the candidates when the first elected year was 1961?,0 -2591,What party did Hale Boggs belong to?,0 -2592,what is the political affiliation of the texas 12 district,0 -2593,how many voted in the texas 6 section,0 -2594,what is the political affiliation of ray roberts,0 -2595,What district featured an election between james a. byrne (d) 59.3% joseph r. burns (r) 40.7%?,0 -2596,Name the candidates for massachusetts 6,0 -2597,Name the result for massachusetts 3,0 -2598,Name the candidate first elected in 1942,0 -2599,Name the party for massachusetts 3,0 -2600,What district is incumbent albert rains from?,0 -2602,Who was the incumbent in the Arkansas 2 district election? ,0 -2603,When was Dale Alford first elected in the Arkansas 5 district? ,0 -2605,When party did the incumbent in the Arkansas 5 district belong to? ,0 -2606,What was the result in the Arkansas 5 district election? ,0 -2607,What party did the incumbent in the Arkansas 2 district belong to? ,0 -2610,What was the result of the election in which Lindley Beckworth was the incumbent?,0 -2611,Which incumbent was first elected in 1936? ,0 -2612,What was the result of the election in which Walter E. Rogers was the incumbent? ,0 -2613,When was Paul Rogers first elected?,0 -2614,Which district is James A. Haley from?,0 -2616,In what district is the incumbent John Bell Williams?,0 -2617,In what year was John Bell Williams first elected?,0 -2619,What is the district for carl vinson?,0 -2621,What is the first elected for georgia 4?,0 -2622,which affiliation does edwin e. willis affiliate with,0 -2623,which affiliation is james h. morrison part of,0 -2624,Who is the candidate that was first elected in 1914?,0 -2625,In which district is the incumbent Carl Vinson?,0 -2627,Name the result for south carolina 4,0 -2628,Name the candidates for south carolina 3,0 -2629,Name the incumbent for first elected 1956,0 -2631,What is the result for first elected in 1944,0 -2633,Who is the incumbent in the Alabama 6 voting district?,0 -2634,Which candidates were in the election where Frank W. Boykin was an incumbent?,0 -2635,Who were the candidates in the election where the incumbent is George M. Grant?,0 -2636,Which candidates ran in the Alabama 6 district?,0 -2638,What was the result when incumbent Fred E. Busbey was elected?,0 -2640,What was the result when Leo E. Allen was elected?,0 -2641,Which party had a person who has been in the seat since 1914?,0 -2642,"Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr.",0 -2646,Who is the incumbent first elected in 1944?,0 -2647,What was the result for the politician first elected in 1942?,0 -2648,what's the result for district ohio 2,0 -2649,who is the the incumbent with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%,0 -2650,who is the the incumbent with district being ohio 2,0 -2651,what's the result with incumbent being william h. ayres,0 -2653,what district is Brooks Hays in,0 -2654,Omar Burleson was the incumbent in what district? ,0 -2655,In what district was incumbent first elected in 1938? ,0 -2656,Name the party for the pennsylvania 25,0 -2658,What is the incumbent for pennsylvania 15,0 -2660,What is the candidates for fred e. busbey?,0 -2661,What is the incumbent for 1932?,0 -2663,who is the the incumbent with dbeingtrict being florida 2,0 -2664,what's the result with candidates being charles edward bennett (d) unopposed,0 -2665,what's the result with dbeingtrict being florida 4,0 -2668,What was the result of the election when Tic Forrester ran as an incumbent?,0 -2669,What was the final result for Craig Hosmer?,0 -2670,What district does Harlan Hagen represent?,0 -2671,Who was the candidate in the election in the Louisiana 2 district? ,0 -2672,What candidate was re-elected in the Louisiana 5 district? ,0 -2673,What party's candidate was re-elected in the Louisiana 6 district?,0 -2674,What was the result in the election where Hale Boggs was the incumbent? ,0 -2675,"what is the channel width that overlaps channels 1,3-6?",0 -2676,Name the result for mississippi 2,0 -2678,Name the candidates for result of lost renomination democratic loss,0 -2679,Name the result for first elected of 1920,0 -2681,What is the candidates result that is tom j. murray (d) unopposed?,0 -2682,For the Republican party what are the names of the incumbents?,0 -2684,Which district had Paul B. Dague as the incumbent?,0 -2685,What was the result in the election where the incumbent was first elected in 1942? ,0 -2686,What was the result of the election in the Texas 3 district? ,0 -2687,What party did incumbent Wright Patman belong to? ,0 -2688,What was the result of the election in the Texas 4 district? ,0 -2689,What party did the re-elected incumbent of the Texas 11 district belong to?,0 -2690,List all those first elected in the California 22 voting district.,0 -2691,Who was the first elected incumbent in the 1946 election?,0 -2693,Which party had Clair Engle as an incumbent?,0 -2694,What party does sid simpson represent?,0 -2696,What year was incumbent barratt o'hara first elected?,0 -2699,Who is the candidate wehre district is louisiana 1?,0 -2700,What is the party where the incumbent is overton brooks?,0 -2701,who athe party where district is louisiana 2?,0 -2702,who is the candidate where district is louisiana 3?,0 -2704,What was the result when incumbent Tom Steed was elected?,0 -2705,What was the candidates for hardie scott,0 -2708,What is the party for first elected 1948 for william t. granahan,0 -2711,Who was the incumbent in the Illinois 17 district?,0 -2715,What was the result of the election with jamie l. whitten?,0 -2716,What candidate was re-elected and was first elected in 1942? ,0 -2717,Who are the candidates in the election in the Ohio 9 district? ,0 -2719,What party does the incumbent from the Ohio 5 district belong to? ,0 -2720,What party does the incumbent from the Ohio 20 district belong to? ,0 -2721,What party does the incumbent from the Ohio 7 district belong to? ,0 -2722,Who is the candidate for the district Arkansas 2?,0 -2723,Which district has the incumbent Wilbur Mills and a re-elected result?,0 -2724,What year was first-elected for the row of Texas 2?,0 -2725,What was the result for the incumbent Milton H. West?,0 -2726,What party is associated with Texas 2?,0 -2727,"When the result is retired to run for U.S. Senate Democratic Hold, who is the candidate?",0 -2728,What candidate has a result of being re-elected in the Texas 7 District?,0 -2730,Which district is associated with the incumbent Carl Vinson?,0 -2731,Which candidates are associated with the Georgia 7 district?,0 -2732,What candidate is associated with the Georgia 4 district?,0 -2733,What year was incumbent joe b. bates first elected?,0 -2734,What party is incumbent virgil chapman from?,0 -2735,What year was clair engle first elected?,0 -2736,what is the result of the first elected is 1943?,0 -2738,what the was the final in which frank w. boykin was running,0 -2740,Name the candidates for ellsworth b. buck,0 -2741,What are the candidates for new york 35?,0 -2742,What is the party for new york 20?,0 -2743,What was the result of the election featuring r. ewing thomason (d) unopposed?,0 -2744,What district is eugene worley from?,0 -2746,what's the result with incumbent being jack z. anderson,0 -2747,what's the district with result being re-elected and candidates being clarence f. lea (d) unopposed,0 -2748,what's the first elected with incumbent being clair engle,0 -2749,who is the the candidates with incumbent being alfred j. elliott,0 -2750,who is the the incumbent with candidates being jack z. anderson (r) unopposed,0 -2753,Who were the candidates when Noah M. Mason was incumbent?,0 -2754,In what year was Leo E. Allen first elected?,0 -2755,Who were the candidates when Sid Simpson was the incumbent?,0 -2756,What was the result of Robert L. F. Sikes' election bid?,0 -2759,Which incumbent was first elected in 1940?,0 -2760,What is the first electedfor district ohio 18,0 -2761,What is the incumbent for ohio 12?,0 -2762,Who are all of the candidates in the election featuring james r. domengeaux?,0 -2763,Name all the candidates that ran for the seat where Harold D. Cooley is the incumbent?,0 -2766,What was the result in Pennsylvania 13?,0 -2767,Who was the incumbent in Pennsylvania 27?,0 -2768,Who are the contenders In the New York 19 polling area race?,0 -2770,Who are the contenders In the New York 29 polling area race?,0 -2771,Which political party is involved where John J. Delaney is the sitting Representative?,0 -2772,Who is the sitting Representative In the New York 10 polling area race?,0 -2774,What is the district for james p. richards?,0 -2775,What is the candidate for south carolina 4?,0 -2776,What is the candidate for south carolina 3?,0 -2777,What is the first elected for south carolina 4?,0 -2779,What party does clyde t. ellis represent?,0 -2781,what's the result with dbeingtrict being california 10,0 -2782,what's the party with first elected being 1926,0 -2783,what's the incumbent with result being new seat republican gain,0 -2785,what's the first elected with incumbent being joe starnes,0 -2786,what's the first elected with candidates being joe starnes (d) 100.0% george bogus ( w/i ) 0.003%,0 -2788,what are all the district with incumbent being sam hobbs,0 -2789,what are all the result with district being alabama 1,0 -2791,What was the result in the Tennessee 6 district election?,0 -2794,What was the result of the Tennessee 2 district election? ,0 -2795,What district is incumbent robert l. mouton from?,0 -2797,William Fadjo Cravens serves the fourth district of Arkansas.,0 -2798,what's the party with district being alabama 3,0 -2799,what's the incumbent with candidates being sam hobbs (d) 88.2% c. w. mckay (r) 11.8%,0 -2800,what's the party with incumbent being john sparkman,0 -2802,what's the party with incumbent being william b. bankhead,0 -2803,what's the district  with first elected being 1938,0 -2806,What was the election result for the candidate first elected in 1918?,0 -2808,What district had someone first elected in 1932?,0 -2809,What candidates ran in the election when the incumbent was william j. driver?,0 -2810,Who are all the candidates when Sam Rayburn was incumbent?,0 -2811,What was the party that was frist elected in 1919?,0 -2813,Which district has a Republican elected?,0 -2816,Who are the candidates in the race where Wright Patman is the incumbent?,0 -2817,What candidates ran in the election when john s. wood was the incumbent?,0 -2818,What was the result of the election held in 1914?,0 -2821,Who ran for office at the Georgia 4 district in this election?,0 -2822,What district has Riley Joseph Wilson as the incumbent?,0 -2823,What candidate is in Louisiana 6?,0 -2824,what happened during the election for Richard M. Kleberg?,0 -2826,What is the name of the candidate where the incumbent is named James P. Buchanan?,0 -2827,What party is incumbent Oliver H. Cross?,0 -2828,what's the district with incumbent being william j. driver,0 -2829,what's the district with incumbent being john e. miller,0 -2831,who is the the incumbent with dbeingtrict being arkansas 1,0 -2833,who is the the incumbent with candidates being ben cravens (d) unopposed,0 -2834,What was the result in the election in which the incumbent was Denver S. Church? ,0 -2835,What was the result in the election in which Ralph R. Eltse was the incumbent?,0 -2836,Who was the candidate in the election in the California 8 district where the incumbent was first elected in 1932? ,0 -2837,what are all the party with district being kansas 1,0 -2838,what's the result with district being kansas 1,0 -2839,who are the candidates with district being kansas 4,0 -2840,what's the result with first elected being 1922,0 -2841,who is the the candidates with dbeingtrict being kansas 5,0 -2843,What was the result of the election in the Arkansas 2 district? ,0 -2844,What was the result of the election in the Arkansas 4 district? ,0 -2850,Who won in 1927,0 -2853,In what district was the representative first elected in 1916?,0 -2854,Who were the candidates in the 1922 entry?,0 -2855,In which district is James O'Connor the incumbent?,0 -2856,To which party does Riley Joseph Wilson belong?,0 -2858,What was the result in the election where the incumbent was Finis J. Garrett? ,0 -2859,In what district was the incumbent Cordell hull? ,0 -2860,Who were the candidates in the election in the Tennessee 9 district? ,0 -2861,What was the result of the election featuring james a. gallivan (d) unopposed?,0 -2864,what is the affiliation of charles h. brand,0 -2865,What candidates ran in the election that featured harry lane englebright?,0 -2867,who is the the incumbent with candidates being percy e. quin (d) unopposed,0 -2868,what's the district with candidates being john e. rankin (d) unopposed,0 -2869,who is the the candidates with district being mississippi 4,0 -2870,who is the incumbent for district mississippi 4,0 -2871,what's the result with incumbent being bill g. lowrey,0 -2872,what's the district  with candidates being william madison whittington (d) unopposed,0 -2875,What district does edward everett eslick represent?,0 -2879,What was the party for first elected 1923?,0 -2881,what is the section where gordon lee ran,0 -2882,what section did frank park run in,0 -2883,who won in the race in the section georgia 5,0 -2885,Who was the incumbent in the election of henry garland dupré (d) unopposed?,0 -2886,What was the result when incumbent John R. Tyson was elected?,0 -2887,Name the result for william j. driver,0 -2888,Name the district for william j. driver ,0 -2890,Who were the candidates when Henry Garland Dupré was incumbent?,0 -2892,What district did James O'Connor belong to?,0 -2893,"When did the episode titled ""Winterland"" air for the first time? ",0 -2895,Who wrote the episode with production code 1ANJ01?,0 -2896,What are the locations with a panthers mascot?,0 -2897,What are the locations with an eagles macot?,0 -2901,Who was the incumbent when ran william b. oliver (d) unopposed?,0 -2903,Which district was the race between john i. nolan (r) 87% thomas f. feeley (s) 13%?,0 -2904,What was the net seat gain in the race john a. elston (r) 88.4% luella twining (s) 11.6%?,0 -2906,What was the result of the election when Clarence F. Lea was the incumbent?,0 -2907,Which team played in game 20?,0 -2908,what's the height (ft) with name being leadenhall building,0 -2909,what's the height (ft) with name being 52-54 lime street,0 -2911,What station has the call number K213cl,0 -2912,What market is Wessington Springs in,0 -2913,What station owns Moody Bible Institute,0 -2915,what's the game with record being 29–3,0 -2916,who is the the high rebounds with high assbeingts being scottie pippen (9),0 -2917,who is the the high points with score being w 117–93,0 -2918,what's the record with date being january 13,0 -2919,what are all the record where date is january 21,0 -2920,What is the name of Rapid City's Adult Contemporary station?,0 -2921,What are the market city/market(s) for Rapid City Alternative format?,0 -2922,What is the frequency for the Christian Kawz-fm Translator station?,0 -2923,What is the target market for the station on 97.9 fm?,0 -2924,What is the frequency of the Classic Country Krki-fm booster station?,0 -2925,What is the target market of the station with call sign KFXS?,0 -2926,What year did the season finale have a total of 10.29 million viewers?,0 -2927,In what TV season did the 3rd season air?,0 -2931,"who is the the place with per capita income being $14,793",0 -2932,"what's the number of households with per capita income being $16,820",0 -2934,How old is Darryll Holland's horse,0 -2938,What are radio electricals when secretariat is wtr i?,0 -2939,What are electricals where secretariat is po(w)?,0 -2940,What mechanical has lpm regulation?,0 -2942,Who regulates radio electrical = lren?,0 -2948,which brand have drivers who won with the names of ryan briscoe and tomas scheckter,0 -2949,who else along with scott dixon and graham rahal drove with the most speed,0 -2951,What TV channel had a license from Boston?,0 -2952,"Which station has a license in Fort Collins, Colorado?",0 -2953,What is the current status of the KDAF ** Station?,0 -2956,What channel has station kdfw ++?,0 -2957,What city has channel tv (dt) 25 (31)?,0 -2959,When was 10 (10) bought?,0 -2960,Who were the umpires when Paul Medhurst (C) won the Simpson Medal?,0 -2961,Who were the umpires when Paul Vines (S) won the Simpson Medal?,0 -2962,Which venue did Luke Blackwell serve as captain?,0 -2964,what's the sets won with 140+ being 16,0 -2965,What channel number is Gladiators on,0 -2966,What show is coming back on in July 2008,0 -2967,Who are the mens doubles and womens singles is wang shixian?,0 -2968,Who is the mens singles and womens singlses is wang shixian?,0 -2969,Who are the mens doubles and and mens singles is lee hyun-il?,0 -2970,Who are the mens singles and womens singles with sun yu?,0 -2972,who danced 11 and finished at more than a 2.0,0 -2973,tell the competitions where the mean is 1,0 -2974,tell the mean of the times competition for the 7 jigs,0 -2976,What is the gender of the junior high school is 24mm?,0 -2977,What amount of the university students and adults ehre the the senior high school is 26mm?,0 -2978,What amount of senior high school where junior high school is 114cm?,0 -2979,What is the specification where senior high school is 25mm?,0 -2980,What amount is the junior high school where the gender is male and the specification is minimum diameter of sakigawa?,0 -2981,What is the gender of senior high school 26mm?,0 -2982,What was the score of the game when the team was 1-2?,0 -2983,Who had the high assists against charlotte?,0 -2986,what's the game with date being march 7,0 -2987,what's the date with game being 72,0 -2989,who is the the high rebounds with team being vancouver,0 -2992,Name the club when tries for is 83,0 -2993,Name the try bonus for kenfig hill rfc,0 -2994,Name the tries against for played 22 and points against of 183,0 -2997,What amount had all played that lost were 8?,0 -2998,what is the name of the club where drawn is 1 and lost is 10?,0 -2999,what are the tries where the game was lost by 4?,0 -3002,What is the name of the column points against?,0 -3003,How many points for when the points was 53?,0 -3004,What is the played total when the points against was 321?,0 -3005,How many tries for when the points against was 547?,0 -3006,How many total games drawn for club tylorstown rfc?,0 -3008,What is the total demand for electricity when the demand for renewable electricity demand is 2.2%?,0 -3010,What is the community with a wind power of 1042?,0 -3012,Who was the winner of the race at Belmont?,0 -3013,On what date did Northerly place 6th?,0 -3014,What was the weight in kg on the day of the race at Ranvet Stakes?,0 -3015,What was Northerly's result at the race on 19 Oct 2002?,0 -3016,What was the distance of the race in which Northerly raced in group G3?,0 -3017,what's the software executable space protection with dbeingtribution being gentoo,0 -3018,what's the dbeingtribution with grsecurity being no,0 -3019,what's the grsecurity with dbeingtribution being debian / ubuntu,0 -3020,what's the software executable space protection with dbeingtribution being gentoo,0 -3021,what's the dbeingtribution with grsecurity being optional and compile time buffer checks being yes,0 -3022,what's the dbeingtribution with rsbac being unknown,0 -3023,Who is on the 2002 commission from district 3?,0 -3024,What district for charlie oliver of the 2012 commission?,0 -3025,Who was on the 2012 commission and the 1999 commission with john wilborn?,0 -3027,what's the others% with parbeingh being tangipahoa,0 -3032,Who was the jockey at Rosehill and the weight was 57.5 kg?,0 -3033,When the time is 1:36.30 what shows as winner?,0 -3034,What was the depravitiy of earnings where international sales was 2470?,0 -3037,How low was the income where services is 72.5?,0 -3038,How low was the San Juan income?,0 -3039,who is the player with high assists on january 22?,0 -3041,Which team was in a game with a record of 15-63?,0 -3042,Which team played on April 1?,0 -3044,Who scored the most points in the game where the Raptors became 13-49?,0 -3045,Who did the Raptors play against when their record was 13-48?,0 -3046,Who was the high scorer in the game when the team was 1-4?,0 -3047,Where did they play and how many attended in the game against minnesota?,0 -3048,Who had the high point total when dee brown (5) had the high assist total?,0 -3050,Which players scored the most points when the opposing team was Seattle and how many points did they score?,0 -3051,What was the location and attendance of the game against Portland?,0 -3052,What was the record when the score was w 108–93 (ot)?,0 -3053,what's the 1985-1990 with 1995-2000 being 1.46,0 -3054,what's the 2000-2005 with 1985-1990 being 3.78,0 -3055,what's the 1985-1990 with 2000-2005 being 2.52,0 -3056,what's the region/country with 2000-2005 being 2.61,0 -3057,what's the 1995-2000 with 1985-1990 being 1.24,0 -3058,what's the 1995-2000 with 1990-1995 being 3.08,0 -3061,what's the wii points with title and source being tsūshin taikyoku: igo dōjō 2700-mon,0 -3062,what's the na -350- with title and source being paper wars: cannon fodder,0 -3064,what's the jp -210- with title and source being fun! fun! minigolf,0 -3066,What was the gtu winning team when the gto winning team was #48 greenwood racing?,0 -3067,What was the to winnning team when the tu winning team was #16 2002?,0 -3068,What round was the gto winning team #48 greenwood racing?,0 -3069,What was the to winning team when the tu winning team was joe amato carson baird?,0 -3070,Who is GTU Winning Team's #27 Don Lindley's TO Winning Team?,0 -3071,What is GTO Winning Team Mike Keyser's RND number?,0 -3072,Who is Gene Felton's TO Winning Team?,0 -3073,What is Peter Gregg Hurley Haywood's results?,0 -3076,What was the number of matches when the Goals Olimpia was 149?,0 -3077,"At the rate where 1600kwh/kwp•y is 26.3, what is the value of 2200 kwh/kwp•y?",0 -3078,"At the rate where 2200 kwh/kwp•y is 11.8, what is the value of 2400 kwh/kwp•y?",0 -3079,"At the rate where 1000 kwh/kwp•y is 26.0, what is the value of 1600 kwh/kwp•y?",0 -3080,"At the rate where 1800 kwh/kwp•y is 1.1, what is the value of 2400 kwh/kwp•y?",0 -3081,"At the rate where 1800 kwh/kwp•y is 16.7, what is the value of 2400 kwh/kwp•y?",0 -3082,"what's the time required for prices to double with highest monthly inflation rate being 29,500%",0 -3083,"what's the currency name with highest monthly inflation rate being 29,500%",0 -3087,what's the country with highest monthly inflation rate being 3.13 × 10 8 %,0 -3089,Who was the spokesperson for France in 1970?,0 -3092,Who won the game on may 21?,0 -3093,Who was the losing pitcher when 40583 attended?,0 -3094,Who was the wenning witcher when ezequiel astacio was the losing pitcher?,0 -3095,Where was the game played on may 20?,0 -3098,How many games has the club with 29-24 goals for/against score played? ,0 -3100,Who is the director of the fimm Biola Tak Berdawai?,0 -3101,What title was used in the nomination for the title Biola Tak Berdawai?,0 -3103,Who is the director of the film Gie?,0 -3104,Name the try bonus for tries against is 70,0 -3105,What is the try bonus for when tries against is 43?,0 -3106,Name the drawn for llandaff rfc,0 -3107,Name the won for try bonus of 10,0 -3108,"It was announced on July 2, 2006 that what asset was acquired? ",0 -3109,On what date was it announced that an asset was acquired for US$9 Million? ,0 -3110,"On what date was the asset acquisition that was announced on February 22, 2007 completed? ",0 -3111,"It is was announced on July 2, 2006 that what asset had been acquired? ",0 -3112,What was the reported cost of the asset acquired from Standard & Poor's? ,0 -3113,"what's the trim with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb",0 -3114,"what's the trim with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb",0 -3115,what's the trim with engine being 3.5l lz4 v6,0 -3116,"what's the torque with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb",0 -3117,what's the torque with trim being xe (2009),0 -3118,what's the transmbeingsion with trim being xe (2009),0 -3119,"Who is the director of the episode ""rain of terror"" that was written by John Brown?",0 -3121,"Who wrote the episode called ""mercury falling""?",0 -3122,Nantyglo RFC had 546 points for and how many points?,0 -3123,What club had 523 points against? ,0 -3124,What club has 536 points for?,0 -3126,What club had 404 points against? ,0 -3127,Risca RFC has 54 tries for and how many draws? ,0 -3128,What club has 36 points?,0 -3129,What are the lost where points lost is 353?,0 -3130,What are the won games with losing bonus of 0?,0 -3131,Which club has 565 points?,0 -3132,How many tries where points is 77?,0 -3133,what's the percentage of votes with number of deputies being 112,0 -3134,what's the percentage of votes with number of deputies being 112,0 -3135,what's the percentage of votes with election date being 1981,0 -3136,what's the number of deputies with number of votes received being smaller than 1549176.2765483726 and election date being 1969,0 -3137,Who wrote the sorry of the episode directed by Dan Attias? ,0 -3139,What's the title of the episode written by David Simon? ,0 -3142,Which location has a team that is nicknamed the Vikings?,0 -3143,What year was Kirkland founded?,0 -3144,Which institution was founded in 1923?,0 -3145,Where is Interlake located?,0 -3146,What was the series count at on May 23? ,0 -3148,Who had the high rebounds at the delta center?,0 -3150,Who had the high point total when the team was 24-17?,0 -3151,What was the score when the heat played at charlotte arena?,0 -3152,How many games had the team played after they were 40-20?,0 -3153,What was the score on November 25?,0 -3157,"what's the country/region with seasons and winners being season 1, 2012: demetra malalan",0 -3159,"who is the the judges with seasons and winners being season 1, 2013–2014: upcoming season",0 -3160,who is the the judges with local title being x factor and presenters being heikki paasonen jukka rossi (xtra factor),0 -3161,"what's the local title with seasons and winners being series 1, 2006: lucy benjamin",0 -3162,what's the country/region with presenters being heikki paasonen jukka rossi (xtra factor),0 -3164,"what's the chroma format with scalable modes being snr- or spatial-scalable and intra dc precbeingion being 8, 9, 10",0 -3165,what's the chroma format with name being high profile,0 -3166,"who is the the artbeingt with song title being "" a steel guitar and a glass of wine """,0 -3167,what's the points with artbeingt being dave appell,0 -3168,"who is the the artbeingt with song title being "" a little bitty tear """,0 -3169,who is the the artbeingt with position being 32,0 -3175,What are the total freights in metric tonnes when the total transit passengers is 147791?,0 -3176,What is the total number of passengers of the airport ranked 15?,0 -3177,Whatis the original title for lion's den?,0 -3178,What is the percent change from 08/09 for belfast international?,0 -3179,How many transit passengers at london gatwick?,0 -3180,What is the rank of the airport with freight ( metric tonnes ) of 255121?,0 -3181,What is the rank of the airport with a freight ( metric tonnes ) of 23791?,0 -3182,what's the airport with total passengers 2009 being 157933,0 -3184,what's the airport with aircraft movements 2009 being smaller than 238223.1659471435 and change 2008/09 being 0.5%,0 -3186,what's the total passengers 2008 with change 2008/09 being 6.5%,0 -3192,what's the airport with % change 2005/2006 being 13.0%,0 -3194,what's the total passengers with freight (metric tonnes) being 827,0 -3197,who is the the mens doubles with mixed doubles being jimm aalto nina sarnesto,0 -3198,who is the the mixed doubles with year being 1972,0 -3199,who is the the mens doubles with year being 1978,0 -3200,who is the the mens singles with mens doubles being kaj lindfors kaj osterberg,0 -3201,How big (in sq mi) is the island that's 4065 km2?,0 -3203,What's the name is the island with a population of just 64?,0 -3204,what's the tries against with try bonus being 10,0 -3205,what's the points with played being 22 and points against being 319,0 -3206,what's the losing bonus with played being 22 and tries against being 38,0 -3207,what's the try bonus with club being abercwmboi rfc,0 -3208,what's the points for with points against being 556,0 -3209,what's the won with points against being 304,0 -3210,Where was held the ceremony for the 12th Pride of Britain Awards?,0 -3211,What episode of the Pride of Britain Awards had an audience of 6.06 million viewers?,0 -3213,what's the vineyard surface (2010) with grand cru being bienvenues-bâtard-montrachet,0 -3214,what's the village with wine style being red wine and vineyard surface (2010) being hectares (acres),0 -3215,what's the village with wine style being red wine and vineyard surface (2010) being hectares (acres),0 -3216,what's the wine style with grand cru being romanée-conti,0 -3217,what's the wine style with grand cru being romanée-conti,0 -3218,what's the wine style with village being puligny-montrachet [d ],0 -3220,What is after intermediate algebra,0 -3223,"who is the the writer(s) with original airdate being february 7, 2001",0 -3224,"what's the frequency mhz with city of license being chattanooga, tennessee",0 -3226,what's the fcc info with call sign being w221aw,0 -3228,what's the fcc info with call sign being w265av,0 -3229,what's the capacity with team being berwick rangers,0 -3230,what's the team with stadium being borough briggs,0 -3233,what's the bleeding time with condition being factor v deficiency,0 -3234,"what's the bleeding time with condition being liver failure, end-stage",0 -3235,what's the bleeding time with platelet count being decreased or unaffected,0 -3236,what's the condition with bleeding time being unaffected and prothrombin time being prolonged,0 -3237,what's the bleeding time with platelet count being decreased and prothrombin time being prolonged,0 -3238,"what's the bleeding time with partial thromboplastin time being unaffected and condition being liver failure , early",0 -3240,Name the delegate first elected in 2003?,0 -3241,What are the counties represented in District 12.1 12a?,0 -3242,Which country has a delegate who was first elected in 2006?,0 -3243,Who are the foreign players representing Ekaterinburg?,0 -3244,What town is Volleyball Sportiv Complex (3 500) located in?,0 -3245,What arena was season 6 played at?,0 -3246,Who was the head coach in season 2?,0 -3247,On what circuit was the City of Ipswich 400 race held?,0 -3248,Who was the winner on the Symmons Plains Raceway?,0 -3249,What were the dates for Round 8?,0 -3251,What round was held at the Queensland Raceway?,0 -3254,What capital has a population of 596268?,0 -3255,"what's the capital with area (km 2 ) being 12,245.9",0 -3256,"what's the former province with area (km 2 ) being 12,245.9",0 -3258,what's the area (km 2 ) with population census 2009 being 939370,0 -3260,what's the county with code being 2,0 -3261,In what year did Tom Sneva win a race?,0 -3262,What kind of chassis did a winning car with a Foyt engine have in 1979?,0 -3263,What team does Al Unser drive for?,0 -3264,What team has a vehicle with an Offenhauser engine and a McLaren chassis?,0 -3265,What team raced with a Foyt engine in the Texas Grand Prix?,0 -3266,What network is virtual channel 9.1 linked to?,0 -3267,Who owns the station on channel 33.3?,0 -3268,What is JCTV's digital channel?,0 -3269,What is channel 33.7's official call sign?,0 -3270,What is HSN's official virtual channel in Minneapolis-St. Paul?,0 -3272,How many points were made when the tries for was 83?,0 -3273,How many points are there when the lost is 7?,0 -3274,What is the losing bonus when the points are 24?,0 -3275,How many losing points does Llandudno RFC have?,0 -3276,What is the try bonus for Ruthin RFC?,0 -3278,what's the won with try bonus being 12,0 -3279,what's the drawn with lost being 4,0 -3280,what's the points against with lost being 13,0 -3281,what's the points against with won being 11,0 -3282,what's the drawn with points for being 350,0 -3284,what's the lost with club being colwyn bay rfc,0 -3285,what's the won with tries for being 84,0 -3286,what's the won with points for being 596,0 -3287,what's the points for with lost being 4,0 -3288,what's the won with points for being 643,0 -3289,What is the Telugu word for хонгорцог in Mongolian?,0 -3290,What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada?,0 -3291,What is the Malayalam word that is listed as #10 in the table?,0 -3292,tell the score when the times gone was 75,0 -3293,was the the score when the tries was 743,0 -3295,how many extra points were there when the score was 48,0 -3296,what was the extra score when the overall score was 52,0 -3297,what was the score when the extras were 6,0 -3298,What country's capital is buenos aires?,0 -3299,What unit of measurement for uruguay?,0 -3300,What country'c capital is santiago?,0 -3301,who is the the voice actor (englbeingh 1998 / pioneer) with voice actor (englbeingh 1997 / saban) being alec willows and voice actor (englbeingh 2006 / funimation) being andy mcavin,0 -3302,what's the character name with voice actor (englbeingh 1997 / saban) being ian james corlett,0 -3303,what's the character name with voice actor (englbeingh 1998 / pioneer) being paul dobson,0 -3305,who is the the voice actor (japanese) with character name being goku,0 -3307,which school has 14 large championships,0 -3309,what's the duration with mission being sts-87,0 -3310,"what's the edo flight with duration being 17 days, 15 hours, 53 minutes, 18 seconds",0 -3311,"what's the primary payload(s) with launch date being july 8, 1994",0 -3312,what's the mission with primary payload(s) being spacelab life sciences-2,0 -3313,what's the shuttle with primary payload(s) being united states microgravity laboratory-1,0 -3315,what's the pts with team being kopron team scot,0 -3316,what's the pts with position being nc,0 -3317,what's the pts with poles being smaller than 1.0 and motorcycle being aprilia and class being 250cc,0 -3318,what's the poles with pts being 81,0 -3320,what's the position with team being skilled racing team,0 -3321,Who was the defensive award winner in February when the rookie award was given to Rhys Duch?,0 -3322,Who was the offensive award winner the week when Bob Watson was given the overall award?,0 -3323,Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis?,0 -3324,Who won the rookie award the week the transition award was given to Brodie Merrill and the offensive award was given to Pat Maddalena?,0 -3326,What is the WIAA classification of Oakland Alternative High School? ,0 -3328,What's the note about the school established in the year of 1973?,0 -3329,Who was in the 4th district in 1924?,0 -3330,List all the years with Cecil M. Featherly in the 1st district and David L. Baker in the 2nd district?,0 -3332,List all FTE middle school teachers in Sunnyvale.,0 -3334,How many FTE teachers are there when the student:teacher ration is 19?,0 -3335,What edition of congress for member-elect richard p. giles?,0 -3337,what's the highest point with lowest point being belle fourche river at south dakota border,0 -3338,what's the lowest elevation with highest point being charles mound,0 -3339,what's the lowest point with highest point being mount greylock,0 -3340,what's the state with highest point being mount katahdin,0 -3341,What language for the glam genre?,0 -3342,What game allow the 1980s to be exportable?,0 -3344,When 0-1 is the aggregate what are the home (1st leg)?,0 -3345,When 2-0 is the 1st leg what are the home (2nd leg)?,0 -3346,When belgrano is the home (1st leg) what is the home (2nd leg)?,0 -3347,When platense is the home (2nd leg) what is the 2nd leg?,0 -3349,When temperley is the home (2nd leg) what is the home (1st leg)?,0 -3352,How many 2nd legs are there where home (1st leg) is Independiente?,0 -3353,Who was in home (2nd leg) when Talleres was in home (1st leg),0 -3354,Who was in 2nd leg when Boca Juniors was in home (1st leg)?,0 -3355,Name the 1968 bbc for 1957 bbc anneke wills,0 -3356,Name the 2000 carlton television for 1951 bbc john stuart,0 -3357,Name the cast for 1957 bcc for jean anderson,0 -3358,Name the 1970 film when 1951 bbc is michael croudson,0 -3359,Name the cast for 1951 bbc being carole lorimer,0 -3360,Name the 1970 film for when 1968 being neil mcdermott,0 -3361,Name the playoffs for 2nd round open cup,0 -3362,What was the regular season standings for the year when the playoffs reached the conference semifinals and the team did not qualify for the US Open Cup?,0 -3363,Name the population in 1931 for lubelskie,0 -3364,Name the s car starting 1937 when area 1930 is 16.5,0 -3365,Name the population when the capital is tarnopol,0 -3366,Name the s car plate starting 1937 for area 1930 being 22.2,0 -3369,Which chassis manufacturer is for fleet numbers range 2530-2558,0 -3371,Name the channels when designation is pc700,0 -3373,Name the bus width bits when bandwidth mb/s is 3200,0 -3377,Which elementary schools list Cort Monroe as the principal from 2013 to 2014?,0 -3378,Who are all the assistant principals that served from 2013-2014 under the principal Cort Monroe?,0 -3379,Who played in the series that resulted in matches with the following scores: 0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5?,0 -3380,Where was there a change of 6.5%?,0 -3381,"When the change is 8.8%, what is the density (pop/km²)?",0 -3385,"When the population rank is 34, what the is % change?",0 -3390,What are all the run times with 8.2 million viewers?,0 -3391,What are all the episodes with an episode run time of 24:01?,0 -3397,which country has miss universe Hungary as former pageant?,0 -3398,which is the former pageant in the country where the new pageant is miss bahamas?,0 -3401,which is the new pageant from spain?,0 -3402,Who was the away team when Carlton was the home team?,0 -3404,what is the racing club where copa libertadores 1997?,0 -3405,what is th copa libertadores 1997 is qf?,0 -3407,What are the away teams when they scored 5.11 (41)?,0 -3408,What are the ground when the away team scored 6.9 (45)?,0 -3409,What are the ground where the crowd totals 19929?,0 -3410,Name the home team for manuka oval,0 -3411,Name the away team score for richmond,0 -3412,Who made the report when the home team is north Melbourne?,0 -3413,Who played Richmond at home?,0 -3414,Who has the home ground Aami stadium?,0 -3415,Who were all candidate when incumbent was D. Wyatt Aiken?,0 -3417,Who was everyone first elected when incumbent was John J. Hemphill?,0 -3418,When the girls singles is lindaweni fanetri what is the mixed doubled?,0 -3419,When the girls doubles is ayu pratiwi anggi widia what is the boys doubles?,0 -3421,When mixed doubles is danny bawa chrisnanta debby susanto what is the boys singles?,0 -3422,When girls doubles is anneke feinya agustin wenny setiawati what is the mixed doubles?,0 -3424,Name the publisher for resident evil 4,0 -3426,How many of the episodes have Roger Goldby as the director?,0 -3427,Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer?,0 -3430,What year did construction start at Heysham 1,0 -3434,What position did Joe Maddock play?,0 -3436,How many points did Albert Herrnstein make?,0 -3437,What positions did Paul Jones play?,0 -3446,What positions does Tom Hammond play?,0 -3447,What positions does Hal Weeks play?,0 -3448,How many points does Clark have? ,0 -3450,Was there a starter when 3 touchdowns were scored?,0 -3454,What series have Caroline Flack as a main presenter?,0 -3455,Who is the co-presenter of the series Seven (2007)?,0 -3456,Who is the main presenter of the series Twelve (2012)?,0 -3457,Who is the UK co-presenters that have Joe Swash as a co-presenter of the series Eleven (2011)?,0 -3458,What position did Nell McAndrew finish?,0 -3459,Who was the champion boxer?,0 -3460,When did Darren Day enter?,0 -3461,What position did Tara Palmer-Tomkinson finish?,0 -3462,When did the 4th finisher enter?,0 -3463,When did Darren Day enter?,0 -3467,What is the title of series #1?,0 -3468,What is the finished place where exited is day 11?,0 -3469,Who is the famous for that finished 2nd?,0 -3470,What is the famous for where the finished is 5th?,0 -3471,What is the exited day where the celebrity is vic reeves?,0 -3472,what is the celebrity where the finished is 5th?,0 -3473,When was incumbent John Thomas Wilson first elected? ,0 -3474,Who were the candidates in the election where John Beatty was the incumbent? ,0 -3475,Who was the incumbent in the Ohio 16 district? ,0 -3476,What is the average for the team with n/a in 1992 and 37 in 1992-93?,0 -3477,What is the result in 91-92 for the team with a 1.053 average?,0 -3478,What is the 92'-93 result for the team with 55 in 91'-92?,0 -3479,What is the average for the team with 39 in 1991-92?,0 -3480,Name the birth date for shirt number 7,0 -3483,Name the 1991-1992 for river plate,0 -3484,Which models can perform flops(@ 200mhz) is 3.2,0 -3485,Which version of opengl is used by model sgx520?,0 -3486,What is the die size(mm 2) for model sgx531?,0 -3488, Name the team for average 1.026 for 1991-92 being 40,0 -3489,Name the economic class for punong barangay being antonio b. gangan,0 -3490,Name the economic class for arnold g. apalla,0 -3491,Name the economic class for artemoio m. baymosa,0 -3493,Name the overall wc points rank for 2nd m for 122.5,0 -3495,"What was the original air date (atv) of the episode ""Recall to Service""?",0 -3496,Who was the director of the episode originally aired on 26 October 1969?,0 -3498,What is the title of the episode with the original air date of 28 September 1969?,0 -3499,What was the original air date (atv) of episode 1?,0 -3500,Who is shown for the 2nd (m) of 220.5?,0 -3501,What is the 2nd (m) when the 1st (m) is 216.5?,0 -3502,For the nationality of FIN and the points of 418.8 what is the overall wc points?,0 -3503,What are the overall wc points for points of 397.2?,0 -3504,What is shown for 2nd (m) if the is 1st (m) is 203.5?,0 -3505,What are the overall wc points for 2nd (m) of 214.5?,0 -3506,The competitor for FIN had how many overall WC points?,0 -3508,"What was the length of the jumper representing FIN, in meters?",0 -3509,What is the 1st(m) score for the Person who had a total points of 272.7,0 -3510,How many total points did roman Koudelka have,0 -3511,Name the opponent for week 12,0 -3513,Name the opponent for astrodome,0 -3515,"What stadiums had an attendance of 8,256?",0 -3517,Which team did they play at Rich Stadium?,0 -3518,What date did they play in Cleveland Municipal Stadium?,0 -3519,Name the year model for 4-cyl straight engine dohc 16v and 1.5 crdi,0 -3520,Name the year model for 1.3,0 -3525,How many points in 89/90 for the team with 55 in 87/88?,0 -3526,How many points in 87/88 for racing de córdoba?,0 -3528,What is the average for the team with 34 in 88/89?,0 -3530,Name the telephone 052 for area km2 being 5.42,0 -3531,Name the population of people for area being 24.35,0 -3533,Name the number of administrative unit for number 4,0 -3534,Name the name of administrative unit for 3464 people,0 -3536,Which providers use exchange server?,0 -3537,Which providers use version 2008?,0 -3538,Which providers don't use exchange server?,0 -3540,how many points did the argentinos juniors team score during the 1986-87 season?,0 -3543,list the number of matches played by the teams that got an average of 1.079,0 -3544,Name the womens singles for korea open super series,0 -3545,Name the tour when mens singles is chen jin and womens doubles is zhang yawen zhao tingting,0 -3546,Name the womens doubles when tour is malaysia super series,0 -3547,Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen,0 -3548,Name the mixed doubles when tour is hong kong super series,0 -3549,Name the mixed doubles for zhu lin,0 -3550,Name the week for kingdome,0 -3551,Name the date when result is l 13–10 ot,0 -3552,Name the record for l 24–22,0 -3553,Which Country is the show aired on Fox?,0 -3554,Where is the show aired in New Zealand?,0 -3555,"What channel had the prize of €100,000?",0 -3557,What country is the show aired on TVNZ?,0 -3558,What is the capital of Umbria?,0 -3559,What is the region where Milan is located?,0 -3564,Who directed all the episodes that were written by aaron ehasz & john o'bryan?,0 -3565,What was the production code of the episode that was written by michael dante dimartino and directed by lauren macmullan?,0 -3566,What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan?,0 -3567,"Which situation has an original u.s. airdate of December 5, 2007?",0 -3568,"What is the date of situation for the original u.s. airdate of December 5, 2007?",0 -3571,For the 8 October 2005 – 12 October 2005 situation dates what was the nature of the situation?,0 -3572,Name the circuit for gt3 alex mortimer bradley ellis,0 -3573,"Name the episodes when region 1 is september 19, 2006",0 -3576,what's the individual winners with nation being australia,0 -3578,When 1994 no game is the 1894 wsu 10–0 moscow what is the 1896 no game?,0 -3579,When 1963 wsu* 14–10 pullman is the 1893 no game what is the 1894 wsu 10–0 moscow?,0 -3581,When 1987 no game is the 1897 no game what is the 1890 no game?,0 -3582,When 1971 no game is the 1891 no game what is the 1896 no game?,0 -3583,When the 1907 ui* 5–4 moscow is the 1897 no game what is the 1895 wsu* 10–4 pullman?,0 -3585,What is the avg start that starts at 30?,0 -3587,What coach had 15 wins?,0 -3588,How many losses for the coach that coached 19 games?,0 -3589,Name the school year for class a for sterling city and little elm,0 -3591,Name the class aa for 1998-99,0 -3592,Name the class a for pearland,0 -3593,Name the class aaaaa for 2005-06,0 -3595,What is the percentage of females where in India and are maharashtra?,0 -3596,What is the percentage of all females that are literate people have a percentage of 68.74?,0 -3597,What is the percentage of females where the state code is a 4?,0 -3598,What is the percentage of all the literate people where females are 73.17?,0 -3599,What is the percentage of literate people where india is andaman and Nicobar Islands?,0 -3600,Who was the Class AAAA champion in 2006-07?,0 -3603,Who was the class AAAAA in 2008-09?,0 -3604,Who was the Class AA winner when Plains was Class A winner and Lubbock was Class AAAAA winner?,0 -3605,Who was the Class A winner in 2006-07?,0 -3606,"If class a is canadian and class aaa is wimberley, which possible school years could this fall on? ",0 -3607,"For franklin of class aa, which school years does this occur? ",0 -3608,Which school years have a class a being lindsay and a class aaa being cuero? ,0 -3609,What season was the overall record 29-7?,0 -3610,How far into the postseason did the Rams go when their record was 29-7?,0 -3611,What was the Ram's conference record when they were the CBI champions?,0 -3612,What season was the overall record 24-10?,0 -3613,In what season was the overall record 29-7?,0 -3614,"What are the school years where class ""AAA"" is argyle?",0 -3615,What are all the AAA classes in the school years of 2005-06?,0 -3616,What are all the AAAA classes in the schools years 2004-05?,0 -3617,What are all the school years where class AAAA is in Gregory-Portland? ,0 -3618,What are all the AAA classes in the school years of 2004-05?,0 -3619,What are all classes for the position SLB?,0 -3620,What are all weights for the number 27?,0 -3621,What are all names for the position FS?,0 -3622,Name the call sign for the 17 physical,0 -3623,Name the branding for forum communications,0 -3629,Name the class aaaa for menard,0 -3630,Name the school year for class aaaa for wichita falls,0 -3631,Name the class a for carthage,0 -3632,What is the original title of europe for dummies?,0 -3633,What is the English version of Mariusz Szczygieł book?,0 -3634,who is the the pole position with date being august 10,0 -3636,who is the the winning driver with pole position being paul tracy and race name being miller genuine draft 200,0 -3637,who is the the pole position with rnd being 16,0 -3638,what's the race name with date being september 7,0 -3639,what's the circuit with rnd being 5,0 -3642,What is the most recent final result for the years (won in bold) 1979?,0 -3643,"what's the title with original air date being september23,1995",0 -3644,"who wrote with original air date being september23,1995",0 -3645,"who directed with original air date being november18,1995",0 -3646,What percentages of social democratic correspond to a 5.5% left bloc?,0 -3647,When was there 8.9% Green-Communist?,0 -3649,What are all percentages of Left Block when there is a 28.7% Social Democratic?,0 -3650,"If Socialist is at 46.1%, what are all percentages for social democratic?",0 -3652,What is the NFL team of the player whose college is Minnesota?,0 -3653,What college did the defensive back attend?,0 -3654,What is the pick number of the player whose college is Florida State?,0 -3657,What is the position of the player whose college is Western Kentucky?,0 -3659,Which team does Robert Brooks play with?,0 -3660,Which team picked from South Carolina college?,0 -3661,Which college was the wide receiver whose pick was less than 130.0 picked from?,0 -3662,What position(s) does the player drafted #34 play?,0 -3664,What number picked were players from arizona state picked?,0 -3665,What NFL team does player keith woodside play for?,0 -3666,what's the player with college being penn state,0 -3667,what's the position with college being usc,0 -3669,what's the college with position being placekicker,0 -3670,who is the the player where pick # is 64,0 -3671,What day were the Denver Broncos the opponent?,0 -3672,What day was the oppenent the detroit lions?,0 -3673,List the record of 0-1 from the table?,0 -3674,Type the record details if any result has L 3-6 in it?,0 -3676,type the attendance for playing with tampa bay buccaneers?,0 -3680,"What was the spending per capita when the revenue per capita was $7,755?",0 -3681,What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting?,0 -3687,what is the arrival time for no. 14?,0 -3688,what is the arrival time where the station code is awy?,0 -3690,what is the arrival time where station code is pnvl?,0 -3691,Which stations had volume of 5088 in 2004-05?,0 -3695,Who won the young rider classification in Stage 9 where the mountain classification was Emanuele Sella?,0 -3696,Who is the general classification leader for stage 3?,0 -3698,Who was awarded the young ride classification leader when the winner was Marzio Bruseghin?,0 -3699,Which title did Neil Affleck direct?,0 -3701,Which title had the production code 1ACX04?,0 -3702,When did the show directed by Michael Dimartino first air?,0 -3703,Which series numbers were directed by Monte Young?,0 -3705,What regular seasons occurred in 2011?,0 -3709,What nhl team does stan weir play for?,0 -3710,What nhl team does dwight bialowas play for?,0 -3712,Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team?,0 -3713,Which colle/junior/club team did Michel Boudreau play for?,0 -3714,Which players played right wing?,0 -3715,Which nationality is the player from the Philadelphia Flyers?,0 -3716,Which position did the player hold that played for the Philadelphia Flyers in NHL?,0 -3717,Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL?,0 -3719,Name the position for ron lalonde,0 -3720,Name the college/junior club team for pick number 63,0 -3722,what's the college/junior/club team with nhl team being california golden seals,0 -3723,what's the nhl team with college/junior/club team being brandon wheat kings (wchl),0 -3724,who is the the player with pick # being 132,0 -3726,what's the position with player being ray boutin,0 -3727,what is the name of the borough where station uses is 28702?,0 -3728,what are the lines served where station users is 210076?,0 -3729,whatis hte station code where users are 130368?,0 -3730,Which is the class A when Weslaco was the class AAAAA and brownwood was the class AAAA,0 -3731,Which is the class A when Marion was the class AA,0 -3732,Which is the class AA when graford was the class A,0 -3734,Who was the class AAAA when class AAAAA was Weslaco in 1994-95,0 -3735,What was the class AAAA when San Angelo Lake View was the class AAAA,0 -3736,What are the changes from 2009 to 2010 in Tunisia?,0 -3737,What are the international tourist arrivals in 2010 where change from 2010 to 2011 is +11.2% ?,0 -3738,What are the changes (2010 to 2011) where the International Tourist Arrivals is 1.7 million?,0 -3739,What are the international tourist arrivals(2010) where change from 2009 to 2010 is +11.1%?,0 -3740,What are the International tourist arrivals (2010) where change from 2010 to 2011 is +15%,0 -3741,How many international tourist arrivals were in Senegal in 2011?,0 -3742,When the change (2010 to 2011) is +1.0% what is the change (2011 to 2012)?,0 -3743,When the change (2011 to 2012) is -0.1% what is the country?,0 -3744,When the change (2011 to 2012) is +13.4% what is the country?,0 -3745,When 24.1 million is international tourist arrivals (2012) what is the change (2010 to 2011) ?,0 -3746,United kingdom is the country what is the change (2011 to 2012)?,0 -3748,What is the enrollment amount where Hispanic (%) is 3.6?,0 -3749,What percentage of Asians are there in the year 2009?,0 -3750,What percentage of Asians are there in the year 2004?,0 -3751,What percentage of hispanics are there when the free/reduced lunch percentage is 81.4?,0 -3752,What percentage of free/reduced lunch are there when the hispanic percentage is 3.7?,0 -3753,Who was the arranger for the track written by Nizar Francis ?,0 -3754,Who was the writer for the song 4:29 in length?,0 -3755,What track number is 4:29 in length?,0 -3756,What is the female rank in Karnataka?,0 -3757,What is the English title when the original title is Die Qual Der Wahl?,0 -3758,What is the episode number where the English title is Pilot?,0 -3759,What was the original air date for episode number 6?,0 -3760,What is the original title of season number 3?,0 -3761,What municipality where the human development index in the year 2000 was 0.7827?,0 -3763,What is the human development index for the year 2000 where the ingei code is 10?,0 -3764,What is the area (km 2) where the population density (/mk2) is 84.3?,0 -3765,Name the mandate for list pct 12.39%,0 -3767,What was the scoring rank for Angela Stanford in 2009?,0 -3770,who is hte player with a 3 dart avg of 89.57?,0 -3771,what are all played with a 3 dart avg is 92.06?,0 -3773,Name the written by for 16.32 million viewers,0 -3779,When steve gomer is the director who is the writer?,0 -3780,"What is the air date for ""there goes the bride""?",0 -3781,15.03 million u.s viewers seen what episode?,0 -3785,Name the hand for 1 credit 200,0 -3787,Name the points classification for mark renshaw and team csc,0 -3788,"How many episodes were released on DVD in the US on October 13, 2009?",0 -3791,"What is the original air date for ""runaway""?",0 -3792,What was the altitude of the explosion Hardtack Teak?,0 -3793,What was the altitude of the event on 1962-07-09?,0 -3794,What was the altitude of the yield of 1.4 megatons?,0 -3795,What was the yield of the K-4 explosion?,0 -3796,What explosion had an altitude of 539 km?,0 -3797,"List all opponents in the September 23, 1984 game?",0 -3798,"What was the score in the game played on December 2, 1984?",0 -3804,What is the name of the venue where the opponent scored 51?,0 -3806,What was the site of the game against Buffalo Bills ?,0 -3808,What was the date when the attendance was 63995,0 -3809,Who was the opponent in week 4?,0 -3811,What are all elapsed time amounts for yacht type Reichel Pugh 55?,0 -3812,What are all elapsed time for yacht type STP 65?,0 -3813,"If sail number is AUS 03, what are all associated race numbers?",0 -3814,What are all values of LOA(metres) for an elapsed time of 2:17:01:05?,0 -3815,"When the elapsed time is 2:14:12:49, what are all yachts associated with this value?",0 -3816,In what location was the fastest time 1:37.071s?,0 -3817,What are all the places where Birgit Fischer competed?,0 -3818,What are the records when Elzbieta Urbanczik competed?,0 -3822,What date was the episode with production code 176265 aired?,0 -3823,On what dates were episodes written by Robert Carlock aired?,0 -3825,What is the title for the episode written by Robert Carlock & Dana Klein Borkow?,0 -3826,Who directed the episode with the production code 176252?,0 -3827,"What date was the episode entitled ""The One Where Ross is Fine"" aired?",0 -3831,Name the men doubles for els baert,0 -3832,Name the men doubles for caroline persyn smids,0 -3834,Name the womens singles for raina tzvetkova petya nedelcheva,0 -3836,Name the mens singles for jeliazko valkov dobrinka peneva,0 -3837,Name the mens singles for 1989,0 -3838,Name the year for victoria hristova neli nedialkova,0 -3839,Name the year for womens doubles being raina tzvetkova emilia dimitrova,0 -3840,WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?,0 -3841,WHAT IS THE NAME OF THE MENS DOUBLES PLAYER WHEN THE WOMENS DOUBLES PLAYER IS HELEN REINO KAI-RIIN SALUSTE?,0 -3842,WHAT IS THE NAME OF THE MIXED DOUBLES PLAYER WHEN THE WOMENS SINGLE PLAYER IS KAIRI VIILUP?,0 -3844,Name the womens doubles when mens doubles is charalambos kazilas stepan partemian,0 -3845,Name the womens doubles when mixed doubles is potten ruth scott,0 -3846,Name the mens singles when mens doubles is george georgoudis gerostergiou,0 -3847,Name the womens doubles when mens doubles is theodoros velkos giorgos patis,0 -3849,Who won womens doubles the year magnús ingi helgason tinna helgadóttir won mixed doubles and ragna ingólfsdóttir won womens singles in 2010,0 -3851,Who won mixed doubles the years einar jónsson wagner walbom won mens doubles and wagner walbom won mens singles,0 -3853,Who won mens singles the year sveinn logi sölvason tryggvi nilsen won mens doubles and elsa nielsen won womens singles,0 -3854,In which position is the team Cerro Porteño?,0 -3856,What is the result of men's doubles when there was no competition?,0 -3857,WHo won men's singles in 1994?,0 -3858,Who won women's singles in 2001?,0 -3860,is γолемата вода nominated for anything?,0 -3863,Who is the second performer in episode 5?,0 -3865,Who was perfomer one on 30 January 1988?,0 -3866,Who was performer 4 when Kate Robbins was performer 3?,0 -3869,Which general election had a vote swing of 1.84?,0 -3871,What was the number of seat changes when the % of votes was 23.75?,0 -3872,Which general election had a vote swing of 1.69?,0 -3873,What was the vote swing for the general election of the 12th lok sabha?,0 -3874,What was the team's result in week 4?,0 -3875,When the network mask is 255.255.255.252 what is the prefix size?,0 -3879,"Who were all of the opponents when the date was November 12, 1978?",0 -3882,What date did the Colts play New York Jets?,0 -3884,"What was the result of the game on October 6, 1974?",0 -3885,"What was the record on September 22, 1974?",0 -3886,What was the Bhofen #1 score and rank for the player whose Bhofen #2 score and rank was 231.2 (8)?,0 -3887,What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 233.4 (16)?,0 -3888,What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 227.5 (19)?,0 -3889,How many points in total were scored by the player whose Oberstdork score and rank were 252.6 (11)?,0 -3891,On which date was the game played at Tiger Stadium?,0 -3892,What was the final score of the game against the Dallas Cowboys?,0 -3893,"What was the attendance at the game played on December 10, 1972?",0 -3895,Name the german voice actor for alain dorval,0 -3896,Name the german voice actor for rafael torres,0 -3897,Name the character for sophie arthuys,0 -3898,Name the italian voice actor for dirk fenselau,0 -3899,what is the Europe number for the league cup of 36 (0)?,0 -3900,which fa cups had a total of 565 (7)?,0 -3901,which leage had a league cup of 46 (1),0 -3902,which years had other a of 8 (1)?,0 -3903,What name is associated with League 142?,0 -3907,What years have a total of 139?,0 -3910,How tall is Braxton Kelley?,0 -3913,who is number 98?,0 -3915,What is the result of the game against the Chicago Bears?,0 -3916,"What was the final score of the game on October 4, 1970?",0 -3917,"Who was the team's opponent of October 25, 1970?",0 -3918,Did Flamengo play in the Recopa Sudamericana in 1998,0 -3919,What were Cruzeiro results in the Copa Mercosur in 1998,0 -3921,What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?,0 -3922,"What is California State University, Hayward's new conference for Western Collegiate Lacrosse?",0 -3923,Which new conference is the Toreros Western Collegiate Lacrosse team playing in?,0 -3924,"In Ascot (UK), what was the result?",0 -3926,How many venues were used on 10 Mar 2007?,0 -3929,Where was the 1400 m held?,0 -3930,What is the group name when 3yo hcp restricted maiden was raced?,0 -3931,When did the 55 kg participant race?,0 -3933,Name the result for milwaukee county stadium,0 -3934,What was the record when the game was played at Cleveland Municipal Stadium?,0 -3935,What was the game date in week 13?,0 -3936,Where did the team play the Detroit Lions?,0 -3937,"What week of the season did the date December 2, 1962 fall on?",0 -3938,"what is the result for October 14, 1956?",0 -3939,Name the game site for week 6,0 -3942,what's the result with record being 0–1,0 -3943,what's the game site with result being l 24–34,0 -3946,Name the population 2010 census for population 2000 census of 920599,0 -3948,Name the population 2000 census for 77 area,0 -3951,Name the administrative division for 95391,0 -3953,Name the santee sisseton for morning,0 -3954,Name the southern lakota for morning,0 -3955,Name the southern lakota for wakȟáŋyeža,0 -3956,Name the english gloss for naháŋȟčiŋ,0 -3958,Name the yankton yanktonai for wičháša,0 -3960,What college did steve justice attend?,0 -3963,who is the the womens doubles with mens doubles being reinhold pum karl buchart and mixed doubles being hermann fröhlich lore voit,0 -3964,who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser,0 -3965,who is the the mixed doubles with mens singles being peter moritz,0 -3966,who is the the mens doubles with mens singles being jürgen koch and womens singles being sabine ploner,0 -3967,who is the the womens singles with mixed doubles being bernd frohnwieser hilde themel and year being smaller than 1959.0,0 -3973,What writers are associated with a viewing figure of 7.01 million?,0 -3974,What are all episodes with a viewing figure of 6.72 million?,0 -3975,What original air dates are associated with a viewing figure of 7.27 million?,0 -3976,Who is the director of the episode at entry number 13? ,0 -3978,Which episode has been viewed 6.34 million times? ,0 -3979,What is the original air date of the episode directed by Paul Marcus?,0 -3982,What is the version with sbagen software?,0 -3984,What is the software with version 1.2.2.0?,0 -3985,What is hte license for beeone smod/hms software?,0 -3986,What are all the operating systems for sbagen?,0 -3987,What is the English word for the French word cheval?,0 -3988,What is the Spanish word for the French word filtrer?,0 -3989,What is the French word where the German word is filtern?,0 -3990,What is the french word for the Russian word filtrovat (фильтровать)?,0 -3991,What is the French word for the Italian word nazione?,0 -3992,"What is the English word for the Russian words loshad, kobyla (лошадь, кобыла)?",0 -3993,Which state had 3821 students in the fall of 06?,0 -3994,How man students were from Maryland in Fall 05?,0 -3998,Name the 132.1% for where north carolina is colorado,0 -3999,Name the vermont for where 95.8% is 60.6%,0 -4002,Where is the Locale when L is 2.,0 -4004,What is the value of Ends Lost when Blank Ends is 9.,0 -4006,"If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?",0 -4010,What was the average finish when the average start was 18.4?,0 -4013,What teams won in 2007?,0 -4017,What are all values for 'to par' for the winning score of 67-67-69-69=272?,0 -4018,The tournament Buick Classic occured on what dates?,0 -4019,Who are all runner-ups for No. 2?,0 -4020,"when the nickname halley is used, what are the date completed",0 -4021,"the date complted is 02/91, what framed size was used",0 -4022,"for the robot black nickname, what framed size is used",0 -4023,"What are the attributes when the type is ""DOMNodeRemoved""?",0 -4026,"When the type is ""reset"" what is the description?",0 -4027,Name all the team clasification where the combination classification is mederic clain,0 -4033,For which country does Keith Fergus play?,0 -4034,Who won the tournament for Australia in the year when Byron Nelson was Honoree?,0 -4035,What was the margin of victory in the year when the honoree was Tommy Armour?,0 -4037,When li fuyu is the stage winner what is points classification?,0 -4038,When anuar manan is the stage winner and the team classification is japan and suhardi hassan is the malaysian rider classification who is the points classification?,0 -4039,When li fuyu is the stage winner who is the general classification?,0 -4040,When hossein askari is the stage winner who is the malaysian rider classification ?,0 -4042,What nominees had a net vote of 34.46%?,0 -4045,What was the final result when the viewers selected ejay?,0 -4046,What was the description when the viewers selected Nan?,0 -4047,What is the name of series episode 11-02's segment c?,0 -4048,What is the title of series episode 11-05's segment d?,0 -4049,"In seris episode 11-04, what is the B segment titled?",0 -4050,"In the episode where segment a is microphones, what is segment d?",0 -4051,What is Segment B for series episode 12-08?,0 -4052,What is the series episode where Segment B is popcorn ?,0 -4053,What is the Netflix where Segment C is car washes?,0 -4054,What is Segment B for series episode 12-02?,0 -4055,What is Segment A where Segment B is Kevlar S Canoe?,0 -4056,What is the Netflix where Segment D is pressure gauges ?,0 -4057,Name the segment d for bowling balls,0 -4058,Name the segment b for pressure cookers,0 -4059,Name the segment b for 167,0 -4060,Name the segment a for 162,0 -4062,What was segment C when segment D was fluorescent tubes? ,0 -4063,What was segment C when segment B was package printing? ,0 -4064,What was segment A when segment B was snowboards? ,0 -4065,What was segment D when segment B was jeans? ,0 -4068,Name the segment b for s dress form,0 -4069,Name the segment a for s duvet,0 -4074,What is segment C in s07e05,0 -4075,What is the netflix episode number where Segment D is high-performance engines?,0 -4076,What was segment D for episode 183?,0 -4077,What is Segment A where Segment C is Sushi (part 1)? ,0 -4079,What is Segment A where Segment D is luxury sports cars?,0 -4085,Whats the name of segment in s08e21,0 -4086,Whats the season/episode of segment a digital dentistry,0 -4087,Whats the name of segment D in the episode where segment A is tequila,0 -4088,Name the segment D of the episode where segment A is tequila,0 -4091,Name the segment b for 226 episode,0 -4093,Name the segment d for s cufflink,0 -4094,What is the segment B of episode 242?,0 -4095,What is the segment C of the episode where segment B is Film Digitization?,0 -4096,What is the segment A on episode 237?,0 -4099,What is the netflix code for episode 46?,0 -4100,What is the netflix code where the series and episode are 4-11?,0 -4101,What is listed in segment b when segment c is artificial flowers?,0 -4102,What are the titles of segment c when segment d is motorcycle brake locks?,0 -4103,What are the titles of segment c for series episode is 21-08?,0 -4104,What are the titles of segment b when segment c is standby generators (part 1)?,0 -4105,What are the titles of segment a for series episode 21-12?,0 -4107,Name the segment d for combination locks,0 -4108,Name the series ep for s02e08,0 -4109,Name the segment c for couscous,0 -4110,Name the segment c for pottery,0 -4111,Name the segment d for chicken,0 -4112,What is the Segment A for when Segment C is s Sailboard?,0 -4113,What is the Segment B when the Segment D is s Hammock?,0 -4114,What is the Netflix Episode when the Segment B is s Highlighter?,0 -4115,What is the location of #1?,0 -4116,What stadium was the 1994 Gator Bowl in?,0 -4117,"What is the stadium where the attendance was 75,406?",0 -4119,"What was the attendance of the bowl game in Gainesville, Fl?",0 -4123,In episode 115 what is seen being made before British police helmets?,0 -4125,Name the engines for state trust,0 -4126,"What are the details of the journey for the episode titled ""Zambezi Express""?",0 -4127,What was the UK broadcast date for the episode which visited USA?,0 -4128,"What are the details of the journey for the episode titled ""Deccan""?",0 -4129,What countries are visited in the episode presented by Brian B. Thompson?,0 -4130,What is the episode title for the episode numbered #1.4?,0 -4131,Name the social democratic party for labour,0 -4133,"Who wrote episode 11, of which was directed by Will Waring?",0 -4134,Who wrote the episode directed by Peter Woeste?,0 -4135,Who was the director of Pecado Mortal,0 -4136,What was the original title of the Bruno Barreto film in 1989,0 -4137,What was the result for director Fernando Meirelles,0 -4138,Name the original title of the Suzana Amaral film,0 -4140,When tujia population equals 388035 people and the % of the population is 4.83% which country is it?,0 -4141,When the tujia population is 462444 what is the overall percentage of the chinas tujia population? ,0 -4143,If yongshun is the county what is the overall percentage of the chinas tujia population?,0 -4144,Who is in group a when indiana is in group d?,0 -4145,Who is in group a when indiana is in group d?,0 -4146,Who is in group c when wisconsin is in group d?,0 -4147,Who is in group c when iowa is in group e?,0 -4148,"Name the english name for orach, zarev",0 -4149,Name the old bulgarian names for yuni,0 -4150,Name the old bulgarian names for yanuari,0 -4151,Name the bulgarian name for mart,0 -4152,"Name the old bulgarian name for ruen, ruy",0 -4153,Name the old bulgarian name for number 4,0 -4154,Who owned the team Jeremy Mayfield raced for?,0 -4155,Who is Jason Leffler's primary sponsor?,0 -4159,Who won the spanish grand prix?,0 -4160,What is the date for the Indianapolis circuit?,0 -4161,in round 9 who was the 250cc winner?,0 -4162,"If the velocity angle is ln[(1 + √5)/2] ≅ 0.481, what is the condition/parameter?",0 -4163,"If the the condition/parameter is rapidity of 2 hyperbolic radians, what is the coordinate velocity v dx/dt in units of c?",0 -4164,"If the coordinate velocity v dx/dt in units of c is (e 2 − 1)/(e 2 + 1) ≅ 0.761, what is the velocity angle η in i-radians?",0 -4166,"If the condition/parameter is rapidity of 1 hyperbolic radian, what is the proper velocity w dx/dτ in units of c?",0 -4167,"If the lorentz factor γ dt/dτ = e/mc 2 is √5 ≅ 2.236, what is the proper velocity w dx/dτ in units of c?",0 -4168,What year is dayton in class AAAA?,0 -4169,Who is in class during 1995-96?,0 -4170,When are all years that tournament location is Western Turnpike Golf Course?,0 -4171,When are all years that the champion is Ji Min Jeong?,0 -4172,How much are all winners share ($) in the year 2004?,0 -4174,When are all dates with a score of 205 (–8) in Australia?,0 -4175,What are all of the dates in the country of Canada?,0 -4176,When was Jenny Gleason the champion of the Northeast Delta Dental International?,0 -4177,Where was the tournament located when Misun Cho won the championship?,0 -4180,Which team had 21 points?,0 -4183,Name the drawn when for is 41,0 -4186,Name the won for difference being 33,0 -4188,How many values of r z (arcsecond) correspond with a r y (arcsecond) value of −0.247?,0 -4189,How many values of r z(arcsecond) are associated with a target datum of Ireland 1965?,0 -4190,What is the muslim percentage of the 49634 population of england and wales 000?,0 -4192,What was the percentage of muslims during a time where there were 614 registered mosques?,0 -4194,Name the ends lost for 67 pa,0 -4197,What day was Jeld-Wen Tradition held?,0 -4198,What day did Bernhard Langer (2) win?,0 -4199,On what day was the tournament in Alabama?,0 -4200,What was the value of 1st prize when the score was 271 (-9)?,0 -4201,What day was the score 200 (-16)?,0 -4202,Where was Outback Steakhouse Pro-AM held?,0 -4203,Which dates of polls occur in the Mizoram state?,0 -4206,if Against is 20 how much is Won?,0 -4207,How many Drawn does the team Portuguesa Santista have?,0 -4209,How many drawn does the team Corinthians have?,0 -4215,What is the show's time slot during season 3?,0 -4216,What are all the round 3's after 1982?,0 -4217,What are all the round 5's where round 6 and up is double?,0 -4219,Name all of the february,0 -4220,Name the junes,0 -4221,Name the julys,0 -4223,Name the february,0 -4230,Name the difference for when drawn is larger than 2.0,0 -4232,What is the LMS class of trains with numbers 14510-5?,0 -4233,What is the date of the 279 wheels?,0 -4234,What is the class when the LMS class is 3F?,0 -4235,What is the LMS number of the trains built by G&SWR Kilmarnock?,0 -4237,What is the builder of the train with LMS Class 3f?,0 -4240,What is the CHI (Carvill Hurricane Index) when the NHC advisory number is equal to 49b?,0 -4242,What are the miles when the Carvill Hurricane Index (CHI) is equal to 9.9?,0 -4243,What is the Saffir-Simpson category for the hurricane named Bonnie?,0 -4244,What kind of animal corresponds to the accession number xp_852505.1?,0 -4245,How similar is the genus/species sus scrofa? ,0 -4246,What identities do the genus/species arabidopsis thaliana have? ,0 -4247,What's the animals name when the genus/species is rattus norvegicus? ,0 -4248,"For the genus/species arabidopsis thaliana, what are the lengths? ",0 -4250,"When did the episode titled ""Prisoners"" first air?",0 -4251,"Which company was based in London, United Kingdom?",0 -4252,What was the original air date of Stargate SG-1 written by Peter Deluise?,0 -4255,Name the fifth district for william womer,0 -4256,Name the third district for christine young,0 -4257,Name the fourth district for joan runnels,0 -4258,Name the fourth district for beverly bodem,0 -4260,Name the fifth district for steve rudoni,0 -4262,What was the location when the stolen ends is 12 and shot pct is 77%?,0 -4263,How many stolen ends were there when the locale was Sweden?,0 -4264,What was the school/club team whose season was in 2012 and were acquired via trade? ,0 -4265,Which school/club team has a player named Mark Sanford? ,0 -4269,Name the school/club for guard,0 -4270,Name the position for judy-ann ramirez,0 -4271,What is the losing bonus for the team with a point difference of -99?,0 -4272,How many games played for teams with 277 points?,0 -4273,How many games won for teams with 49 tries against?,0 -4275,"How many tries for, for club cambrian welfare rfc?",0 -4278,Who was the constructor of car 22?,0 -4280,Who drove car 44?,0 -4282,Name the surfaace where outcome is runner-up and championship is us open,0 -4283,Name the partner for mark woodforde martina navratilova,0 -4284,Name the score for rick leach zina garrison,0 -4285,Name the swimsuit for arizona,0 -4286,Name the driver for race 2 7,0 -4288,Name the driver for race 2 2 ,0 -4289,Name the race 1 when race 3 is 8,0 -4290,Name the race 2 for james winslow,0 -4292,Did the race get reported where the winning team was Newman Wachs racing and the pole belonged to Carl Skerlong,0 -4293,Did the round 8 race get reported,0 -4294,Which race was the winning team mathiasen motorsports and the pole belonged to jonathan bomarito,0 -4297,What are the names of the episodes that airs at 2:00pm?,0 -4298,What is the name of the show that airs Friday at 5:55pm?,0 -4299,Name the 10 pm for thursday,0 -4300,Name the 8 pm when time is thursday,0 -4301,What channel tv (dt) plays the KPIX station?,0 -4302,Which city of license/market has 3 (26) as their channel tv (dt)?,0 -4303,Which channel tv (dt) plays in San Francisco - Oakland - San Jose?,0 -4305,Which city of license/market plays 3 (26)?,0 -4306,Who currently affiliates in San Francisco - Oakland - San Jose?,0 -4307,In which condition(s) is bleeding time prolonged and prothrombin time unaffected?,0 -4309,How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected?,0 -4310,What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected?,0 -4311,What is the percentage of land area in the ecozone that the percentage protected is 7.96?,0 -4312,What is the percentage of total area in the ecozone that the percentage of land area is 2.2?,0 -4313,What is the percentage of total area in the ecozone that the percentage protected is 8.06?,0 -4314,What is the percentage of land area in the ecozone that the percentage protected is 15.28?,0 -4316,What is the percentage of total area in the ecozone that the area is 1782252 km2?,0 -4317,What is the condition of the platelet counts in hemophilia?,0 -4318,What is the prothrombin time in Von willebrand disease?,0 -4319,"If the partial thromboplastin and bleeding time is prolonged, what is the prothrombin time?",0 -4320,What is the bleeding time in Bernard-soulier syndrome?,0 -4321,Which ring names are currently ranked f0 jūryō 3 west?,0 -4323,What are the debut year for wrestlers born in Nara?,0 -4324,Where were the wrestlers born who debuted in 2002-7?,0 -4325,What are the career and other notes for wrestlers whose stable is oguruma?,0 -4326,Name the kinship for *t-ina,0 -4328,Name the ptor-austronesian for father,0 -4329,Name the proto oceanic for *fafine,0 -4330,"Name the proto-austrronesian for *pine, *papine",0 -4331,Name who wrote number 47,0 -4333,Which college did draft pick #143 attend?,0 -4334,How heavy were the players who attended Arkansas?,0 -4335,Which college did the player weighing 207 pounds attend?,0 -4336,Name who wrote the episode when the viewers was 1.81,0 -4337,Name who directed the 114 episode in the series,0 -4339,Name who wrote the 11 number in the season,0 -4340,Name the award name for black ocean current,0 -4341,What position(s) do players from florida state play?,0 -4342,How much does geno hayes weigh?,0 -4343,What college did jeremy zuttah attend?,0 -4344,What was brian rafuse's pf?,0 -4346,What position is the player whose first year is 2014,0 -4347,What was the players position in 2013 who had 29 seasons in the second tier,0 -4348,What was the first season for Syrianska FC,0 -4351,Name the date for week 9,0 -4352,Name the points against for november 7,0 -4353,Name the points against for november 14,0 -4354,Name the first downs for points against being 0,0 -4355,Name the record for new york giants,0 -4359,Name the number at march when class is j66,0 -4360,Name the railway when class is j19,0 -4361,Name the railway when class is j15,0 -4362,Name the years in orlando for penn state,0 -4363,Name the nationality of number 9,0 -4364,Name the years in orlando for forward,0 -4366,Name the years in orlando that the player from concord hs was in,0 -4368,Name the school/club team for kevin ollie,0 -4369,Name the school/club team for jawann oldham,0 -4370,Name the player for seattle,0 -4371,What is the nationality of th player who's school is Clemson?,0 -4372,What years did the player who's school is Clemson spend in Orlando?,0 -4374,Who plays the position of forward-center?,0 -4375,During what years did Chris Corchiani play in Orlando?,0 -4376,"When the face value is 42¢, what was the issue's date?",0 -4377,Which location has the ecosystem of kelp forest?,0 -4379,"Who was the printer of Estes Park, Colorado?",0 -4380,"The stamp was 39¢, who was the printer?",0 -4381,"What are values of attendance for the El Paso, TX location?",0 -4387,Who was the interview subject in the 2-86 issue?,0 -4389,Who were the pictorials when the centerfold model was Ava Fabian?,0 -4391,Who was the cover model in the 7-86 issue?,0 -4393,WHO WAS THE COVER MODEL OF PLAYBOY WHERE THE CENTERFOLD MODEL WAS SHALLAN MEIERS?,0 -4394,WHO WAS THE CENTERFOLD MODEL IN THE ISSUE WHERE OSCAR DE LA HOYA ANSWERED THE 20 QUESTIONS?,0 -4395,"IN THE ISSUE WHERE NICOLE NARAIN WAS THE CENTERFOLD MODEL, WHO WAS THE INTERVIEW SUBJECT?",0 -4398,Who was featured in 20 questions when the subject of the interview was Mike Piazza?,0 -4399,Who was featured in 20 questions on 4-03?,0 -4400,On what deate was the centerfold featured Luci Victoria?,0 -4402,What is the name of the pictorial in the 11-98 issue?,0 -4404,Who was interviewed in the 8-98 issue?,0 -4405,Who was asked 20 questions in the issue where the centerfold is Marliece Andrada?,0 -4406,Who was asked 20 questions in the issue where the cover model is Linda Brava?,0 -4407,Who was featured in the pictorials in the issue where John Peterman was asked 20 questions?,0 -4409,What were the interview subjects on those occasions where Bai Ling was the cover model?,0 -4411,What's the subject of 20 questions in those issues where Jillian Grace is the centerfold model?,0 -4412,Who were the cover model(s) on the 4-05 issue?,0 -4413,Who was on the cover when the 20 questions subject was Scarlett Johansson?,0 -4414,Name the 20 years for 1600 kwh/kw p y is 8.8,0 -4415,Name the 1800 kwh/kw p y when 2400 kwh/kw p y is 5.8,0 -4416,Name the date of 20 questions for jimmy fallon,0 -4417,Name the date for oliver stone,0 -4418,Name the 20 questions for derek jeter,0 -4419,Name the pictorials for terrel owens,0 -4420,Name the centerfold model for terrel owens,0 -4421,Name the 20 questions for 8-04,0 -4422,Name the open cup for 2010,0 -4423,IN WHAT ISSUE OF PLAYBOY WAS SHEPARD SMITH INTERVIEWED?,0 -4424,WHO WAS THE CENTERFOLD MODEL IN THE ISSUE WHERE JASON LEE ANSWERED THE 20 QUESTIONS?,0 -4426,"IN THE ISSUE WITH KARA MONACO ON THE COVER, WHO WAS THE INTERVIEW SUBJECT?",0 -4428,what is the arabic capital name wher the english capital name is manama?,0 -4429,what is the arabic capital name where the english capital name is beirut?,0 -4430,what is the rank for the rating 4.4?,0 -4431,what is the rating where the rank is 48?,0 -4433,what rank has viewers at 6.45?,0 -4435,Where is the service pattern sydenham then fast to norwood junction?,0 -4437,"When London Bridge is the destination, what is the frequency?",0 -4439,"When the service pattern is sydenham then fast to norwood junction, what is the destination?",0 -4440,What was the playoff advancement during the year 1998?,0 -4441,During 2003 what was open cup qualifying status?,0 -4443,Name the margin of victory when the number is 15,0 -4445,Name the margin of victory when tournament is algarve open de portugal,0 -4446,Name the tournament when margin of victory is 3 strokes and winning score is 71-66-70-67=274,0 -4448,Name the wickets when overs bowled is 9,0 -4451,How many runs conceded when the earned runs was 4.96?,0 -4453,How many runs conceded for chaminda vaas?,0 -4455,What was the ER average for the player that conceded 368 runs?,0 -4457,What is the airdate when the story is listed as hugh leonard?,0 -4458,who won the kansas state game on 11/26/1988,0 -4460,if they played last on 12/5/1987 what is their record,0 -4461,"What number in the season was ""reflections""?",0 -4462,Name the high points for march 7,0 -4463,Name the date for sacramento,0 -4464,Name the high rebounds for march 17,0 -4465,Name the location attendance for philadelphia,0 -4466,Who scored the most assists in game 59?,0 -4467,What was the record against Boston?,0 -4468,Name the poll winner for greg giraldo for porn,0 -4471,Name the air date for andy kindler for donald trump,0 -4472,Name the # for youtube,0 -4473,Name the advocate #1 for american idol,0 -4474,"When steroids won the poll, who was advocate #1?",0 -4475,What are the original air dates when scientology isthe poll winner?,0 -4476,"When bloggers was the poll winner, who was the root of all evil?",0 -4478,What date was an episode with a run time of 24:30 broadcasted?,0 -4479,What episode had a run time of 24:25?,0 -4480,Who was the original artist for week number Top 16 (8 women)?,0 -4481,What was the order number where the original artist is The Doors?,0 -4482,What was the theme when the original artist was The Beatles?,0 -4483,Who was the original artist when the theme was 1980s?,0 -4484,Who was the original artist when the order number is 9?,0 -4485,Which episode was N/A in region 1,0 -4486,When was series premiere on the pilot episode,0 -4487,What is the region 1 date for series 4,0 -4488,How many episodes in the series that premieres 5 february 2012,0 -4490,"What is the title of the first episode of the season that begin on february 27, 1954?",0 -4491,"What is the title of the episode that aired on december 12, 1953?",0 -4493,Which titles were directed by George Blair and written by Jackson Gillis?,0 -4494,What are all the CFL teams where the pick number is 36?,0 -4495,What are the positions in the college of Alberta?,0 -4497,What is the college that Jeffrey Simmer plays for?,0 -4500,Name the summary for the success rate for 68.75%,0 -4505,Which locomotive type has a status in static display,0 -4511,Name the location when control is private and founded is 1870,0 -4512,Who directed the TV broadcast s03e19?,0 -4513,What episode in the series is TV broadcast s03e20?,0 -4514,WHAT WAS THE SCORE FOR GAME 31?,0 -4515,WHO DID THE RAPTORS PLAY ON JANUARY 9?,0 -4516,Name thenames for 2002-04-01,0 -4517,Name all the date of designations for kurume,0 -4519,Name the region for iwate,0 -4520,"Who wrote the ""Head of State"" episode?",0 -4521,"The ""Head of State"" episode was authored by which person?",0 -4522,"Who was the director of the episode ""graduation day: class of 2105""?",0 -4523,Who scored the most rebounds in the game against Chicago?,0 -4524,What were the dates of the games where Jalen Rose (32) had the highest points?,0 -4525,What is the location and total attendance for games played against New Orleans?,0 -4527,What were the high rebounds on February 24?,0 -4528,What was the score in game 51?,0 -4529,What was the score when they played against San Antonio?,0 -4530,Who was the high point scorer in game number 68?,0 -4533,What team had high assists Rafer Alston (5)?,0 -4534,Who has the most assists on January 3?,0 -4535,Who is the rector of the residence hall who's mascot is the phoxes?,0 -4536,What is the mascot with the colors green and navy?,0 -4537,What residence hall has the vermin mascot?,0 -4538,What are the colors of Howard Hall?,0 -4539,What is the content of la7 television service?,0 -4540,What is the content of the rai 1 television service?,0 -4541,What are the package/options when the TV service is rai 3?,0 -4542,What high definition television options are available for Italia 1?,0 -4546,What values of HDTV correspond to n° of 862?,0 -4547,Name the content for sky famiglia for italian and dar 16:9 for mtv hits,0 -4550,Name the hdtv for sky famiglia and dar 16:9 for mydeejay,0 -4551,Name the dar for mtv rocks,0 -4552,Name the ppv for sky famiglia and dar 16:9 for mtv dance,0 -4553,Name the dar for telenord,0 -4555,Name the dar for 912,0 -4557,Was there PPV when the service was SCT?,0 -4558,Was there HDTV when the service was Privè?,0 -4559,In what laguage was Contotv 5?,0 -4560,What's the content of the Tutti i Pacchetti + Sky HD package?,0 -4561,What package offers Fox Sports HD?,0 -4562,What packages offer the Cartello Promozionale Sky HD service?,0 -4564,What's the content offered by the package number 204?,0 -4566,What DAR is available for n. 336 in Italian?,0 -4567,What are the values of n for cinema content provided by Sky Cinema +24 on its Sky Cinema package?,0 -4568,What language is Sky Cinema Passion television service n. 308?,0 -4569,What package offers cinema content and is n. 333?,0 -4571,Name the country when dar is 16:9 for italian english for disney xd +2,0 -4572,Who was the player with a bowling best of 2/43?,0 -4574,How many overs did Oliver Hannon-Dalby have?,0 -4576,What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)?,0 -4579,"In Pakistan, what was the total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 1029(96%)?",0 -4580,What was the country in which the agricultural use (m 3 /p/yr)(in %) was 794(86%)?,0 -4582,Name the date of winning score being 67-67-63=197,0 -4583,Name the runners up for when tournament is wgc-accenture match play championship,0 -4585,Name th margin of victory when date is 10 jul 2011,0 -4587,Name who knows the most about the guest host panels for episode 5,0 -4590,Name the panelists for guest host jamie oliver,0 -4592,Who was the musical guest and what song was performed when Dominic Wood and Nikki Grahame were the panelists?,0 -4593,On what date were Gary Lucy and Susie Verrico the panelists.,0 -4594,List the date when Jeremy Edwards and Grace Adams-Short were the panelists.,0 -4595,Who was the musical guest and what song was performed when Matt Willis and Chantelle Houghton were the panelists?,0 -4597,"What is the validation for iin ranges 5610, 560221-560225?",0 -4598,What is the length for iin range 51-55?,0 -4599,Is the iin range 4 active?,0 -4601,What song was performed when Barbara Windsor was the guest host?,0 -4602,Who was the coat of cash celeb when Scott Mills and Sally Lindsay appeared?,0 -4603,Who was on the Who knows about the host panel on 8 June 2008?,0 -4604,Name the musical guest for panelists jermaine jackson and nora sands,0 -4606,Name the panelists for david tennant,0 -4607,What is the entry for weight in kilograms of jockey D. Nikolic?,0 -4608,Which group had the time 1:11.65?,0 -4609,Which horse won with a time of 1:35.98 and what was their position?,0 -4610,What engine type is used in a Space Shuttle Vacuum scenario?,0 -4613,What is the SFC when the specific impulse is 453?,0 -4614,When are start dates (1st night) for the season of 1966?,0 -4615,When are end dates (last night) for the season of 1918?,0 -4616,What is the percentage of the Labour Party on the Harris Poll,0 -4617,On all other parties the National option polls are at 1.3% where as the opinion research pole is at what percentage? ,0 -4618,Name the del pueblo for centennial 1988,0 -4619,Name the centennial for 1992 akimel,0 -4620,Name the del pueblo for red/black,0 -4621,Name the centennial for location,0 -4622,"Name the host when first premiere is august 3, 2007",0 -4623,Name the regular judge when host is anja rubik,0 -4627,"Namethe team for feb 27, 1996",0 -4628,"Name the numbers for date of feb 27, 1996",0 -4629,"Name the team for oct 30, 1989",0 -4630,"Name the winner for date of nov 5, 1987",0 -4633,What is the annual change of GDP with a 20.5% GDP of EU in 2012?,0 -4634,What is the public debt % of GDP in 2013 Q1 with a 4.7% GDP of EU in 2012?,0 -4635,What is the annual inflation % when GDP per capita in ppp US$ is 24505 in 2012?,0 -4636,What are all the places where the number of perfect 40s is 0 and the average is 27.25?,0 -4639,"When using a .375 Remington Ultra Magnum, what is the muzzle velocity?",0 -4640,What type of cartridge is used by a Weatherby?,0 -4641,What type of cartridge is used by a Winchester?,0 -4642,What is the weight of the bullet used in a Weatherby?,0 -4643,What is the weight of the bullet used in a Remington?,0 -4644,"When using a .375 Winchester, what is the muzzle energy?",0 -4645,Which headphone models correspond to the US MSRP of $150?,0 -4646,Which terminations correspond to a US MSRP of $49?,0 -4649,Which headphone models have a driver-matched DB of 0.1 and a US MSRP of $49?,0 -4650,Which terminations correspond with headphone model SR80I?,0 -4651,What type are State Assemblyman,0 -4652,"What type had a beginning term of December 8, 1980",0 -4653,What type had an election day in 1980,0 -4654,What year did the term end for those elected in 1990,0 -4655,"What is the location for the office whose term ended December 2, 1976",0 -4656,What year did the term end for the office elected in 1984,0 -4657,"What was the record on October 8, 1989?",0 -4658,"Where was the game site on October 29, 1989?",0 -4660,What was the result of week 2?,0 -4661,What date did the team play the New York Jets?,0 -4663,How many millions of viewers were there for the episode with a run time of 18:00?,0 -4664,What was the archive for episode with 6.6 million viewers?,0 -4667,How many points did the bills score when their opponent had 14,0 -4669,Who was the runner-up in the Memorial Tournament?,0 -4670,What was the winning score for the tournament with runner-up Rory Sabbatini?,0 -4671,"What was the margin of victory with the winning score ""63-68-68-68=267""?",0 -4674,"What is the name of the bowl game that was played in Tempe, Arizona?",0 -4675,What city in the Citrus Bowl aired on ABC?,0 -4676,"What teams played in the Capital One bowl game on January 1, 2009?",0 -4677,Which stadium has a payout of $3 million?,0 -4680,What regions of the USSR have a percentage of deportees of 10.6?,0 -4684,Which operator runs the Mamariga shuttle line?,0 -4686,What are the terminals for line 2?,0 -4687,What is the status of the airport line?,0 -4689,Name the iso for chungcheongnam,0 -4690,"Name the country for 11,891 area",0 -4692,Name the m r romaja for kwanbuk,0 -4693,Name the population density where population % is 1.1% for slovakia,0 -4696,Name the population % of eu for greece,0 -4698,What station on the network is tv3?,0 -4700,What conference does Gonzaga University play in?,0 -4702,Which school's team has the nickname of the Wildcats?,0 -4704,Where is the university located that's nicknamed the Wolves?,0 -4708,"What are the timeslot(s) for broadcast on February 22, 2008?",0 -4710,When was the date of appointment for St. Johnstone's manager? ,0 -4711,Who was the outgoing manager for Aberdeen? ,0 -4712,When was the date of appointment for the manager replacing Wim Jansen? ,0 -4714,Which species show a negative result with both voges-proskauer and indole?,0 -4715,What are the results for testing the species with voges-proskauer when citrate yields a positive result?,0 -4716,What is the result of proteus mirabilis tested with indole?,0 -4717,When was the show originally aired that had a TV broadcast of S07E04?,0 -4718,Which title was No. 4 in season?,0 -4719,Who directed the show that had a TV broadcast of S07E04?,0 -4720,What seasons did unicaja málaga finish in 3rd?,0 -4721,What teams finished 3rd when limoges finished 4th?,0 -4722,What team finished in 1st when tau cerámica was in 3rd?,0 -4723,What teams finished in 3rd when panathinaikos finished 2nd?,0 -4724,What was the emission rating in Mid-Atlantic South for the vehicle that was rated 90 g/mi (56 g/km) in Alaska and 110 g/mi (68 g/km) in California?,0 -4725,What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest?,0 -4726,What was the US national average electric mix rating for the vehicle that was rated 280 g/mi (174 g/km) in the Midwest?,0 -4728,What was the emission rating in California for the vehicle that was rated 80 g/mi (50 g/km) in Alaska and 250 g/mi (155 g/km) in the Southeast ?,0 -4730,When was the game played if the attendance is less than 6427.0?,0 -4731,"How many were in attendance during the game on January 9, 1988?",0 -4732,Where is the headquarters of the place whose abbreviation is hy?,0 -4733,Where is the headquarters of the place whose population in 2011 was 3811738?,0 -4735,What is the abbreviation of the district of Mahbubnagar?,0 -4736,What is the 2011 population of the district of East Godavari?,0 -4737,What is the adjusted GDP when the nominal GDP per capita is 2874?,0 -4738,What is the adjusted GDP per capita when the population is 37.376 million?,0 -4740,What is the adjusted GDP when the population is 5.141 million?,0 -4741,What is the population in millions when the adjusted GDP is 492 billion?,0 -4742,What is the adjusted GDP when the nominal GDP is 8.43 (in billions)?,0 -4743,"What was the opearint profit (s$m) associated with an expenditure (s$m) of 12,127.8?",0 -4744,What was the expenditure (s$m) associated with an operating profit (s$m) of 717.1?,0 -4746,Name the simplified characters for wade giles is ch'ing-yüan … i-ma,0 -4747,Name the pinyin for 657 date,0 -4748,Name the text for 心猿意马,0 -4749,Name the simplified charaacters being hsin-yüan … i-ma,0 -4751,Name the date for qíngyuán … yìmǎ,0 -4752,Which line offers Fast to Norwood Junction?,0 -4753,Who is the operator to Highbury & Islington?,0 -4755,Who is the operator to destination Dalston Junction?,0 -4757,Who was the runner up at the Volvo Masters Andalucia?,0 -4758,In what tournament was the winning score 68-67-65-66=266?,0 -4759,Name the joined for blue hose,0 -4762,"Name the current conference for 1974, 1989",0 -4764,Who is the director when Chris Hawkshaw is the writer?,0 -4765,What is the season number of the episode directed by Donald Crombie and the series number is 40?,0 -4766,What is the released date for Super Mario 64 DS?,0 -4767,What are the game modes for the game released in 2007?,0 -4769,What was the released date of Polarium?,0 -4770,What game modes are there when the pinyin is zhígǎn yī bǐ ?,0 -4771,What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients?,0 -4772,What are donor payments in the country where there are 12 children to 6 families (2 per family)?,0 -4773,What is the donor payment in Belgium?,0 -4774,What is the country where there are 8 children per donor and no data for donor payments?,0 -4775,What are the children per donor in the country where the allowed recipients are married or in cohabitation?,0 -4776,List the possible children per donor levels for countries where the allowed recipients is no data.,0 -4777,"Against which team does Missouri Tigers have a record of mu, 2-1 at a neutral site?",0 -4778,"Which is the team against which Missouri Tigers have a record of ui, 4-1 at the opponent's venue?How",0 -4780,"What is the record at the neutral site for when the overall record is ui, 27-16?",0 -4781,"What is the record at the opponent's venue against the team for which the record for the last 5 meetings is mu, 4-1 and the record at the neutral site is tied, 0-0?",0 -4782,What is the stamp duty reserve tax when the percentage over total tax revenue is 0.79?,0 -4783,When the standard stamp duty is 367 what is the percentage over gdp?,0 -4784,"When the stamp duty reserve tax is 3,669 what is the percentage over gdp?",0 -4785,During what years are the percentage over total tax revenue is 0.65?,0 -4789,Name the author for 6y/ae,0 -4790,Name the author for peri and april 2010,0 -4791,Name the released for pat mills,0 -4792,Name the featuring for pat mills,0 -4793,"What are the outcomes of the last 5 meetings where the overall record is UM, 2-1?",0 -4794,"What is the record of wins/losses that were played at opponents venue (uf, 1-0)",0 -4795,"Who are the opponents of Missouri that have an overall record of MU, 3-1?",0 -4796,"What is the record at Columbia for the team overall record of MU, 3-1?",0 -4799,Which parishes have a railroad length of 51.8 meters? ,0 -4800,When the railroad length is 362 feet how many miles is it from kingston? ,0 -4801,Which parishes have the highworth railroad?,0 -4802,Which railroad is 112.6 kilometers from kingston? ,0 -4806,What is the preliminary average when the semifinal average is 8.834 (3) ?,0 -4807,What is the interview when preliminary average is 8.662 (3) ?,0 -4808,What state has a semifinal average of 8.538 (8) ?,0 -4809,What state has an interview of 8.313 (8) ?,0 -4810,What is the semifinal average where the preliminary average is 9.084 (1) ?,0 -4811,What is the swimsuit when evening gown is 8.774 (6) ?,0 -4812,What is the population density of the Capital Region of Denmark?,0 -4813,"In the region where Roskilde is the largest city, what is the seat of administration?",0 -4816,What was the result for the 2009 (82nd) awards?,0 -4817,Name the original title for the counterfeiters,0 -4818,Name the year for spiele leben,0 -4819,Name the film title for wohin und zurück - welcome in vienna,0 -4820,Name the language for kunar,0 -4821,Name the notes for samangan,0 -4822,Name the un region for 3314000 population,0 -4823,Name the area for map # 24,0 -4824,Name the un region for 378000 population,0 -4826,Name the towns/villages for budapest,0 -4828,"When the year was 1992, what were the points won?",0 -4829,"When the foursome was w-l-h is 1–0–0 won w/ p. creamer 3&2, what was the points %?",0 -4830,What was the foursome's record in 2002?,0 -4831,What was the length time of the 3.5 release?,0 -4832,What is the title of the 1.1 realease?,0 -4833,Under what series was the 3.5 release?,0 -4834,What is the releases number under Season 2?,0 -4835,"Who was the director of the audiobook released August 31, 2009?",0 -4836,What is the capital of Bungoma county?,0 -4837,What is the capital of Uasin Gishu county?,0 -4838,In what former province was the area 694.9 kilometers squared?,0 -4840,What was the population in Kisumu county as of 2009?,0 -4841,What capital's county had a population of 730129 as of 2009?,0 -4843,"Name the champion for london hunt and country club ( london , on )",0 -4844,What was the evening gown score for the woman who scored 7.600 (9) in her interview?,0 -4845,What was the swimsuit score for the one who had a semifinal average of 8.759 (5)?,0 -4846,What was the evening gown score for the one who had a preliminary average of 8.121 (8)?,0 -4847,What was the preliminary average for the one who had a semifinal average of 8.966 (3)?,0 -4848,What was the preliminary average for Miss Mississippi?,0 -4849,What was the preliminary average for Miss Maryland?,0 -4850,"What day was the gross sales $1,271,451?",0 -4851,"What is the sellout % when the gross sales is $1,727,400?",0 -4854,Name the probably futures for गरेस् gares 'may you do',0 -4855,Name the imperative for गरिस् garis 'you did',0 -4856,Name the past habitual for गर्छस् garchas 'you (will) do',0 -4857,Name the past habitual for गर्छ garcha 'he does',0 -4858,Name the injunctive for गर्यो garyo 'he did',0 -4863,"What are the average start(s) when he had $1,663,868?",0 -4864,What was the position in the season when the average start is 9.2?,0 -4865,"What is the average start for the season with $7,220 in winnings?",0 -4866,What are the winnings for the season where the average finish is 11.1?,0 -4868,What is the all home when all games percentage is .484?,0 -4869,What is the acc percentage when all games percentage is .484?,0 -4870,What is the all games for Maryland?,0 -4871,What is the fare to Kalamazoo during the time frame when Saginaw's was $481.39?,0 -4872,"When Lansing's fare is $433.59, what is the Detroit fare?",0 -4873,"At a Saginaw fare of $470.47, what is the fare to Lansing?",0 -4874,"During the year when Lansing's fare is $433.59, what is the fare to Kalamazoo?",0 -4875,"When Saginaw's fare is $470.47, what was the fare to Grand Rapids?",0 -4876,"When Grand Rapids's fare was $377.29, what is the fare to Detroit?",0 -4878,Name the primary conference for st. bonaventure university,0 -4881,what was the ACC home game record for the team who's ACC winning percentage was .813?,0 -4882,"Who directed the totle ""tjockare än vatten""?",0 -4883,Who wrote the episode for s02 e07?,0 -4884,Who directed the episode for s02 e08?,0 -4885,Who directed the episode with the production code 209?,0 -4887,Which city has the team nickname bearcats? ,0 -4888,What year did the university of Pittsburgh school join the hockey league? ,0 -4890,Which city has the cincinnati hockey website?,0 -4893,Name the pinyin for where population is 44617,0 -4894,Name the pinyin for 487 area,0 -4895,Name the traditional for population 74779,0 -4896,Name the english name for 崖城镇,0 -4897,Name the date for richmond,0 -4899,What home team played the West Coast away team?,0 -4901,What time was it when the home team's score was 10.7 (67)?,0 -4902,What time was it when the away team's score was 5.4 (34)?,0 -4904,The away team of Richmond played on what grounds?,0 -4905,At what venues did the away team score 16.10 (106)?,0 -4906,What was the away team's score at the venue football park?,0 -4907,On what date did the home team score 14.12 (96)?,0 -4908,What are the scores for games where the home team is Adelaide?,0 -4909,On what dates where games played at Football Park?,0 -4910,What was the home team score against Collingwood?,0 -4911,Who was the away team playing at Carlton?,0 -4912,What did the home team score against Richmond?,0 -4914,What to Footscray score at home?,0 -4917,What did the home team score when the away team scored 18.12 (120)?,0 -4918,Name the date for bundaberg rum stadium,0 -4919,Name the home team score for brisbane lions,0 -4920,Name the home team for football park,0 -4921,Name the away team score for carlton,0 -4922,Name the date for adelaide for westpac stadium,0 -4926,When the crowd was 8642 what was the away team's score?,0 -4927,Which location had an attendance of 22537?,0 -4928,"When the away team's score was 0.12.5 (77), what was the home team's score?",0 -4929,"When the away team's score was 2.10.7 (85), what was the home team's score?",0 -4930,What was the away team's score of at the game of telstra stadium?,0 -4931,"When the away team was Carlton, who was the home team?",0 -4932,What was the average for contestants with a swimsuit score of 8.266?,0 -4933,What are the interview scores for contestants whose average is 9.090?,0 -4934,What are the average scores of contestants whose home state is Pennsylvania?,0 -4935,What are the evening gown scores of contestants whose average is 9.266?,0 -4936,What are the average scores of contestants whose interview score is 8.011?,0 -4937,What are the home team scores when richmond is the home team?,0 -4938,What are the home team scores when fremantle is the away team?,0 -4940,Who are the away teams when subiaco oval was the grounds?,0 -4941,Who were the away teams when the home team scored 1.8.0.5 (62)?,0 -4942,Who was the home team when the away team is Carlton?,0 -4943,What is the home team score where the home team is Fremantle?,0 -4944,What was the away team score for the game with a crowd of 5391?,0 -4945,What date was Adelaide the home team?,0 -4948,Which school has the mascot of the Colonials?,0 -4949,What is the socket location for sSPEC number sl3f7(kc0)sl3fj(kc0)?,0 -4950,What is the release date of part 80525py500512bx80525u500512bx80525u500512e?,0 -4952,What is the model number with a release price of $496?,0 -4953,What is the l2 cache for the model with a release price of $669?,0 -4954,What day(s) did they play on week 2?,0 -4955,"What was the kickoff time on monday, may 13?",0 -4958,what are the air dates for episodes with the production code 08-02-214,0 -4959,what is the title of episode 28,0 -4960,What is the dpi of a scanner with the mm dimensions 280 x 95 x 40?,0 -4962,What interface is used on the scanner that has a 36 pages per minute?,0 -4963,What are the mm dimensions of the Plustek Mobileoffice D28 Corporate?,0 -4964,What are the mm dimensions for the Fujitsu fi-6130 a4 Series Scanner?,0 -4965,What is the dpi for the scanner with a max page size of 216mm x 355mm?,0 -4966,which country won swimming track & field when lexington won swimming and madison won volleyball,0 -4968,"Who won soccer when madison won volleyball, lexington won cross country and orrville won softball ",0 -4969,Who won volleyball when west holmes won basketball and wooster won swimming in 2011-12,0 -4970,who won tennis when ashland won softball and wooster won volleybal,0 -4971,who won basketball when ashland won track & field and cross country,0 -4972,What is the location of the school established in 1923,0 -4974,Nickname of the school established in 1773,0 -4975,What is the year Rowan University was established,0 -4977,Location of the school with the nickname Mountaineers,0 -4978,"What was the original air date of the episode titled ""Beaver's Pigeons""",0 -4979,Who wrote the episode with the production code of 942A?,0 -4980,"What numbered episode of the season was titled ""Beaver says Good-Bye""?",0 -4981,"What number episode in the series was titled ""Wally's Pug Nose""?",0 -4982,"What was the production code of the episode written by Joe Connelly and Bob Mosher titled ""Beaver Gets Adopted""?",0 -4983,"Who was responsible for original beechwood bunny tale / source material for the episode title ""Papa Bramble's Secret""?",0 -4984,"What is the French title for ""Papa Bramble's Secret""?",0 -4985,"Who was responsible for original beechwood bunny tale / source material for the episode title ""The Monster of Blueberry Lake""?",0 -4986,What is the English title for the official number 22 episode?,0 -4987,Which CFL team did the player from British Columbia get drafted to,0 -4988,Which positions had players from Laval college,0 -4989,What position did Gene Stahl play,0 -4990,Which player played DB,0 -4994,"If the gun used is the qf 12 pdr 12 cwt, what is the shell weight?",0 -4995,"Where the height range is higher than 20000.0 and the shell weight is 12.5, what is the time to feet ratio at 25 degrees?",0 -4996,What gun has a time to feet ratio of 18.8 at 55 degrees?,0 -4998,What is the foot per second speed where time to feet ratio is 9.2 at 25 degrees?,0 -4999,Who was skip for the country whose points for (PF) was 73?,0 -5003,"If 70+ is 2554, what is the 25 to 29 amount?",0 -5005,When was Jonny Leadbeater President?,0 -5006,Who was the skip with 14 stolen ends?,0 -5008,What are the shot percentages for teams that played in switzerland?,0 -5012,When pskov is oblast\age what is the result of 18 to 19?,0 -5014,When 2054 is the result of 50 to 54 what is the oblast\age?,0 -5016,what is the number for 65-69 where 50-54 is 1571?,0 -5024,What player was on the Grizzlies from 2009-2013?,0 -5025,What nationality is the player who went to school at South Florida?,0 -5026,What position is the player who was on the Grizzlies from 1995-1996?,0 -5028,Name the miles for june 7,0 -5029,Name the driver for race time being 2:34:21,0 -5030,Name the driver for june 23 and team of penske racing,0 -5031,Who was the director for the episode in season #50?,0 -5036,Who are the players that have attended Stanford?,0 -5038,During what years did athletes who attended school in Minnesota play for the Grizzlies?,0 -5040,What school did the player who was with the grizzles in 2011 attend?,0 -5041,What players attended missouri?,0 -5042,What position(s) does the player from seton hall play?,0 -5044,What players play guard?,0 -5045,What position(s) do players from bowling green play?,0 -5047,who is the vacator whre the district is new jersey 2nd?,0 -5048,"what is the date the successor seated because the person died august 17, 1954?",0 -5049,who was the successor for district ohio 15th?,0 -5051,What day did ARchie Roberts die?,0 -5052,What location had a VFL Game number of 9?,0 -5053,How many VFL games were located off Goodenough Island Milne Bay?,0 -5054,Name the 3rd stage for parameter of thrust ,0 -5055,Name the parameter for 2.67 m,0 -5056,Name the paarameter for 1.0 m 3rd stage,0 -5057,Name the 1st stage for parameter being diameter,0 -5059,"What episode number is the episode ""bringing back the doctor""?",0 -5060,"What is the episode number for the episode ""a new dimension""?",0 -5061,"Which archbishop was ordained as bishop November 30, 1925?",0 -5062,"What is the death date of the archbishop who was ordained as bishop April 26, 1927?",0 -5064,What date was the person ordained as a priest in December 1838 ordained as a bishop?,0 -5065,"When was the archbishop who vacated the throne on August 18, 1885 ordained as a priest?",0 -5068,How many wickets were there when average was 22.66?,0 -5069,What was the best bowling score when the average was 23.33?,0 -5072,Who picked dimitri tsoumpas?,0 -5073,What position did the winnipeg blue bombers draft?,0 -5075,Who picked a player from Weber State?,0 -5076,What position was taken out of Louisiana-Lafayette?,0 -5077,Name the college for calgary stampeders,0 -5082,What title was written by Matt Wayne?,0 -5083,What is the series episode number of the episode with production code 303?,0 -5084,What is the production code for episode 15 in season 3?,0 -5085,Who directed episode 12 in season 3?,0 -5086,How many tree species are listed when the total plant species is 258?,0 -5089,How many tree species are in the kitechura reserve?,0 -5090,What episode titles have 17.93 million U.S. viewers?,0 -5091,What episode titles have 20.94 million U.S. viewers?,0 -5092,In what seasons did Kate Woods direct Without A Trace?,0 -5093,Who wrote Season 8?,0 -5094,"When did the country that produced 1,213,000 (21st) bbl/day join Opec?",0 -5097,"Which regions had a production (bbl/day) of 1,213,000 (21st)?",0 -5098,"Which country had a production (bbl/day) of 2,494,000 (10th)?",0 -5099,What are all the approved treatments for the target CD30?,0 -5100,What is the brand name for the antibody Brentuximab Vedotin?,0 -5102,What are the approved treatments when the antibody is bevacizumab?,0 -5103,What is the target when the approved treatment is non-hodgkin lymphoma?,0 -5104,What is the target with an approval date of 2006?,0 -5109,When tajik is the ethnicity what is islam?,0 -5112,How many have a kilometers of 233?,0 -5114,What was the team's playoff status in 2011?,0 -5115,What was the team's league in 2010?,0 -5116,"What is the league name for the regular season status of 2nd, mid atlantic?",0 -5117,Who was the winning driver at Okayama International Circuit?,0 -5118,Who had the fastest lap when the winning team was Tom's Racing?,0 -5119,Who had the fastest lap in the race won by Team Impul at the Twin Ring Motegi circuit?,0 -5122,What team were the bills playing where their first down was 23?,0 -5123,What was the record for the game on Sept. 14?,0 -5125,When 1546 is inns of court and chancery what is the finsbury division?,0 -5127,When 70489 is without walls what is the inns of court and chancery?,0 -5130,How many stolen ends against where there when Thomas Dufour was skip? ,0 -5132,Who was the skip when the stolen ends against was 13? ,0 -5134,Name the other name where glucose is 5000,0 -5135,Name the other name where na plus is 77,0 -5136,Who are the batting partners for the 1997 season?,0 -5137,Which season reported wickets of 7th?,0 -5138,Which team is 9th in wickets?,0 -5139,What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene,0 -5142,What batting partners batted for pakistan?,0 -5143,How many runs when bangladesh was the fielding team?,0 -5144,What are the wickets when there are 451 runs and india is the fielding team?,0 -5145,What batting partners played in sydney?,0 -5146,What batting partners were the most successful in 2004?,0 -5147,Name the falcons points for record of 3-2,0 -5148,Name the date for game 9,0 -5152,What was the result of the 1978 Atlanta Falcons season when the record was 1-2?,0 -5153,How many points did the Falcons score when the record was 4-4? ,0 -5156,How many points did kiefer-bos-castrol honda have?,0 -5157,What result did the ktm motorcycle achieve?,0 -5160,"name the top 5 where the winnings is $52,595",0 -5162,name all the winnings that the start appears to be 7,0 -5165,Name the poles for avg finish is 26.8,0 -5168,What were the results for mens 40 when the mens u20 was Southern Suns def Gold Coast Sharks?,0 -5169,What were the results of the mens open when the womens 40 was Sydney Scorpions defeated Hunter Hornets?,0 -5170,What were the results of the womens u20 when the mens 45 was Sunwest Razorbacks def Northern Eagles?,0 -5171,What was the mens 45 when mens 40 was Sunwest Razorbacks def Sydney Mets?,0 -5172,What was the mens open when the mens u20 was Qld Country Rustlers def Southern Suns?,0 -5173,What date was the opponent the Los Angeles Raiders?,0 -5176,What is the region where Iquitos is located?,0 -5177,What is the region containing the Constitutional Province of Callao?,0 -5178,How did the game end against the New Orleans Saints?,0 -5181,Name the driver passenger for position 4,0 -5182,Name the driver/passenger for position 8,0 -5183,Name the driver/passenger for 6 position,0 -5184,Who was the winner when the total attendance was 16597?,0 -5185,What is the socket for microprocessors with a frequency of 1.3 ghz?,0 -5186,"For a release price of $72, what is the TDP of the microprocessor?",0 -5187,"For a processor with part number cy80632007221ab and TDP of 3.6 W, What are the available GPU frequencies?",0 -5188,"For a processor with model number atom e665c and a TDP of 3.6 W, what is the sSpec number?",0 -5189,What is the release price for a processor with part number cy80632007227ab?,0 -5190,Name the fsb for atom z540,0 -5191,Name the frequency for part number of ac80566ue041dw,0 -5192,Name the memory for part number of ct80618003201aa,0 -5193,Name the memory for meodel number for atom e640t,0 -5194,Name the memory for frequency of 1.6 ghz,0 -5195,Who won the game where the Challenge Leader is ACC (2-1)?,0 -5196,What station aired a game at 9:00pm?,0 -5199,PLEASE LIST ALL RACES WHERE THE RND IS 13.,0 -5203,Name the location for chattahoochee technical college,0 -5204,Name the location for abraham baldwin agricultural college,0 -5207,WHAT WAS THE SURFACE MADE OF WHEN THE OPPONENT WAS GEORGE KHRIKADZE?,0 -5208,WHAT WERE ALL OF THE RESULTS WHEN THEY PLAYED AGAINST LITHUANIA AND THE SURFACE WAS MADE OF CLAY?,0 -5209,"Name the republican steve sauerberg where dates administered september 15-september 18, 2008",0 -5210,"Name the republican steve sauerberg for august 12, 2008",0 -5211,"Name the poll source for july 12, 2008",0 -5212,"Name the republican steve sauerberg for august 12, 2008",0 -5213,"Name the republican steve sauerberg for august 12, 2008",0 -5214,"When the lead margin was 35, what were the Democrat: Vivian Davis Figures?",0 -5215,"On June 30, 2008 who what was the Republican: Jeff Sessions percentage?",0 -5217,"On November 14, 2007, what are the Democrat: Vivian Davis Figures percentages? ",0 -5218,"On July 31, 2008, what are the Democrat: Vivian Davis Figures percentages?",0 -5219,"What was Mark Begich polling on October 6, 2008?",0 -5222,What clubs had 608 points against?,0 -5223,How many games played for the team with 48 points?,0 -5224,How many games played for the team with 686 points against?,0 -5225,What clubs recorded 748 points to the good?,0 -5227,How many games drawn for the team that lost 11 and had 748 points?,0 -5229,"What poll source had an administered date on July 10, 2008?",0 -5231,What was the poll source when Democrat Carl Levin had 54% and the lead margin was 28?,0 -5233,What is the latitude when the diameter is 184.0?,0 -5235,What is the namesake of the feature found at 189.5w longitude? ,0 -5236,When the longitude is 147.1w what is the namesake of the feature? ,0 -5241,Philae Sulcus has a latitude of what?,0 -5242,Name the opponent for 12 may 2008,0 -5244,"For team Atlético Nacional, what were the points?",0 -5247,What is the name origin of Nike Fossae? ,0 -5248,Which name is at latitude 10.0s?,0 -5249,At what latitude can the name origin of yuzut-arkh fossae be found?,0 -5250,At what latitude can the name origin of naijok fossae be found?,0 -5251,At what latitude can you find the diameter (km) of 500.0?,0 -5253,What is the name origin with a diameter of 220.0 kilometers?,0 -5254,What is the name of feature with a longitude 246.0e?,0 -5255,What is every name origin with the name Ovda Fluctus?,0 -5257,What is every year named for the latitude of 66.5N?,0 -5258,What is every name for longitude of 152.0E?,0 -5259,What is the diameter of the feature with longitude 8.0e?,0 -5260,What feature is at latitude 23.9S?,0 -5262,"Name the diameter for likho , east slavic deity of bad fate.",0 -5263,Name the name of 36.0n,0 -5264,Name the latitude of laima tessera,0 -5265,Name the name origin for 54.0e,0 -5267,Grechukha Tholi has what longitude?,0 -5268,Where is longitude 202.9e?,0 -5271,What was Great Britain's Round 1 score?,0 -5274,What was the round 5 score if the team's total points where 212?,0 -5276,"At the longitude of 355.0e, what is the name origin?",0 -5277,What is the name origin of Morrigan Linea?,0 -5279,"At a longitude of 293.0e, what is the diameter, in km?",0 -5280,What is the release date of the bonus interview with Peter Purves?,0 -5281,Which narrator has the bonus interview with Frazer Hines?,0 -5282,What is the release date for Destiny of the Daleks?,0 -5283,What are the profits of Wells Fargo (in billions)?,0 -5285,Where are the headquarters of the company whose sales were 69.2 billion?,0 -5286,What are the assets (in billions) of the company headquartered in China and whose profits are 21.2 billion?,0 -5287,What are the profits (in billions) of the company with a market value of 172.9 billion?,0 -5288,What are the profits (in billions) where the assets are 192.8 billion?,0 -5290,Name the icb sector for ai,0 -5291,Name the company where index weighting % is 11.96,0 -5292,Name the index weighting % for 17 januaary 2013 for rno,0 -5294,"What is the market value in billions when the assets totaled 1,380.88?",0 -5297,In what industry was the company that had 89.16 billions of dollars in sales?,0 -5299,Name the country for 188.77 market value,0 -5300,What is the numeral where the English name is Florin?,0 -5301,What is the £1 fraction when the reverse is hare?,0 -5302,What date was the 6d introduced?,0 -5303,What is the Irish name for the £1 fraction of 1/240?,0 -5304,What is the reverse when the £1 fraction is 1/480?,0 -5307,What place did the party finish in the year when they earned 0.86% of the vote?,0 -5308,What is the NCBI Accession Number for the length of 5304bp/377aa?,0 -5309,What is the NCBI Accession Number of the Homo Sapiens species?,0 -5310,What is the common name for the Felis Catus species?,0 -5312,What is the protein identity with a length of 5304bp/377aa?,0 -5313,"When was ""Tell You When"" released?",0 -5314,Where was game 62 played? ,0 -5315,What was the final score when the Maple Leafs played the Columbus Blue Jackets? ,0 -5316,Name the network for dré steemans ann van elsen,0 -5317,Name the seasons and winners that airs 28 january 2007,0 -5318,Name the host for prime,0 -5320,Name the website for car number of 92,0 -5322,Name the car number for 1997,0 -5324,Name the coronie for marowijne being 6.8%,0 -5325,Name the para for 1.5% commewijne,0 -5327,Name the motorcycle for season 2012,0 -5331,What is the kr td when mfg lg is 64?,0 -5332,Who's average is 24.8?,0 -5333,"What is the pr avg, when kr lg is 49?",0 -5334,what is the population where municipality is san jacinto?,0 -5335,what is the income class for area 75?,0 -5336,what is th area where the municipaity is labrador?,0 -5337,what is the municipality where the area is 73?,0 -5338,Name the equipment for bike number 6,0 -5339,Name the driver passenger for 394 points,0 -5340,Name the equipment for bike number being 3,0 -5341,"In district New York 10th, what was the reason for change?",0 -5342,"In the district Wisconsin 2nd, what was the reason for change?",0 -5345,Name the age 30-39 and age 10-19 380,0 -5346,Name the score for number 4,0 -5349,"when Casey Martin's best finish was t-65, where did he land in the money list rankings?",0 -5352,Name the vote for gigit,0 -5353,Name the finish for patani,0 -5355,"For the NBC network, what was the new/returning/same network status?",0 -5356,Which show was sent to syndication for its new/returning/same network.,0 -5357,What is the new/returning/same network name for This Week in Baseball?,0 -5358,Which show as previously on The Family Channel?,0 -5359,Did the name change for the program last aired in 1958?,0 -5360,What was the rating of the episode with an overall ranking of 190?,0 -5361,"What was the rating of episode titled ""110""?",0 -5364,Name the saka era for malayalam മിഥുനം,0 -5365,Name the months in the malayalam era for കുംഭം,0 -5366,Name the sign of zodiac for chithirai,0 -5367,Name the saka era for sign of zodiac being pisces,0 -5369,"For High Assists of Raymond Felton (12), who were the High rebounds?",0 -5370,On what date was the team Philadelphia?,0 -5371,Who was the high rebound for the high assists of d. j. augustin (8)?,0 -5372,What was the final score of the game with gerald wallace (14) as the High Rebound?,0 -5373,What was the final score in game 15? ,0 -5374,Who had the most assists and how many did they have in the game against Miami? ,0 -5375,Name the location attendance for game 55,0 -5376,Who got the game high rebounds in game 46?,0 -5378,What date was the opposing team Milwaukee?,0 -5379,What is the pressure in ultra high vacuum?,0 -5382,Name the high assists for 70 game,0 -5383,Name the pe̍h-ōe-jī for 前金區,0 -5384,Name the number of villages for mituo,0 -5385,Name the number where population 2010 is 171906,0 -5386,Name the tongyong for chinese of 湖內區,0 -5388,How many pixels would be found in a hardware colour of 8?,0 -5389,If hardware colours is 8 what would the char cells be?,0 -5390,Name the year for le confessional,0 -5391,Name the year for les portes tournantes,0 -5398,Who was Alberta's skip when the shot pct was 88?,0 -5402,What day did the team play charlotte?,0 -5403,When was the game with score l 99–107 (ot),0 -5404,Where was the game with record 20–23 and how many people attended it,0 -5405,Who scored highest rebounds high points is charlie villanueva (32),0 -5406,What is the score of game 46,0 -5407,Who scored the high points on the date November 2?,0 -5409,Where was the game that took place in November 21 located and how many attended?,0 -5410,Name the high reobounds for april 7,0 -5413,Name the record for december 6,0 -5414,What was the final score in game 38?,0 -5415,Who did the Trail Blazers play on January 2?,0 -5417,What was the Timberwolves' record on April 3? ,0 -5418,Where are all of Utah's games held and how many have attended?,0 -5419,Who performed all the high rebounds when craig smith (4) was the lead for high assists?,0 -5420,Who had all the high rebounds when kevin love (20) scored the highest points?,0 -5421,What opposing team was playing when sebastian telfair (7) had the highest assists?,0 -5422,Name the score for january 26,0 -5423,Who did the high points in the game played on April 12?,0 -5424,What is the constructor when the Q1 order is 4?,0 -5426,What is the Q1 time for the driver with Q1 order of 6?,0 -5428,Who all had the most assists in game 12?,0 -5429,"Which position offers winnings of $4,228,889?",0 -5430,How many poles did team #14 ginn racing have?,0 -5431,"When the poles are 0 and the position is 14th, how much are the winnings?",0 -5432,"Which start won $1,301,370?",0 -5434,what is the posisiotn where the start is 3?,0 -5435,"what is the team where winnings is $81,690?",0 -5436,What was the attendance of the Indiana game?,0 -5437,What is the trans 2 duration if the biking stage is covered within 58:20?,0 -5438,What is the trans 2 duration if the total time is 1:51:19.45?,0 -5439,What was the duration of Daniela Ryf's swimming stage?,0 -5441,Who was the athlete that covered biking within 58:52?,0 -5442,All high points are team new york.,0 -5443,February 12 is the date for all location attendance.,0 -5444,54 is the game where location attendance are.,0 -5445,All high points were record by corey maggette (25).,0 -5447,What was the manner in which Petrik Sander departed?,0 -5448,What was the manner of departure for Edgar Schmitt of the Stuttgarter Kickers?,0 -5449,What was the date of appointment when Jürgen Kohler was the outgoing manager?,0 -5451,What are the swimsuit scores of participants with score 9.366 in interview,0 -5452,State average scores of participants from arizona,0 -5454,Evening gown scores of participants with 8.988 swimsuit score,0 -5455,What are the average scores of participants with 9.226 in evening gown ,0 -5456,Give swimsuit scores of participants 8.847 in preliminary,0 -5457,What is the official name of the land with an area of 276.84 km2?,0 -5460,What is the land area of Hopewell parish in km2?,0 -5461,Name the march 27-29 for november 3 being 133,0 -5462,"Name march 27-29 where january 15-16 is january 15, 1991",0 -5463,"Name the january 15-16 where march 27-29 where march 29, 2006",0 -5465,Name the record for april 1,0 -5466,Name the high assists for score being l 98–118 (ot),0 -5468,Name the high rebounds for game 11,0 -5469,Name the high points for score being l 92–100 (ot),0 -5470,"Name the team for arco arena 13,685",0 -5471,What was the score of game 35?,0 -5472,Name the location attendance for score of 65-72,0 -5473,Name the record for july 18,0 -5475,Name the score when game is 19,0 -5476,What is the result when team 1 is ICL Pakistan?,0 -5477,What is the match number where the result is ICL World by 8 wickets?,0 -5478,What is team 2 where the result is ICL world by 8 wickets?,0 -5479,Who is man of the match when Team 1 is ICL Pakistan?,0 -5481,Who is man of the match for match number 5?,0 -5482,"With a score of 68-85, what is the location and attendance?",0 -5483,Name the location of 64-74,0 -5484,Name the score for game for 25,0 -5485,"Name the record for attendance location of palace of auburn hills 15,210",0 -5487,Namethe score for july 16,0 -5488,Which people had the best 10-year period when Fischer had best 15-year period?,0 -5489,Which people had the best 10-year period when Capablanca had the best 15-year period?,0 -5490,Name the record for june 7,0 -5491,Name the date for the score of w 83-69,0 -5492,Name the record for score of w 76-67,0 -5493,What are the scores for games played on september 9?,0 -5494,What was the score of the game played when the team was 16-17?,0 -5495,What was the location and where did the team play game number 32?,0 -5496,"What is every 5-year peek with a when Anatoly Karpov, 2820 is 15-year peak?",0 -5498,"What is every 5-year peak when Emanuel Lasker, 2847 is the 10-year peak?",0 -5500,Who had a high rebound where the associated record is 11-13?,0 -5501,"On July 8, what was the score?",0 -5502,Who was the oppenent what the score was L 68-60?,0 -5503,what is the winning % whre the last 5 is 3-2 and the streak is l1?,0 -5504,If high assists are under Canty (6) how much would the record be?,0 -5505,"If the score is 62-70, what are the high points?",0 -5506,"On which date was the location/attendance UIC Pavilion 3,829 respectively?",0 -5507,On which date is high assists Dupree (6)?,0 -5508,"What was the local investment (in $) in the projects of the department with $912,185 BID/PRONAR investment?",0 -5510,What department irrigated 2170 Ha?,0 -5511,What was the BID/PRONAR investment (in $) in the department that included 1326 farmers in its projects?,0 -5512,"What was the department that got $626,798 in local investments?",0 -5515,"In the game resulting in a 5-11 record, who scored the high rebounds?",0 -5516,Who was the opponent of the game with final score won 4-1?,0 -5518,What was the venue of the game that was lost 3-4?,0 -5519,What is the venue of the game with Man of the Match Vaclav Zavoral?,0 -5521,Name the opponent for 4th,0 -5522,Name the venue for 19th date,0 -5523,Name the result for lukas smital and home,0 -5524,Name the man of the match for 24th,0 -5525,Name the man of the maatch for sheffield scimitars,0 -5526,"On the 19th, where was the venue?",0 -5527,What was the total attendance during the home game against the Swindon Wildcats?,0 -5528,On what day was Stuart Potts the Man of the Match?,0 -5529,At what venue did Alex Mettam/Mark Williams be named Man of the Match?,0 -5531,"When the attendance was 1568, who was man of the match?",0 -5532,Who was the man of the match when they lost 2-4?,0 -5533,what was the competitoin where the opponent is sheffield scimitars?,0 -5534,where was the venue where the attendance was 702?,0 -5535,what was the venue where the date was the 22nd?,0 -5536,who was the opponent where the date was the 21st?,0 -5537,What is the score for Milwaukee? ,0 -5539,"If the census ranking is 231 of 5,008, what was the population?",0 -5540,"If the area is 59.73, what is the official name?",0 -5541,"If the census ranking is 693 of 5,008, what is the status?",0 -5542,"With the official name Quispamsis, what is the census ranking?",0 -5543,"What was the population for census ranking 782 of 5,008?",0 -5544,"If the area is 34.73, what is the census ranking?",0 -5545,What are the census ranking(s) for a population of 284?,0 -5546,What are the census ranking(s) that have an area of 369.25 km2?,0 -5547,What is the population that has an area of 715.58?,0 -5548,What are that status(es) of saint-jacques?,0 -5549,What are the area(s) (km2) for saint-joseph?,0 -5550,What rank is the parish with 482.81 km^2?,0 -5551,"What status doe the area with a census ranking of 2,290 of 5,008 have?",0 -5553,What is Petersville's census ranking?,0 -5554,What is the population of each community with city status?,0 -5555,What is the name of the community with an area of 30.75 sq. km.?,0 -5556,What is the area of the community with a population of 1209?,0 -5558,"Name the region 1 where region 4 for april 2, 2009",0 -5559,Name the region 1 for episode number 13,0 -5560,"Who directed the episode titled ""Episode 19""?",0 -5562,"Who was the director of the film with the original title of ""The Patience Stone""? ",0 -5563,"For what ceremony was ""Fire Dancer"" not nominated? ",0 -5564,"What name was used for nomination for the film with an original title of ""The Black Tulip""? ",0 -5565,"What languages were spoken in the film ""FireDancer""?",0 -5566,"Who was the director of the film with an original title of ""16 Days in Afghanistan""? ",0 -5567,what is the model where the method is ha?,0 -5569,what is the max fs where the status is status and the method is method?,0 -5570,what ist he output where the short description is massive?,0 -5571,What was the nominated film title of শ্যামল ছায়া (shyamol chhaya)?,0 -5572,What year and ceremony was the original title বৃত্তের বাইরে (britter baire)?,0 -5574,what is the nickname founded in 1902?,0 -5575,where is the enrollment 4259?,0 -5576,what is the year union university was founded?,0 -5577,What was the percentage in Manitoba in 2011?,0 -5578,Which province had population of 210295 South Asians in 2001?,0 -5579,What was the South Asian population in Nova Scotia in 2001?,0 -5580,What was the percentage in 2011 of the province that had 2.4% population in 2001?,0 -5582,How many Indians were admitted in 2001?,0 -5589,Who had the most points in game 4?,0 -5591,Name the departure for spalding,0 -5592,who scored highest points on the game with record 27–5,0 -5593,who did highest rebounds in the game with score w 105–88 (ot),0 -5595,What was the team's position when the new manager was Lucas Alcaraz?,0 -5596,Who replaced outgoing manager José Ángel Ziganda?,0 -5597,What grid did the driver who earned 19 points start at?,0 -5599,Car number 15 earned what time?,0 -5602,What was the position for the Josef Kaufmann Racing team?,0 -5605,How many wins did the player have in the Formula BMW World Final?,0 -5606,On what date was the episode aired where event 2 was Hang Tough?,0 -5607,"When event 4 was Whiplash, what was event 2?",0 -5610,What was event 2 when event 1 was Atlasphere?,0 -5611,What is the car number driven by Darren Manning?,0 -5617,"If the equation is 1 × 9² + 4 × 9 + 0, what is the 2nd throw?",0 -5619,"When they played San Lorenzo, what was the score of the second leg?",0 -5621,Who played San Lorenzo?,0 -5622,Who played River Plate?,0 -5624,Who played against team 1 Vitória?,0 -5625,Who played against team 1 Liverpool? ,0 -5626,What was the game's points against Team 2 Deportivo Anzoátegui?,0 -5628,What was the high assists on April 7?,0 -5629,What is the score for the game played on January 25?,0 -5630,What is the record for the team on January 19?,0 -5632,At what location and what was the attendance when Rafer Alston (10) achieved high assists? ,0 -5635,"Name the record for verizon center 20,173",0 -5636,Name the date for score l 89–91 (ot),0 -5637,What was the team record when the team was Cleveland?,0 -5638,Name the high assists for l 93–103 (ot),0 -5639,What was the date of game 21?,0 -5640,What were the results for round of 32 for Nicole Vaidišová?,0 -5642,"What was round of 16 when in round 32 it was koryttseva ( ukr ) w 2–6, 6–1, 7–5?",0 -5643,What was round of 64 of the singles event when the result of round 16 was did not advance and the athlete was Iveta Benešová?,0 -5644,"What were the quarterfinals in the round of 32 was S williams / V williams ( usa ) l 6–4, 5–7, 1–6?",0 -5645,On what day did Dirk Nowitzki (14) have a high rebound? ,0 -5647,Who had the high assists while Erick Dampier (8) had the high rebounds?,0 -5648,Who had the high points while Dirk Nowitzki (13) had the high rebounds?,0 -5649,What was the final record for the game in which Dirk Nowitzki (19) had the high points?,0 -5650,Which championship had the final opponents of nathalie dechy andy ram?,0 -5651,What is the upstream speed of the network that costs 39 tl?,0 -5653,What is the upstream speed that you get for 89 tl?,0 -5654,What is the bandwidth for downstream of 20 mbit/s for 69 tl?,0 -5655,What was the year when West Manila has a tariff increase of 6.5?,0 -5656,What was East Manila's share of 1996 real tariff when its Consumer Price Index is 119.4?,0 -5657,What was West Manila's tariff increase when its CPI is 60.6?,0 -5658,What was West Manila's tariff increase when its CPI is 119.4?,0 -5659,What was the CPI of West Manila when its share of 1996 real tariff is 189%?,0 -5660,What was West Manila's share of 1996 real tariff when it CPI was 92.9?,0 -5662,When did the Broncos play the Miami Dolphins?,0 -5663,"In the game with an attendance of 18304, what was the final score?",0 -5665,What is the max pressure of the cartridge where the muzzle energy is 201ft•lbf (273 j)?,0 -5666,What is the max pressure of the .38 long colt cartridge?,0 -5667,"What is the bullet weight when the max pressure is 12,000 cup?",0 -5668,What are the scores made by Charlotte team,0 -5669,Who made highest assists when high rebounds was Al Horford (17),0 -5670,Give the score when high rebounds was zaza pachulia (8),0 -5671,Name the gs for points being 12.1,0 -5672,Name the assists for 157 games,0 -5673,Name the steals for season 2007/2008,0 -5675,When mike bibby (8) had the highest amount of assists what is the record?,0 -5676,When mike bibby (9) has the highest amount of assists what is the location and attendance?,0 -5677,Who was the team played on January 23?,0 -5678,Where was the game held and what was the attendance when they played Orlando?,0 -5680,Who had the high points on February 6?,0 -5683,What is the team whose driver Jeff Simmons?,0 -5687,What game number was played on January 28?,0 -5688,What is the high amount of points on February 11?,0 -5689,Who has the most assists on Denver?,0 -5690,Name the location attendance for april 13,0 -5691,Name the location attendance for april 5,0 -5692,Who had the high points on December 17?,0 -5694,What was the location and attendance of the game when High Assists were Andre Miller (7)?,0 -5695,Who was the High Assist in game 1?,0 -5696,Who was the High Assist when the High Rebounds was andre iguodala (8)?,0 -5697,What was the W-L record when HIgh Points was andre miller (30)?,0 -5698,What was the score and game outcome when High Points was andre miller (17)?,0 -5701,What was the team's record when they faced orlando?,0 -5702,Whic teams scored l 97–107 (ot) ,0 -5703,Who had the high assists when the team was @ Minnesota?,0 -5704,On what date did the Team Minnesota play?,0 -5705,Who had the high points on the date February 10?,0 -5707,When the high assists were Shawn Marion (6) who had high rebounds?,0 -5708,What dates did they play Miami?,0 -5709,What dates did Chris Bosh (18) score the high points?,0 -5710,Where was the location and what was the attendance in the game that Anthony Parker (7) earned high assists?,0 -5711,Who earned high points in game 69?,0 -5713,What is the location and attendance for the Orlando team?,0 -5714,what was the final score of the game versus Milwaukee?,0 -5715,What is the record against Boston?,0 -5716,What is every high point when the team is Washington?,0 -5719,What is every location attendance on the date December 12?,0 -5720,What was the high rebounds on November 26?,0 -5721,What was the high assists on November 14?,0 -5722,Who had the most assists in the game against Miami?,0 -5724,Who did the most high rebounds in the game played on November 1?,0 -5725,What team was the game on November 21 played against?,0 -5726,What was the score in the game against Boston?,0 -5727,Name the date of appointment for petrik sander,0 -5728,Name the date of appointment for sacked and 14th position replaced by marco kostmann,0 -5730,What was the attendance and location on December 15?,0 -5732,What was the score of the game when the high rebounds Jeff Foster (10)?,0 -5733,What team appointed a manager on 12 June?,0 -5734,Who was replaced on 11 July?,0 -5735,Who left a position on 29 May?,0 -5736,Who left a position on 24 January?,0 -5739,what is the 1398 donnera of asteroid which 1391 carelia is 1529 oterma,0 -5740,what is the 1405 sibelius of asteroid which 1407 lindelöf is 2020 ukko,0 -5741,what is the 1406 komppa of asteroid which 1391 carelia is 1460 haltia,0 -5742,what is the 1391 carelia of asteroid which 1407 lindelöf is 1527 malmquista,0 -5743,what is the 1406 komppa of asteroid which 1405 sibelius is 2737 kotka,0 -5747,"If there are 28 points, what is the time/retired?",0 -5749,When was the mcdonald's lpga championship?,0 -5751,Name the kerry # for others# is 44,0 -5753,Name the others % for johnson,0 -5755,Name the bush% for where others # is 90,0 -5756,Name the others % for cleveland,0 -5757,What is the percentage of others when the number of others is 2286?,0 -5758,What was the percentage of others when the number for Bush was 3196? ,0 -5759,What is the percentage of others when the number for Bush is 1329? ,0 -5760,Which game was played by team milwaukee,0 -5761,Who made high points on games of score w 106–104 (ot),0 -5763,What is the location of the the game on december 10,0 -5764,List the all the scores where the high assis is b. shaw (5),0 -5765,List of high assists with high rebounds for k. mchale (10),0 -5766,List all location attendance for series 1-1.,0 -5767,What day(s) did the team play indiana?,0 -5768,Who had the high assist total on january 2?,0 -5769,What was the title used in nomination in the original Bābǎi Zhuàngshì (八百壯士)?,0 -5770,What was the year when Chūnqiū Cháshì (春秋茶室) was submitted?,0 -5771,Old Mo's Second Spring was the film title used in nomination in what year?,0 -5772,What was the year when My Mother's Teahouse was not nominated?,0 -5773,What titles were released in 2006?,0 -5774,What year(s) was axis & allies: d-day released?,0 -5775,What game was on May 25?,0 -5777,Who had the high rebounds when the team played Sacramento?,0 -5778,Who had the high points on April 8?,0 -5779,Who had the high assists in game 80?,0 -5780,Name the highh points for december 29,0 -5781,Name the high assists for 29 game,0 -5782,"Name the high points for pepsi center 18,611",0 -5783,Name the date for chicago,0 -5784,Name the record for new orleans,0 -5785,"Name the high assists for chauncey billups , carmelo anthony (18)",0 -5786,What was the final score for @ Orlando?,0 -5787,Chauncey Billups (6) had a high assist on what date?,0 -5788,@ Chicago had a high points of what?,0 -5789,High assists belonging to Carmelo Anthony (11) have a record of what?,0 -5790,Name the high assists for april 8,0 -5791,Name the score for charlotte,0 -5792,"Name the location attendance for chucky atkins , russell westbrook (4)",0 -5794,Name the team where the date is november 17,0 -5795,Name the team for november 5,0 -5799,"For series number 256, what was the original air date?",0 -5800,What season episode is directed by Skipp Sudduth?,0 -5802,What is the original air date of the episode directed by Terrence Nightingall?,0 -5804,Which seasons were directed by Nelson McCormick?,0 -5805,Which season titles were directed by Laura Innes?,0 -5806,Which episodes did Nelson McCormick direct?,0 -5809,On which dates did the episodes directed by TR Babu Subramaniam air?,0 -5810,"Who directed the episode titled ""the advocate""?",0 -5812,What is the goal average 1 for teams that lost 9 games?,0 -5817,Give the date of games against minnesota wild,0 -5818,State the dates of games with record 1-2-3,0 -5820,Which venue does Mardan sponsor?,0 -5821,Erdoğan Arıca is the head coach at what venue?,0 -5822,Who is the club chairman of the team that Murat Erdoğan is the captain of?,0 -5824,Which game had a record of 6-9-7?,0 -5825,"When they played at the Bankatlantic Center, what was their record?",0 -5826,Who was the opponent on December 27?,0 -5827,What was the score of the game on December 11?,0 -5828,What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum?,0 -5829,What was the score when the record was 21-31-13?,0 -5832,The player who plays left wing is from what college/junior/club team? ,0 -5833,The player who plays goaltender is from what college/junior/club team? ,0 -5834,How many were played when there were 39 tries for? ,0 -5836,How many were won when there were 49 points? ,0 -5837,How many points were there when tries for were 84? ,0 -5838,what team play in february 18 in the supersonic season ,0 -5839,what is the score in february 12 of the boston celtics team,0 -5840,Who is the opposing team when the game was played on the Shea Stadium?,0 -5842,"What was the result of the game that was played on Nov. 26, 1972?",0 -5843,What are all Tamil months when the season in English is monsoon?,0 -5844,"What is every English translation when Tamil months is Mārkazhi, Tai?",0 -5845,What is every Gregorian month when the season in Tamil is இளவேனில்?,0 -5847,Which departments have M.Phil(Maths)?,0 -5849,Name the power provided for transfer speed mb/s is 1250,0 -5850,Name the devices per channel for 2560,0 -5851,Name the power provided where transfer speed mb/s is 300 and max cable length of 10,0 -5852,Name the colorado when alaska is connecticut,0 -5853,Name the california where alaska tennessee,0 -5854,Name the date for score of 95-101,0 -5855,Name the high rebounds for march 15,0 -5856,Name the score for record of 2-5,0 -5858,What are the years of participation for central crossing school?,0 -5860,What are the years of participation for pickerington north?,0 -5861,Name the event for redouane bouchtouk,0 -5862,Name the round 16 for did not advance and light flyweight,0 -5863,Name the athelte for enkhzorig ( mgl ) l 1–10,0 -5864,Who did Abdelhafid Benchebla face in the quarterfinals?,0 -5865,Who did Nabil Kassel face in the Round of 32?,0 -5866,How did Hamza Kramou fare in the semifinals?,0 -5867,In what year did the winner of the FIS championship in 1982 win the Winter Olympics?,0 -5868,What year did Thorleif Haug win the Winter Olympics?,0 -5869,What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships?,0 -5870,What is the holmenkollen for the 1982 FIS Nordic World Ski Championships?,0 -5871,What years did Birger Ruud win the FIS Nordic World Ski Championships?,0 -5872,What year did Karl Schnabl win the Winter Olympics?,0 -5873,What is the FIS Nordic World Ski Championships when holmenkollen is 1976?,0 -5874,"What year is Winter Olympics when Holmenkollen is 1957, 1960?",0 -5875,What's the part 4 for the verb whose part 3 is borgen?,0 -5876,What's the meaning of the verb whose part 1 is slapen?,0 -5877,In what class does the verb with part 4 gelopen belong to?,0 -5878,What's part 1 of the verb whose part 4 is gevroren?,0 -5880,What's the part 3 of the verb with part 4 gelopen?,0 -5882,What's the class of the verb whose part 1 is lesan?,0 -5884,What's the part 3 of the verb whose class is 4?,0 -5885,What's the part 3 of the verb in class 5?,0 -5886,What is the class of the word who's second participle is laug?,0 -5887,What is the meaning of the class 6 verbs?,0 -5888,What is the 3rd participle of the verb whose 2nd participle is band?,0 -5889,What is the 1st participle of the verb whose 4th participle is haitans?,0 -5890,"For part 2 *lauk, what is listed for part 4?",0 -5891,What is the verb meaning for *bundun?,0 -5892,"For part 2 *raid, what is listed for part 3?",0 -5893,What word is listed under part 2 for part 4 *ridanaz?,0 -5894,What is listed under part 1 for class 3b?,0 -5895,What class is the verb wich its part 4 is frosinn,0 -5896,What class is the verb wich its part 3 is heldu,0 -5897,What is part 1 of the verb in class 7b,0 -5898,What is part 1 of the verb in class 4,0 -5901,"Who wrote the episode ""The Dream Lover"", which was viewed by 3.96 million viewers?",0 -5903,"Who wrote the episode ""The Cold Turkey"", which was viewed by 3.73 million viewers?",0 -5904,"What is the production code of the episode ""The Night Moves"", which was directed by Patrick Norris?",0 -5905,Who wrote episode 11?,0 -5906,"What was the original airdate of the episode ""The Cold Turkey"", which was viewed by 3.73 million viewers?",0 -5907,Name the class for boten,0 -5908,Name the part 3 for treffen,0 -5909,Name the part one for to give,0 -5910,Name the class for schliefen,0 -5911,Name the verb meaning for half drosch,0 -5912,"If the product code is 2t6267, who was the director?",0 -5913,What is the air date when the U.S. viewers was 5.50 million?,0 -5914,Who were the writers for production code 2t6268?,0 -5916,Name the builder for date built is january 1910,0 -5917,Name the disposition for date built is march 1909,0 -5918,What is the title of episode number 96 in the series?,0 -5919,What number in season is the episode directed by Gene Stupnitsky?,0 -5920,How many viewers did the episode written by Warren Lieberstein & Halsted Sullivan have?,0 -5922,What number in the series are the episodes with production code 5016/5017?,0 -5924,What is the call sign of the station with the frequency of 90.3mhz,0 -5925,"What is the call sign for the station that uses the branding, mom's radio 101.5 tacloban?",0 -5926,What is the branding for stations located in Cebu? ,0 -5927,Which eagle riders whose ova (harmony gold dub) is dr. kozaburo nambu?,0 -5928,Which battle of the planets where ova (harmony gold dub) is solaris?,0 -5929,Which eagle riders have battle of the planets as zoltar?,0 -5930, Which gatchaman has eagle riders as lukan?,0 -5931,What eagle riders where ova (harmony gold dub) is lord zortek?,0 -5932,What pregame host was on espn and had taylor twellman color commentating?,0 -5933,What pregame analyst(s) had rob stone and monica gonzalez as sideline reporters and were on tsn2?,0 -5934,What color commentator(s) were in 2010?,0 -5936,Who had the play-by-play on espn with sideline reporter monica gonzalez?,0 -5937,What was the name of race #28?,0 -5939,Which race had an average climb of 40%?,0 -5946,What was the 2008 election status when glenn nye was the running democrat?,0 -5947,Who was the republican candidate in the race with incumbent thelma drake?,0 -5949,Who was the democratic candidate when the republican was frank wolf?,0 -5951,How many bonus points are there when points for is 385?,0 -5953,How many bonus points were won by 5?,0 -5954,How many have been played for 362 points?,0 -5955,How many points against have a lose of 13?,0 -5957,What is the shuttle time for the level where the speed is 15.5 km/h?,0 -5961,Namethe democrat john lynch for joe kenney being 27%,0 -5962,Name the poll source for republican joe kenney being 28%,0 -5963,Name the lead margin for democrat john lynch being 62%,0 -5968,Who's the poll source that claimed the Lead Margin was 17 and the Democrat: Jay Nixon had 54% of the votes?,0 -5969,What poll source claimed that Republican: Kenny Hulshof had 43%?,0 -5971,What percentage was claimed that Republican: Kenny Hulshof got in the poll that also claimed Democrat: Jay Nixon got 48%?,0 -5972,Name the common name for rhampholeon spectrum ,0 -5973,Name the scientific name for veiled chameleon,0 -5974,Name the common name for furcifer pardalis,0 -5980,"When the result was +2.5, what were the kerry%?",0 -5981,"When Kerry# was 199060, what was the percentage?",0 -5983,"When the 200 result was +1.6, what was the percentage?",0 -5985,What country has a P of GK?,0 -5986,What is the P for the player moving from Everton?,0 -5987,Name the competition of panathinaikos,0 -5988,What is every value for viewers for ranking #51 for the Tuesday 9:00 p.m. timeslot?,0 -5989,What finales took place in the Tuesday 9:30 p.m. timeslot?,0 -5990,"What premieres had a finale on May 25, 2004?",0 -5991,"What seasons had a finale on May 25, 2004?",0 -5992,What seasons had a ranking of #47?,0 -5993,What are all values for viewers for 1st season?,0 -5994,What is the withdraw date for secr no. 771?,0 -5995,Who is the builder for br no. 31779?,0 -5996,what ist he country where the loan club is fulham?,0 -5998,What was the name of eipsode 618?,0 -5999,"When did ""secrets"" air?",0 -6002,Name the high points for may 29,0 -6003,Name the date for series 2-2,0 -6004,Name the high assists for may 21,0 -6006,Who did the play-by-play when the pregame host was Brian Williams and the sideline reporters were Steve Armitage and Brenda Irving?,0 -6007,Who were the pregame hosts when the sideline reporters were Steve Armitage and Brenda Irving?,0 -6008,Who did pregame analysis in 2002?,0 -6009,Name the state for lake county,0 -6015,Name the club for when tries for is 32,0 -6017,Name the won when tries against is 72,0 -6018,Name the points aginst when drawn is 1 and points is 51,0 -6019,Name the original air date for number in season being 1,0 -6020,How many were won when 5 were lost? ,0 -6021,How many were drawn when 13 were lost? ,0 -6022,How many points are there for 63 tries against? ,0 -6023,What is the try bonus when the tries against are 17? ,0 -6024,How many tries for are there when 11 were won? ,0 -6027,What was the title of the episode with 5.04 million viewers?,0 -6028,What was the first airdate with a viewership of 4.77 million?,0 -6030,Who was the director when the writer was John Sullivan?,0 -6032,What are the movies that are written and dircted by john sullivan with the airdate of 15january2009.,0 -6033,"What is the total viewership where the title is "" your cheating art "".",0 -6039,What is the census ranking of the location with population of 959?,0 -6040,What is the name of the place with 582.20 square km area?,0 -6041,What is the name of the place where area is 578.28 square km?,0 -6042,"If the points is 20, what was the team name?",0 -6043,What is the time/retired if the driver is Marco Andretti?,0 -6045,What is the time/retired if the driver is Ed Carpenter?,0 -6047,"If the driver is Milka Duno, what is the name of the team?",0 -6051,What was the represented team on June 27?,0 -6052,Who was the winning driver for Hendrick Motorsports in a Chevrolet Impala SS?,0 -6053,When 45 is the goals for and 10 is the drawn what is the lost?,0 -6054,When +10 is the goal difference what is the goals for?,0 -6055,When ellesmere port & neston is the team what are the points 1?,0 -6057,When tony kanaan is the driver what is the average speed miles per hour?,0 -6058,When 169.182 is the average speed miles per hour what is the chassis?,0 -6059,When 1:34:01 is the race time what is the miles in kilometers?,0 -6060,When 228 is the lap and chip ganassi racing is the team what is the race time?,0 -6063,Who was the home team when Burnley were the away team?,0 -6065,What was the score when Françoise Dürr was partner?,0 -6066,What was the outcome in 1975?,0 -6067,"On what surface was the game played with a score of 6–4, 6–4?",0 -6068,What is the year of appearance for the Prince Albert Raiders? ,0 -6069,How many wins do the Erie Otters have? ,0 -6070,What is the final win percentage of the Sault Ste. Marie Greyhounds? ,0 -6073,"What is the record for November 26, 1961?",0 -6074,What was the game site against the Dallas Texans?,0 -6077,Who was the semi-final television commentator when the spokesperson was Colin Berry and the final television commentator was Pete Murray?,0 -6078,Who was the radio commentator when the final television commentator was John Dunn? ,0 -6080,What was their record when the attendance at the game was 14489?,0 -6081,When did they play at the Cotton Bowl?,0 -6082,What is the percentage of this constellation abbreviated as 'nor'?,0 -6084,What is the name of this constellation with an area of 245.375 sq. deg.?,0 -6086,What is the percentage of this constellation with an area of 248.885 sq. deg.?,0 -6087,Name the broadcast date for 6.4 million viewers for the archive of 16mm t/r,0 -6088,Name the archive where run time 24:04,0 -6089,"On November 1, 1964, where was the game site?",0 -6090,How many people attended the Week 8 game when Denver played Buffalo?,0 -6093,"For races with an average speed of 113.835 mph, what are the winning race times?",0 -6094,What manufacturer won the race on November 2?,0 -6095,What date did Jamie McMurray win the race?,0 -6096,What was the date of the race with a winning time of 1:55:13?,0 -6097,What team(s) enjoyed an average spped (mph) of 138.14?,0 -6098,How many laps recorded in 2001?,0 -6099,What team(s) were in 2003?,0 -6100,What was the average speed (mph) for the racer who finished in 1:45:00?,0 -6101,How many total miles recorded for the racer who finished in 1:05:33?,0 -6102,"what episode # was titled ""SWAT Kats Unplugged""?",0 -6103,what was the title of the episode 21a?,0 -6104,who wrote episode 14?,0 -6105,"on what date did the episode titled ""A Bright and Shiny Future"" originally air?",0 -6107,How many precincts are in the county where G. Hager received 19 (20%) votes?,0 -6109,Name the name or route for slope length being 336,0 -6112,Who is the player of the round with 80 fixtures? ,0 -6116,Which season is it when Milouska was the show's mole ?,0 -6117,What were the requirements for the role played by Robert Austin in the original production?,0 -6118,"What actor played the ""female, older"" role in the original production?",0 -6119,What FlatSpin actor played the same role as Robert Austin?,0 -6122,What RolePlay actor played the same role Alison Pargeter played in the original production?,0 -6123,What's the name of the church in Stavang?,0 -6124,What's the name of the church in Stavang?,0 -6125,What's the sub-parish (sokn) of Eikefjord?,0 -6127,In what parish is the Askrova Bedehuskapell church?,0 -6128,Which channel has the host Art Rooijakkers?,0 -6129,When did the program air on Vier?,0 -6130,What is the title that aired from 17 may 2008 – 21 june 2008 on Nederland 3?,0 -6131,How many seasons did the show run in Poland?,0 -6132,When 4744 is the avg. trips per mile (x1000) what is the current stock?,0 -6133,When green is the map colour what is the future stock?,0 -6135,When turquoise is the map colour what is the length?,0 -6137,How many powiats have mstsislaw as a capital?,0 -6140,In what parish is the sub-parish fortun? ,0 -6141,What is the sub-parish of the church located in Fortun? ,0 -6143,What parishes are in Solvorn? ,0 -6145,Name the parish for 1908,0 -6148,"For week 6, what were the results?",0 -6150,What is the broadcast date when 8.3 million viewers watched?,0 -6151,What is the broadcast date of the episode with run time 25:12?,0 -6152,How many million viewers watched the episode that runs 25:55 minutes?,0 -6153,How many dances did Warren & Kym have?,0 -6154,What are the total points for the team that averages 17.8?,0 -6155,What is average for Cody & Julianne?,0 -6156,what is the division southwest when division south was kožuf and division east was osogovo,0 -6157,what is the division north in 2007–08,0 -6158,what is the division north when division south was kožuf and division southwest was ilinden velmej,0 -6160,what is the division east when division north was milano,0 -6161,"who co-wrote Season 2, Episode 3?",0 -6164,What year was the film Milagros submitted?,0 -6167,What spacecraft was launched from the LC34 launch complex? ,0 -6168,What spacecrafts had 22 orbital flights? ,0 -6169,What launcher had spacecrafts that did 37 orbital flights? ,0 -6170,What launcher had spacecrafts that did 37 orbital flights? ,0 -6171,What years had 134 orbital flights? ,0 -6172,"In what country did the ""amsterdam's futuristic floating city"" project take place?",0 -6173,What is the status of the London Aquatics Centre project at the time of production?,0 -6174,What was the original are date of series number 71?,0 -6176,"What is the status of the ""azerbaijan's amazing transformation"" project at the time of production?",0 -6177,What is the length for a diameter totaling 450 mm?,0 -6178,What is Esperance pipeline co total diameter?,0 -6179,Name the opponent for december 8,0 -6182,"For game site Schaefer Stadium, what were the results?",0 -6183,Who was the outgoing manager when the incoming manager was joão pereira?,0 -6184,What team(s) had an outgoing manager of joão alves?,0 -6185,What day did the job open up when bogićević was outgoing?,0 -6186,Name the 0-100 km/hs for name of 2.0 8v,0 -6187,Name the top speed for 0-100 km/hs for 12.7,0 -6189,Name the volume for co 2 for 168 g/km,0 -6190,When 60 is the tries against what is the tries for?,0 -6191,When 22 is the tries for what is the lost?,0 -6192,When 98 is the points what is the club?,0 -6193,When 80 is the tries for what is the try bonus?,0 -6194,When 55 is the tries for what is the lost?,0 -6195,When 17 is the tries for what is the points against?,0 -6196,How many draws were there in played games?,0 -6197,Which club had 2 wins and 1 draw?,0 -6198,How many times were there plays with a try of 56?,0 -6199,How many tries against were there with points of 150?,0 -6200,What was the losing bonus that had 53 points?,0 -6201,List all points against with a 0 try bonus and points for of 150.,0 -6202,Name the tries against when tries for is 30,0 -6203,Name the points when tries for is 49,0 -6204,Name the try bonus for lost being 11 and losing bonus is 6,0 -6205,What is the aggregate when the second leg is 1-3?,0 -6206,"For home of River Plate, what is the first leg listed?",0 -6207,"With an aggregate of 0-2, what is listed for home?",0 -6208,"If the home is Atlético Tucumán, what is the name of the first leg?",0 -6209,"If second leg is Newell's Old Boys, what name is first leg?",0 -6210,"What is the chinese name for whom chan chi-yuen, paul is listed as the romanised name?",0 -6211,"The name cheung, raymond man-to is listed as a romanised name is cheung, raymond man-to?",0 -6214,For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name. ,0 -6217,Name the points for 1992-93 for 42,0 -6218,"If the aggregate is 3-4, what is the first leg?",0 -6220,"If the second leg is 1-1, what is the first leg?",0 -6221,"If the second leg is 3-2, what is the first leg?",0 -6222,"If the second leg is 1-1, what is the first leg?",0 -6223,How many games were played by the Vélez Sársfield team from 1989-90?,0 -6224,What was the average of the team if they played 31 games from 1990-1991?,0 -6225,What was the team that scored 122 points?,0 -6226,What was the average if the game played during 1990-91 is 40 and the points are less than 121.0?,0 -6227,What is the opponent played on October 4?,0 -6230,What was the comment on the Denali area?,0 -6235,What was the game record when the opponent was 'at Los Angeles Raiders'?,0 -6236,When was the game played when the opponent was 'at Los Angeles Rams'?,0 -6240,Name the original air date for ai% for 83,0 -6241,Name the story number for paul cornell,0 -6247,How many wins had 58 goals scored?,0 -6249,Which clubs had draws of 9?,0 -6254,How many goals were scored by club team fm (losc) vilnius,0 -6257,What is the June 22 ncaat baseball record for Fresno State Bulldogs?,0 -6258,"How many saves were in the Georgia game, versus the Bulldogs, with a score of 7-6?",0 -6259,What is the June 21 ncaat baseball record for Fresno State Bulldogs?,0 -6260,What is the Papal name of the Pope announced as Ioannis Pauli Primi?,0 -6261,What is the announced birth name of the pope whose numeral is not given and whose latin declension is genitive?,0 -6262,What pope was announced in latin as Pium?,0 -6263,What is the latin birth name of the pope announced as Ioannis Pauli Primi?,0 -6265,How did the team which was first round eliminated by estudiantes do in 2008 recopa sudamericana,0 -6267,What date was the match against Morocco played?,0 -6268,What country did Gil play against on 21–23 september 2007?,0 -6269,Who was Gil's partner on 10–12 july 2009,0 -6270,"Where was the successor formally installed on December 3, 1858?",0 -6271,"Why did the change happen in the state where the formal installation happen on February 14, 1859?",0 -6272,Name the vacator for tennessee 1st,0 -6273,"If the passengers are 15,505,566, what is the iata code?",0 -6274,"If the location is Chicago, Illinois, what is the airport name?",0 -6275,"If the amount of passengers is 15,505,566, what is the %/chg. for 2009/10?",0 -6276,What university did Steve Hoar attend. ,0 -6277,List the plats that attended Wilfrid Laurier University. ,0 -6278,List all the international lacrosse league competitions for Toronto Rock.,0 -6279,List all of the NLL Toronto Rock players. ,0 -6280,What rank is the airport whose IATA Code is JFK?,0 -6281,Which airport has an IATA Code of ORD?,0 -6282,Louisville International Airport had how many tonnes of cargo in 2011?,0 -6283,How many tonnes of cargo did the airport have with the IATA Code IND?,0 -6284,Who is the incumbent democratic party in district florida 11?,0 -6285,In which district is the first elected 2000?,0 -6286,When is the first elected in the Florida 19 district?,0 -6289,What is the party affiliation of New York 26? ,0 -6295,What is the party affiliation of the incumbent Robert Cramer?,0 -6296,Who is the incumbent in the Washington 1 district? ,0 -6298,What was the result in the election where the date of first elected was 2000? ,0 -6299,"Who directed the episode titled ""Smells Like Teen Sellout""?",0 -6300,"Which title, directed by David Kendall, had 3.7 million viewers?",0 -6301,"Who directed ""People who use people""?",0 -6303,What party did hilda solis represent?,0 -6304,What were the result(s) of the election featuring grace napolitano as the incumbent?,0 -6309,What is the English translation of 哀郢?,0 -6310,"What is the Pinyin transcription for ""Alas for the Days Gone By""?",0 -6311,What's the English name for the month with พ.ย. abbreviation? ,0 -6312,What's the zodiac sing for the month abbreviated as มี.ค.?,0 -6313,What's the transcription of the thai name of the month พฤษภาคม?,0 -6315,What's the English name of the month abbreviated as มิ.ย.?,0 -6316,What's the abbreviation of the month in the zodiac sign scorpio?,0 -6317,which year was the original title გაღმა ნაპირი,0 -6319,when was otar iosseliani's film selected,0 -6320,What is the thai name of the transcription wan chan?,0 -6321,What is the sanskrit word for the color red?,0 -6322,What is the transcription of the sanskrit word chandra?,0 -6323,What is the sanskrit word if the transcription is wan athit?,0 -6324,What is the color of the planet venus?,0 -6325,Which planet has the transcription of wan suk?,0 -6326,What is the year to april when the revenue is 434.8 million dollars?,0 -6327,What is the dollar amount of ebit when the net profit is 120.6?,0 -6328,How many dollars is the revenue when the net profit is 55.4 million dollars?,0 -6330,What is the earnings per share when the net profit is 16.2 million dollars?,0 -6331,How much is the net profit when the revenue is 150.6 million dollars?,0 -6332,Name the year for not nominated for alberto aruelo,0 -6336,What was the win/loss record for All Neutral games for the team whose Big 10 winning percentage was .833?,0 -6337,What is the category when the version is 1.0 and the title is Chord finder? ,0 -6338,What was the release date for metronome? ,0 -6339,Who is the developer for Windows live messenger? ,0 -6340,What is the function of 1.4 version of Windows live messenger? ,0 -6341,What functions were released on 2011-06-23? ,0 -6342,"What is the cospar ID of the Kosmos 2397 satellite, which has an operational life of 2 months?",0 -6343,What was the launch date the satellite with cospar ID is 2008-033A?,0 -6344,What it the international designation for the kosmos 2379 satellite?,0 -6345,What is the estimated end date for the 2001-037a international designated satellite?,0 -6346,"in which city was charter date december 4, 2011",0 -6348,what is the status in vestal,0 -6349,what is the collegiate institution in queens,0 -6350,What was the original title of Run for Money?,0 -6351,What was the Tuesday episode if theThursday episode was 196 Buried?,0 -6354,What were the dates when 224 Assassin's Creed: Brotherhood Circus Training was shown on Tuesday?,0 -6355,"When the average away attendance is 1.889 in the Superettan, what's the average home attendance?",0 -6357,In which division did they compete in 2012?,0 -6358,"When the home attendance is 3.123, what's the highest away attendance?",0 -6359,Which division has an average home attendance of 2.459?,0 -6362,What was the race status(es) with the lotus-ford 38/1 chassis?,0 -6363,What year(s) was the race status piston?,0 -6366,How many burglaries occurred in the city where the violent crime rate was 974.7?,0 -6367,What was the violent crime rate in the city where the robbery rate was 201.4?,0 -6369,"What are all values for Mitchell when the author species is Temminck & Schlegel, 1849?",0 -6370,What is every value when Mitchell is 676?,0 -6372,What is every entry for Scott when the date is (15.12)?,0 -6373,What is every species when Afinsa is 639?,0 -6375,"If the distance is 55.7, what is the name of the constellation?",0 -6378,"If the constellation is Gemini, what is the spectral type?",0 -6380,"If the spectral type is g1v, what is the constellation?",0 -6381,"What is the artist of the song ""sugarbaby""?",0 -6382,"What is the release date for the song ""had a dad""?",0 -6384,What is the original air date of season 9?,0 -6385,Who were the writers when there were 27.11 million viewers?,0 -6388,What is the title when 18.58 u.s. viewers (millions) watched?,0 -6390,What is the channel that is on digital terrestrial channel 10?,0 -6391,What is the digital terrestria channel number for itv3?,0 -6392,What is the position of digital channel 5 44 (+1)?,0 -6393,"where pageant is elite model look and year is bigger than 1993.0, who is the delegate?",0 -6397,How many awards did milagros gutierrez win?,0 -6398,Where is the miss global teen?,0 -6399,what is the subtrate for enzyme ala dehydratase,0 -6401,give the location of subtrate coproporphyrinogen iii,0 -6402,Who were the authors of episode having production code 3t7573?,0 -6404,Who were the director/s of episodes written by Mike Daniels?,0 -6406,Who was second runner up when Janina San Miguel won Binibining Pilipinas-World?,0 -6407,Who was the winner of binibining pilipinas-International wheh Gionna Cabrera won Miss Universe Philippines?,0 -6412,"Who's the partner at Tamara, Hon?",0 -6415,What was the percentage of national votes for Mahmoud Ahmadinejad?,0 -6416,Name the revenue for eps being 8.9,0 -6418,Name the eps for net profit being 39.2,0 -6419,Name the ebit for eps being 10.6,0 -6420,What are the population densities of all communes with an are of 28.3 sq.km.?,0 -6421,What commune has an area of 12.4 sq.km.?,0 -6422,What commune had a 2002 population of 130394?,0 -6423,Which city has a resolution that is negotiated exile in Austria?,0 -6424,Which city has the missions city of Australia?,0 -6426,What is the nickname of the team whose 2013/2014 enrollment is 436? ,0 -6427,What is the name of the team from the Elverado Trico school in football? ,0 -6428,How many years of kindergarten is provided in Ticino?,0 -6429,How many years is kindergarten legally requited in Zug?,0 -6430,Are there integrated secondary schools in Uri?,0 -6432,Are there integrated secondary schools in Basel-Stadt?,0 -6433,Who wrote the story that is cover date 19 October 1985?,0 -6435,What is the comment on the issue dated 14 March 1987?,0 -6436,What is the title of the issue where the art was done by Barry Kitson and Farmer?,0 -6438,what is the number of hydroxymatairesinol where sesamin is 62724?,0 -6439,what is the total number of sesamin were secoisolariciresinol is 240?,0 -6441,how much sesamin is in sesame seed?,0 -6443,What was the calling for the 18.42 arrival time?,0 -6444,"What was the arrival for Wansford, Peterborough East?",0 -6445,What was the departure time when the arrival was 14.40?,0 -6446,What is the departure for Peterborough East whose arrival time is 12.40?,0 -6447,What is the calling at for the 09.50 departure?,0 -6448,Where is the train going to when departing at 20.35?,0 -6450,Name the 3 dart average for michael van gerwen,0 -6452,what is the operator of trains arriving at 13.39 ,0 -6453,when does the train departuring at 11.35 arrive,0 -6454,when does the train arriving at bourne at 11.45 departure ,0 -6455,when does the train arriving at stamford east at 11.45 departure ,0 -6456,How many clubs are remaining when the winners from the previous round totals 4?,0 -6457,What is the round where winners from the previous round totals 8?,0 -6459,How many new entries started in the round where winners from the previous round is 32?,0 -6460,How many new entries started in the quarter finals?,0 -6461,How many new entries started in the round where winners from the previous round is 16?,0 -6462,"Who wrote ""episode 10""?",0 -6463,"Who wrote ""episode 4""?",0 -6464,"Who directed ""episode 5""?",0 -6465,Who was the train operator when the train departed at 11.02 in 1922?,0 -6466,"What was the train destination when it has a calling at Boston, Sleaford, Nottingham Victoria?",0 -6467,What was the departure time of the train going to Boston?,0 -6468,What was the arrival time of the train that departed at 18.16?,0 -6469,What was the departure time of the train that arrived at 21.26?,0 -6470,What was the 'calling at' station of the train that departed on 18.16?,0 -6471,Name the original air date for barnaby southcomb for charlie martin,0 -6473,What is the original air date of the episode with the production code 1115? ,0 -6474,"who directed the episode with the original air date of November 22, 1989? ",0 -6475,when deland is the fcsl team and 2008 is the year played who is the mlb team?,0 -6476,When toronto blue jays are the mlb team who are the fscl team?,0 -6479,When 2006 is the year played and winter park is the fcsl team who is the player?,0 -6480,Which operators offer a genre of music?,0 -6481,Which languages are offered in the coverage area of klang petaling jaya shah alam?,0 -6482,Name the macedonian for il/elle avait entendu,0 -6483,Name the greek modern for słyszałeś był / słyszałaś była,0 -6484,Name the bulgarian for jullie hadden gehoord,0 -6485,Name the english for j'avais entendu,0 -6486,What was the air date in the U.S. for the episode that had 1.452 million Canadian viewers?,0 -6487,What number episode in the series was directed by Kelly Makin and written by Mark Ellis & Stephanie Morgenstern?,0 -6490,Who directed the episode with a production code of 301?,0 -6491,Who wrote the episodes watched by 1.816 million people in Canada?,0 -6492,Who wrote the episodes watched by 1.575 million people in Canada?,0 -6493,"Who directed the episode aired on February 27, 2009?",0 -6494,Which episodes had production code 217?,0 -6495,"For upper Arlington, what was the median household income?",0 -6497,"If the population is 2188, what was the median household income?",0 -6498,For Pigeon Creek what is the per capita income?,0 -6499,"If the median income is $57,407, what is the per capita income?",0 -6501,"Who directed the episode that aired on July 29, 2011?",0 -6504,Which air dates have 1.229 canadian viewers (millions)?,0 -6508,"If Di Drew is the director, what was the original air date for episode A Whole Lot to Lose?",0 -6511,How many entered the match with a time of 14:42? ,0 -6512,What was the time for the match with Cena? ,0 -6513,What was the time of the match where Chris Jericho eliminated the wrestler? ,0 -6514,What are all the stations with a license in Cincinnati?,0 -6515,What station is affiliated with kmgh-tv?,0 -6516,How many stations have been owned since wfts-tv?,0 -6517,What city of license/market has the channel of 41?,0 -6519,What is the lyric fm for rnag 93.2?,0 -6520,What are the 2fm's for erp 16?,0 -6521,What is the rnag for kippure transmitter? ,0 -6522,What is the rnag for lyric fm 98.7? ,0 -6523,What is the 2fm for rnag 94.4?,0 -6525,"Who vacated his post when his successor was formally installed on May 11, 1966?",0 -6526,"What was the state (class) where the new successor was formally installed on May 11, 1966?",0 -6527,When abba is the artist what is the album?,0 -6528,When 35 is the number what is the album?,0 -6530,When cannot handle non-empty timestamp argument! 2007 is released what is the no.? ,0 -6531,Which district did Ralph Harvey (r) vacated when he resigned?,0 -6532,"Who did Walter B. Jones, Sr. (d) succeeded in office?",0 -6533,"What number episode in the series was titled ""Never the Bride""?",0 -6534,"Who wrote the episode titled ""Trojan Horst""?",0 -6535,What was the title of the episode directed by John T. Kretchmer? ,0 -6537,What is the title of series 23?,0 -6538,"When did the title ""training video"" originally air?",0 -6539,Who directed season 1?,0 -6540,What is the title when u.s. viewers (millions) is 3.97?,0 -6542,list the spokespersons where voting order is 9,0 -6543,which countries were commentated on by gordana bonetti,0 -6544,wich spokesperson talked on luxembourg,0 -6545,who was the commentator when spokesperson was claude darget,0 -6546,List all institutions with a team name of the Cardinals. ,0 -6548,How many viewers in millions watched the episode 23:55 minutes long?,0 -6549,What is the broadcast date of the 16mm t/r episode?,0 -6550,How many viewers watched the 16mm t/r episode?,0 -6551,"state el canal de las estrellas where october 20, 2008 stat is june 5, 2009",0 -6552,state el canal de las estrellas where mañana es para siempre is impreuna pentru totdeauna,0 -6553,"what is the june 14, 2009 stat where october 20, 2008 stat is november 15, 2010",0 -6554,what is the mexico stat where mañana es para siempre is love never dies,0 -6555,"state el canal de las estrellas where october 20, 2008 stat is june 5, 2009",0 -6556,"what is the october 20, 2008 stat where mexico stat is romania",0 -6557,Name the other for chironius multiventris septentrionalis,0 -6558,Name the trinidad for yellow-bellied puffing snake,0 -6559,Name the bocas for chironius multiventris septentrionalis,0 -6560,Name the trindad for yellow-bellied puffing snake,0 -6561,Name the common name for chironius multiventris septentrionalis,0 -6562,What contestant was premiered on July 25? ,0 -6563,What's the Air Force - Navy score in the 2018 season?,0 -6564,What was the Air Force - Navy score in the 1983 season?,0 -6566,"In the first episode of Garfield titled Robodie II, what is the title of the U.S. Acres Episode?",0 -6567,What is the title of the first episode of Garfield that is followed by the second episode of Garfield titled Mamma Manicotti?,0 -6568,What is the name of the US Acres episode following the Garfield episode titled Robodie II?,0 -6569,what is the 2nd garfield episode for garfield episode 1 twice told tale,0 -6570,what is the 2nd garfield episode where u.s. acres episode is the orson awards,0 -6572,what is the original airdate for garfield episode 2 the wise man,0 -6573,what is the 2nd garfield episode where u.s. acres episode is the bunny rabbits is coming!,0 -6574,which episode had garfield episode 1 ship shape,0 -6575,Which Garfield episode 2 has Garfield episode 1 as the first annual Garfield watchers test?,0 -6576,What is the original air date of the u.s. acres episode who done it?,0 -6577,Which episode in Garfield episode 1 is the worst pizza in the history of mankind?,0 -6579,"Which u.s.acres episode has ""show 79"" as the episode?",0 -6581,what is the garfield episode where us acres episode is banana nose?,0 -6582,what is the original airdate for shell shocked sheldon?,0 -6583,What is episode 2 for Robodie?,0 -6584,"What are the episodes for ""Crime and Nourishment""?",0 -6585,"What is the garfield episode 2 when episode 1 is ""change of mind""?",0 -6586,"What is the title of garfield episode 2 when ""the horror hostess (part 1)"" is episode 1?",0 -6587,"What is the name of episode 2 for garfield when episode 1 is ""suburban jungle""?",0 -6588,"What is episode 2 of garfield when episode 1 is ""the horror hostess (part 1)""?",0 -6590,Name the tourism receipts 2003 for colombia,0 -6592,When classic hits 102.1 cjcy is the branding who is the owner?,0 -6593,When hot adult contemporary is the format what is the call sign?,0 -6596,When vista radio is the owner what is the frequency? ,0 -6597,Name the team for 5 september 2008 for date of vacancy for 30 august 2008,0 -6598,Name the date of vacancy for daniel uberti,0 -6599,Name the manner of departure for date of vacancy 25 august 2008,0 -6600,Name the date of vacancy for 29 december 2008 being date of appointment,0 -6602,When arthur heinemann is the writer who is the director?,0 -6603,Name the running with for elizabeth falco,0 -6604,Name the officing running for for carol marsh,0 -6605,Name the office running for for anthony mussara,0 -6606,"Name the votes given for michael russo, genevy dimitrion , manny ortega",0 -6607,What was the loa when the corrected time was 2:12:36:23?,0 -6608,Qhat was the position of sail 6606?,0 -6609,On what yacht was the sail number aus70?,0 -6610,What was the corrected time of sail number aus70?,0 -6611,Who was the skipper for the vessel with a corrected time of 2:18:31:49?,0 -6612,Who was the skipper on a Nelson Marek 43?,0 -6615,What platform sold 11.18 million units?,0 -6616,What day did the platform sell 9.87 million units?,0 -6619,"If the winners from the previous round is 8, what is the round?",0 -6620,"If the round is the semi-finals, what are the new entries this round?",0 -6627,How many draws does 12 de Octubre have? ,0 -6632,When stacy schneider is the candidate what are the results?,0 -6633,Which township is 35.766 sqmi?,0 -6634,What county is the township of Osborn in?,0 -6635,What is the longitude with a latitude of 47.985154?,0 -6636,How many square miles of water is in Ramsey County with a geo id larger than 3807159460.0?,0 -6641,How big is the land in square miles of Grand Forks county?,0 -6643,What was the lattitude for the area with 4.243 square miles of water?,0 -6644,What township is 28.597 square miles of land?,0 -6645,Which township has a longitude of -98.741656?,0 -6646,What is the land (sqmi) in lansing township?,0 -6649,What is the land (sqmi) at geo id 3801947380?,0 -6652,What longitudes associated with a water (sqmi) area of 0.068?,0 -6654,What county is associated with ansi code 1759686?,0 -6656,What is the land area of Reed Township?,0 -6657,What is the township at longitude -100.680772?,0 -6660,What township is 34.781 square miles?,0 -6661,What longitude is tatman township?,0 -6662,What is the land area (sqmi) for the township at longtidue 47.548602?,0 -6664,What is the water area (sqmi) for the township at latitude 48.423224?,0 -6666,Name the township for kidder,0 -6667,Name the latitude for 3810536900,0 -6668,Name the latitude for 3809935740,0 -6670,"When houdet ( fra ) w 6-2, 6-1 is the quarterfinals what is the final/bronze medal match?",0 -6671,When in round of 16 it was did not advance what was it in round of 32?,0 -6672,"When scheffers ( ned ) l 3-6, 1-6 is the final/ bronze medal match what was the event?",0 -6673,When mixed quad singles is the event what is the final/bronze medal match?,0 -6674,When bas van erp was the athlete what was the quarterfinals?,0 -6675,What is the semifinal result for Dorrie Timmermans-Van Hall?,0 -6676,What is the round of 16 result for Jiske Griffioen Esther Vergeer?,0 -6677,"The semifinal score of vergeer ( ned ) l 0-6, 1-6 follows a round of 16 result of what?",0 -6683,When cristina peña garzon is the contestant what is the geographical region?,0 -6684,When 1.79 is the height what is the geographical region?,0 -6687,When el cibao is the geographical region and the height is 1.80 who is the contestant?,0 -6689,What is the 3rd place team for the year of 1955?,0 -6691,When mithuna is the international alphabet of sanskrit transliteration what is the ruling planet?,0 -6692,When Sagittarius is the wester name what is the sanskrit gloss?,0 -6695,When kumbha is the international alphabet of sanskrit transliteration what is the gloss?,0 -6696,When twins is the sankrit gloss what is the gloss?,0 -6697,"In the film Mrs. Miniver, what is the actresses name?",0 -6698,What year was Teresa Wright nominated best supporting actress?,0 -6699,What category was the movie Working Girl nominated?,0 -6700,Who was nominated for best supporting actor in the movie Going My Way?,0 -6701,When in 2003 to 2004 the January team is 5.7 what is it through 2001 through 2002?,0 -6702,When through 2005 to 2006 it is 5.4 what team is it?,0 -6703,When through 2006 to 2007 the duration of one quarter is 3.4 what is it through 2007 to 2008?,0 -6704,When through 2005 to 2006 the duration of the academic year is 5.3 what is it through 2000 to 2001?,0 -6705,When through 2001 to 2002 the duration is 0.5 what is the term abroad?,0 -6706,"Name the series number that aired on november 11, 1996",0 -6707,"Who wrote the episode originally aired on September 29, 1999?",0 -6708,"What is the name of the episode originally aired on September 29, 1999?",0 -6711,"What is the ethnic group that in 2001 had 117,513?",0 -6713,What was the percentage in 2006 when in 2001 was 66.9 %?,0 -6714,"If the rings is 58.975, what is the number for the horizontal bar?",0 -6716,"If the rings are 60.500, what is the parallel bars number?",0 -6719,When united kingdom is the country what is the most recent date?,0 -6721,When 12 is the rank who is the most recent cyclist?,0 -6723, Name the upper index kcal/nm3 for 62.47,0 -6724,Name the fuel gas for upper index mj/nm3 for 92.32,0 -6725,Name the lower index kcal/ nm3 for 61.32,0 -6726,What is the Quarterback rating of the player who got a comp percentage of 62.0?,0 -6727,What is the rank of the player who got 58179 in yardage?,0 -6728,In which league would you find the player with a comp percentage of 54.0?,0 -6729,Which nation is where rider phillip dutton from?,0 -6730,Which nation is where the horse parkmore ed is?,0 -6731,How many total team penalties are there when cross country penalties is 30.40?,0 -6732,Who is the rider where the horse is galan de sauvagere?,0 -6734,"What record label corresponds to the single ""I can't stay""?",0 -6735,What format for the release that had 2000 copies?,0 -6736,What single(s) released in 2008 and had 4000 copies?,0 -6737,"What were the ""other details"" (number released) for ""is my love will follow me""?",0 -6738,"What year was ""moped girls"" released?",0 -6739,"What were the ""other details"" (number released) for ""is my love will follow me""?",0 -6743,Name the wins for draws pk is 3/0,0 -6745,How many losses are there for team tembetary?,0 -6746,How many wins have 24 points?,0 -6748,What is the original air date of the episode directed by Ian Barry and written by Philip Dalkin?,0 -6750,Who directed the episode written by Matt Ford?,0 -6752,What is the original air date that had the wykeham wonderers as team 1?,0 -6753,Who was team 1 when the chalkheads were team 2?,0 -6754,What is the title of the production code 1acx09?,0 -6756,Who wrote the series number 14?,0 -6758,How many wins in the season he finished 33rd,0 -6761,"What is the average finish for winnings of $1,400?",0 -6764,"If Safari is 3.76%, what is the other Mozilla amount?",0 -6765,"If Firefox is 30.45%, what is the other Mozilla amount?",0 -6766,"If Internet Explorer is 47.22%, what is the Safari total?",0 -6770,"What is the production code for episode ""surgery""?",0 -6771,"What episode number in the series originally aired on February 25, 2001?",0 -6772,What is the name of the episode with the production code of 06-00-218?,0 -6773,What is the production code for episode 26 in the series?,0 -6774,What is the production code for episode 6 in the season?,0 -6775,what is the title no in season 2?,0 -6776,What date did Micky Adams vacate his position?,0 -6777,Which vacancy happened on 4 November 2008?,0 -6779,Which team appointed a person on 23 December 2008?,0 -6780,What date did the Milton Keynes Dons appoint?,0 -6781,Which vacancy occurred on 16 February 2009?,0 -6782,What is title of episode 06-02-407?,0 -6783,What is title of episode 06-02-406?,0 -6784,"What is title of episode aired on March 2, 2003?",0 -6785,Who wrote episode 74?,0 -6786,"Who wrote ""Academic Octathalon""?",0 -6787,Which position in the table is the team watford?,0 -6790,What was the place and how many people attended the game on July 11?,0 -6791,Who had the most assist and how many on July 26?,0 -6792,Who had the high assist in the game where the record is 13-11?,0 -6793,At what date did the 23rd manager vacate the position?,0 -6794,What was the date of appointment for the manager that replaced Simon Davies? ,0 -6795,What was the date of appointment for the manager of the 23rd team?,0 -6797,Which driver starts 3?,0 -6800,What is every TV network with a weekly schedule of Monday to Thursday @ 11:00 pm?,0 -6801,What is every country with a TV network of AXN India?,0 -6802,What is every weekly schedule in the country of Norway?,0 -6803,What is every TV network in Belgium?,0 -6804,What is every status with a weekly schedule of Monday to Thursday @ 11:00 pm?,0 -6805,What is every weekly schedule of TV network Viasat 4?,0 -6806,"How much was the prize money for rwe-sporthalle, mülheim ?",0 -6808,"How much does the champion get for stadthalle dinslaken, dinslaken?",0 -6809,what is [po 4 3− ]/[a] (%) where [h 2 po 4 − ]/[a] (%) is 94.5?,0 -6811,When by80607002529af is the part number and september 2009 is the release date what is the l2 cache?,0 -6812,When by80607002907ahbx80607i7720qm is the part number what is the socket?,0 -6813,When slblw(b1) is the sspec number what is the mult.?,0 -6814,When socketg1 is the socket what is the release price in dollars?,0 -6816,How many bills where originally cosponsored in those years where the total of all amendments cosponsored was 0?,0 -6817,How many bill cosponsored during those years where bills originally cosponsored is 113?,0 -6820,When 2/1939 is the withdrawn when was it built?,0 -6821,When river ness is the hr name what is the hr number?,0 -6826,What is the date when the opponent is the New England Patriots?,0 -6827,How many dates do the dolphins have 6 points?,0 -6828,What country does robert allenby represent?,0 -6829,What score to par won in 1998?,0 -6830,What player(s) had the score of 64-70-67-69=270?,0 -6831,What players had teh score of 64-71-67-67=269?,0 -6834,What is every GA if coach is Bob Ferguson and T is 6?,0 -6837,What is every league for coach Jim Burton?,0 -6839,What was the record of the game in which Dydek (10) did the most high rebounds?,0 -6840,Who did the most high rebounds in the game where Sales (17) did the high points?,0 -6841,When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)?,0 -6842,When 01:18 is the total footage remaining from missing episodes (mm:ss) and bbc is the source what is the country/territory? ,0 -6843,When 00:21 is the total footage (mm:ss) what is the serial?,0 -6844,When episode 4 is the missing episode with recovered footage and the 032 is the story number what is the country/territory?,0 -6845,When 00:02 is the total footage (mm:ss) what is the story number?,0 -6847,Name the opponent for record 10-4,0 -6848,Name the high rebounds for record 7-1,0 -6849,Name the game for june 16,0 -6850,Name the game for june 7,0 -6851,Who did the high rebounds in the game with a 19-6 record?,0 -6852,"Where was the game with a 13-5 record played, and in front of how many people?",0 -6853,Who did the high rebounds in the game where Douglas (28) did the high points?,0 -6854,What was the record on the game played on July 1?,0 -6856,What was the career duration of the bowler who played 60 matches?,0 -6857,What is the Best score if the Maidens is 547 and Overs is 2755.1?,0 -6858,What was the Overs score of the career played from 1993-2007?,0 -6859,What was the Best score during the game played from 1971-1984?,0 -6860,When dydek (11) has the highest rebounds what is the date?,0 -6861,When mcwilliams-franklin (8) has the highest rebounds what is the date?,0 -6862,When dydek (8) has the highest rebounds who has the highest amount of points?,0 -6863,When w 73-70 is the score what is the location?,0 -6864,What was the score in the game that had a record of 25-8?,0 -6867,Where was the game played that had a record of 19-6?,0 -6871,When mount wondiwoi is the peak what is the island?,0 -6872,When mount gauttier is the peak what is the island?,0 -6875,When 44 is the col in meters what is the country?,0 -6876,Name the release date for album # 2nd,0 -6877,Name the label for grown up overnight,0 -6878,Name the label for traditional chinese 情歌沒有告訴你,0 -6880,Name the chinese traditional for 美丽人生,0 -6881,Name the english title for album # 2nd,0 -6883,What are the producers of 磊磊牌嬰幼兒配方乳粉 ?,0 -6885,Who is the producer of 金必氏牌嬰幼兒配方乳粉 ?,0 -6886,How many live births per year are there in the period where the life expectancy for females is 73.3?,0 -6887,What's the CDR for the period where the life expectancy is 61.5?,0 -6888,What's the IMR for the period with a life expectancy of 69.3?,0 -6889,What's the CBR for the period with 1 058 000 deaths per year?,0 -6890,How many births per year are there for the period with 998 000 deaths per year?,0 -6891,What's the TFR for the period with NC of 13.4?,0 -6896,what ae all of the brazil 100% where the age group is 15-17?,0 -6897,"If the just ratio is 11:8 and the cents size is 560, what is the interval name?",0 -6898,"If the just cents is 84.46, what is the just ratio?",0 -6899,"If the just cents is 701.96, what is the interval name?",0 -6901,Name the % indian american for asian population 126965,0 -6902,Name the % asian american for 23526,0 -6904,When 1233 is the population of 2011 what is the land area in kilometers squared?,0 -6908,When 14.85 kilometers squared is the land area what is the name?,0 -6909,What is every state and District of Columbia with 60.0% overweight or obese adults?,0 -6910,What are all percentages of overweight or obese adults for obesity rank of 21?,0 -6913,What is every percentage of overweight or obese adults when 12.4% of children and adolescents are obese?,0 -6914,Who directed the film Gomorra?,0 -6915,What language was spoken in Everlasting Moments?,0 -6916,What is the original title of the film submitted by Greece?,0 -6917,Who directed the film Nuits d'arabie?,0 -6918,What is every value for population (2006) with a Romanian mother tongue?,0 -6922,What is every value for percentage(2006) with a Polish mother tongue?,0 -6923,Which team/s have 48 goals total?,0 -6924,Who was the contestant eliminated on episode 8 of RW: Key West season?,0 -6925,Who was the female contestant on the Original season of Fresh Meat?,0 -6926,What was the gender of the contestant on RR: South Pacific season?,0 -6927,What was the season where Evelyn Smith was on?,0 -6929,Who is the Original west end performer for the character Martha?,0 -6930,Who is the original broadway performer for the character Colin Craven?,0 -6931,Who is the original west end performer for the character Neville Craven?,0 -6932,"Who is the 2005 World AIDS Day Benefit ""Dream"" Cast when the Original Australian performer is Susan-Ann Walker?",0 -6933,Who is the Original Australian performer when the Original West End Performer is Linzi Hateley?,0 -6935,Name the country for hideki noda category:articles with hcards,0 -6937,Name the points for thierry tassin category:articles with hcards,0 -6939,Name the lg for ermengol,0 -6940,Name the nat for total apps for 27,0 -6942,Name the player for l apps is 27,0 -6943,What are all the countries where the electric company Ebisa has a presence?,0 -6945,What are the electric companies drawing power from Itaipu?,0 -6946,what will the population of Asia be when Latin America/Caribbean is 783 (7.5%)?,0 -6947,what will be the population of Europe when Northern America is 482 (4.7%)?,0 -6949,what will be the population of Africa when Oceania is 67 (0.6%),0 -6953,What is the result in the final versos Jennifer Capriati?,0 -6955,"What tournament did she win with a final score of 4–6, 7–5, 6–2?",0 -6958,When winner is the status and 77 is the total days in pbb house what is the edition?,0 -6960,WHen joaqui mendoza is the name how long is the duration?,0 -6962,When 3t7458 is the production code who are the writers?,0 -6963,When there are 3.39 million u.s viewers what is the production code?,0 -6964,When 3t7461 is the production code who is the director?,0 -6965,What was the score at the end of the match number 4?,0 -6968,What was the score when Tore Torgersen played for Team Europe?,0 -6969,Name the launch date for duration days 174.14,0 -6970,What is the 1st place when Pennsylvania finished 2nd place?,0 -6971,What is the 2nd place when Virginia finished in 1st place?,0 -6974,Who was in 4th place when Missouri finished in 3rd place?,0 -6975,When tim mack is on team usa what is the progressive total?,0 -6978,in the year 1998/99 what was the league,0 -6979,in the year 1995/96 what was the reg. season,0 -6980,in what playoffs the league was in the semifinals,0 -6981,what was the year where in the playoffs was champions,0 -6982,what where the playoffs where the avg attendance of the team was 3416,0 -6983,when did the club Citizen achieve its last top division title?,0 -6985,When interplanet janet is the episode title who is the music by?,0 -6986,WHen jaime aff and christine langner are the performers what is the subject?,0 -6987,If skeletal system is the subject when was it first aired?,0 -6989,What's the amount of winnings (in $) in the year with 2 wins?,0 -6991,In what year did the #14 FitzBradshaw Racing compete?,0 -6992,What's the average finish in 2008?,0 -6994,What is the date for the episode performed by Sue Manchester?,0 -6995,Who is the music by for episode the Elbow Room?,0 -6996,What is the name of the episode performed by Essra Mohawk,0 -6997,When five is the new channel what is the date of original removal?,0 -6998,When bbc two is the original channel what is the date of original removal?,0 -6999,When bbc two is the new channel what is the date of return?,0 -7000,What's team #2 in the round where team $1 is Ilisiakos?,0 -7001,What's the team #2 in the round where team #1 is Iraklis?,0 -7002,What's the 1st leg result in the round where team #1 is Iraklis?,0 -7003,What's the 2nd leg result in the round where Panionios is team #2?,0 -7004,What's the 2nd leg result in the round where team #1 is Iraklis?,0 -7006,Which frequency is station wlfv-fm?,0 -7007,Which station has the frequency of 107.3?,0 -7009,What is the dma of branding is big oldies 107.3 with the station warv-fm?,0 -7010,Which branding has the format of southern country?,0 -7012,What is the meaning of a gentle personality?,0 -7013,Who in the family has a gentle personality?,0 -7014,Which mission number has alternate name 1962-f01,0 -7015,What are the notes of the satellite whose nssdc id number is 1959-002a?,0 -7016,What are the alternative name/s of those satellites whose nssdc id number is 1970-054a?,0 -7017,What are the alternative names of those satellites where the notes are: mission failed. guidance system failed. no orbit.,0 -7018,"If -750m is 46.436, what is the name of the cyclist? ",0 -7019,What is the -500 number for Theo Bos?,0 -7020,"If the -250m is 18.852, what is the ",0 -7022,Where are there 25 episodes in Catfights and Brawls?,0 -7023,Name the missouri for 2002,0 -7025,What's the London borough with 7797 Pakistani citizens?,0 -7027,What's the Chinese population in the borough with 26347 Pakistanis?,0 -7030,How many members did Africa have the year that Australia had 94615?,0 -7031,How many members did Europe have the year that America had 403892?,0 -7037,What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz?,0 -7038,What are the notes recorded for the model HIS HD4850 (512MB)?,0 -7039,"Who directed ""Fever""?",0 -7040,"What is the original air date of ""Cursed""?",0 -7041,"What is the original air date of ""Prophecy""?",0 -7042,"Who wrote the episode ""Confession""?",0 -7043,What is the title of episode number 14?,0 -7044,"If the net worth of fixed assets is 621, what is the current ratio?",0 -7045,Name the score for opponent of cleveland,0 -7048,What was the B.P. of club Halifax?,0 -7051,Who was her partner at the US Open and they were runner-up?,0 -7052,Who was her partner at the US Open and they were runner-up?,0 -7053,Who did she play with on clay?,0 -7055,which championship had arantxa sánchez vicario todd woodbridge as opponents in the final ,0 -7056,"what is the surface of the final which had score 6-2, 6-3",0 -7057,when were helena suková todd woodbridge the opponents in the final,0 -7058,"which championship had helena suková tom nijssen as opponents in the final and nicole provis as partner, the surface was hard and the outcome was winner",0 -7059,when was the last performance of the first performance on 11/15/1909,0 -7061,who was the performer that did last performance on 04/08/1963,0 -7062,what is the first performance of the last performance on 03/29/1957,0 -7063,what is the last performance of leon varkas category:articles with hcards,0 -7066,How was the episode seen by 2.26 million HK viewers ranked?,0 -7067,What is the finale number ranked at number 7?,0 -7068,What is every conflict in Iraq?,0 -7069,What is every branch involved in Afghanistan?,0 -7070,Which conflicts took place in Yemen?,0 -7072,"When did the title ""secret weapons"" originally air?",0 -7073,How many u.s. viewers (million) have the number 16?,0 -7074,"What is the production code of the title ""secret weapons""?",0 -7075,How many u.s. viewers (million) have the production code of 5.09?,0 -7077,"When 312 is of which currently forests, km² what is the land formation? ",0 -7078,"When did the episode titled ""The Fashion Show"" air for the first time?",0 -7080,What's the series number of the episode seen by 2.43 million viewers in the UK?,0 -7083,Name the production code for viewers for 1.69,0 -7084,whare are al of the launche dates where th carrier is orange and the up is 5.76 mbit/s,0 -7085,"With the country of Sweden and the result is out, what is the song?",0 -7086,"If the English translation is hello girl, what was the language?",0 -7087,What was the connection speed when launched on 07.06.2005?,0 -7088,"When the carrier is idc, what are the frequencies?",0 -7091,Name the 2 car sets for 622 ,0 -7095,What is the code name of the OS with Kernel version 2.6.27?,0 -7096,When was the release date of the operating system with kernel version 2.6.31?,0 -7097,What is the status of the desktop version of the OS with kernel version 2.6.31?,0 -7099,Name the % for core moldova being 4.36%,0 -7100,Name the % for total being 57613,0 -7101,Name the total for % core moldova for 4.36%,0 -7102,What was the waveform of the encoding with a bit rate of 6.203?,0 -7103,What was the informational CVBS Lines of the encoding with max character of 32 and has B (global) standard?,0 -7106,"With U.S. viewers of 9.32 million, what is the production code?",0 -7108,How many millions of viewers were there for number 6?,0 -7109,Name the after tax income for percentage of income kept being 40.6%,0 -7110,Name the taxes from brqacket for percentage of income kept being 73%,0 -7113,Who is team 1 when team 2 is koper?,0 -7116,How many tie no have team 1 as borac banja luka?,0 -7117,What's the language in the school teaching grades 4-12?,0 -7118,What's the language of the school founded in 1949?,0 -7119,What's the language of the school that teaches grades 4-12?,0 -7120,What's the gender of the students taught in the school founded in 1894?,0 -7121,What's the language of classes in the school founded in 1874?,0 -7126,What is the national cup statistics when the Championship is 21 app / 6 goals?,0 -7128,Where did Grzegorz Walasek place 4th?,0 -7129,"Who came in 3rd place in Krško , Slovenia Matije Gubca Stadium",0 -7131,What caused the collapse of the Mausoleum at Halicarnassus?,0 -7132,How was the Temple of Artemis at Ephesus destroyed?,0 -7133,Who came as a replacement in Sheffield United?,0 -7134,When was the new manager of the team on 21st position appointed?,0 -7135,What was Gary Megson's manner of departure?,0 -7136,When did the old manager vacate his position in Plymouth Argyle?,0 -7138,Name the class 1-200 for university of hertfordshire for university of warwick,0 -7140,Name the class 3 for silverstone rmit university,0 -7141,"When 4th, great lakes is the regular season what is the league?",0 -7143,When it's the 2nd round of the open cup what is the playoffs?,0 -7144,What league has an average attendance of 1452?,0 -7145,"What year at the US Open Cup quarterfinals, were the playoffs in the semifinals for the USL second division?",0 -7147,Name the title directed by charles beeson by jeremy carver,0 -7148,Name the directed by for production code for 3t7509,0 -7149,"What's the season number of the episode originally aired on October 14, 2008?",0 -7150,"What's the title of the episode originally aired on September 23, 2008?",0 -7152,What's the title of the episode with production code 10018?,0 -7153,How many millions of people in the US saw the episode with season number 1?,0 -7154,"How many places has the rank changed since 2006, for Clane? ",0 -7155,In what counties is the 2011 population 17908?,0 -7156,In what urban area is the 2011 population 21561? ,0 -7158,Which urban area has a 2011 population of 5010? ,0 -7159,what were the result in semifinals when saengsawang ( tha ) l 9-15 was in 1/8 finals?,0 -7160,wich were the events when bout 2 was zhang ( chn ) l 0-5?,0 -7161,Which were the bout 1 when the bout 5 was andreev ( rus ) w 5-2?,0 -7162,"when Sanchez ( esp ) w 5-0 were the bout 6, which were the class?",0 -7166,Which QB had a rating of 72.3?,0 -7171,what is the play-off in group stage 4 and clubs is 12,0 -7173,which club in group stage 4 had member association iran,0 -7174,who write the episode that have 14.39 million viewers,0 -7176,who directed the episode that have 14.59 million viewers,0 -7177,who write the episode 5 in no. in season,0 -7178,How many clubs are there in the Korea Republic?,0 -7183,What is the house colour associated with the house name of Kupe?,0 -7185,what is the title of the episode where b b is 20/16,0 -7187,How many division titles are there when the win pc is .558?,0 -7188,How many villages are there in the Magway region?,0 -7192,How many seasons for Monaco?,0 -7193,Who is the competitor from France with 10 starts?,0 -7195,When portsmouth is the city of license who is the licensee?,0 -7196,When 790 am is the frequency what is the format?,0 -7197,When 90.7 fm is the frequency who is the licensee?,0 -7201,"How many current drivers, as of March 20, 2010 does Denmark have?",0 -7203,Where was the season that ended on June 25 located?,0 -7204,When did the season that end in July ? start?,0 -7205,When did the season with 1 team format premiere?,0 -7206,What's the format of the season that ended on June 25?,0 -7207,What's season 3's premiere date?,0 -7208,When did the season located in the Netherlands premier?,0 -7209,Name the viewers for the episode directed by tony phelan,0 -7210,Name the original air date for 15.74 viewers,0 -7211,Name the title for us viewers being 18.29,0 -7212,Name the platforms for cityengine,0 -7213,Name the license for e-on vue,0 -7215,Name the license for 2009-05-25 v 7.61,0 -7217,Name the application for caligari corporation,0 -7219,What was the production format for the series with the local title Fort Boyard: Ultimate Challenge?,0 -7220,What were the television air dates for the series that had a production start date of June 16?,0 -7223,Name the week number for the beatles,0 -7224,Name the result for 1980s,0 -7225,Name the order number for 1960s,0 -7226,Name the result for dolly parton,0 -7227,Name the song choice for michael jackson,0 -7230,What was the original air date of the episode written by Michelle Offen?,0 -7231,What is the title of the episode written by Vanessa Bates? ,0 -7232,"What was the original air date for the episode Calle, The Transit of Venus? ",0 -7233,What is the completion percentage when yards per attempt was done by Steve McNair : 2003?,0 -7234,What rank has a rating of 146.8? ,0 -7235,How many yards per attempt were there when total yards were 513?,0 -7238,What is the title for the episode that written by Michael Miller?,0 -7239,"If the playoff berth is 17, what is the AFC championship number?",0 -7243,What was the draw for the english meaning Eyes that Never Lie?,0 -7245,"Who was the artist for the origin Shake it, Europe?",0 -7247,What is the arena capacity of the arena in the town whose head coach is Roberto Serniotti?,0 -7248,Who are the foreign players on team/s that play in Moscow?,0 -7249,What are the previous season ranks of teams whose website is www.novavolley.narod.ru?,0 -7253,What is the indoor number for the NJ wing/ ,0 -7255,What is the winning span of the name martin kaymer?,0 -7256,What is the winning span in the country of England with the name of paul casey?,0 -7257,What is the winning span for the name of bernard gallacher?,0 -7258,What is the winning span with the rank of 5?,0 -7261,What was the venue for the match on October 10? ,0 -7262,Who was the man of the match when the Rockets won by 9 wickets? ,0 -7263,Name the vacator for wisconsin 1st,0 -7264,Name the successor for pennsylvania 15th,0 -7265,Name the circuit for #47 orbit racing ,0 -7266,Name the gt2 winning team where lmp2 winning team and butch leitzinger marino franchitti ben devlin,0 -7267,Name the lmp 1 winning team for rnd being 2 and adrian fernández luis díaz,0 -7268,Which capitals have an area of exactly 377930 square km?,0 -7270,What capital has a population of exactly 1339724852?,0 -7272,What are all values for the male population in 2001 with a growth rate in 1991-01 of 36.16?,0 -7274,What are all values for male population in 2001 when sex ratio in 1991 is 896?,0 -7275,What is every growth rate in 1991-2001 when sex ratio in 2001 is 937?,0 -7276,What districts of Bihar have a sex ratio in 1991 of 864?,0 -7277,How many marriages between women have % same-sex marriages of 1.06?,0 -7278,What is the % of same-sex marriages for the year of 2011?,0 -7281,When was the episode number 2 originally aired?,0 -7282,"When was the episode titled ""The Parachute of Healing"" originally aired?",0 -7283,"Who was the writer of the episode titled ""The Parachute of Healing""?",0 -7285,What was the margin of victory of Steve Stricker as a runner up?,0 -7286,How many to par has the winning score of 69-66-68=203.,0 -7289,What horses does r. a. Scott own?,0 -7291,Which handicap has the horse knowhere?,0 -7292,What colors does David Langdon use?,0 -7293,"If the film title nominated is Baran, what was the result?",0 -7294,"For the Persian Title میم مثل مادر, what were the results?",0 -7295,"For the Persian title گبه, What was the film title used for the nomination?",0 -7296,What year had an Allison B400R transmission and a model of BRT?,0 -7297,What is the fleet number when the length (ft) is 30?,0 -7298,What is the fleet number when the transmission is Voith D863.4 and the engine is Cummins ISL?,0 -7299,Which year had a transmission of Voith D863.4 and a Cummins ISM engine?,0 -7300,Name the college/junior club team for ian turnbull,0 -7301,Name the position for nhl team being los angeles kings,0 -7302,Name the nhl times for jeff jacques,0 -7303,Name the college/junior club team for john campbell,0 -7306,What's the NHL team that drafted the player from Sudbury Wolves (OHA)?,0 -7309,What's the nationality of the player coming from Edmonton Oil Kings (WCHL)?,0 -7310,What's Steve Langdon's naitionality?,0 -7311,"When michigan technological university (ncaa) is the college, junior, or club team what is the nationality?",0 -7312,"When kitchener rangers (oha) is the college, junior, or club team team who is the player?",0 -7314,"When kitchener rangers (oha) is the college, junior, or club team what is the position?",0 -7316,What nationality for neil korzack?,0 -7317,Name the college that has 10000 enrolled,0 -7322,which country did stary get 17.41%,0 -7324,where did hancock get 3.09%,0 -7325,What is the BBM when the strike rate is 42.2?,0 -7326,What is the economy when the strike rate is 54.0?,0 -7328,What is the BBM when the strike rate is 42.2?,0 -7330,What is the strike rate when there are 17 wickets?,0 -7332,What is the LGA name where the 2006 census population is bigger than 425208.9417698913 and administrative capital is port harcourt?,0 -7333,What is the administrative capital of LGA name Akuku-Toru?,0 -7334,What is the administrative capital that has a 2006 census population of 249425?,0 -7338,What's the type of the school whose students are nicknamed Chargers?,0 -7339,"When was the school in Philadelphia, Pennsylvania founded?",0 -7342,How many candidates were there in the year of 1987?,0 -7345,"when standard speed (6th gear) is 88, what is the rpm?",0 -7346,What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75?,0 -7348,When the standard torque (lb/ft) is 11.53 how much does more is the modified hp?,0 -7349,"Which time slot did the season finale on May 18, 2004 hold?",0 -7350,how many assists did the player who played 195 minutes make,0 -7353,how many times did debbie black block,0 -7355,how many assists did the player who scored 251 points make,0 -7356,What was the production number of the episode filmed in aug/sept 1968?,0 -7357,"Who directed ""report 2493:kidnap whose pretty girl are you""?",0 -7358,"When was ""report 4407: heart no choice for the donor"" filmed?",0 -7360,"When did the school from Logan Township, Pennsylvania join the Conference?",0 -7361,When was the private/non-sectarian school founded?,0 -7362,Where is the school whose students are nicknamed Panthers located?,0 -7366,"What's the isolation of the mountain peak with a prominence of 1340.549 = 4,397feet 1,340m?",0 -7368,"What's the isolation of the mountain peak with an elevation of 2705.793 = 8,875feet 2705m?",0 -7369,"What's the isolation of the mountain peak with prominence of 1340.549 = 4,397feet 1,340m?",0 -7370,How many steals did Nicole Levandusky make?,0 -7374,How many assists did Delisha Milton-Jones make?,0 -7376,Name the fa cup apps for arthur morton,0 -7377,Name the position for billy price,0 -7379,Name the nation where jeff barker is from,0 -7380,Name the fa cup apps for george green,0 -7381,Name the school that was founded in 1950,0 -7383,Name the location for eagles,0 -7384,Name the enrollment for 2007-08,0 -7387,Name the further cities for slovakia and west direction,0 -7388,Name the distance from north,0 -7390,Name the further cities for east romania,0 -7392,What's the nickname of the students of the school founded in 1933?,0 -7395,What is the type of the school whose students' nickname is tigers?,0 -7396,What's the type of the school whose students' name is spirits?,0 -7397,"What school is located in Chestnut Hill, Massachusetts?",0 -7398,"What type is the school located in Macon, Georgia?",0 -7399,"What's the nickname of the school in Maryville, Tennessee?",0 -7400,Where is the school with nickname Tigers located?,0 -7401,What's the nickname of the students of the school that joined the Conference in 2010?,0 -7402,When was Daniel Webster College founded?,0 -7403,Where is Southern Vermont College located?,0 -7404,In what year did the school with enrollment of 650 leave?,0 -7408,Name the institution for statesmen,0 -7409,Name the institution for yellowjackets,0 -7410,Name the type for hobart college,0 -7411,Name the location for 1829,0 -7412,Name the location of statesmen,0 -7413,"What location was the congressional service of which the term ended in January 3, 2011?",0 -7414,"What branch was involved when the term began in January 3, 1985?",0 -7415,"What year was the congressional service elected for a term beginning on January 3, 1989?",0 -7416,"What group was in office when the term ended in January 3, 1993?",0 -7419,What couple had vote percentage of 21.843%?,0 -7421,What couple had less than 2.0 points from the public?,0 -7425,"For couple Todd and Susie, what was the vote percentage?",0 -7426,When 9 is the rank who are the couple?,0 -7429,When 8 is the public what are the results?,0 -7431,Name the karen when nicky is 2.5,0 -7432,What is the capacity for the school that has the Owl Athletic Complex baseball stadium?,0 -7433,What is the name of the softball stadium for the school that has Eastern Baseball Stadium?,0 -7434,What is the name of UMass Boston's softball stadium?,0 -7435,What is the name of Rhode Island College's softball stadium?,0 -7437,What is the name of the baseball stadium for the school with the Murray Center basketball arena?,0 -7438,Where is the Westfield State University located?,0 -7439,"When was the school in Salem, Massachusetts located?",0 -7440,What's the nickname of Westfield State University's students?,0 -7441,What's Fitchburg State University's LEC sport?,0 -7442,Where is the school whose students are nicknamed falcons located?,0 -7443,What's Salem State University's primary conference?,0 -7444,Name the incumbent for north carolina 9,0 -7446,Name the incumbent for sue myrick (r) 69.0% jeff doctor (d) 31.0%,0 -7447,Name the result for north carolina 7,0 -7448,Name the incumbent for north carolina 9,0 -7451,"What's the type of the school in New London, Connecticut? ",0 -7453,"What school is located in Worcester, Massachusetts?",0 -7454,Who are the candidates in Florida 13 district?,0 -7456,Who were candidates in Florida 10 district?,0 -7457,What party got elected in Florida 9 district?,0 -7460,What incumbent was first elected in 2009?,0 -7461,How many were first elected in California 7?,0 -7462,What district did George Miller belong to?,0 -7463,When mark critz (d) 50.8% tim burns (r) 49.2% are the candidates what is the party?,0 -7464,When chris carney is the incumbent what are the results?,0 -7465,When 1994 is the first elected what is the district?,0 -7466,When pennsylvania 3 is the district who is the incumbent?,0 -7467,When 1984 is the first elected who are the candidates?,0 -7468,What is Salva Ortega's result?,0 -7469,"How many televotes are there for ""Lujuria""?",0 -7470,How many televotes are there where there is 4 jury votes?,0 -7471,How many jury votes for the televote of 7?,0 -7472,What is the result for Normativa Vigente?,0 -7473,What song has 24 votes?,0 -7475,How many votes does Carlos Ferrer Eai have?,0 -7477,Who won the French Open in 1999?,0 -7478,Who won the US Open in 1937?,0 -7482,Name the total for jamie carragher,0 -7485,What's the English name of the county called 太湖县 / 太湖縣 in Chinese?,0 -7486,What's the English name of the county with a postcode 246400?,0 -7487,What's the Chinese (simplified/traditional) name of Susong County?,0 -7488,What's the Pinyin name of the county with a postcode 246500?,0 -7492,Who was game number 8 played against?,0 -7493,Who did the high rebounds in the game in which five players (3) did the high assists?,0 -7494,What are all the conjugated forms of the verb where the el/ ella/usted verb is piense?,0 -7495,What are all the conjugated forms of the verb moler where the vosotros / vosotras is moláis for the yo tense?,0 -7497,What us the conjucated form(s) of el/ella/ usted when the Vos (*) is muelas / molás?,0 -7498,What are the forms of the conjucated vos(*) where él / ella / usted is muela,0 -7500,What kind of vehicle is the agra 1050?,0 -7505,Who was the game on July 12 played against?,0 -7506,What was the record in the game where McWilliams (8) did the most high rebounds?,0 -7507,Who was the game on July 7 played against?,0 -7508,what is the owner of the callsign wliw,0 -7510,what is the virtual callsign if is wnet,0 -7511,what is the name of the branding where the virtual is 13.1,0 -7513,Name the party for bensalem,0 -7516,What was the result for the contestant whose background was as a business major?,0 -7517,What was the background of the contestant whose result was 11th place?,0 -7519,What was the result for the contestant who was a small business owner? ,0 -7520,What team was the contestant who finished in 10th place originally on? ,0 -7521,What is the hometown of the contestant whose background is as a financial consultant? ,0 -7524,What is the name of the episode with a night rank of 9?,0 -7525,"If the amount of viewers is 5.14 million and the rating/share is 2.0/6, what is the ranking?",0 -7526,"For cities with a census of 74000 in 1920, what was their census in 1890?",0 -7527,"For cities with a census of 296000 in 1940, what was their census in 1920?",0 -7530,Name the writers for swedish sailor,0 -7533,Name the principal of Northfield Junior-Senior High School.,0 -7534,What is the name of the school/s in North Manchester?,0 -7535,Name the school/s with is size of 604.,0 -7536,What is the IDOE Profile in North Manchester?,0 -7537,What are the grades served at Manchester Junior-Senior High School?,0 -7541,Who is the winning driver when rd. is 3?,0 -7543,Which report is where rd. is 9?,0 -7544,Who held the fastest lap in the race in texas and dario franchitti is the winning driver?,0 -7547,"Who animated ""Science Friction""",0 -7548,"What is the air date of ""Rah Rah Bear""?",0 -7550,What is the Pixie and Dixie skit in episode 7?,0 -7551,What is the Yogi Bear that aired on 1959.12.21?,0 -7552,"From brand Yes! FM 101.1, what was the frequency?",0 -7553,"If the branding is Yes! FM 91.1 Boracay, what is the power?",0 -7554,"If the call sign is DXYR, what is the branding?",0 -7555,When divisional semifinals are the playoffs what is the year?,0 -7556,When divisional finals are the playoffs what is the regular season?,0 -7558,When final is the open cup what is the league?,0 -7559,When 1995 is the year what is the open cup?,0 -7564,Where is the ballpark of the Twins?,0 -7567,Which flag was on the Green Marine's boat?,0 -7568,Who build the boat where Ken Read was the skipper?,0 -7570,Who were the builders of the boat designed by Botin Carkeek?,0 -7573,When did the episode with the Ririe family air for the first time?,0 -7574,Where was the episode with series number US9 filmed?,0 -7576,What family was featured in episode us14 of the series?,0 -7580,What episode in the series was the Amaral family featured?,0 -7581,Who is the round winner when entrant is craven mild racing?,0 -7582,Who is the round winner of the wanneroo park circuit?,0 -7583,Which circuit has two heats as the format?,0 -7584,Name the original air date for the potter family,0 -7586,where was the abbas family and the pickering family located,0 -7587,in which class is the position forward,0 -7588,in which season the position was center,0 -7589,in which class was the ohio state university,0 -7592,Name the family for uk31,0 -7595,Name the air date for uk17,0 -7596,Name the family/families uk17,0 -7598,What number truck is owned by Stephen Germain?,0 -7599,What team is sponsored by d3 Outdoors?,0 -7601,Who is the primary sponsor for crew cheif Rick Ren's team?,0 -7602,Who sponsors owner Bobby Dotter's team?,0 -7603,What's the price of the team whose captain is Sanath Jayasuriya?,0 -7604,What team is from the Eastern province?,0 -7605,Who's the head coach of the team with a price of $3.22 million?,0 -7607,What province does the Ruhuna Royals team come from?,0 -7608,When was Alexey Kuleshov born?,0 -7609,What is the trigger pack on the Colt 602 with the a1 rear sight type? ,0 -7611,What is the rear sight type on the model with the acr muzzle brake device? ,0 -7612,Which muzzle devices are on the Colt 603? ,0 -7613,How many millions of people in the US watched the episode with season number 8?,0 -7617,Name the winner for jason byrne,0 -7618,Name the rufus guest for episode 1x07,0 -7619,Name the winner for 26 january 2009,0 -7620,When was episode 2x11 aired for the first time?,0 -7621,Who won the episode in which Sean Lock was Rufus's guest?,0 -7622,When was the episode 2x10 aired for the first time?,0 -7623,Who was Marcus's guest in the episode when Rufus's guest was Rory McGrath?,0 -7625,Name the timeslot for 9.4 viewers for 2006,0 -7627,What was the author/editor/source when the l.a. ranking was 1st?,0 -7629,What was the publication year ranking l.a. is 1st?,0 -7631,What Wireless LAN had a process technology of 90nm and a Carmel centrino?,0 -7632,How many series had the chipset of the Intel Centrino Ultimate-N 6300 wireless LAN with the codename Arrandale?,0 -7633,What's the process technology of the Intel WiFi Link 5100 wireless LAN?,0 -7634,What type of processor does the Intel Centrino Wireless-N 105 wireless LAN have?,0 -7635,What's the code name of the wireless LAN with Chief River Centrino?,0 -7637,what is the registration located on 31 january 1975 where first flew?,0 -7638,at what location is the last flew on 11 june 2000,0 -7640,Who is the television commentator when the radio commentator is Galyna Babiy?,0 -7641,Who is the television commentator when the spokesperson is Kateryna Osadcha?,0 -7643,Who is the television commentator for the year 2006?,0 -7644,What is the season number of the episode seen by 10.11 million people in the US?,0 -7646,"What's the series number of the episode titled ""Rapture""?",0 -7648,"If the language is only native, what is the percentage of the San Antonio de Lomerio municipality?",0 -7651,What is the municipality percentage for San Antonio de Lomerio is San Javier municipality percentage is 31?,0 -7652,"If the Cuatro Cañadas municipality percentage is 252, what are all the San Antonio de Lomerío municipality percentage?",0 -7653,What is the San Javier municipality percentage if the Cuatro Cañadas municipality percentage is 202?,0 -7657,When was the dvd release directed by Billy O'Brien?,0 -7658,What was the record after game 20?,0 -7659,"For the game against Iowa, who had the most assists?",0 -7660,state high assists on february 15,0 -7666,Name the torque for 1986,0 -7667,What network showed the season with Australia as the destination?,0 -7670,What was the destination of the season won by Anwar Syed?,0 -7671,What season was won by Anthony Yeh?,0 -7672,Who won the season with Africa as its destination?,0 -7673,What is the African Spoonbill when the Hadeda Ibis is the Brown Snake Eagle?,0 -7674,What is the Hadeda Ibis when the Ostrich is Dark Chanting Goshawk?,0 -7675,What is the African Spoonbill when the Hadeda Ibis is Flernecked Nightjar?,0 -7676,What is the Hadeda Ibis when the Knobbilled Duck is Pied Crow?,0 -7677,What is the African Spoonbill when the Ostrich is Brown-hooded Kingfisher?,0 -7678,What is the Hadeda Ibis when the Whitefaced Duck is Blacksmith Plover?,0 -7679,Name the winning pilot for hungary,0 -7681,Name the country for hannes arch,0 -7682,Who wrote the episode with series number 45?,0 -7683,How many millions of people in the US saw the episode with production code 214?,0 -7684,What's the title of the episode seen by 3.8 million people in the US?,0 -7685,"Who wrote the episode titled ""Mission gone bad"" ""Trapped in Paris""?",0 -7687,Name the date for value 55c,0 -7688,Name the scott for chloropsis hardwickii,0 -7690,"In 2010, how many people lived in cities with a population density of 3,965.02?",0 -7691,What's the name of the barangay whose area is 3.6787 km² ?,0 -7695,"What state does the representative whose mission was terminated on November 29, 1973 represent?",0 -7696,"Who trained the representative whose presentation of credentials happened on February 24, 1950?",0 -7697,When was the film Här har du ditt liv used in nomination?,0 -7698,What's the original title of the film Zozo?,0 -7699,What's the original title of The New Land?,0 -7701,Name the outcome for wimbledon,0 -7702,"Name the opponets for 6–4, 3–6, 6–2",0 -7704,Name the surface for australian open for winner,0 -7705,What's the highest scoring team in the round in Ring Knutstorp in which Polestar Racing is the winning team?,0 -7707,What was the first leg result in the round against Norchi Dinamoeli?,0 -7708,which vehicles got best time of day 1:17.17,0 -7712,which driver got best time of day 1:16.93,0 -7713,What is the amount of assists when mins is 744:27?,0 -7715,What is the points number when rebounds is 4.4?,0 -7716,Who is the team with the ft% of 77.6?,0 -7717,When did Austin Austin TX get the third place?,0 -7718,Who was the first runner up in the year when Mesa Mesa AZ was the consolation winner?,0 -7719,Who has a religion of United Methodist and a prior background of a Congressional Aide?,0 -7720,What horse had a starting price of 14/1 and weighted 10-7?,0 -7722,What horse has the number 25?,0 -7723,How much does Point Barrow weight?,0 -7724,What are Andrew McNamara's colors?,0 -7726,Who wrote episode number 48,0 -7728,What was the original title of 3.19?,0 -7729,"What was the production code for ""down to earth""?",0 -7730,How many numbers have the product code of 2.6?,0 -7733,When 1.12 is the production code what is the original title?,0 -7734,"When ""the postcard"" is the original title what is the production code?",0 -7736,state the winnings of yates racing front row motorsports where poles were 0,0 -7737,"which team(s) won $2,605,05",0 -7739,what is kannada name ಕನ್ನಡ of tamil name தமிழ் anusham அனுஷம்,0 -7740,what is the malayalam name മലയാളം of tamil name தமிழ் punarpoosam புனர்பூசம்,0 -7741,what is the telugu name తెలుగు of kannada name ಕನ್ನಡ utthara ಉತ್ತರ,0 -7742,what is the sanskrit of western star name arcturus,0 -7743,what is the malayalam name മലയാളം of sanskrit uttarāṣāḍha उत्तराषाढा,0 -7744,Name the traditional for area 544,0 -7745,Name the foochow for pingnan county,0 -7746,Name the pinyin for ciá-ìng-gâing,0 -7747,Name the traditional for 屏南县,0 -7748,Name the density for 古田縣,0 -7749,Name the english name for 福鼎市,0 -7750,What CFL team did Darcy Brown play for?,0 -7751,What CFL team did simeon rottier play for?,0 -7752,What college did étienne légaré play for?,0 -7753,What team was in position OL?,0 -7754,Who was the player for the CFL team hamilton tiger-cats (via bc via saskatchewan )?,0 -7757,What's the title of the audio book with story number 91?,0 -7758,When was the audio book with target number 069 69 released?,0 -7759,What's the format of the audio book titled The Mind Robber?,0 -7760,"who is the reader of the audiobook authored by cole, stephen stephen cole and released on 2008-11-13 13 november 2008",0 -7762,which companies released on 2010-11-04 4 november 2010,0 -7763,"which company released audiobooks authored by day, martin martin day",0 -7766,What player went to montreal college?,0 -7767,What player(s) drafted by the hamilton tiger-cats?,0 -7768,What position(s) drafted by the montreal alouettes?,0 -7769,"which company uses pinborough, sarah sarah pinborough?",0 -7770,who the reader of title department x?,0 -7772,"who is the reader on the download/cd format of the title written by author lidster, joseph joseph lidster? ",0 -7773,Name the landesliga mitte for fc gundelfingen and vfl frohnlach,0 -7774,Name the landesliga nord for freier tus regensburg,0 -7775,Name the landesliga nord for asv neumarkt,0 -7776,Name the landesliga mitte sv türk gücü münchen,0 -7777,Name the landesliga sud for sg quelle fürth,0 -7778,What's the oil rig of the song that ended on 7th place?,0 -7782,How many points did the song with a draw number 3 get?,0 -7783,"If the title is Paradox Lost and the reader is Briggs, Nicholas Nicholas Briggs, what are all of the notes?",0 -7784,"If the title is The Way Through The Woods, what is the release date?",0 -7785,"If the reader is Syal, Meera Meera Syal, what was the release date?",0 -7789,What is the result of the book title firelands?,0 -7790,Which year is the book title the ordinary?,0 -7791,Who is the publisher of the book titled daughters of an emerald dusk?,0 -7794,What is the title of the book when the publisher is black car publishing?,0 -7795,What are the prizes when 1 is the number of winning tickets?,0 -7796,What are the number of winning tickets that have 180.00 as the prize (eur)?,0 -7797,How many odd of winning have 6th as the division?,0 -7798,What is the prize (eur) for the 6th division?,0 -7799,Which divisions have 565 as the number of winning tickets?,0 -7800,what is гә гә [ɡʷ] when ҕь ҕь [ʁʲ/ɣʲ] is ҭә ҭә [tʷʰ]?,0 -7801,What is гә гә [ɡʷ] when ҕ ҕ [ʁ/ɣ] is ҿ ҿ [t͡ʂʼ]?,0 -7802,what is г г [ɡ] when а а [a] is ҕә ҕә [ʁʷ/ɣʷ]?,0 -7803,what is а а [a] when ҕь ҕь [ʁʲ/ɣʲ] is ш ш [ʂʃ]?,0 -7804,what is а а [a] when гь гь [ɡʲ] is л л [l]?,0 -7805,what is ҕь ҕь [ʁʲ/ɣʲ] when гь гь [ɡʲ] is ҷ ҷ [t͡ʃʼ]?,0 -7806,Name the green for otaki,0 -7807,Name the national for rimutaka,0 -7808,Name the electoraate for united future being 4.47%,0 -7810,Which office has 1 New Hampshire as a third place state?,0 -7812,What office is Jon Huntsman a candidate for?,0 -7814,"Name the competition for australia 13, new zealand 40, drawn 3",0 -7815,Name the explanation by rank is 10,0 -7816,Name the order in office for spiro agnew,0 -7817,Name the explanation for alben w. barkley,0 -7818,What percentage of people voted for Obama in Burlington?,0 -7819,What percentage of voters choise McCain in Burlington?,0 -7820,What percentage of voters voted for a third party in the county that had 802 third party voters?,0 -7821,What percentage of voters chose McCain in the county where 1.1% of voters voted third party?,0 -7822,What percentage of voters chose McCain in the county where 2.1% of voters voted third party?,0 -7823,What county had 915 third party voters?,0 -7824,"Name the ply (uk, nz, au) for fingering ",0 -7825,Name the wraps per inch for 120-240,0 -7826,"Name the ply uk, nz, au for wraps per inch 7 wpi",0 -7827,Name the yarn type for standard yarn weight system for 3 or light,0 -7828,Name the standard yarn weight system for 7 wpi,0 -7829,Name the standard yarn weight system for 9 wpi,0 -7830,Name the overall nt points for 2nd m 127.5,0 -7831,"when 1st (m) is 218.0, what were all of the over wc points (rank)?",0 -7832,when 1st (m) is 212.5 what are the overall wc points (rank)?,0 -7833,When was the motor gear of the LMS 1946 no. 1901 model fitted?,0 -7835,what is the 3-dart average of raymond van barneveld,0 -7837,Who coached the team in the season with a 6-1 conference record?,0 -7839,How did the season with 7-2 conference record ed?,0 -7845,How many games did the player with 3-dart average of 66.86 play?,0 -7847,What player has a 3-dart average of 75.76?,0 -7848,What's Trina Gulliver's high checkout?,0 -7849,How many legs has the player with high checkout of 80 won?,0 -7850,Name the sanskrit word and meaning for aquarius,0 -7851,Name the zodiac for കന്നി,0 -7852,Name the malayalam name for leo,0 -7853,Name the transliteration for ചിങ്ങം,0 -7855,Where did McCain get 20226 votes?,0 -7859,What is the title of S02E01?,0 -7860,What TV order is written by gail simone?,0 -7861,who won mens doubles when zhou mi won womens singles,0 -7862,who won mixed doubles when zhou mi won womens singles,0 -7865,who won womens doubles in 2010,0 -7866,who won mixed doubles when wang yihan won womens singles,0 -7868,What percent of the parliamentary election did the pensioners party receive,0 -7871,how many won 83 points for?,0 -7872,which club is listed when bonus points is bonus points,0 -7874,"when points against is points again, which are the drawn?",0 -7875,when points for is 39 what is the total number of drawn,0 -7876,what is the mccain % where obama got 19.3%,0 -7878,where did obama get 39.8%,0 -7879,what is the obama # in carson city,0 -7880,where did obama get 41.3%,0 -7884,Namet he season for wins being 0 and 20 races,0 -7886,What is the Spanish title of the film whose title used in nomination was Ogu and Mampato in Rapa Nui? ,0 -7887,Who was the director of the film that was not nominated and had the Spanish title of play? ,0 -7890,What couple has an average of 17.2?,0 -7893,"How many crops were damaged when the public property damage was 1,03,049.60?",0 -7898,Where did Obama get 37.1%?,0 -7899,What's the county where McCain got 60.6% and Obama got 37.3%?,0 -7901,How many votes did Obama get in Geauga?,0 -7902,How many people voted for others in the county where McCain got 65.5% of the votes?,0 -7904,How many 140+ did Gary Anderson have?,0 -7905,What is Phil Taylor's 3-dart average?,0 -7906,Who is the guest 3 in the show where guest 4 is Jill Douglas?,0 -7907,Who is the guest 2 in the episode where guest 4 is Iyare Igiehon and guest 3 is John Oliver?,0 -7908,Who is the guest 1 in the episode where guest 4 is Jill Douglas?,0 -7910,What is the date of the episode in which the presenter is Johnny Vaughan?,0 -7911,Name the guest 4 for 8 december,0 -7912,Name the guest 4 for steve lamacq,0 -7914,Name the presenter 11 may,0 -7915,Name the guest 3 for iyare igiehon,0 -7921,Name the county for mccain being 38.78%,0 -7923,What percentage of the vote did McCain win in Waynesboro (city)?,0 -7924,What was Obama's percentage in those places where McCain's percentage was 55.46%?,0 -7925,What was Obama's percentage in the county of Alleghany?,0 -7926,What was Obama's percentage in the county of Surry?,0 -7927,How many percent of the votes in Debaca did McCain get?,0 -7928,What percentage of the votes did Obama get in the county where 3909 people voted in total?,0 -7929,What percentage of the votes did Obama get in the county where McCain got 3648 votes?,0 -7930,Who was the winner when the SEC team LSU played?,0 -7932,What suumer team was James Lomangino from St. John's on?,0 -7933,In what draft round in 2012 did a player from Rio Hondo get drafted?,0 -7934,What college did Aaron Slegers attend?,0 -7935,What are the statuses of the platelet counts for the conditions where the prothrombin time and partial thromboblastin time is unaffected? ,0 -7936,What is the status of partial thromboplastin times for conditions where the platelet count is decreased? ,0 -7937,In what conditions are both the platelet count and prothrombin time unaffected? ,0 -7938,What is the status of bleeding time for thrombocytopenia? ,0 -7939,What is the status of platelet counts for conditions where bleeding time is prolonged and partial thromboplastin time is unaffected? ,0 -7940,Which players made exactly 8 cuts?,0 -7943,what is the name for br no. 60501,0 -7944,what is the name for br no. 60501,0 -7945,When 23% scott mcadams (d) what are the dates administered?,0 -7948,Name the net profit for eps beign 1.19,0 -7949,Name the ebit for eps being 1.78,0 -7951,What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire?,0 -7952,What was the weight in kg when the jockey was B. York? ,0 -7953,What was the result of the race where the jockey was J. Marshall? ,0 -7955,Name the date for moonee valley,0 -7956,What group was the Hollindale Stakes in?,0 -7957,What race has a distance of 1200 m?,0 -7958,What was the result for the time of 1-26.21?,0 -7959,Who was the jockey in group 1 at the 1400m distance at randwick?,0 -7960,What class was the 2nd - portillo?,0 -7961,What time for the entrant weighing 54.4kg?,0 -7962,"What is every entry for epoch if periselene is 5,454.925?",0 -7963,"What is every entry for epoch if periselene is 2,291.250?",0 -7964,What is every value of period when eccentricity is 0.583085?,0 -7965,What is every value of epoch if inclination is 90.063603?,0 -7966,What is every value for periselene if period is 4.947432?,0 -7969,What is the current tournament name for the event in Tampa?,0 -7970,What is the tier IV year for the tournament held in Tampa?,0 -7972,What is the city location of the tournament currently known as the Medibank International Sydney?,0 -7974,What shareholders have 0 A shares?,0 -7975,What percentage of votes does the shareholder with 78.19% of capital have?,0 -7980,Where did aaron wagner go to college,0 -7981,Where did the ol go to college?,0 -7984,Name the player for ol,0 -7985,Name the number for dl,0 -7986,Which companies have a free float of 0.2726?,0 -7987,What is every BSE code for a free float of 0.2726?,0 -7988,What is every GICS sector for free float of 0.3180?,0 -7989,What is every company with an index weighting % of 1 and the city of Dimitrovgrad?,0 -7992,When was the poll that showed 54% for and 22% undecided conducted?,0 -7994,When was Quantum Research's poll conducted?,0 -7995,Who conducted the poll with sample size of 2000 that shows 18% undecided?,0 -7996,How tall is the contestant from Ecuador?,0 -7997,How tall is the contestant from Aruba?,0 -7998,What country is the contestant from San Francisco de Yojoa from?,0 -8001,What are McCain's Percent when Obama has 36.47%?,0 -8004,Name th epopulation may for general terrero,0 -8006,Name the population may for cadalusan for population 1423,0 -8007,"What is the season number for Series #23, the Runway Job?",0 -8011,"Who is the director of the episode titled ""The Reunion Job""?",0 -8012,When was the episode written by Albert Kim aired for the first time?,0 -8013,"When was the episode titled ""The Boost Job"" originally aired?",0 -8014,"How many millions of people in the US saw the episode titled ""The Reunion Job""?",0 -8015,"Who wrote the episode titled ""The Morning After Job""?",0 -8016,Name the series number for m. scott veach & rebecca kirsch,0 -8017,Name the number of viewers for series number 50,0 -8018,Name who directed season 1,0 -8020,What is the cross section area (cm 2) for the moment of intertia in torsion (j) (cm 4) 2.54?,0 -8021,What is the flange thickness (mm) for the weight (kg/m) 6.0?Wg,0 -8023,What is the flange thickness (mm) for the weight (kg/m) 10.4?,0 -8025,In what round was lyon (32) a 5 seed?,0 -8028,What was the result for Paris(48-byes) for 3 seed?,0 -8029,What was McCain's percentage when Obama had 64.39% of the vote?,0 -8032,What parish did McCain have 45.37% of the votes?,0 -8034,What was the original air date for the episode with production code 1wab06?,0 -8035,What title episode did Paris Barclay direct?,0 -8036,What was the production code for episode #1?,0 -8038,What was the production code for the episode with 3.38 million viewers?,0 -8039,"Who were the writers for ""Balm""?",0 -8040,What season number did production code 2wab12?,0 -8044,what is the written by and production code is 3wab03?,0 -8045,"How many seats were won, when the seats contested was 48?",0 -8046,How many seats are contested for independents?,0 -8047,What is the percentage seats contested for the revolutionary socialist party?,0 -8050,Who was the opponent when the attendance was exactly 16642?,0 -8051,What is the score for game #7?,0 -8052,"Who was the opponent on February 28, 1991",0 -8053,What was the date when the record was 1-0?,0 -8058,"What was the game #7, at or versus (home or at)?",0 -8059,Who did they play against in game 7?,0 -8060,What game number had an attendance of 2813?,0 -8061,What day did the play game number 9?,0 -8062,What was the result of the game when they were 2-1?,0 -8063,What was the record when the Bruins had 41 points?,0 -8064,What was the date for game 9?,0 -8066,What is the total of played where lost equals 4 and drawn equals 1?,0 -8067,How many drawn are there where the Club is new ross?,0 -8068,How may drawn equal points against at 129?,0 -8069,How many points differ from 134?,0 -8070,How many of the points difference lost equal 10?,0 -8071,How many teams that played won 0 games?,0 -8072,What are the public schools with a master's university?,0 -8074,What type of school had an enrollment in 2009 of 224?,0 -8076,Is art school public or private?,0 -8077,What school was founded in 1791?,0 -8079,Name the accrediatation for southeast technical institute,0 -8081,"What is the Italian word for the English word ""otter""?",0 -8083,"What is the French translation for the English word ""orange""?",0 -8084,"What is the Italian word for ""orange"" in English?",0 -8086,"What does the word ""frog""in English translate to in Italian?",0 -8087,Where are the Alexandria enrollment locations?,0 -8088,What is the control type which was founded in 1991?,0 -8089,What is the control type which was founded in 1818?,0 -8090,What year was Hartland College founded?,0 -8091,What type of school is Cordoba University?,0 -8092,What school is in Richmond?,0 -8093,What accreditation does Hollins University have?,0 -8095,What is the control for Christopher Newport University?,0 -8097,What type of school is Stratford University?,0 -8098,What type of school is Jefferson College of Health Sciences?,0 -8099,Name the nec record for 11th standing,0 -8100,Name the year for standing 9th,0 -8101,Name the year for t-10th,0 -8102,Name the regular season record for standing 11th,0 -8105,What country uses the title Marele Câștigător The Big Winner?,0 -8106,Silvio Santos is the presenter in what country?,0 -8107,What is the home town of David Noel?,0 -8108,"What is the high school for the player who's hometown is Blue Island, Il?",0 -8109,"What is the position of the player who's hometown is North Babylon, NY?",0 -8110,"What position is the player from Chapel Hill, NC?",0 -8111,"What is the height of the player from Gulfport, MS?",0 -8112,In what county did McCain get 57.8%?,0 -8114,What percentage did Obama get in Rutherford county?,0 -8115,What percentage did McCain get in Hamilton county?,0 -8116,What percentage did Obama get when McCain got 52.8%?,0 -8120,What percentage of the votes did McCain get in Hinds?,0 -8122,What percentage of the votes in Tippah did Obama get?,0 -8123,What percentage of the votes in Copiah did McCain get?,0 -8125,When fixed route is the type of fare how much is the 31-day pass?,0 -8126,When mega pass* (senior/disabled) is the type of fare what is the cash fare?,0 -8127,When mega pass* (senior/disabled) is the type of fare what is the day pass?,0 -8128,When fort irwin-barstow/victorville is the type of fare what is the cash fare?,0 -8130,What is every residential monthly usage if large power demand is 6.86?,0 -8132,What is every value for large power demand when small power demand is 13.41?,0 -8133,What is every city with a residential monthly usage of 11.80?,0 -8135,What are the LOA (metres) of boat with sail number M10?,0 -8136,What is the race number with time 1:23:19:31?,0 -8138,What race number had sail number AUS 98888?,0 -8140,When did they play against West Virginia?,0 -8141,"When l (ot/so) is 22 (3/4), what is the season?",0 -8142,"In season is 2008–09, how many wins did they have?",0 -8144,How many rounds did Virginia have?,0 -8145,How many rounds were there a height of 6'5?,0 -8146,What college has a player that is 6'1?,0 -8148,What college did Terrance Taylor play for?,0 -8149,What's Curtis Painter's position?,0 -8150,How much does the player from Southern California weight?,0 -8151,What's Curtis Painter's position?,0 -8155,What's the engine for the model model designation 97G00 and GVW of 2500/2.46 kg/ton?,0 -8156,What model type has model designation 97500?,0 -8157,What's the axle ratio of the model with model designation 97G00?,0 -8158,What model type has 97100 model designation?,0 -8159,What type of engine does the model with model designation 97100 have?,0 -8160,What's the wheelbase (in mm/inch) of the model with model designation 97G00?,0 -8161,What type of engine does the model with model designation 97F00 have?,0 -8162,What's the model designation of the model with GVW of 2828/2.78 kg/ton and axle ratio of 9/47?,0 -8163,Who is the player name when eastern michigan is the college?,0 -8164,What is the height if ot is the position?,0 -8165,Who is the player for south carolina college?,0 -8167,Which college has fb as the position?,0 -8168,What is the GVW for model 97H00?,0 -8170,What is the Wheelbase for Model 97300?,0 -8171,Name the Engine for model CF350.,0 -8172,Was the result of the supercheap auto bathurst 1000 reported?,0 -8173,Who was the winner of the race at barbagallo raceway?,0 -8176,state the status of pick # 32,0 -8177,which college had a running back player,0 -8178,what is the position of the player of height ft0in (m),0 -8179,what's the position of pick # 79,0 -8181,What was the QB rating for Neil lomax?,0 -8183,How many touchdowns were there with QB rating of 66.6?,0 -8185,Name the game for record being 3-0,0 -8186,What was the date of game 6?,0 -8187,What was the record for the game where the cardinals scored 7 points?,0 -8188,What game date had the record of 1-2?,0 -8192,What was the record after the game in which the Hurricanes scored 24 points?,0 -8195,How much parking is in Van Nuys at the Sepulveda station? ,0 -8196,What are the stations in Tarzana? ,0 -8198,Which station has park & ride lot parking? ,0 -8199,Which player has a 92.58 3-dart average?,0 -8200,What is the 3-dart average with a high checkout of 112?,0 -8203,How many legs won have 95.29 as a 3-dart average?,0 -8205,Which team did the player have who had 27 total carries?,0 -8206,What was the player's team's opponent for Week 12?,0 -8207,"Who directed the episode that originally aired on March 18, 1988?",0 -8209,"What was the name of the episode that aired originally on March 11, 1988?",0 -8210,What is the production code of the episode written by Jack Carrerrow?,0 -8212,"Name the title that aired for november 08, 1985",0 -8213,"Name the production code for november 08, 1985",0 -8214,Name the written by for production code 4g07,0 -8216,What was the final score when tracy austin was runner up?,0 -8217,"When ""jobless"" is the title who are the writers?",0 -8219,When it is season 10 who are the writers?,0 -8220,"when womens singles is wang yihan and tour is french super series, what were the men's singles?",0 -8221,"when mixed doubles is zheng bo ma jin and womens singles is wang yihan, what was the tour?",0 -8223,"Who is the director of the ""Adam's Family""?",0 -8224,"What was the us airdate for ""Bear Breasts""?",0 -8225,"What was the USA airdate for ""Jenny From the Block""?",0 -8227,How many millions viewers watched the episode that ran 23:25?,0 -8228,What is the broadcast date of the episode on 16mm t/r that ran 23:25?,0 -8229,Which episode was watched by 7.2 million viewers?,0 -8230,What episode had a run time of 24:18?,0 -8232,"For the 1999 w210 e-class , 2000 w203 c-class, what is the stroke?",0 -8233,What is the displacement for torque of n·m (lb·ft) @1500 rpm?,0 -8234,"If torque is n·m (lb·ft) @1600–2400 rpm and applications is 2000 w90x sprinter, what is the power?",0 -8235,List the torque possible when the stroke is 88.4mm?,0 -8236,Name the opponent for 7-1-0,0 -8237,Name the episode for run time 25:05,0 -8238,Name the broadcast date for run timke of 25:04,0 -8239,Name the archive for run time of 23:55,0 -8240,Name the broadcast date for 7.4 viewers,0 -8241,Name the broadcast date for 6.0 viewers,0 -8243,"When did ""Going Bodmin"" originally air?",0 -8245,"How many episodes were titled ""Going Bodmin""?",0 -8246,What episode had 9.7 million viewers?,0 -8247,What date was an episode broadcasted on that had a run time of 24:40?,0 -8248,What episode had a run time of 24:53?,0 -8249,What was the archive for the episode with a run time of 25:24?,0 -8250,What is he archive for the episode with a run time of 24:05?,0 -8251,"Who directed the episode ""the departed""?",0 -8252,Who directed episode number 23?,0 -8255,What number was the game against Kansas State?,0 -8257,"On broadcast date is 25april1970, how many people tuned in?",0 -8258,"On broadcast date is 28march1970, how many people tuned in?",0 -8260,What is the archive of the show that aired on 18april1970?,0 -8263,What opponent was playing against the Golden Bears when they scored 3 points?,0 -8264,What is the Medal of Honor with Army Distinguished Service Medal?,0 -8265,WHat is the Homeland security distinguished service medal when the medal of honor is Coast guard Medal?,0 -8266,What is the distinguished service cross when the navy cross is Coast Guard commendation medal?,0 -8267,What is the air force cross when you recieve the Aerial achievement medal?,0 -8268,What is the coast guard cross when you recieve the navy distinguished service medal?,0 -8270,What percentage did Walker win in Calumet county?,0 -8272,What did they do in the game when their record was 3-2-1?,0 -8273,What did they do against Villanova?,0 -8274,What did they do against Memphis?,0 -8276,When did the episode seen by is 2.267 million people get aired?,0 -8277,Name the episode for run time in 24:44,0 -8279,"Who did the team play against when a record of 3-1, #16 was achieved?",0 -8280,What was the result of the game against Mississippi State?,0 -8281,Who did the team play against in the game that resulted with a loss?,0 -8282,What game did the Bruins play Santa Clara?,0 -8283,Santa Clara was played how many times?,0 -8284,"The game the Bruins scored 26 ,what was the result?",0 -8285,What was the record for game 9?,0 -8286,Who were the opponents of the Wildcats in game 4?,0 -8287,Who were the the opponents of the Wildcats for game 8 of the season?,0 -8288,What was the record of the Wildcats after playing Florida?,0 -8291,Name the opponents for game 5,0 -8292,Name the result for 19 black knights points,0 -8293,Name the opponent for black knights points 27,0 -8294,Name the date for game 8,0 -8296,Name the game for record 1-0,0 -8302,Which opponent has a record of 6-2?,0 -8304,What is the run time for the episode with 7.9 million viewers?,0 -8305,What episode had a run time of 23:38?,0 -8306,How many million viewers watched the episode with a run time of 25:22?,0 -8307,Name the date for result loss for duke,0 -8308,Name the opponents for record of 2-1,0 -8309,Name the record for black knights points 54,0 -8310,Name the opponents stanford,0 -8311,Name the result for ursinus college,0 -8313,Name the date for 6-2 record,0 -8315,How man innings were there during the period with a career average of 41.43?,0 -8316,During what period did Ricky Ponting play?,0 -8317,During what period was the career average 44.10?,0 -8319,What period was there a career average of 48.15?,0 -8320,"when the value (int $1000) is 409566, what is the commodity?",0 -8322,"When the value world rank is 7, what is the rank?",0 -8324,"When the production (mt) is 446424, what is the value world rank ?",0 -8325,"where value world rank is 12, what is the quantity world rank?",0 -8326,What is the rank of Tim Paine?,0 -8328,Name the 1st place for limoges csp,0 -8330,What player has 477 runs?,0 -8333,In what season was the pct % 0.552? ,0 -8334,What was the standing in the season that the pct% was 0.769? ,0 -8335,What were the points in the 1958-59 season? ,0 -8336,Who were Dürr's opponents in the final on year 1968?,0 -8337,What was the court surface on year 1971?,0 -8341,How many knockout of the night occurred when joe lauzon fought. ,0 -8343,When was Season Three premiered in region 2?,0 -8344,Where is every location with specialization of textile engineering?,0 -8345,What is every website with specialization of engineering and division of dhaka division?,0 -8346,Where is every location where Nick is Bru?,0 -8347,What is every specialization with the website Jstu.edu.bd,0 -8348,Name the languages for cyprus,0 -8349,Name the languages for estonia,0 -8351,how many archive were when run time is 24:34,0 -8354,What was the title in season #8?,0 -8355,Who was the director when the writer(s) was John W. Bloch?,0 -8357,what is the title when the writer(s) is jack turley?,0 -8359,Name the episode for run time of 22:50,0 -8360,Name the broadcast date of 6.9 million viewers,0 -8361,Name the broadcast date of run time being 24:14,0 -8362,Which archive has a run time of 23:48?,0 -8363,Which broadcast date has 6.8 million viewers?,0 -8364,What Petrol engine has total power of ps (kw; bhp)@5400-6500?,0 -8365,What is top speed of a petrol engine at ps (kw; bhp)@5250-6250?,0 -8366,What is the maximum speed for total power of ps (kw; bhp)?,0 -8367,What is the s7 4.0 tfsi quattro engine torque?,0 -8374,"Name the rank that premiered september 25, 2001",0 -8375,Name the rank for 14.80 viewers,0 -8377,What date did the episode with a production code of 4301085 originally air?,0 -8378,What date did episode 15 of the season originally air?,0 -8380,Name the remarks for sawhouse,0 -8381,Name the nato/ us dod code for sabbot,0 -8382,When autodromo nazionale monza is the circuit what is the report?,0 -8383,When michele pirro is the pole position what is the date?,0 -8384,When Netherlands is the country what is the report? ,0 -8385,When circuit ricardo tormo is the circuit who is the winning team?,0 -8388,How many opponents were there when the record was 6-0?,0 -8389,What was the team record when the team played @ Utah?,0 -8390,How many points did the Cowboys have when they had a 7-0 record?,0 -8391,Name the scoreboard for total being 23.5,0 -8392,Name the jason for public vote being 19.20%,0 -8393,"Name the nicky for "" take a chance on me ""– abba",0 -8395,state the opponent on halliwell jones stadium in super league xiv,0 -8397,state the round that had a game score 50-10,0 -8398,state the round that had a game attended attended by 9359 people,0 -8400,what's the score against crusaders,0 -8402,What is the total for Chuquisaca?,0 -8403,Which department has a small of 11370? ,0 -8406,How many points under par was the winner of the Miyagi TV Cup Dunlop Ladies Open?,0 -8407,What was the winning score of the Vernal Ladies tournament?,0 -8408,Name the athlete for 3,0 -8412,Name the result for round 13,0 -8413,Name the attendance for loss result and salford city reds,0 -8415,Name the attendace for 23 round,0 -8417,What is the only city name with a population density of 200?,0 -8418,What is the census division for the name Stratford?,0 -8419,What is the change (%) when the area size (km2) is 247.21?,0 -8420,What is the municipal status where the population density is 895.5?,0 -8421,What is the census division for the city named Kenora?,0 -8423,"With the population in 2005 of 572, what is the former name?",0 -8425,What were the scores for matches with irving wright hazel hotchkiss wightman?,0 -8427,Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent?,0 -8428,What were the outcomes of matches with bill tilden florence ballin as opponents?,0 -8430,What was the survivor count for the episode directed by Gwyneth Horder-Payton?,0 -8431,When did series number 65 originally air?,0 -8432,What is the production code of the episode directed by David Solomon? ,0 -8433,Who wrote the episode with the production code of BN103? ,0 -8434,What was the original air date of the episode that had 4.08 million U.S. viewers? ,0 -8435,List all the locations where net capacity is 950?,0 -8436,List all the locations with a RBMK-1000 reactor.,0 -8438,when was the premiere when a 3.3 millions of North American watched the episode whose writer was Rob Wright?,0 -8439,what is the name of the episode which the production code is 62015-08-162,0 -8440,"in the number of episode in season is 11, who was the writer?",0 -8441,"What is the production code for the episode title ""A Wrong Day's Journey into Right""?",0 -8443,Who are the writers for the episode number in series 129?,0 -8444,"What is the us viewers (millions) figure for the episode titled ""Witch Wars""?",0 -8446,Who wrote the episodes directed by David Straiton?,0 -8447,Who directed the episode with a production code greater than 4301103.585233785 that was written by Curtis Kheel?,0 -8449,What is the round number for the date 19/06/2009?,0 -8450,What is the round number for the venue of Stade de la Méditerranée?,0 -8451,What was the score when the date was 17/07/2009?,0 -8452,What is Marc Parenteau's position? ,0 -8454,Derik Fury plays for which college? ,0 -8456,What position was drafted by the Hamilton Tiger-Cats? ,0 -8457,Who won when Jamie Green had the best lap?,0 -8458,Who had the fasted lap in motorsport arena oschersleben?,0 -8459,When did Oliver Jarvis have pole position?,0 -8460,What college did the player for the Hamilton Tiger-Cats go to? ,0 -8462,What team does the player who went to Nebraska play for? ,0 -8464,Which player plays for the Winnipeg Blue Bombers? ,0 -8465,What is the pick # for player wes lysack?,0 -8468,Which cfl team is manitoba college?,0 -8469,Which position is cfl team edmonton eskimos for weber state college?,0 -8473,In which special stage named Tempo 2 was Sébastien Loeb the leader?,0 -8474,Which ralliers won the stages that were at 18:54 GMT?,0 -8477,Who is the winner when bigten (2-1) is the challenge leader?,0 -8478,"Who is the winner in the location of ljvm coliseum • winston-salem, nc?",0 -8479,What time was the acc team #17 wake forest?,0 -8480,Which location has a time of 9:30pm?,0 -8482,Name the hometown for barahona,0 -8483,Name the contestant for villa hermosa,0 -8486,How many people lived in the census division with an area of 15767.99 km2 in 1996?,0 -8488,How many people lived in the census division spread out on 9909.31 km2 in 1996?,0 -8489,"When did ""Granny Pig's Chickens"" first air?",0 -8491,What is the result of the qf round?,0 -8492,Which venue has bradford bulls as the opponent on the date of 06/09/2009?,0 -8493,Who is the opponent when the attendance is n/a?,0 -8494,What is the venue that has 34-18 as the score?,0 -8496,"How many rounds have 6,150 as attendance?",0 -8497,"What is the episode number for ""case two (part 1)""?",0 -8498,What is the original air date for the episode viewed by 7.12 million?,0 -8499,Who directed the episode viewed by 7.35 million?,0 -8501,What was the score of round 3?,0 -8505,Name the score for rebeka dremelj,0 -8506,Name the artist for 1595 televotes,0 -8507,What was the result of the match on grass in 1955?,0 -8508,What was the result of the Australian Championships?,0 -8511,What is the episode summary for episode 5?,0 -8512,What is the summary for the episode with a coach named Rebecca Star?,0 -8513,Name the episode with maritza reveron,0 -8514,"Name the season for august 16, 2010",0 -8517,"Name the coach for may 20, 2010",0 -8518,Name the team for june 20,0 -8519,Name the race time for 2002,0 -8522,"What date did the episode, with John O'Connell as the coach, premier? ",0 -8523,Name the result for total attendance-regular season,0 -8524,Name the result/games for 52521,0 -8525,Name the result/games for 54530,0 -8526,Name the stadium for regular season game,0 -8527,Name the result/games for 54741,0 -8528,state team #2 in the match of first leg score 0-1,0 -8529,give the 1st leg score against ilisiakos,0 -8530,which team #1 played again chalkida,0 -8531,which team#2 played against poseidon neoi porroi,0 -8532,When was the pre-season game record achieved?,0 -8534,what is the attendance in 2011 records,0 -8535,"what type of record was made where result/games is 10 games (29,606 avg.)",0 -8536,where was the total attendance-regular season record made,0 -8537,where was sun 09/12/93 record made,0 -8541,When 27585 is the attendance what are the results of the games?,0 -8542,"When 9 games (28,002 avg.) is the results of the games what is the date/year?",0 -8543,When 255627 is the attendance what is the stadium?,0 -8544,What record was set on Tue 11/02/75?,0 -8545,"What record was set when the result/game was equal to 9 games (28,595 avg.)",0 -8546,What record was set when the result/game was montreal 20 @ ottawa 10?,0 -8547,Which stadium had the result/game montreal 20 @ ottawa 10?,0 -8548,For what year is the type of record 'total attendance-regular season?,0 -8549,What type of record is the result of the game Montreal 31 @ Calgary 32?,0 -8550,On what date/s has attendance been 45010?,0 -8552,"Which type of record has result/games of 9 games (57,144 avg.)",0 -8553,What is the result/games of Sun 11/28/10 as the date/year?,0 -8554,Which stadium has the date/year of Fri 06/25/82?,0 -8555,Which type of record has result/games of b.c. 16 @ edmonton 22?,0 -8558,What is the 2007 population for Corazon de Jesus? ,0 -8560,Name the romaji by your side ~hikari's theme~ (popup.version),0 -8561,Name the vocalist for kaze no messēji (pokapoka-version),0 -8564,Name the to par for 20 feb 2005,0 -8567,Who published the title in the pet-raising simulator genre?,0 -8568,What's the sales breakdown for Nintendo's Mario Kart DS?,0 -8569,"How many copies were sold of the game released on october 23, 2008?",0 -8570,"What's the sales breakdown of the Nintendo game released on May 15, 2006?",0 -8579,"What change caused a change of staff in March 9, 1865?",0 -8580,Who was the successor for the new seat?,0 -8581,"What was the reason for change in staff in formal installations on March 15, 1865?",0 -8582,Who was the successor for the new seat?,0 -8583,When nathaniel g. taylor (u) is the successor what is the vacator?,0 -8584,When william b. campbell (u) is the successor what is the district?,0 -8585,When james brooks (d) is the vacator what is the date the successor was seated?,0 -8586,When john w. leftwich (uu) is the successor what is the date the successor was seated?,0 -8587,When new york 8th is teh district who is the successor?,0 -8589,When 70 is the total points what is the rr4 points?,0 -8590,When 3 is the rr1 points what is won score?,0 -8591,When spanish challenge is the team name what are the rr1 points?,0 -8596,What nation was Pageos 1 from?,0 -8597,What was the launch date for the sattelite with ado that was 4 kg and 3 meters in diameter?,0 -8598,What was the decay for the sattelite that was 180 kg?,0 -8599,What is the nssdc id for Echo 1?,0 -8600,What is the launch date for the sattelite with a nssdc id of 1960-009a?,0 -8601,What is the decay for the sattelite with an id that is 1990-081c?,0 -8603,What is every original game for the artist Lynyrd Skynyrd?,0 -8604,What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age?,0 -8605,What is every song title for 2007?,0 -8606,What was Lambert's song choice in the top 13?,0 -8607,What order did Lambert perform in the top 11?,0 -8608,What week was themed disco?,0 -8609,What week #(s featured sara bareilles as the original artist?,0 -8610,What week # featured first solo as the theme?,0 -8612,Who was the originally artist when Jasmine Murray was selected?,0 -8613,"With theme the Year They Were Born, what is the song of choice?",0 -8614,"With order number 7 and the theme is Motown, who were the original artists?",0 -8616,"With original artist of Tina Turner, what is the week number?",0 -8617,Who is the original artist with a theme of N/A?,0 -8618,Name the team for june 16 jeff gordon,0 -8619,Name the driver for 200 laps 1997,0 -8620,Name the team for ricky rudd,0 -8621,What is the rank when RR2 has 4 points?,0 +,Unnamed: 0,questions,types,Unnamed: 0.1 +15749,0,Tell me what the notes are for South Australia ,0, +15750,1,What is the current series where the new series began in June 2011?,0, +15751,2,What is the format for South Australia?,0, +15752,3,Name the background colour for the Australian Capital Territory,0, +15753,5,what is the fuel propulsion where the fleet series (quantity) is 310-329 (20)?,0, +15754,6,who is the manufacturer for the order year 1998?,0, +15755,9,what is the powertrain (engine/transmission) when the order year is 2000?,0, +15756,10,What if the description of a ch-47d chinook?,0, +15757,11,What is the max gross weight of the Robinson R-22?,0, +15758,12,What school did player number 6 come from?,0, +15759,13,What school did the player that has been in Toronto from 2012-present come from?,0, +15760,14,What school did the player that has been in Toronto from 2010-2012 go to?,0, +15761,15,What position did the player from Baylor play?,0, +15762,16,Who played in the Toronto Raptors from 1995-96?,0, +15763,17,Which number was Patrick O'Bryant?,0, +15764,18,What school did Patrick O'Bryant play for?,0, +15765,20,Which school was in Toronto in 2001-02?,0, +15766,21,Which school did the player that played 2004-05 attend?,0, +15767,22,Which position does Loren Woods play?,0, +15768,24,Which country is the player that went to Georgetown from?,0, +15769,25,Which school did Herb Williams go to?,0, +15770,26,When did the player from Hawaii play for Toronto?,0, +15771,27,During what period did Dell Curry play for Toronto?,0, +15772,28,What's the number of the player from Boise State?,0, +15773,29,What's Dell Curry nationality?,0, +15774,30,which player is from georgia,0, +15775,31,what school is rudy gay from,0, +15776,32,what nationality is the player who played from 1997-98,0, +15777,33,what position did the player from connecticut play,0, +15778,34,During which years was Marcus Banks in Toronto?,0, +15779,35,Which positions were in Toronto in 2004?,0, +15780,36,What nationality is the player Muggsy Bogues?,0, +15781,37,What years was the player Lonny Baxter in Toronto?,0, +15782,39,"When the scoring rank was 117, what was the best finish?",0, +15783,40,"When the best finish was T69, how many people came in 2nd?",0, +15784,42,"When the money list rank was n/a, what was the scoring average?",0, +15785,45,What college did the Rookie of the Year from the Columbus Crew attend?,0, +15786,47,What position did the #10 draft pick play?,0, +15787,48,what's the years played with singles w-l of 3–2,0, +15788,49,what's the doubles w-l for player seol jae-min (none),0, +15789,50,what's the singles w-l for kim doo-hwan,0, +15790,52,what's the doubles w-l with years played value of 1 (1968),0, +15791,53,what years are played for player  im chung-yang,0, +15792,54,What is the name of the 375 crest length?,0, +15793,56,What is the canton of grande dixence?,0, +15794,57,What is the name where lago di luzzone is?,0, +15795,58,What is the guardian mātṛkā for the guardian whose consort is Svāhā?,0, +15796,59,"Where the mantra is ""oṃ yaṃ vāyuve namaḥ"", what is the direction of the guardian?",0, +15797,60,What weapon is used by the guardian whose consort is śacī?,0, +15798,61,What are the directions for the guardian whose weapon is khaḍga (sword)?,0, +15799,62,What are the weapons used by guardians for the direction East?,0, +15800,63,What are the directions for the guardian whose graha (planet) is bṛhaspati (Jupiter)?,0, +15801,65,What are the members listed with the sorority classification,0, +15802,66,Name the member that has 12 chapters,0, +15803,67,Where is the headquarters of Alpha Nu Omega,0, +15804,69,what is the typhoid fever number for the year 1934,0, +15805,70,What are all the typhus number when smallpox is 4,0, +15806,72,what is the typhoid fever number for the year 1929,0, +15807,77,What is the capital (endonym) where Douglas is the Capital (exonym)?,0, +15808,79,What is the country (exonym) where the official or native language(s) (alphabet/script) is Icelandic?,0, +15809,80,In which country (endonym) is Irish English the official or native language(s) (alphabet/script)?,0, +15810,81,Which country (exonym) is the country (endonym) isle of man ellan vannin?,0, +15811,83,"What was the ranking of the season finale aired on May 8, 2006? ",0, +15812,85,what's the land area with seat of rcm being granby,0, +15813,86,What is the population for County Mayo with the English Name Carrowteige?,0, +15814,87,What is the Irish name listed with 62% Irish speakers?,0, +15815,88,What is the population for the Irish Name Leitir mealláin?,0, +15816,89,What is the county for the Irish name Carna?,0, +15817,91,What is the population for the English name Spiddal?,0, +15818,95,What is Australia's role in the UN operation Unama?,0, +15819,96,"What is the UN operation title with the UN operation name, Uncok?",0, +15820,98,When was it where 65 Australians were involved in the UN?,0, +15821,99,What year is the season with the 10.73 million views?,0, +15822,100,What is the season year where the rank is 39?,0, +15823,102,What is the year of the season that was 12?,0, +15824,103,In 2012 what was the average finish?,0, +15825,108,NHL players are all centre in Florida panthers.,0, +15826,109,NHL team player San Jose Sharks is United States nationally.,0, +15827,110,All players are position mark polak.,0, +15828,111,Position in nhl team centre are all smaller pick than 243.0,0, +15829,112,What college/junior/club teams do the players from the St. Louis Blues come from?,0, +15830,113,What teams do the players from TPS (Finland) play for?,0, +15831,114,What high school team did Doug Nolan play for?,0, +15832,115,What club team is Per Gustafsson play for?,0, +15833,116,What is the nationality of Shayne Wright?,0, +15834,117,How many votes did Southern England cast whilst Northern Ireland cast 3?,0, +15835,120,How many votes did Northern Ireland cast if the total was 35?,0, +15836,122,What teams had 9 in the top 5 and 1 wins?,0, +15837,123,What teams did the player vadim sharifijanov play for?,0, +15838,124,What positions do the hartford whalers nhl team have?,0, +15839,126,"What positions does the college/junior/club team, molot perm (russia) have?",0, +15840,127,The nhl team new york islanders is what nationality?,0, +15841,128,What is the name of the vacator for district Louisiana 1st?,0, +15842,129,What is the notion when the crystal structure is tetragonal and the formula is bi 2 sr 2 cacu 2 o 8,0, +15843,130,How many times is the formula tl 2 ba 2 cuo 6?,0, +15844,131,What is the crystal structure for the formula yba 2 cu 3 o 7?,0, +15845,137,What's the 1981 census of Livorno?,0, +15846,138,Which NHL team has player Mike Loach?,0, +15847,139,What is the NHL team that has Peter Strom?,0, +15848,140,What team is Keith Mccambridge on?,0, +15849,142,"Who was the succesor that was formally installed on November 8, 1978?",0, +15850,144,"What score did Goodman give to all songs with safe results, which received a 7 from Horwood and have a total score of 31?",0, +15851,145,"What score did Dixon give to the song ""samba / young hearts run free"", which was in second place?",0, +15852,147,What year was number 7 built?,0, +15853,148,What is we two when the case/suffix is loc.?,0, +15854,149,What is them two (the two) when we two is ngalbelpa?,0, +15855,150,What is them two (the two) when you and i is ngœbalngu?,0, +15856,151,What is who-two where you and i is ngœban?,0, +15857,152,What is we two where you two is ngipen?,0, +15858,153,What is who-two when you two is ngipelngu?,0, +15859,154,what's the points with driver  mark martin,0, +15860,155,what's the points with driver  rusty wallace,0, +15861,158,What actor was nominted for an award in the film Anastasiya Slutskaya?,0, +15862,159,What was the film Falling up nominated for?,0, +15863,160,What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love?,0, +15864,161,What is the name of the actress that was nominated for best actress in a leading role in the film Chopin: Desire for love?,0, +15865,162,Which films does the actor Alla Sergiyko star in?,0, +15866,163,Which nominations was the film 27 Stolen Kisses nominated for?,0, +15867,164,Which actor from Serbia was nominated for best actor in a supporting role?,0, +15868,165,Vsevolod Shilovskiy is from what country?,0, +15869,166,Which nominations are connected to the film Totalitarian Romance?,0, +15870,167,Srdjan Dragojevic worked on a film which earned what nomination?,0, +15871,168,Which actors are from Ukraine?,0, +15872,169,What was the film that vadim ilyenko directed?,0, +15873,170,What was the actors name that vadim ilyenko directed?,0, +15874,171,What was the actors name for fuchzhou and nomination was best non-professional actor?,0, +15875,172,What film did michaylo ilyenko make with best actor in a supporting role?,0, +15876,173,What was the actor's name for best debut?,0, +15877,178,What circuit was the race where Hideki Mutoh had the fastest lap?,0, +15878,180,"what is the episode # for title ""the yindianapolis 500 / personality problem""",0, +15879,181,what is the episode # for production code 227,0, +15880,182,who directed the movie written by is sib ventress / aydrea ten bosch,0, +15881,183,"what is the production code with title ""skirting the issue / moon over my yinnie""",0, +15882,187,What is the score with partner Jim Pugh?,0, +15883,189,What is the score of the match with partner Jim Pugh?,0, +15884,190,What year was the championship in Wimbledon (2)?,0, +15885,191,What is the score of the match with opponents Gretchen Magers Kelly Jones?,0, +15886,193,"Which politican party has a birthday of November 10, 1880",0, +15887,194,"Which representative has a birthday of January 31, 1866?",0, +15888,195,What is the Singles W-L for the players named Laurynas Grigelis?,0, +15889,196,What is the Current singles ranking for the player named Mantas Bugailiškis?,0, +15890,198,Who played Peter Pan in the 1990 Broadway?,0, +15891,199,Who played in the 1991 Broadway before Barbara McCulloh played the part in the 1999 Broadway?,0, +15892,200,Who played in the 1990 Broadway after Tom Halloran played the character in the 1955 Broadcast?,0, +15893,201,What character did Drake English play in the 1998 Broadway?,0, +15894,202,What date was BBC One total viewing greater then 11616996.338225884?,0, +15895,206,what's the salmonella with escherichia being espd,0, +15896,207,what's the ↓ function / genus → with shigella being spa32,0, +15897,208,what's the salmonella with shigella being ipgc,0, +15898,209,what's the salmonella with escherichia being sepb (escn),0, +15899,210,what's the shigella with yersinia being yscp,0, +15900,212,What year was a movie with the original title La Leggenda del Santo Bevitore submitted?,0, +15901,213,"what's the camp with estimated deaths of 600,000",0, +15902,214,what's the operational period with camp  sajmište,0, +15903,215,what's the estimated deaths with operational period of 17 march 1942 – end of june 1943,0, +15904,216,what's the current country of location with operational period  of summer of 1941 to 28 june 1944,0, +15905,217,"what's the occupied territory with estimated deaths of 600,000",0, +15906,218,what's the occupied territory with operational period of may 1940 – january 1945,0, +15907,219,Which overall pick was traded to the Cleveland Browns?,0, +15908,220,Overall pick 240 was a pick in which round?,0, +15909,222,What position is played by pick 255 overall?,0, +15910,223,Which player was chosen in round 17?,0, +15911,225,The record of 9-4 was against which opponent?,0, +15912,226,The game number of 8 had a record of what?,0, +15913,229,What round was Bill Hill drafted?,0, +15914,230,What was the name of the quarterback drafted?,0, +15915,231,Where is the college where Keith Hartwig plays?,0, +15916,232,What is the name of the linebacker at Illinois college?,0, +15917,234,Which round did Tommy Kramer play in>,0, +15918,235,What is Rice's collage score?,0, +15919,238,Which player went to Emporia State?,0, +15920,240,What college did Bill Cappleman go to?,0, +15921,241,"For the headstamp id of h2, what was the color of the bullet tip?",0, +15922,242,"For the functional type of light ball, what were the other features?",0, +15923,246,What number of completions are recorded for the year with 12 games started?,0, +15924,249,Which person is in the tronto/broadway and has a uk tour of n/a,0, +15925,251,Who was Class AAA during the school year of 2000-01?,0, +15926,252,Who was Class AAA during the same year that Class A was (tie) Apple Springs/Texline?,0, +15927,253,Who was Class AAAAA during the school year of 1995-96?,0, +15928,254,Who was Class AAA during the same year that Class AAAAA was Brownsville Pace?,0, +15929,259,What was the original air date of an episode set in 1544?,0, +15930,261,"Who wrote the episode that was set in winter 1541/february 13, 1542?",0, +15931,262,"What episode number of the season was ""The Northern Uprising""?",0, +15932,263,What is the name of the track that lasts 5:30?,0, +15933,264,What is the album namethat has the track title Sweetness 甜甜的 (tián tián de)?,0, +15934,265,What is the duration of the song where the major instrument is the piano and the date is 2004-02-03?,0, +15935,267,What is the major instrument of the song that lasts 4:32? ,0, +15936,269,What is the playoffs for the usl pro select league?,0, +15937,271,What was the team where series is formula renault 2.0 nec?,0, +15938,275,What is the podium for 144 points?,0, +15939,281," what's the league where regular season is 2nd, northwest",0, +15940,282,what are all the regular season where year is 2011,0, +15941,287,What is the name of the episode told by Kiki and directed by Will Dixon?,0, +15942,288,"Who is the storyteller in the episode called ""The Tale of the Jagged Sign""?",0, +15943,289,Who wrote Episode #3?,0, +15944,290,"Who are the villains in the episode titled ""The Tale of the Forever Game""?",0, +15945,292,Who are the villains in the episodes where Megan is the storyteller and Lorette LeBlanc is the director?,0, +15946,294,Name the species when petal width is 2.0 and petal length is 4.9,0, +15947,295,Name the sepal width for i.virginica with petal length of 5.1,0, +15948,297,Name the sepal length for sepal width of 2.8 and petal length of 5.1,0, +15949,298,Name the sepal width when sepal length is 6.5 and petal width is 2.2,0, +15950,299,Name the sepal lengh when sepal width is 2.9 and petal width 1.3,0, +15951,301,Who is the director of the episode whom Scott Peters is the writer?,0, +15952,302,Who is the villain in episode #7?,0, +15953,304,When did the episode written by Jim Morris air?,0, +15954,305,What was Datsun Twin 200's fastest lap?,0, +15955,306,"In the Datsun Twin 200 race, what was the fastest lap?",0, +15956,307,What's the report for the True Value 500?,0, +15957,308,What was Johnny Rutherford's fastest lap while Al Unser was the pole position?,0, +15958,310,"Which countries have a scouting organization that was founded in 1926, and joined WOSM in 1930?",0, +15959,311,"Does Venezuela admit only boys, only girls, or both?",0, +15960,312,"Which organizations were founded in 1972, but became WOSM members until 1977?",0, +15961,313,"Does the Scout Association of Hong Kong admit boys, girls, or both?",0, +15962,314,"Does the Ghana Scout Association (founded in 1912) admit boys, girls, or both?",0, +15963,316,What is the print resolution (FPI) for December 2002?,0, +15964,317,What is the maximum memory for the model discontinued in November 2001?,0, +15965,318,What is main presenters of La Granja?,0, +15966,319,What is the main presenter of bulgaria?,0, +15967,322,What is the league apps for season 1923-24?,0, +15968,323,What is the team for season 1911-12?,0, +15969,325,who's the premier with in 1970,0, +15970,326,who are all the runner-up for premier in richmond,0, +15971,329,Which street is 12.2 miles long?,0, +15972,330,Where does Route 24 intersect?,0, +15973,331,Where is milepost 12.8?,0, +15974,333,Who were the operational owners during the construction date of April 1892?,0, +15975,334,Where can you find Colorado and Southern Railway #9?,0, +15976,335,"What is the wheel arrangement for the train in Riverdale, Georgia?",0, +15977,336,When was the train 2053 built?,0, +15978,338,Which college has the men's nickname of the blazers?,0, +15979,339,Name the joined for the wolfpack women's nickname,0, +15980,340,Name the left of the Lady Pilots.,0, +15981,341,"Name the women's nickname when the enrollment is 1500 in mobile, Alabama.",0, +15982,342,"Which conference is in Jackson, Mississippi?",0, +15983,343,What is the men's nickname at the school that has the lady wildcats women's nickname?,0, +15984,344,"What is the Mens Nickname for the member location of Jacksonville, florida?",0, +15985,347,What is the year the institution Tougaloo College joined?,0, +15986,348,What is the date of vacancy when the date of appointment is 28 november 2007 and replaced by is alex mcleish?,0, +15987,349,What is the date of appointment when the date of vacancy is 21 december 2007?,0, +15988,350,Who replaced when team is wigan athletic?,0, +15989,351,What is the date of vacancy when the team is manchester city and replaced by is mark hughes?,0, +15990,352,What is the date of appointment when replaced by is roy hodgson?,0, +15991,353,Who replaced when position in table is pre-season?,0, +15992,355,Did any team score games that totaled up to 860.5?,0, +15993,356,What was the score of the game when the team reached a record of 6-9?,0, +15994,357,What type institution is point park university,0, +15995,359,point park university is what type of institution,0, +15996,361,"Who wrote the episode titled ""black""?",0, +15997,362,"Who are the writers for the episode ""solo""?",0, +15998,363,what is the original air date of the episode no in season 9?,0, +15999,364,"What is the title of the episode written by denis leary, peter tolan and evan reilly?",0, +16000,366,When was Kamba active?,0, +16001,367,What was the cyclone's pressure in the storm that death was equal to 95km/h (60mph)?,0, +16002,368,What were the active dates for the storm that had 185km/h (115mph) deaths?,0, +16003,369,What was the damage (usd) from the cyclones that measured 1003hPa (29.62inHg) pressure?,0, +16004,370, what's the average where high score is 120,0, +16005,371, what's the player where 50 is 2 and n/o is 0,0, +16006,372, what's the player where inns is 21,0, +16007,373,Which general election had a pq majority and a 44.75% of the popular vote?,0, +16008,378,"On december 16, 1985, all the records were what?",0, +16009,385,In which stadium is the week 5 game played?,0, +16010,386,In Penney's game what is the probability where the 1st player wins if the probability of a draw is 8.28% and the 2nd player chooses B BR?,0, +16011,387,"If the first player chooses RB B, what is the second player's choices?",0, +16012,388,What is the probability where the second player wins where their choice is R RB and the first player has a 5.18% chance of winning?,0, +16013,389,What are the chances the first player will win if the 2nd player has an 80.11% chance of winning with the choice of R RB?,0, +16014,390,What are the chances that player 2 wins if player 1's choice is BB R?,0, +16015,391,How high is the chance that player 1 wins if player 2 has an 88.29% chance of winning with the choice of R RB?,0, +16016,392, what is the nfl team where player is thane gash,0, +16017,394, what's the nfl team where player is clifford charlton,0, +16018,395, what's the position where player is anthony blaylock,0, +16019,397,Which province has a density of 971.4?,0, +16020,400,Which province has a gdp of 38355€ million euros?,0, +16021,401,What is the population estimate for the place that gad a 18496€ million euro gdp?,0, +16022,402,"What is the title when original air date is may15,2008?",0, +16023,404,Who directed the episode where u.s. viewers (million) is 12.90?,0, +16024,406,What date did the DVD for season six come out in region 2?,0, +16025,408,"What DVD season/name for region 2 was released August 22, 2010?",0, +16026,410,what is the score for the dams?,0, +16027,413,Which series with 62 points?,0, +16028,416,what is the name of the report that lists the race name as long beach grand prix?,0, +16029,417,what is the report called where the circuit took place at the nazareth speedway?,0, +16030,418,what is the name of the race where newman/haas racing is the winning team and rick mears is at the pole position?,0, +16031,419,meadowlands sports complex is the circuit at which city/location?,0, +16032,420,What is the literacy rate for groups that grew 103.1% between 1991 and 2001?,0, +16033,423,What is the population percentage of the group where the rural sex ratio is 953?,0, +16034,424,"What is the original air date for the title ""felonious monk""?",0, +16035,425,What is the title of the episode directed by Peter Markle and written by Jerry Stahl?,0, +16036,427,Who does the lap-by-lap in 2011?,0, +16037,428,Which network has Marty Reid as host and lap-by-lap broadcaster?,0, +16038,431,"When did the episode titled ""Lucky Strike"" air for the first time?",0, +16039,432,"Who was the writer of the episode titled ""One Hit Wonder""?",0, +16040,433,What's the date of the first airing of the episode with series number 63?,0, +16041,435,How many viewers tuned into the show directed by Matt Earl Beesley?,0, +16042,436,Who wrote episode 94?,0, +16043,437,Which episode was the number in the season where the number in the season is 10?,0, +16044,438,"How many episodes were in the season that had the epiosde of ""crow's feet""?",0, +16045,439,When did the 113 episode air?,0, +16046,442,When did the no. 23 show originally air?,0, +16047,443,Which circuits had a race on October 4?,0, +16048,444,In which reports does Michael Andretti have the pole position and Galles-Kraco Racing is the winning team?,0, +16049,446,Which rounds were held on August 9?,0, +16050,449,Name the round of 32 in conference usa,0, +16051,450,What is the record when round of 32 is 0 and metro atlantic conference?,0, +16052,452,Who directed the episode with production code 7aff03?,0, +16053,453,What is the title of the episode wtih 10.34 million U.S viewers?,0, +16054,454,What place is the team that completed 6 races?,0, +16055,455,"how much did the british formula three called ""fortec motorsport"" score?",0, +16056,456,how many races were in 2009 with 0 wins?,0, +16057,457,What years did art grand prix compete?,0, +16058,458,What year had a score of 9?,0, +16059,460,Who took test #4?,0, +16060,462,Who had the challenge of night driving?,0, +16061,464,Who directed El Nido?,0, +16062,465,Who directed Dulcinea?,0, +16063,466,What are the slovenian names of the villages that had 65.9% of slovenes in 1951?,0, +16064,467,What are the slovenian names of the villages that had 16.7% of slovenes in 1991?,0, +16065,469,what percent of slovenes did the village called čahorče in slovenian have in 1991?,0, +16066,470,What is the slovenian name for the village that in german is known as st.margarethen?,0, +16067,471,"For games on December 20, how many points did the scoring leaders get?",0, +16068,472,Who was the scoring leader and how many points did he get in games on December 23?,0, +16069,473,What is the pick # for the position de?,0, +16070,474,Which player went to college at Saint Mary's?,0, +16071,475,What is the position for the player with cfl team Winnipeg blue bombers?,0, +16072,476,Which player went to college at Laval?,0, +16073,477,What was the college for the player with the cfl team of Edmonton Eskimos (via calgary)?,0, +16074,478,What's the team of the player from St. Francis Xavier College?,0, +16075,479,What player is on the Montreal Alouettes CFl team?,0, +16076,481,What's the pick number of the player whose position is CB?,0, +16077,483,What player went to Ohio State College?,0, +16078,486,Which CFL Teams drafted an OL in 2006?,0, +16079,487,Which college is aligned to the Saskatchewan Roughriders?,0, +16080,488,What Position did the Hamilton Tiger-Cats (via Ottawa) pick in the 2006 Draft.,0, +16081,492,"Who directed the episode ""Escape""?",0, +16082,494,"What episodes are there where the season premier is September 23, 2009?",0, +16083,495,What is the season finale for season 4?,0, +16084,496,How many season premiers have a rank of #21?,0, +16085,497,"What are the seasons where September 26, 2007 is the season premier?",0, +16086,498,What max processor has a maximum memory of 256 gb?,0, +16087,499,What is the max memory of the t5120 model?,0, +16088,501,"What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have?",0, +16089,502,What is the ga date of the t5120 model?,0, +16090,503,What is the sport of the La Liga league?,0, +16091,507,Who were the directors of the film submitted with the title Young Törless?,0, +16092,508,What was the original title of the film submitted with the title A Woman in Flames?,0, +16093,509,In what years was a film submitted with the title The Enigma of Kaspar Hauser?,0, +16094,510,Who were the directors of the film with the original title o.k.?,0, +16095,511,What is the division for the division semifinals playoffs?,0, +16096,512,"What is the number in series of ""say uncle""?",0, +16097,513,What is the title written by David Mamet?,0, +16098,514,What was the finale for 潮爆大狀,0, +16099,515,What was the finale for 潮爆大狀,0, +16100,516,How many viewers were there for the premier with 34,0, +16101,518,Who was the director of the episode with a production code of 2393059?,0, +16102,520,"When did the episode title ""Duet For One"" air?",0, +16103,521,Which episode had 16.38 million U.S. viewers?,0, +16104,522,"What is the production code of the episode written by José Molina that aired on October 12, 2004?",0, +16105,523,"What was the original air date of the episode ""Quarry""?",0, +16106,524,Which episode was directed by Jean de Segonzac?,0, +16107,525,what are the original air dates with a production code of 2394087,0, +16108,526,"Who are the writers for the title ""boxing sydney""",0, +16109,527,"What are the production codes for the title ""all about brooke""",0, +16110,528,Who are the writer(s) for the production code 2394084,0, +16111,531,Who's the writer for the episode with a production code 2395114?,0, +16112,532,"Who directed the episode titled ""Full Metal Betsy""?",0, +16113,533,What's the number of the episode with production code 2395118?,0, +16114,534,Who was the writer for the episode with production code 2395096?,0, +16115,535,What generation of spectrograph is most likely to detect a planet with a radial velocity of 0.089 m/s?,0, +16116,536,How long is the orbital period for the planet that has a semimajor axis of 5.20 au?,0, +16117,537,What generation of spectrograph is Jupiter detected by?,0, +16118,538,Which planet has an orbital period of 11.86 years?,0, +16119,539,who directed the production code 2398204,0, +16120,540,"when did ""unpleasantville"" air?",0, +16121,541,What is player Alexis Bwenge's pick number?,0, +16122,542,What player is pick #2?,0, +16123,543,Which player's college is Saskatchewan?,0, +16124,546,"when was the episode named ""the doctor is in... deep"" first broadcast ",0, +16125,549,Which player went to Michigan State?,0, +16126,550,Which player went to college in Oklahoma?,0, +16127,551,Which position does Colt Brennan play?,0, +16128,552,What is the height of the person that weighs 320 pounds?,0, +16129,556,What CFL teams are part of Simon Fraser college?,0, +16130,557,Which players have a pick number of 27?,0, +16131,559,What schools did lenard semajuste play for?,0, +16132,563,What teams drafted players that played for northwood school?,0, +16133,564,What college did Craig Zimmer go to?,0, +16134,565,What is the pick number of regina?,0, +16135,566,What is the player who is lb and cfl team is saskatchewan roughriders?,0, +16136,567,What is the cfl team that has a position of ol?,0, +16137,569,What is the cfl team with ryan folk?,0, +16138,570,What release date is when kids-270 is a reference? ,0, +16139,571,what is the title where romaji is titles da.i.su.ki,0, +16140,572,what are the title in japanese where the reference is kids-430?,0, +16141,573,who is the reference when romaji title is heartbreak sniper?,0, +16142,576,What was the partial thromboplastin time for factor x deficiency as seen in amyloid purpura,0, +16143,578,What was the bleeding time for the factor x deficiency as seen in amyloid purpura,0, +16144,579,What conditions had both prolonged bleeding times and prolonged partial thromboplastin times,0, +16145,580,What was the bleeding time for factor xii deficiency,0, +16146,581,What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected,0, +16147,582,what's the tuesday time with location being millhopper,0, +16148,583,what's the wednesday time with monday being 10:00-8:00,0, +16149,584,what's the thursday time with location being hawthorne,0, +16150,585,what's the saturday time with wednesday being 10:00-5:00,0, +16151,586,what's the thursday time with sunday being 1:00-5:00 and tuesday being 1:00-7:00,0, +16152,587,what's the monday time with tuesday being 9:00-6:00,0, +16153,588,What are all the reports where Paul Tracy had the fastest lap?,0, +16154,589,Who drove the fastest lap at the Tenneco Automotive Grand Prix of Detroit?,0, +16155,590,Who had the fastest lap in the races won by Max Papis?,0, +16156,592,What are the original names of the districts where the population in the 2010 census was 210450?,0, +16157,593,What is the original name of the district with the current English name of South Bogor?,0, +16158,596,What is the area in km2 for the district whose original name was Kecamatan Bogor Timur?,0, +16159,598,What is the title of the episode directed by Mark Tinker?,0, +16160,602,Who directed Episode 8?,0, +16161,603,"Who directed the episode called ""Tell-tale Heart""?",0, +16162,604,What was the original air date for Series 36?,0, +16163,605,Who wrote Series 38?,0, +16164,607,Who won the 1973 democratic initial primary for queens of 19%?,0, +16165,608,What is the manhattan for richmond 35%?,0, +16166,609,What is the queens where richmond staten is 42%?,0, +16167,610,what's the party with brooklyn value of 51.0%,0, +16168,611,what's the brooklyn with queens value of 16.8%,0, +16169,613,what's the % with total value of 249887 and queens value of 6.8%,0, +16170,614,Which teams were in the central division and located in livonia?,0, +16171,615,Which teams are located in highland township?,0, +16172,616,What conference was the churchill chargers team in?,0, +16173,617,What was the titles of the episodes written by ken lazebnik?,0, +16174,618,Who directed an episode that had 2.81 million U.S. viewers?,0, +16175,619,What were the names of the episodes that had 3.02 million U.S. viewers?,0, +16176,620,"What were the original air dates of the episode named ""winds of war""?",0, +16177,621,Who directed episodes that had 2.61 million U.S. viewers?,0, +16178,622,"How many millions of U.S. viewers watched ""Brace for Impact""?",0, +16179,623,"How many millions of U.S. viewers watched the episode that first aired on March 31, 2013?",0, +16180,624,Who wrote the episodes that were viewed by 2.12 million viewers?,0, +16181,625,The episode written by Rebecca Dameron aired on what date? ,0, +16182,627,"Who wrote the episode that aired on April 17, 2011? ",0, +16183,629,"How many millions of views in the country watched ""Line of Departure""?",0, +16184,630,What is the name of the shield winner in which the mls cup winner and mls cup runner up is colorado rapids?,0, +16185,631,What is the name of the shield winner in which the mls cup winner and mls supporters shield runner up is Chivas usa?,0, +16186,632,who is the of the shield winnerin which the mls cup runner-up and mls cup winner is real salt lake?,0, +16187,633,Which shield winner has the mls cup runner up and the season is 2000?,0, +16188,636,Which city had the charleston area convention center as its callback location,0, +16189,637,When did the callbacks from rancho bernardo inn air,0, +16190,638,The station located in Albuquerque has been owned since what year?,0, +16191,639,What channels have stations that were affiliated in 2002?,0, +16192,640,What market is KTFK-DT in?,0, +16193,641," what's the engine where performance is 0–100km/h: 10.5s, vmax km/h (mph)",0, +16194,642, what's the turbo where trim is 2.0 20v,0, +16195,643," what's the torque where performance is 0–100km/h: 7.5s auto, vmax: km/h (mph)",0, +16196,644, what's the transmission where turbo is yes (mitsubishi td04-16t ),0, +16197,645, what's the fuel delivery where power is hp (kw) @6500 rpm,0, +16198,646,""" what's the engine with turbo being yes (mitsubishi td04-15g ) """,0, +16199,647,What is the english title that has finale as 33 and peak as 42?,0, +16200,648,What is the english title where the premiere is less than 30.0 and the finale is bigger than 36.0?,0, +16201,649,What is the rank of the chinese title 緣來自有機?,0, +16202,650,What amount is the number of hk viewers where chinese title is 十兄弟?,0, +16203,651,"What is the weekly rank with an air date is november 12, 2007?",0, +16204,652,"What is the air date of the episode ""blowback""?",0, +16205,654,What is the episode where 18-49 has a rating/share of 3.5/9,0, +16206,655,What is the viewers where the rating is 5.3?,0, +16207,656,What is the 18-49 rating/share where the viewers is 5.61?,0, +16208,657,What is the highest of balmoor/,0, +16209,660,What is the stadium for alloa athletic?,0, +16210,663,When are team Galway's dates of appointment?,0, +16211,664,When are the vacancy dates for outgoing manager Damien Fox?,0, +16212,665,When is the date of vacancy of Davy Fitzgerald being a replacement?,0, +16213,666,Which team has the outgoing manager John Meyler?,0, +16214,668,What is the hand for 4 credits is 1600?,0, +16215,671,What duration is listed for Christian de la Fuente?,0, +16216,672,What was the final episode for Dea Agent?,0, +16217,673,What days is greenock morton vacant?,0, +16218,674,What are the dates of the outgoing manager colin hendry does appointments? ,0, +16219,675,What teams does jim mcinally manage?,0, +16220,676,What days are vacant that were replaced by john brown?,0, +16221,677,What manner of departure is listed with an appointment date of 13 march 2008,0, +16222,678,What is the date of appointment for outgoing manager Campbell Money,0, +16223,680,What team plays at Palmerston Park?,0, +16224,684," who is the champion where semi-finalist #2 is na and location is morrisville, nc",0, +16225,685, what's the score where year is 2007,0, +16226,687, who is the semi-finalist #1 where runner-up is elon university,0, +16227,688, who is the runner-up where year is 2004 and champion is north carolina state,0, +16228,689," who is the runner-up where location is ellenton, fl and year is 2004",0, +16229,690,what's the naturalisation by marriage with numer of jamaicans granted british citizenship being 3165,0, +16230,692,what's the naturalisation by marriage with regbeingtration of a minor child being 114,0, +16231,693,what's the numer of jamaicans granted british citizenship with naturalisation by residence being 927,0, +16232,696,"What were the results of episodes with the first air date of March 6, 2008?",0, +16233,697,How many millions of viewers watched episode 15?,0, +16234,698,"How many millions of viewers watched the ""Throwing Heat"" episode?",0, +16235,699,How many millions of viewers watched the episode directed by Anthony Hemingway?,0, +16236,700,The Catalog number is 80809 what is the title?,0, +16237,702,"where catalog number is 81258 , what are all the studio ?",0, +16238,703,"where title is am/pm callanetics , what are all the copyright information?",0, +16239,705,Which losing team had a score of 24-12?,0, +16240,706,What was the losing team in the 1993 season?,0, +16241,707,What was the compression ration when the engine was Wasp Jr. T1B2?,0, +16242,708,"What is the compression ration when the continuous power is hp (kw) at 2,200 RPM and the octane rating is 80/87?",0, +16243,711,"When critical altitude is sea level, what is the compression ration for a supercharger gear ratio of 7:1?",0, +16244,713,"The episode ""chapter five: dressed to kill"" had a weekly ranking of what?",0, +16245,717,What was the date that the st. george-illawarra dragons lost?,0, +16246,718,"Brett kimmorley, who was chosen for the clive churchill medal belonged to what team?",0, +16247,719,What time slots have a 6.3 rating,0, +16248,720,"What time slot is the episode ""the way we weren't"" in",0, +16249,721,"What time slot is the episode ""who's your daddy"" in",0, +16250,722,Which air date had an 11 share,0, +16251,723,Which air date had the 18-49 rating/share of 3.3/9,0, +16252,724,"Which characters had their first experience in the episode ""consequences""?",0, +16253,725,What episode had the last appearances of the late wife of mac taylor?,0, +16254,726,Which characters were portrayed by reed garrett?,0, +16255,728,"What episode was the last appearance of the character, rikki sandoval?",0, +16256,729,On which episode did actress Sela Ward make her last appearance?,0, +16257,730,"Which actors first appeared in ""Zoo York""?",0, +16258,731,How many episodes did actress Vanessa Ferlito appear in?,0, +16259,732,"Which actors first appeared in episode ""Blink"" 1, 2, 3?",0, +16260,734,Which episode did actor A. J. Buckley last appear in?,0, +16261,738,"What is the rank (timeslot) with the episode name ""dangerous liaisons""?",0, +16262,742,WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7?,0, +16263,744,WHAT PERCENTAGE OF GLOBAL TOTAL EMISSIONS DID INDIA PRODUCE?,0, +16264,745,HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007?,0, +16265,747,"What is the rank number that aired october 26, 2007?",0, +16266,749,"What is the viewership on november 9, 2007?",0, +16267,751,What was the range of finishing position for 15 awarded platinum points?,0, +16268,753,How many platinum points were awarded when 70 silver points were awarded?,0, +16269,754,How many platinum points were awarded when 9 gold points were awarded?,0, +16270,755,How did the episode rank that had 2.65 million viewers?,0, +16271,757,Which timeslot did episode no. 15 hold?,0, +16272,758,"What was the timeslot for the episode that aired on May 12, 2009?",0, +16273,759,"What's the 18-49 (rating/share) of the episode that originally aired on May 5, 2009?",0, +16274,761,"What's the rating of the episode originally aired on May 5, 2009?",0, +16275,762,What episode was seen by 2.05 million viewers?,0, +16276,763," what's the extroverted, relationship-oriented where extroverted, task-oriented is director",0, +16277,764," what's the extroverted, relationship-oriented where moderate is introverted sanguine",0, +16278,765, what's the founder where moderate is ether,0, +16279,766," what's the extroverted, relationship-oriented where date is c. 1928",0, +16280,767, who is the founder where date is c. 1900,0, +16281,768," what's the people-task orientation scale where extroverted, relationship-oriented is team type",0, +16282,769,What is the batting team where the runs are 276?,0, +16283,770,Name the batting team at Durham,0, +16284,771,What is the batting team with the batting partnets of thilina kandamby and rangana herath?,0, +16285,772,What is the fielding team with 155 runs?,0, +16286,773,What is the batting partners with runs of 226?,0, +16287,774,What is the nationality of David Bairstow?,0, +16288,775,What are the players whose rank is 2?,0, +16289,776,How many stumpings has Paul Nixon in his career?,0, +16290,777,Where is Adam Gilchrist from?,0, +16291,778,What are the title that have 19.48 million u.s. viewers?,0, +16292,779,Which titles have 18.73 u.s. viewers.,0, +16293,780,Who wrote all the shows with 18.73 u.s. viewers?,0, +16294,781,What is the rank where the area is Los Angeles?,0, +16295,783,What is the number of jews asarb where the metro area is philadelphia?,0, +16296,784,what are all the open 1st viii with u15 6th iv being bgs,0, +16297,785,what are all the u16 2nd viii with u15 3rd iv being bbc,0, +16298,786,what are all the open 1st viii with u15 4th iv being gt,0, +16299,788,what are all the u15 3rd iv with u15 4th iv being bbc,0, +16300,791,What is the location of the school named Brisbane Girls' Grammar School?,0, +16301,795,What number is the Monaco Grand Prix?,0, +16302,796,Who is in the pole position for the French Grand Prix?,0, +16303,797,"What are the numbers for the raceways that are constructed by Ferrari, with Michael Schumacher holding the fastest lap and pole position?",0, +16304,799,What number is the Canadian Grand Prix on the list?,0, +16305,800,What is the rd for the canadian grand prix?,0, +16306,801,What is the fastest lap for the european grand prix?,0, +16307,802,What is the pole position for the ferrari at the austrian grand prix?,0, +16308,803,What was the result of round 2r?,0, +16309,804,Who did Tina Pisnik verse?,0, +16310,806,Name the outcome for round 2r,0, +16311,807,what's the night rank with viewers (m) of 6.63,0, +16312,808,what's the overall rank with viewers (m) of 7.44,0, +16313,810,what's the night rank with rating of 6.2,0, +16314,811,"what's the viewers (m) with episode of ""legacy""",0, +16315,813,What is the group a winner for modena?,0, +16316,814,What is the group a winner for vis pesaro?,0, +16317,815,What group a winner was for nocerina?,0, +16318,816,What was the group d winner for modena?,0, +16319,817,Who had the fastest lap at the brazilian grand prix?,0, +16320,818,Who was on the pole position at the monaco grand prix?,0, +16321,819,Who was the winning driver when Michael Schumacher had the pole and the fastest lap?,0, +16322,820,what are all the location where date is 5 april,0, +16323,821,what are all the pole position where date is 26 july,0, +16324,822,who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos,0, +16325,823,what are all the report where winning constructor is williams - renault and grand prix is south african grand prix,0, +16326,827,What is the date of the circuit gilles villeneuve?,0, +16327,828,What is the location of thierry boutsen?,0, +16328,829,Who had the pole position at the German Grand Prix?,0, +16329,831,Who was the winning driver on 13 August?,0, +16330,832,What was the fastest lap at the Mexican Grand Prix?,0, +16331,835,What is the percentage of Android use when Windows is 1.15%?,0, +16332,836,On which dates was the value of Bada 0.05%?,0, +16333,837,"When the value of ""other"" is 0.7%, what is the percentage for Windows?",0, +16334,838,"When Symbian/Series 40 is 0.40%, what is the percentage of ""other""?",0, +16335,839,Which source shows Blackberry at 2.9%?,0, +16336,840,Which colleges have the english abbreviation MTC?,0, +16337,841,What is the Japanese orthography for the English name National Farmers Academy?,0, +16338,842,"What is the abbreviation for the college pronounced ""kōkū daigakkō""?",0, +16339,844,What is the Japanese orthography for National Fisheries University?,0, +16340,849,Which country has half marathon (womens) that is larger than 1.0?,0, +16341,850,What is the make of the car that won the brazilian grand prix?,0, +16342,851,Who drove the fastest lap for round 8?,0, +16343,852,What day was the grand prix in jerez?,0, +16344,853,What event was in detroit?,0, +16345,855,What day is the french grand prix,0, +16346,856, who is the winners where season result is 7th,0, +16347,857, who is the winners where season result is 9th,0, +16348,858, what's the grand finalist where winners is collingwood,0, +16349,859, who is the season result where margin is 51,0, +16350,860, who is the grand finalist where scores is 11.11 (77) – 10.8 (68),0, +16351,861, who is the grand finalist where scores is 8.9 (57) – 7.12 (54),0, +16352,863,what is the venue where the scores are 15.13 (103) – 8.4 (52)?,0, +16353,864,what is the venue where the margin is 4?,0, +16354,865,what is the crowd when the grand finalist was south melbourne?,0, +16355,866,What was the date for monaco grand prix?,0, +16356,867,What was the date for the pole position of alain prost?,0, +16357,868,What is the race winer of the portuguese grand prix?,0, +16358,869,what's the race winner with date being 12 june,0, +16359,870,what's the constructor with location being hockenheimring,0, +16360,871,what's the race winner with location being jacarepaguá,0, +16361,873,what's the pole position with location being hockenheimring,0, +16362,874,what's the report with rnd being 4,0, +16363,875,What venue has an attendance of 30824 at Essendon in 1984?,0, +16364,876,What other venue was a runner up to Hawthorn?,0, +16365,877,What is the other premiership when the runner up wis Geelong?,0, +16366,878,Who are all the runner ups when the score is 9.12 (66) – 5.6 (36)?,0, +16367,879,Who had the fastest lap in the race where Patrick Tambay was on the pole?,0, +16368,880,What race had Nelson Piquet on the pole and was in Nürburgring?,0, +16369,882,Which race is located in kyalami?,0, +16370,883,What is the fastest lap with pole position of gilles villeneuve?,0, +16371,884,Who did the fastest lap in the dutch grand prix?,0, +16372,885,Who did the fastest lap with the race winner john watson?,0, +16373,886,What is the constructor for 9 May?,0, +16374,887,What is the pole position for the race with the fastest lap by Nelson Piquet and the constructor is Ferrari?,0, +16375,888,What is the report listed for the race in San Marino Grand Prix?,0, +16376,889,Who was the constructor in the location Monza?,0, +16377,891,what's the report with location  österreichring,0, +16378,892,what's the report with race argentine grand prix,0, +16379,895,what's the race winner with constructor  renault,0, +16380,896,what's the date with rnd  1,0, +16381,900,What was the constructor for round 15?,0, +16382,901,Who won the Brands Hatch circuit?,0, +16383,902,Who constructed the I Italian Republic Grand Prix?,0, +16384,903,What race was held at Oulton Park?,0, +16385,904,Did the I Brazilian Grand Prix have a report?,0, +16386,905,what is the race where the pole position is niki lauda and the date is 27 april?,0, +16387,906,what is the date where the constructor is ferrari and the location is anderstorp?,0, +16388,908,what is the report where the location is kyalami?,0, +16389,909,who is the pole position for the rnd 3,0, +16390,910,what is the race where the fastest lap is by jean-pierre jarier?,0, +16391,911,What circuit did Clay Regazzoni win?,0, +16392,912,What was the date when Chris Amon won?,0, +16393,913,What circuit is the Vi Rhein-Pokalrennen race in?,0, +16394,914,What date is listed at place 13,0, +16395,915,What date has a solitudering circuit,0, +16396,918,What is the name of the circuit in which the race name is ii danish grand prix?,0, +16397,919,What is te name of the constructors dated 26 march?,0, +16398,921,what is the name of the constructor that has the circuit zeltweg airfield?,0, +16399,922,What is the name of the winning driver where the circuit name is posillipo?,0, +16400,923,What is the name of the circuit where the race xi Syracuse grand prix was held?,0, +16401,924,What kind of report is for the Pau circuit?,0, +16402,926,Who constructed the Syracuse circuit?,0, +16403,927,What is the name of the race in the Modena circuit?,0, +16404,928,What is the race name in the Monza circuit?,0, +16405,929,When does V Madgwick Cup take place?,0, +16406,930,Which driver won the race xiv eläintarhanajot?,0, +16407,931,Who won the Modena circuit?,0, +16408,933,What was the report of Mike Hawthorn's winning race?,0, +16409,934,What was the name of the race in Bordeaux?,0, +16410,935,What is the report for the race name V Ulster Trophy?,0, +16411,936,What is the constructor for the Silverstone circuit?,0, +16412,937,What's the report for the Silverstone circuit?,0, +16413,938,"What's the report for the race name, XIII Grand Prix de l'Albigeois?",0, +16414,939,Which date did the race name XII Pau Grand Prix take place on?,0, +16415,940,Who was the winning driver for the goodwood circuit?,0, +16416,941,How many millions of U.S. viewers whatched episodes written by Krystal Houghton?,0, +16417,943,Who wrote an episode watched by 19.01 million US viewers?,0, +16418,944,What are the titles of the episodes where Rodman Flender is the director?,0, +16419,945,What is the original air date of the Jamie Babbit directed episode?,0, +16420,946,What is the original air date when there were 12.81 million u.s viewers?,0, +16421,948,Who was the director when there were 13.66 million u.s viewers?,0, +16422,949,Name the percentage where the amount won was 25,0, +16423,950,How many games were won with 2nd oha was standing and there were 62 games?,0, +16424,951,What is the Liscumb when Gauthier is 34?,0, +16425,952,What is the Bello when Ben-Tahir is 296?,0, +16426,953,What is Ben-Tahir when Bello is 51?,0, +16427,954,What is Haydon when Larter is 11 and Libweshya is 4?,0, +16428,955,What is Liscumb when Haydon is 1632?,0, +16429,956,What is Doucet when Lawrance is 36?,0, +16430,957,"Which tv had the date december 7, 1986?",0, +16431,958,Which kickoff has the opponent at new orleans saints?,0, +16432,960,What year was the house named gongola made?,0, +16433,961,What is the name of the green house?,0, +16434,962,What is the green house made of?,0, +16435,963,What is the benue house made of?,0, +16436,965,Which channel had the game against the Minnesota Vikings?,0, +16437,967,Where was the game played when the team's record was 1-3? ,0, +16438,973,"What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:?",0, +16439,974,What is the engine configuration $notes 0-100km/h for the engine type b5244 t2?,0, +16440,975,What is the engine displacement for the engine type b5254 t?,0, +16441,980,what's the comment with model name being 2.4 (2001-2007),0, +16442,981,what's the model name with engine code being b5204 t5,0, +16443,982,what's the dbeingplacement (cm³) with torque (nm@rpm) being 350@1800-6000,0, +16444,983,what's the model name with torque (nm@rpm) being 230@4500,0, +16445,984,what's the model name with engine code being b5254 t4,0, +16446,985,Name the torque of the engine is d5244 t5,0, +16447,986,What is the model of the engine d5244 t?,0, +16448,987,What is the model of the enginge d5252 t?,0, +16449,988,What is the model of the engine d5244 t7?,0, +16450,989,What is the position of number 47?,0, +16451,990,Name the position of Turkey,0, +16452,991,Who is player number 51?,0, +16453,992,What is the position for the years 1998-99,0, +16454,994,Which player is from Marshall and played 1974-75?,0, +16455,995,Which country is the player that went to Oregon?,0, +16456,996,Which country is Jim Les from?,0, +16457,998,Which player played for years 2000-02,0, +16458,999,Which school is Kirk Snyder from?,0, +16459,1001,Which position does John Starks play?,0, +16460,1002,Which position does Deshawn Stevenson play?,0, +16461,1003,Which player played 2004-05,0, +16462,1004,Name the nationality who played for 1987-89?,0, +16463,1005,Wht years did truck robinson play?,0, +16464,1006,What is the player that played 2004-05?,0, +16465,1007,What is the number of players that played 1987-89?,0, +16466,1008,What is the nationality of bill robinzine?,0, +16467,1009,What is the player that played in 2004-05?,0, +16468,1010,What is the nationality of the player named Kelly Tripucka?,0, +16469,1011,What years were the Iowa State school/club team have a jazz club?,0, +16470,1012,Which player wears the number 6?,0, +16471,1013,Which player's position is the shooting guard?,0, +16472,1015,What position did the player from maynard evans hs play,0, +16473,1017,Who are the players that played for the jazz from 1979-86,0, +16474,1018,What years did number 54 play for the jazz,0, +16475,1020,What is the nationality of the player who played during the years 1989-92; 1994-95?,0, +16476,1023,What is the position for player Blue Edwards?,0, +16477,1024,"Which player played the years for Jazz in 1995-2000, 2004-05",0, +16478,1025,Which player is no. 53?,0, +16479,1026,During which years did Jim Farmer play for Jazz?,0, +16480,1028,What's Jim Farmer's nationality?,0, +16481,1031,What school or club did number 35 play for?,0, +16482,1032,How many years did number 25 play for the Jazz?,0, +16483,1034,What position did Lamar Green play?,0, +16484,1036,"What was the delivery date when s2 (lst) type, s2 (frigate) type, c1-m type was delivered?",0, +16485,1037,What type of ships were delivered on October 1942?,0, +16486,1038,When was the delevery date when there were 12 ways of delivery?,0, +16487,1039,What are the episode numbers where the episode features Jack & Locke?,0, +16488,1040,What are the episode numbers of episodes featuring Hurley?,0, +16489,1041,List the episode whose number in the series is 111.,0, +16490,1042,What date got 9.82 million viewers?,0, +16491,1043,What school placed 4th when Oklahoma State University (black) took 3rd place?,0, +16492,1044,What school took 3rd place in 2007?,0, +16493,1046,What school took 4th place in 2002?,0, +16494,1047,What school took 4th place in 2001?,0, +16495,1048,Who were the runner(s)-up when Tiger won by 11 strokes?,0, +16496,1049,What tournament did Tiger hold a 2 shot lead after 54 holes?,0, +16497,1051,There were 68 worcs f-c matches played on Chester Road North Ground.,0, +16498,1053,"What's written in the notes for the locomotives with cylinder size of 12"" x 17""?",0, +16499,1054,"Which locomotives 12"" x 17"" are both ex-industrial and built by Manning Wardle?",0, +16500,1055,"What's the size of the cylinders built by Longbottom, Barnsley?",0, +16501,1056,Who is the builder of the locomotives with wheel arrangement of 2-4-2 T?,0, +16502,1057,On what date did Hudswell Clarke build the locomotive with 0-6-0 ST wheel arrangements?,0, +16503,1060,What is the date of debut that has a date of birth listed at 24-10-1887?,0, +16504,1061,What is the name of person that scored 10 goals?,0, +16505,1062,What is the name of the person whose date of death is 01-04-1954?,0, +16506,1064,What was the date of Henk Hordijk's death?,0, +16507,1065,What frequency is the pentium dual-core t3200?,0, +16508,1066,What is the frequency of the model with part number lf80537gf0411m?,0, +16509,1067,What is the FSB of the model with part number lf80537gf0411m?,0, +16510,1068,What is the FSB of the model with part number lf80537ge0251mn?,0, +16511,1069,What is the socket for the pentium dual-core t2410?,0, +16512,1070,What is the release date for the model with sspec number sla4h(m0)?,0, +16513,1072,What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934?,0, +16514,1076,What was the founding of navy blue?,0, +16515,1079,Name the tournament for arizona,0, +16516,1080,"Name the state and federal when property taxes is 17,199,210",0, +16517,1081,"What is the local sources for property taxes of 11,631,227?",0, +16518,1082,"What is the number of local sources for state and federal 12,929,489",0, +16519,1083,What seat does плоцкая губерния hold?,0, +16520,1084,Whose name in Polish holds the Lublin seat?,0, +16521,1085,"Who, in Polish, governs a location with a population of 1640 (in thousands)?",0, +16522,1086,What seat does Gubernia Warszawska hold?,0, +16523,1087,What population (in thousands) is Lublin's seat?,0, +16524,1088,плоцкая губерния governs an area with what area (in thousand km 2)?,0, +16525,1089,What is the up/down at the venue that hosted 7 games?,0, +16526,1090,What was the attendance last year at Manuka Oval?,0, +16527,1091,What was the lowest attendance figure at Football Park?,0, +16528,1094,what's the winner with purse( $ ) value of bigger than 964017.2297960471 and date value of may 28,0, +16529,1095,what's the winner with tournament value of kroger senior classic,0, +16530,1096,what's the date with tournament value of ford senior players championship,0, +16531,1097,what's the location with tournament value of quicksilver classic,0, +16532,1098,what's the score with date  oct 1,0, +16533,1099,What was the score for the Toshiba Senior Classic?,0, +16534,1100,Who was the winner when the score was 281 (-6)?,0, +16535,1102, what's the tournament where winner is raymond floyd (1),0, +16536,1104, what's the date where location is illinois,0, +16537,1106, what's the location where tournament is raley's senior gold rush,0, +16538,1108,How much was the prize money for the 275000 purse?,0, +16539,1109,What is the prize money for Virginia?,0, +16540,1111,What's the winner of the Painewebber Invitational tournament?,0, +16541,1112,Where was the GTE Suncoast Classic tournament held?,0, +16542,1114,What are all the dates with a score of 203 (-13)?,0, +16543,1115,For which tournaments was the score 135 (-7)?,0, +16544,1116,Which tournaments have a first prize of $40000,0, +16545,1119,Name all the tournaments that took place in Rhode Island.,0, +16546,1120,What is the state that hosted a tournament with the score of 208 (-8)?,0, +16547,1121,Where was the Fairfield Barnett classic tournament held?,0, +16548,1123,When did the series number 23 air?,0, +16549,1125,What was the airdate of 21 series number?,0, +16550,1126,Which located featured the first prize of 33500?,0, +16551,1127,Who won the Suntree Seniors Classic?,0, +16552,1128,How much was the prize in the tournament where the winning score was 289 (9)?,0, +16553,1129,When was the tournament that was won with a score of 204 (-6) played?,0, +16554,1130,"Who wrote ""Stop Being all Funky""?",0, +16555,1132,What was the title of the episode with the production code 311?,0, +16556,1133,Who directed the episode written by Lamont Ferrell?,0, +16557,1134,"What date was the result 6–2, 4–6, 6–4?",0, +16558,1136,"If the Original Air Date is 10January2008, what directors released on that date?",0, +16559,1137,The original air date of 29November2007 has what total no.?,0, +16560,1138,Margot Kidder had what director?,0, +16561,1140,Which viewers had Matt Gallagher as the director?,0, +16562,1142,"Who write ""a grand payne""?",0, +16563,1145,What is the title of production code 514?,0, +16564,1146,What is the location of the institution barton college,0, +16565,1147, Which institutions joined in 1993,0, +16566,1148,what are the locations that joined in 2008,0, +16567,1150,When was erskine college founded,0, +16568,1151,"What is ithe range for married filing separately where head of household is $117,451–$190,200?",0, +16569,1153,"What is the range for married filing separately in which the head of household is $117,451–$190,200?",0, +16570,1154,"What is the range of married filing jointly or qualified widower in which married filing separately is $33,951–$68,525?",0, +16571,1155,"What is the range of the head of household whereas single is $171,551–$372,950?",0, +16572,1157, who is the coach where dudley tuckey medal is ben howlett,0, +16573,1159, who is the dudley tuckey medal where leading goalkicker is scott simister (46),0, +16574,1161,what are all the win/loss where season is 2009,0, +16575,1162, who is the captain where coach is geoff miles,0, +16576,1163,In 2005-06 what was the disaster?,0, +16577,1164,What was the scale of disaster in Peru?,0, +16578,1165,What's the area of the voivodenship with 51 communes?,0, +16579,1166,How big (in km2) is the voivodenship also known by the abbreviation KN?,0, +16580,1167,How many people lived in the voivodenship whose capital is Siedlce in the year of 1980?,0, +16581,1170,What year did a school leave that was founded in 1880?,0, +16582,1171,What is the nickname of the school with an enrollment of 2386?,0, +16583,1172,"What year did the school from mars hill, north carolina join?",0, +16584,1174,What is the nickname of the newberry college?,0, +16585,1175,What was the gross tonnage of the ship that ended service in 1866?,0, +16586,1177,What is the air date for the episode written by Wendy Battles and directed by Oz Scott,0, +16587,1178,"How many US viewers (millions) were there for ""cold reveal""",0, +16588,1179,Which episode was written by anthony e. zuiker & ken solarz,0, +16589,1180,Which episode was directed by steven depaul,0, +16590,1181,What where the tms numbers built in 1923,0, +16591,1182,"What year was the carriage type is 47' 6"" 'birdcage' gallery coach built",0, +16592,1183,What tms were built nzr addington in the year 1913,0, +16593,1184, what's the date entered service with ships name koningin wilhelmina,0, +16594,1185, what's the date where ships name is zeeland entered service,0, +16595,1187,what are all the date withdrawn for service entered on 21 november 1945,0, +16596,1188,what are all the date withdrawn for twin screw ro-ro motorship,0, +16597,1189,what are all the date withdrawn for koningin beatrix,0, +16598,1191,What is the original air date of season 18?,0, +16599,1194,Who won third place with the runner up being dynamo moscow?,0, +16600,1195,What position does Matt Hobgood play?,0, +16601,1197,What high school did Jeff Malm attend?,0, +16602,1199,Who was drafted from the school Mountain Pointe High School?,0, +16603,1200,What school did the player Ethan Bennett attend?,0, +16604,1201,What MLB Drafts have the position pitcher/infielder? ,0, +16605,1202,"What positions were drafted from Las Vegas, NV?",0, +16606,1203,What is the hometown of Bubba Starling?,0, +16607,1205,What was the hometown of the player who attended Athens Drive High School?,0, +16608,1206,What school did Pat Osborn attend? ,0, +16609,1207,What is Josh Hamilton's hometown?,0, +16610,1208,What school does Kerry Wood play for?,0, +16611,1209,"What's the position of the player from Germantown, TN?",0, +16612,1210,What player goes to Torrey Pines High School?,0, +16613,1211,What position does Kerry Wood play in?,0, +16614,1212,What's Shion Newton's MLB draft result?,0, +16615,1213,What is the hometown of the pitcher who's school was Saint Joseph Regional High School?,0, +16616,1214," What is the school of the player from Lake Charles, LA?",0, +16617,1215,Where was mlb draft for the player who's school was Carl Albert High School?,0, +16618,1216,"What school did the player attend who's hometown was Montvale, NJ?",0, +16619,1217,"What is the school for the player who's hometown was Irvine, CA?",0, +16620,1219,"What player is from Spring, Tx?",0, +16621,1220,What town is Brighton High School in?,0, +16622,1221,The catcher went to what school? ,0, +16623,1223,What is the postion of the player listed from Dooly County High School?,0, +16624,1224,What player represented Vista Murrieta High School?,0, +16625,1225,What was the position of the player from Butler High School?,0, +16626,1226,"What position belonged to the player from Paramus, New Jersey?",0, +16627,1227,What town is Muscle Shoals High School located in?,0, +16628,1228,"What pick was the player from Apopka, FL in the 2002 MLB draft",0, +16629,1229,WHAT SCHOOL DID THE PLAYER FROM SOUTH CAROLINA ATTEND?,0, +16630,1230,WHAT IS THE HOMETOWN OF TONY STEWARD?,0, +16631,1231,WHAT POSITION DOES THE PLAYER FROM SOUTH POINTE HIGH SCHOOL PLAY?,0, +16632,1233,WHAT SCHOOL DOES HA'SEAN CLINTON-DIX BELONG TO?,0, +16633,1236,What is the hometown of the player who attended American Heritage School?,0, +16634,1239,Which college has the player Rushel Shell?,0, +16635,1240,Which players attend Stanford college?,0, +16636,1241,"Which school is in the hometown of Aledo, Texas?",0, +16637,1242,Zach Banner is a player at which school?,0, +16638,1244,Which college does the player John Theus associate with?,0, +16639,1245,"What player's hometown is Abilene, Texas? ",0, +16640,1247,What position is Charone Peake? ,0, +16641,1248,Running back Aaron Green went to Nebraska and what high school? ,0, +16642,1249,"What player's hometown is Roebuck, South Carolina? ",0, +16643,1250,"what are all the positions of players who's hometown is concord, california",0, +16644,1251,who are all the players for st. thomas aquinas high school,0, +16645,1252,who are all the players for mission viejo high school,0, +16646,1253,What is the hometown of the players for de la salle high school,0, +16647,1254,who are all the players for armwood high school,0, +16648,1255,"What is the hometown of the players for placer, california",0, +16649,1256,"What is the nba draft for the player from the hometown of virginia beach, va?",0, +16650,1257,what is the college for the player who's school is camden high school?,0, +16651,1258,what is the year for player is derrick favors?,0, +16652,1260,what is the college for the player damon bailey?,0, +16653,1261,"what is the player who's college is listed as direct to nba, school is st. vincent – st. mary high school and the year is 2001-2002?",0, +16654,1262,Which hometown has the college Louisiana State?,0, +16655,1263,"Which college is present in the hometown of Crete, Illinois?",0, +16656,1264,Which school has the player Thomas Tyner?,0, +16657,1265,"Which school is located in the hometown of Centerville, Ohio?",0, +16658,1266,What player is from Ohio State college?,0, +16659,1267,Which school is home to player Thomas Tyner?,0, +16660,1268,Where is scott starr from?,0, +16661,1269,Where is lincoln high school located?,0, +16662,1270,Where is Shaq Thompson from?,0, +16663,1271,Where did Darius Hamilton go?,0, +16664,1272,Where is Norco HIgh School?,0, +16665,1273,What is the height of the player that went to ohio state?,0, +16666,1275,Name the numbers of the nba draft where the player went to kentucky,0, +16667,1276,What was the rating in 1997?,0, +16668,1277,Who narrated the lap-by-lap to a 13.4 million audience?,0, +16669,1278,What was the number for Bötzow where Vehlefanz is 1.800?,0, +16670,1279,What was the number for Vehlefanz where Bärenklau is 1.288?,0, +16671,1280,What was the number for Schwante where Bärenklau is 1.270?,0, +16672,1285,What is the date of vacancy for 10 december 2007 when quit?,0, +16673,1287,What is the link abilities when the predecessors is ti-85?,0, +16674,1288,What is the cpu of the calculator released in 1993?,0, +16675,1289,what is the display size for the calculator released in 1997?,0, +16676,1290,what is the display size for the calculator ti-82?,0, +16677,1291,what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters?,0, +16678,1293,Who was the dirctor for season 13?,0, +16679,1294,"Who was the director for the title, ""funhouse""?",0, +16680,1295,What is the episode title of the show that had a production code of 3T5764?,0, +16681,1297,How many millions of U.S. viewers watched the show with a production code of 3T5769?,0, +16682,1298,When was the show first aired that was viewed by 3.57 million U.S. viewers?,0, +16683,1299,Who directed the show that was viewed by 2.06 million U.S. people?,0, +16684,1300,What is the position of the player that came from the school/club team/country of Purdue?,0, +16685,1301,Who is the player who's number is 3?,0, +16686,1302,What is the height for the player in 1968-72?,0, +16687,1303,Which player had a height of 6-0?,0, +16688,1304,What is the position for the player that played in 2006?,0, +16689,1305,What are all the names of the players who are 7-0 tall?,0, +16690,1307,In connecticut the school/club team/country had a set height in ft. what is true for them?,0, +16691,1308,"Rockets height was 6-6 in feet, list the time frame where this was true?",0, +16692,1309,What is the hight of the player who's tenure lasted from 1969-70?,0, +16693,1310,What school did the 7-4 player attend?,0, +16694,1311, what's the years for rockets where position is guard / forward,0, +16695,1314," what's the position where player is williams, bernie bernie williams",0, +16696,1317,Which years had a jersey number 55,0, +16697,1318,"Which school, club team, or country played for the rockets in the years 2000-01?",0, +16698,1319,During which years did number 13 play for the Rockets?,0, +16699,1322,What is the date settled for 40 years?,0, +16700,1323,What is the median age where the area is 1.7?,0, +16701,1324,Who is the thursday presenter of the show Big Brother 13?,0, +16702,1325,"Who is the friday presenter for each show, when the monday presenter is Emma Willis Jamie East?",0, +16703,1326,Who is the Tuesday presenter of Celebrity Big Brother 8?,0, +16704,1327,Who is the Wednesday presenter of the show Big Brother 13?,0, +16705,1328,List all of the shows with Alice Levine Jamie East is the Sunday presenter.,0, +16706,1329,What are all the positions for the rockets in 2008?,0, +16707,1330,What is the height of the school club team members in clemson?,0, +16708,1331,"What years for the rockets did player ford, alton alton ford play?",0, +16709,1332,"What years for the rockets did the player ford, phil phil ford play?",0, +16710,1333,"What school/club team/country did the player fitch, gerald gerald fitch play for?",0, +16711,1334,What is the weekly rank where the number is 4?,0, +16712,1335,"What is the viewers for the episode ""woman marries heart""?",0, +16713,1337,Where is ropery lane located?,0, +16714,1338,Where is ropery lane and la matches 7 location?,0, +16715,1342,what's the cylinders/ valves with model being 1.8 20v,0, +16716,1343,Which units are commanded by Lieutenant Colonel Francis Hepburn?,0, +16717,1344,What are the complements when the commander is Major William Lloyd?,0, +16718,1345,How many were wounded when the complement was 173 off 2059 men?,0, +16719,1346,How many where killed under Major-General Jean Victor de Constant Rebecque's command?,0, +16720,1347,Who were the commanders when 8 off 0 men were wounded?,0, +16721,1348,What is the gpa per capita (nominal) for the country with gdp (nominal) is $52.0 billion?,0, +16722,1350,What is the GDP (nominal) for Uzbekistan?,0, +16723,1352,What is the aspect ratio of the DVD released on 12/10/2009?,0, +16724,1353,What is the name of the DVD where the number of discs is greater than 2.0,0, +16725,1356,What is the name of the DVD where the number of discs is greater than 2.0,0, +16726,1357,What were the wounded for complement of 46 off 656 men?,0, +16727,1358,What was the missing for lieutenant general sir thomas picton?,0, +16728,1360,Name the commander of 167 off 2348 men,0, +16729,1363,WHAT POSITION DOES PATRICK WIERCIOCH PLAY?,0, +16730,1365,WHERE IS ANDRE PETERSSON FROM?,0, +16731,1366,What club team did JArrod Maidens play for?,0, +16732,1367,What position does Cody Ceci play?,0, +16733,1368,What is the Nationality when the club team is Peterborough Petes (OHL)?,0, +16734,1369,Which player is in round 5?,0, +16735,1370,What position is associated with an overall value of 126?,0, +16736,1371,What position is the player Jordan Fransoo in?,0, +16737,1373,What is the position of player Tobias Lindberg?,0, +16738,1377,What is the position of player Marcus Hogberg?,0, +16739,1378,3488 is the enrollment amount of what college?,0, +16740,1380,The fighting knights has what type of nickname?,0, +16741,1381,"Boca Raton, Florida had what joined amount?",0, +16742,1385,Who directed the episode that was viewed by 2.57 million people in the U.S.?,0, +16743,1386,Who directed the episode that was viewed by 2.50 million people in the U.S.?,0, +16744,1388,what are all the percent (1990) where state is united states,0, +16745,1390,what are all the percent (1990) where state is mississippi,0, +16746,1393,What is the English version of the title Getto Daun?,0, +16747,1396,What is the Japanese title for Fantasy?,0, +16748,1397,How long is track number 8?,0, +16749,1398,Who was the GT2 winning team when the GT3 winning team was #1 PTG?,0, +16750,1401,What is the type where the country is esp?,0, +16751,1402,What is the name where p is mf?,0, +16752,1403,What is the type where the name is bojan?,0, +16753,1404,What was the first day cover cancellation for the University of Saskatchewan themed stamp?,0, +16754,1405,Who was responsible for the design of the Jasper National Park theme?,0, +16755,1406,What is the paper type of the University of Saskatchewan themed stamp?,0, +16756,1407,Who created the illustration for the stamp that was themed 100 years of scouting?,0, +16757,1410,What is the nickname that means god holds my life?,0, +16758,1411,Who had the high assists for game 49?,0, +16759,1412,What was the score for the game in which Emeka Okafor (10) had high rebounds?,0, +16760,1414,what are all the type where station number is c08,0, +16761,1415,"what are all the type where location is st ives, cambridgeshire",0, +16762,1416,what are all the registrations where station number is c26,0, +16763,1417,what are all the location where station number is c11,0, +16764,1418,what are all the registrations where location is yaxley,0, +16765,1419,What is the issue price (proof) where the issue price (bu) is 34.95?,0, +16766,1421,What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?,0, +16767,1422,What is the year that the issue price (bu) is $26.95?,0, +16768,1424,What is the number when birthday is 15 november 1973?,0, +16769,1425,What is the bowling style of chris harris?,0, +16770,1426,Where is the first class team of date of birth 20 november 1969?,0, +16771,1427,What's Javagal Srinath's batting style?,0, +16772,1428,Shivnarine Chanderpaul used what bowling style? ,0, +16773,1431,"What's the musical guest and the song in the episode titled ""Checkmate""?",0, +16774,1434,What is theoriginal air date of the episode directed by timothy van patten?,0, +16775,1435,"What is the original air date for the title ""no place like hell""?",0, +16776,1437,"What is the original air date where the musical guest and song is blackstreet "" yearning for your love ""?",0, +16777,1438,"What is the title of the episode with the original air date of february 6, 1997?",0, +16778,1440,"Which tittles have an original air date of March 19, 1998",0, +16779,1441,"what are the original air dates with a title of ""spare Parts""",0, +16780,1442,What was the attendance of the game November 24,0, +16781,1443,Who had the highest assists on November 4,0, +16782,1444,Who had the highest rebounds on November 4,0, +16783,1446,What was the final score on March 26?,0, +16784,1447,What is the team when the score is 88–86?,0, +16785,1448,What is the score when high points is from pierce (30)?,0, +16786,1451,"What is the team when location attendance is us airways center 18,422?",0, +16787,1452,What is the record where high assists is pierce (6)?,0, +16788,1453,What was the result of the game when the raptors played @ cleveland?,0, +16789,1454,Who did the high points of game 5?,0, +16790,1456,What is the team of april 25?,0, +16791,1457,Who had the high rebounds when Chris Bosh (16) had the high points?,0, +16792,1458,"What was the score when the location attendance was Air Canada Centre 18,067?",0, +16793,1459,When did Chris Bosh (14) have the high rebounds?,0, +16794,1460,Who had the high points on January 23?,0, +16795,1463,Who had high points when high rebound is gray (8)?,0, +16796,1464,What is the date deng (20) had high points?,0, +16797,1465,"What was the score of united center 22,097?",0, +16798,1467,What was the location attendance on the date of November 15?,0, +16799,1468,"Where was the game played when the high assists were scored by billups , stuckey (4)?",0, +16800,1469,What date was the game for the score L 88–79?,0, +16801,1471,Which team was played when the high points was from Wallace (20)?,0, +16802,1472,Which date was the team playing @ Memphis?,0, +16803,1474,Who had the high assists on the date December 12?,0, +16804,1475,What date was game 57 held on?,0, +16805,1477,Who did the most high rebounds in the game 24?,0, +16806,1478,What was the score of the game played on December 8?,0, +16807,1481,What is the location when the high rebounds was from A. Horford (13)?,0, +16808,1482,How had the high points when the high assists were from J. Johnson (7)?,0, +16809,1483,Who had the high rebounds when the high assists were from J. Johnson (7)?,0, +16810,1484,Which team was played on April 20?,0, +16811,1485,Who had the high rebounds for the game on april 23?,0, +16812,1486,What was the score in the game on May 11? ,0, +16813,1487,Who was the high scorer and how much did they score in the game on May 3? ,0, +16814,1488,What was the series count at for game 5? ,0, +16815,1489,Where was the game on May 15 and how many were in attendance? ,0, +16816,1490,What was the attendance on March 17?,0, +16817,1491,What was the high assist total on May 11?,0, +16818,1493,What is the score of the game with the streak l5,0, +16819,1494,What is the attendance for the home game at Los Angeles Lakers?,0, +16820,1495,What is the record for the game at home Los Angeles Lakers?,0, +16821,1496,What was the result and score of Game #29?,0, +16822,1497,Who was the leading scorer in Game #26?,0, +16823,1498,Who had the high rebounds when the score was l 84–102 (ot)?,0, +16824,1499,Who had the high assists when the high rebounds were from Nick Collison (15)?,0, +16825,1500,Who had the high assists @ Dallas?,0, +16826,1501,"Who had the high assists when the location attendance was Toyota Center 18,370?",0, +16827,1502,What was the record when the high rebounds was from Nick Collison (11)?,0, +16828,1505,Whom did they play on game number 25?,0, +16829,1508,What is the leading scorer on february 1?,0, +16830,1509, what's the score where record is 35–33,0, +16831,1510, what's the home where date is march 27,0, +16832,1511, what's the date where visitor is phoenix suns and record is 31–30,0, +16833,1512, what's the home team where score is l 80–88,0, +16834,1513, what's the leading scorer on march 2,0, +16835,1514, what's the leading scorer where home is sacramento kings,0, +16836,1515, what's the team where date is february 8,0, +16837,1516, what's the location attendance where high rebounds is nick collison (14),0, +16838,1517, what's the record where score is w 105–92 (ot),0, +16839,1518, what's the location attendance where record is 14–39,0, +16840,1520," what's the record where location attendance is keyarena 13,627",0, +16841,1521,What is the score for april 29?,0, +16842,1523,"Name the high points for toyota center 18,269?",0, +16843,1524,what's the preliminaries with average being 9.135,0, +16844,1525,what's the evening gown with preliminaries being 9.212,0, +16845,1526,what's the interview with swimsuit being 9.140,0, +16846,1527,what's the evening gown with swimsuit being 9.134,0, +16847,1528,what's the preliminaries with average being 9.360,0, +16848,1530,"What playoff result happened during the season in which they finished 1st, southern?",0, +16849,1532,What was the result of the open cup when they finished 4th in the regular season?,0, +16850,1535,What was the playoff result for theteam in the apsl in 1992?,0, +16851,1536,What was the status of tropartic?,0, +16852,1537,What is the status of joe gibbs racing?,0, +16853,1538,What is the laops of marcis auto racing?,0, +16854,1539,what's the author / editor / source with index (year) being press freedom (2007),0, +16855,1541,what's the author / editor / source with world ranking (1) being 73rd,0, +16856,1544,Who was the winning team in the 1989 season?,0, +16857,1545,Who won the womens doubles when wu jianqui won the womens singles?,0, +16858,1546,Who won the mixed doubles when ji xinpeng won the mens singles?,0, +16859,1548,WHO WROTE THE STORY WITH THE PRODUCTION CODE OF 1ADK-03,0, +16860,1549,"WHAT IS ""DAVE MOVES OUT"" PRODUCTION CODE?",0, +16861,1550,"WHO WROTE ""DAD'S DEAD""",0, +16862,1551,"WHO AUTHORED ""RED ASPHALT""?",0, +16863,1553,"What's the season number of the episode titled ""Houseboat""?",0, +16864,1554,"What's the season number of the episode titled ""Grad school""?",0, +16865,1555,Who directed the episode with a production code 3ADK-03?,0, +16866,1557,What is the pinyin for the English name Wuping County?,0, +16867,1558,What is the area of the English name Shanghang County?,0, +16868,1559,Which pinyin have a population of 374047?,0, +16869,1562,"What is the the name of the NHL team that is in the same market as the NBA team, Nuggets?",0, +16870,1563,What is the NHL team in the media market ranking number 7?,0, +16871,1565,What are the comments when the vendor and type is alcatel-lucent routers?,0, +16872,1566,What are the comments when vendor and type is enterasys switches?,0, +16873,1567,What is the netflow version when vendor and type is pc and servers?,0, +16874,1568,What are the comments when the implementation is software running on central processor module?,0, +16875,1569,"What is the implementation when the netflow version is v5, v8, v9, ipfix?",0, +16876,1573,What is the percent for when against prohibition is 2978?,0, +16877,1574,What is the percent for in manitoba?,0, +16878,1576,What train number is heading to amritsar?,0, +16879,1577,How often does a train leave sealdah?,0, +16880,1578,Where does the bg express train end?,0, +16881,1579,What's the name of train number 15647/48?,0, +16882,1581,Who is the academic & University affairs when the Human resources & operations is N. Charles Hamilton?,0, +16883,1582,What year was communications and corporate affairs held by Jeff Rotman?,0, +16884,1583,What was the built data for Knocklayd rebuild?,0, +16885,1585,What is the built data on the scrapped information that is cannot handle non-empty timestamp argument! 1947?,0, +16886,1587,What is the built data for number 34?,0, +16887,1589,Who won the womens singles when Marc Zwiebler won the men's singles?,0, +16888,1591,"For the model with torque of n·m (lb·ft)/*n·m (lb·ft) @1750, what is the power?",0, +16889,1592,"For the model/engine of 1.8 Duratec HE, what is the torque?",0, +16890,1594,"What is the torque formula for the model/engine which has 1,753 cc capacity?",0, +16891,1595,What is the torque formula for the 1.6 Duratec ti-vct model/engine?,0, +16892,1596,what's the date of birth with end of term being 2april1969,0, +16893,1597,who is the the president with date of inauguration being 4june1979,0, +16894,1599,what's the date of birth with end of term being 5july1978,0, +16895,1600,what's the date of birth with # being 2,0, +16896,1602,Who was the winning pitcher on june 25?,0, +16897,1604,Who is the losing pitcher when the winning pitcher is roy oswalt?,0, +16898,1605,Who is the winning pitcher when attendance is 38109?,0, +16899,1607,Who's the player for the New York Rangers?,0, +16900,1609,What is the nationality of the player from Buffalo Sabres?,0, +16901,1610,What position does the player from Peterborough Petes (OHA) play on?,0, +16902,1612,What team does George Hulme play for?,0, +16903,1613,What position does Neil Komadoski play?,0, +16904,1614,where is team player mike mcniven played for?,0, +16905,1615,what college has nhl team chicago black hawks?,0, +16906,1616,what is the college that has the nhl chicago black hawks?,0, +16907,1617,who is the player with the nationality of canada and pick # is 65?,0, +16908,1619,What is the position listed for the team the Philadelphia Flyers?,0, +16909,1621,Which players have the position of centre and play for the nhl team new york rangers,0, +16910,1622,Which nhl team has a college/junior/club team named university of notre dame (ncaa),0, +16911,1623,what are all the position where player is al simmons,0, +16912,1624,What nationality is pick # 89,0, +16913,1625,Which college/junior/club teams nationality is canada and nhl team is minnesota north stars,0, +16914,1627,What is the nationality of the player from the Detroit Red Wings?,0, +16915,1628,What position does Jim Johnston play?,0, +16916,1629,Which team does Pierre Duguay play for?,0, +16917,1630,What country does the goaltender come from?,0, +16918,1631, who is the writer where viewers is 5.16m,0, +16919,1632," who is the writer for episode ""episode 7""",0, +16920,1633,For which league is the open cup the quarter finals,0, +16921,1634,What open cups where played in 2002,0, +16922,1635,What leagues includes division 3,0, +16923,1636,"What was the result of the playoffs when the regular season was 7th, southeast",0, +16924,1637,What's the original air date of the episode with production code 2T6719?,0, +16925,1638,Who's the writer of the episode see by 12.13 million US viewers?,0, +16926,1641,What's the production code of the episode seen by 11.64 million US viewers?,0, +16927,1642,What is the season where the winner is norway and the winner women is russia?,0, +16928,1643,What is the winner women and third is italy and runner-up is finland?,0, +16929,1645,what's the report with fastest lap being felipe massa and winning driver being jenson button,0, +16930,1646,what's the grand prix with winning driver being jenson button,0, +16931,1647,who is the the pole position with grand prix being italian grand prix,0, +16932,1648,who is the the fastest lap with grand prix being european grand prix,0, +16933,1649,"How many viewers, in millions, were for the episode directed by Tawnia McKiernan?",0, +16934,1651,"How many U.S Viewers, in millions, were for series # 26?",0, +16935,1652,What is the third year course in science?,0, +16936,1653,What is the second year class following pag-unawa?,0, +16937,1655,What is the first year course in the program where geometry is taken in the third year?,0, +16938,1656,What is the second year course in the program where physics is taken in the fourth year?,0, +16939,1657,Who won the womens singles event the year that Jonas Lyduch won?,0, +16940,1658,Who won the mens doubles the year Alison Humby won the womens singles?,0, +16941,1659,What are all the .308 Winchester cartridge types with 38 for the 300 m group (mm),0, +16942,1660,For which 100 m group ( moa ) is the 300 m group ( moa ) 0.63,0, +16943,1661,What are all the 300 m group (mm) with a .308 winchester cartridge type of ruag swiss p target 168 gr hp-bt,0, +16944,1662,For which .308 winchester cartridge type is the 300 m group ( moa ) 0.51,0, +16945,1663,For which 300 m group ( moa ) is the 300 m group (mm) 45,0, +16946,1664,What are all the 100 m group (mm) with a .308 winchester cartridge type of .300 winchester magnum cartridge type,0, +16947,1666,Who won the Men's Doubles when Karina de Wit won the Women's Singles?,0, +16948,1668,Who won the Men's Doubles when Guo Xin won the Women's Singles?,0, +16949,1669,Which college did Dennis Byrd come from?,0, +16950,1670,Bob Johnson plays for which AFL team?,0, +16951,1671,What position does the Cincinnati Bengals' player have?,0, +16952,1672,What position does Syracuse's player have?,0, +16953,1673,What college did the Cincinnati Bengals' player come from?,0, +16954,1674,What is the pinyin for explaining music?,0, +16955,1676,What is the pinyin for explaining beasts?,0, +16956,1680,Who is the mens doubles when womens doubles is anastasia chervyakova romina gabdullina?,0, +16957,1681,Who is themens doubles when the mens singles is flemming delfs?,0, +16958,1682,Who was the womens doubles when the mixed doubles is jacco arends selena piek?,0, +16959,1683,Who was the mens doubles when womens singles is mette sørensen?,0, +16960,1684,Who is the Motogp winnder for the Catalunya Circuit?,0, +16961,1685,Who is the 125cc winnder for the Phillip Island circuit?,0, +16962,1686,What is the date of the German Grand Prix?,0, +16963,1687,What circuit was on the date 4 May?,0, +16964,1690,Name the mens singles for 1944/1945,0, +16965,1692,How many times was iran barkley an opponent?,0, +16966,1693,Who was the opponent when the result was ud 12/12 and date was 1993-05-22?,0, +16967,1695,What is the name of the title winner in the ring light heavyweight (175) division?,0, +16968,1697,Who won the mens singles in 2009?,0, +16969,1698,What are the the University of Richmond's school colors?,0, +16970,1699,What are the school colors of the University of New Hampshire?,0, +16971,1700,What's the value of 1 USD in Paraguay?,0, +16972,1701,What's the value of 1 Euro in the country where the value of 1 USD is 483.050 of the local currency?,0, +16973,1702,What's the name of the central bank in the country where Colombian Peso (cop) is the local currency?,0, +16974,1703,What's the name of the country where 1 USD equals 1.71577 of the local currency.,0, +16975,1706,Who wrote the episode 14 in series?,0, +16976,1707,Who directed the episode with production code 28?,0, +16977,1708,"What is the original air date for the episode ""a pig in a poke""?",0, +16978,1710,"Who wrote the episode titled ""the wedding anniversary""?",0, +16979,1711,What's the title of the episode with a season number 25?,0, +16980,1712,What's the title of the episode with a production code 136?,0, +16981,1713,"What is the original air date for ""Oliver's Jaded Past""?",0, +16982,1717,who is the class where note is reportedly still active as of 2012?,0, +16983,1719,What titles were fought for on 1997-04-12?,0, +16984,1720,What is the date of the match for the lineal super lightweight (140)?,0, +16985,1721,What is the date of the match for the wbc flyweight (112) title?,0, +16986,1722,Who's the leader in the young rider classification in stage 12?,0, +16987,1723,Who's leading in the general classification in stage 1a?,0, +16988,1725,What's the leader team in the Trofeo Fast Team in stage 20?,0, +16989,1726,"Who's the winner in stage 1a, where the leader in the young rider classification is Francesco Casagrande?",0, +16990,1727,Who's the leader in the general classification in stage 1a?,0, +16991,1729,Name the trofeo fast team of stage 2,0, +16992,1730,Name the young rider classification with laudelino cubino,0, +16993,1732,What kind of bleeding does aspirin cause?,0, +16994,1733,How in prothrombin affected by glanzmann's thrombasthenia.,0, +16995,1734,How long does thromboplastin last when prothrombin is unaffected?,0, +16996,1735,Is uremia affect prothrombin?,0, +16997,1736,Is prothrombin time long when thromboplastin is prolonged?,0, +16998,1737,How many live births were there in 2006 in South Yorkshire (met county)?,0, +16999,1738,How many TFR were there in 2006 when the GFR was 53.8?,0, +17000,1741,Where were the Womens Doubles in the 1951/1952 season and who won?,0, +17001,1742,"Who was the womens singles winnerwhen the mens doubles were stefan karlsson claes nordin , bk aura gbk?",0, +17002,1743,Who were the winners of mens doubles in the 1986/1987 season held?,0, +17003,1744,"Who won the Mens Singles when the Mixed doubles went to Stellan Mohlin Kerstin Ståhl , Aik?",0, +17004,1745,Who won the womens singles in the 1958/1959 season?,0, +17005,1746,What county is in isolation of 29?,0, +17006,1747,What is the county with an elevation of 1262?,0, +17007,1748,Name the rank where the municipality is sunndal?,0, +17008,1749,Name the county with the peak being indre russetind?,0, +17009,1751,Who won the mens singles when sayaka sato won the womens singles?,0, +17010,1754,Who won the men's double when Chou Tien-Chen won the men's single?,0, +17011,1755,What team was promoted in the Serbian League East in the same season when Kolubara was promoted in the Serbian League Belgrade?,0, +17012,1756,what's the series with reverse being swimming,0, +17013,1757,what's the alloy with series being ii series,0, +17014,1758,what's the denomination with year being 2008 and reverse being football,0, +17015,1762,"Nigeria competed on July2, 1999.",0, +17016,1765,what's the runners-up with nation being malaysia,0, +17017,1768,how many winners from vietnam,0, +17018,1772,Who is safe if John and Nicole are eliminated?,0, +17019,1774,How many goals were scored by the player who played 17 matches?,0, +17020,1775,What is the name of the player who played in 2009 only?,0, +17021,1776,How many goals have been scored by Tiago Gomes?,0, +17022,1777,Which athlete is from Mexico City?,0, +17023,1778,What is the athlete from Edwardsville?,0, +17024,1779,What was the wind on 21 june 1976?,0, +17025,1781,What's the title of the episode with a broadcast order s04 e01?,0, +17026,1785,What's the original air date of the episode with a broadcast order s04 e01?,0, +17027,1787,Which police force serves a population of 17000?,0, +17028,1788,"When total costs (2005) are $700,116, what is the cost per capita?",0, +17029,1789,What is the cost per capita in the Courtenay municipality?,0, +17030,1792,What is the value of total costs (2005) in the Coldstream municipality?,0, +17031,1793,What is the interview score for the state of Virginia?,0, +17032,1794,How much is the average score for New York state?,0, +17033,1795,Which interview score corresponds with the evening gown score of 8.977?,0, +17034,1798,Which interview score belongs to the state of Nevada contestant?,0, +17035,1799,"For the competition Mithras Cup 2nd Rd (2nd Leg), what is the date and time?",0, +17036,1800,Is the biggest win recorded as home or away?,0, +17037,1801,What competitions record a date and time of 17.04.1920 at 15:00?,0, +17038,1802,What records are hit where the opponent is Aylesbury United?,0, +17039,1803,Who was the opponent during the biggest defeat?,0, +17040,1805,What is the power when ch# is tv-26 and dyfj-tv?,0, +17041,1806,What is the coverage for relay tv-37?,0, +17042,1807,What is the ch# of dwlj-tv?,0, +17043,1808,What is the coverage of relay 5kw of dyfj-tv?,0, +17044,1809,What is the running of marlene sanchez?,0, +17045,1811,What's Luis Siri's shooting score?,0, +17046,1812,What's Eduardo Salas' riding score?,0, +17047,1814,Who's the player with 2:05.63 (1296 pts) swimming score?,0, +17048,1815,What's the fencing score of the player with 9:40.31 (1080 pts) in running?,0, +17049,1816,What's Eli Bremer's fencing score?,0, +17050,1818,Who wrote the title that received 1.211 million total viewers?,0, +17051,1819,Who directed the title that was written by Adam Milch?,0, +17052,1821,How many millions of total viewers watched season #8?,0, +17053,1822,What is the English spelling of the strongs transliteration: 'adoniyah?,0, +17054,1823,What is the hebrew word listed for strongs # 5418?,0, +17055,1824,List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu,0, +17056,1825,What is the strongs # for the hebrew word יִרְמְיָה?,0, +17057,1826,What is the strongs # for the english spelling of the word jirmejah?,0, +17058,1828,Which regular season contains playoffs in division finals?,0, +17059,1832,In which season was Jeanne d'Arc (Bamako) the runner-up?,0, +17060,1833,What was the regular season listing in 2007?,0, +17061,1834,What was the playoff result in 2002?,0, +17062,1835,What was the open cup results in 2004?,0, +17063,1837,Kevin lucas appears in which seasons?,0, +17064,1839,What seasons does stella malone appear?,0, +17065,1840,What seasons does Nick lucas appear?,0, +17066,1841,What seasons does Kevin Jonas appear?,0, +17067,1842,What seasons does Nick Lucas appear in?,0, +17068,1845,What is the title of season 3 ep# 12?,0, +17069,1846,What is the length of the track named michigan international speedway?,0, +17070,1847,Where is the track that opened in 1995?,0, +17071,1848,What is the location of the daytona international speedway?,0, +17072,1849,What is the location of the track that opened in 1950?,0, +17073,1850,What is the power of the 3.2i v8 32v?,0, +17074,1851,What type of quattroporte iv only produced 340 units?,0, +17075,1852,When were 668 units produced?,0, +17076,1853,what is the overall record when the club is dallas burn?,0, +17077,1854,what is the goals for when the club is new england revolution?,0, +17078,1855,What was the total prize money where John Tabatabai was the runner-up?,0, +17079,1856,Who is the winner where the losing hand is Ah 7s?,0, +17080,1857,What was the losing hand where the winning hand was 7h 7s?,0, +17081,1859,When Fabrizio Baldassari is the runner-up what is the total prize money?,0, +17082,1861,What is the sector when the population change 2002-2012 (%) is 79.6?,0, +17083,1870,The Kansas City Wizards had a 9-10-9 record and what goals against avg? ,0, +17084,1871,The Dallas Burn had a 12-9-7 record and what number of goals for? ,0, +17085,1872,D.C. United had a 9-14-5 record and what goals against avg.?,0, +17086,1874,what is the date (from) where date (to) is 1919?,0, +17087,1876,what is the date (from) where the notes are apeldoornsche tramweg-maatschappij?,0, +17088,1878,what is the location for the date (to) 8 october 1922?,0, +17089,1879,what are the notes for date (from) 12 august 1897?,0, +17090,1880,what's the livingstone with fitzroy being 9499,0, +17091,1888,When was the ship launched when the commissioned or completed(*) is 6 june 1864?,0, +17092,1889,When was the ship tecumseh launched?,0, +17093,1890,What is the namesake of the ship that was commissioned or completed(*) 16 april 1864?,0, +17094,1892,What is the program where the focus is general management?,0, +17095,1893,what is teaching language where the focus is auditing?,0, +17096,1894,WHat is the program where duration (years) is 1.5 and teaching language is german/english?,0, +17097,1895,What is the teaching language with the duration (years) 3.5?,0, +17098,1896,What is the program where the focus is risk management and regulation?,0, +17099,1897,What are the release dates for songs in 2003?,0, +17100,1898,"How many singles have a song titled ""Antisocial""?",0, +17101,1899,"Which artist has a song titled ""Soothsayer""?",0, +17102,1902,What is the driver for the team whose primary sponsor is Quicken Loans / Haas Automation?,0, +17103,1904,What date did De Vries start?,0, +17104,1906,What was the loan club when Derry played?,0, +17105,1907,Who was the loan club for the Westlake game?,0, +17106,1908,What was the position (P) for Clapham?,0, +17107,1909,What district is represented by a Republican Appropriations Committee?,0, +17108,1910,What are the districts represented by the Democratic Party and a Committee in Economic Matters?,0, +17109,1912,What was the first win for pos 6?,0, +17110,1913,What is the molecular target listed under the compounded name of hemiasterlin (e7974),0, +17111,1914,What is the molecular target listed under the trademark of irvalec ®,0, +17112,1915,What is the compound name listed where marine organism α is worm,0, +17113,1917,What is the trademark listed for the molecular target : dna-binding?,0, +17114,1919,What's the number of the episode directed by Tucker Gates?,0, +17115,1920,"Who is the director of the episode titled ""Cheyenne, WY""?",0, +17116,1921,What was the original air date for the episode with 3.90 u.s. viewers (millions)?,0, +17117,1922,What is the original air date for no. 2?,0, +17118,1923,"Who directed ""hot and bothered""?",0, +17119,1924,Who directed the episode with 3.19 million u.s. viewers?,0, +17120,1925,What's the price (in USD) of the model whose L3 is 18 mb?,0, +17121,1926,What's the clock speed of the model that costs $910?,0, +17122,1928,what is the tourney where the winner is kevin mckinlay?,0, +17123,1929,what's the thursday iuppiter (jupiter) with tuesday mars (mars) being marterì,0, +17124,1930,what's the sunday sōl (sun) with friday venus (venus) being vernes,0, +17125,1931,what's the thursday iuppiter (jupiter) with friday venus (venus) being vendredi,0, +17126,1932,what's the tuesday mars (mars) with day: (see irregularities ) being ancient greek,0, +17127,1933,what's the saturday saturnus ( saturn) with wednesday mercurius (mercury) being mercuridi,0, +17128,1934,what's the thursday iuppiter (jupiter) with saturday saturnus ( saturn) being jesarn,0, +17129,1935,What is the sequencer when ion torrent pgm is 200-400 bp?,0, +17130,1937,How much was solidv4 when pacbio is $300 usd?,0, +17131,1938,What is solidv4 when sequencer is data output per run?,0, +17132,1939,WHat is hiseq 2000 when 454 gs flx is 700 bp?,0, +17133,1940,What is 454 gs flx when pacbio is 100-500 mb?,0, +17134,1942,What's the Slovene word for Thursday?,0, +17135,1943,How do you say Friday in Polish?,0, +17136,1944,What's the Croatian word for Saturday?,0, +17137,1945,"In the system where Sunday is ஞாயிற்று கிழமை nyāyitru kizhamai, what is Saturday?",0, +17138,1946,"In language where Wednesday is বুধবার budhbar, what is Thursday?",0, +17139,1947,"In language where Saturday is සෙනසුරාදා senasuraadaa, what is Tuesday?",0, +17140,1948,"In language where Thursday is برس وار bres'var, what is Sunday?",0, +17141,1949,"In language where Wednesday is برھ وار budh'var, what is Saturday?",0, +17142,1950,What is saturday day seven when thursday day five is ሐሙስ hamus?,0, +17143,1951,What is thursday day five when friday day six is პარასკევი p'arask'evi?,0, +17144,1952,What is tuesday day three when thursday day five is kamis?,0, +17145,1953,What is friday day six when thursday day five is پچھمبے pachhambey?,0, +17146,1954,What is friday day six when monday day two is isnin?,0, +17147,1959,When was the Super B capacity reached when the number of truck loads north was 7735?,0, +17148,1960,When was the super b capacity reached when the freight carried s tonne was 198818?,0, +17149,1961,How many loses corresponded to giving up 714 points?,0, +17150,1962,How many draws were there when there were 30 tries against?,0, +17151,1963,How many try bonuses were there when there were 64 tries for?,0, +17152,1964,Which club gave up 714 points?,0, +17153,1965,"What is the third entry in the row with a first entry of ""club""?",0, +17154,1966,"What is the 8th entry in the row with a first entry of ""club""?",0, +17155,1968, what was the drawn when the tries for was 46?,0, +17156,1969,What was the won when the points for was 496?,0, +17157,1970,What was the losing bonus when the points against was 445?,0, +17158,1971,What was the tries against when the drawn was 2?,0, +17159,1972,What was the drawn when the tries against was 89?,0, +17160,1976,How many played where the points were 80?,0, +17161,1977,what amount of points were lost by 13?,0, +17162,1978,what are the total points agains the score of 63?,0, +17163,1980,HOW MANY PLAYERS PLAYED IN THE GAME THAT WON WITH 438 POINTS,0, +17164,1981,HOW MANY GAMES HAD A WIN WITH A BONUS OF 11,0, +17165,1982,HOW MANY GAMES WERE TIED AT 3?,0, +17166,1983,HOW MANY GAMES HAD BONUS POINTS OF 6?,0, +17167,1984,HOW MANY GAMES WERE TIED AT 76?,0, +17168,1986,What was the number of earnings were cuts made are 19 and money list rank is 3?,0, +17169,1988,what are all the barrel lengths whith the name ar-15a3 competition hbar,0, +17170,1989,What is the fire control for the sporter target,0, +17171,1990,What is the days with rain figure for the city of Santiago de Compostela?,0, +17172,1992,What is the value of barrel twist when the barrel profile is SFW?,0, +17173,1993,What kind of hand guards are associated with a rear sight of A1 and stock of A2?,0, +17174,1994,How many inches is the barrel length when the rear sight is weaver and the barrel profile is A2?,0, +17175,1995,What is the muzzle device on the colt model le1020?,0, +17176,1996,What is the barrell profile that goes with the gas piston carbine?,0, +17177,1997,What models have an a2 barrel profile?,0, +17178,1998,What hand guard system is used with a gas piston commando?,0, +17179,1999,What is the bayonet lug status for a m4 hbar and m4le carbine equipped?,0, +17180,2000,What is the barrel length for a cold model le6921sp?,0, +17181,2001,Name the barrel length for rear sight a2 for factory compensator,0, +17182,2002,Name the barrel twist for colt model mt6400,0, +17183,2003,Name the forward assist for a2 barrel profile,0, +17184,2004,Name the stock for colt model mt6601,0, +17185,2006,How many games ended up with 16 points?,0, +17186,2007,What was the tries against count for the club whose tries for count was 29?,0, +17187,2008,How many points does Croesyceiliog RFC have?,0, +17188,2009,What's the points for count for the club with 41 points and 8 won games?,0, +17189,2010,What's the points for count for the club with tries for count of 29?,0, +17190,2011,What's the try bonus count for the club whose tries against count is 83?,0, +17191,2012,Where is the real estate agent from?,0, +17192,2013,"What background does the person from New york, New york, have?",0, +17193,2016,Where was Kristen Kirchner from?,0, +17194,2020,What club has a tries for count of 19?,0, +17195,2022,What's the number of drawn games for the club with a tries for count of 76?,0, +17196,2023,What is the against percentage in the Vest-Agder constituency?,0, +17197,2025,"How many for percentages are there when the against percentage is 35,782 (69)?",0, +17198,2027,"List all total poll percentages when the for percentage is 59,532 (54).",0, +17199,2028,What's the writer of Episode 1?,0, +17200,2030,What's the original airdate of the episode directed by Pete Travis?,0, +17201,2031,How many millions of viewers did watch Episode 5?,0, +17202,2033,Who directed Episode 5?,0, +17203,2034,How many viewers did Episode 5 have?,0, +17204,2036,what's height with position being center and year born being bigger than 1980.0,0, +17205,2037,what's player with position being forward and current club being real madrid,0, +17206,2038,what's current club with player being nikolaos chatzivrettas,0, +17207,2039,what's current club with height being 2.09,0, +17208,2040,what's current club with position being center and no being bigger than 12.0,0, +17209,2041,What is the opponent of the veterans stadium,0, +17210,2045,Name the height for the player born in 1980 and center?,0, +17211,2047,Name the current club for number 6,0, +17212,2048,Name the current club for player sacha giffa,0, +17213,2050,Which club had a player born in 1983?,0, +17214,2051,How tall is Marco Belinelli?,0, +17215,2053,What player is number 6?,0, +17216,2056,what's the height with position being forward and current club being real madrid,0, +17217,2057,what's the height with current club being dkv joventut,0, +17218,2058,what's the current club with player being felipe reyes,0, +17219,2059,Who directed the episode that had 6.04 million viewers? ,0, +17220,2060,What number episode had 5.74 million viewers? ,0, +17221,2061,When did the construction of the unit Chinon B1 with net power of 905 MW start?,0, +17222,2062,What's the total power of the unit whose construction finished on 14.06.1963?,0, +17223,2064,What's the shut down state of the unit that's been in commercial operation since 01.02.1984?,0, +17224,2065,When was the start of the construction of the unit that's been in commercial operation since 04.03.1987?,0, +17225,2068,what is the series number where the date of first broadcast is 16 october 2008?,0, +17226,2070,"What teams played in Washington, DC the year that Ramapo LL Ramapo was the game in New York?",0, +17227,2071,Which year did Maryland hold the title with Railroaders LL Brunswick?,0, +17228,2072,Who played in Maryland the same year that New Jersey hosted Somerset Hills LL Bernardsville?,0, +17229,2073,"After the year 2008.0, who played for Maryland the same year M.O.T. LL Middletown played in Delaware?",0, +17230,2074,Who played in Maryland the same year that Deep Run Valley LL Hilltown played in Pennsylvania?,0, +17231,2075,Where is Bluetongue Stadium located? ,0, +17232,2076,"When was the team, whose captain is Matt Smith, founded? ",0, +17233,2077,Who's the captain of the team whose head coach is Alistair Edwards? ,0, +17234,2079,Where is Westpac Stadium located? ,0, +17235,2080,What is the new hampshire in 2009?,0, +17236,2089,What was the date of the game in week 14?,0, +17237,2092,Name the captain for ben sigmund,0, +17238,2093,Name the international marquee for shane stefanutto,0, +17239,2094,Name the australian marquee for alessandro del piero,0, +17240,2095,Name the vice captain for melbourne victory,0, +17241,2097,Name the captain for emile heskey,0, +17242,2098,What championship had a margin of playoff 2?,0, +17243,2099,What was the margin of the Masters Tournament?,0, +17244,2100,What was the winning score of the Masters Tournament?,0, +17245,2101,What was the winning score of the PGA Championship (3)?,0, +17246,2103,What is the scoring aerage for 111419?,0, +17247,2104,What is the money list rank for 1966?,0, +17248,2106,What is the county where kerry# is 59740?,0, +17249,2107,In cook county Kerry# is?,0, +17250,2108,"When bush# is 3907, what is Kerry#?",0, +17251,2110,what's the mole with airdate being 8 january 2009,0, +17252,2111,"what's the mole with prize money being €24,475",0, +17253,2113,what's airdate with international destination being scotland,0, +17254,2114,what's the mole with winner being frédérique huydts,0, +17255,2115,what's runner-up with season being season 13,0, +17256,2116,In what county did 29231 people vote for Kerry?,0, +17257,2117,What's the name of the county where 48.3% voted for Bush?,0, +17258,2118,What's the percentage of votes for other candidates in the county where Bush got 51.6% of the votes?,0, +17259,2119,What's the name of the county where 54.6% voted for Bush?,0, +17260,2121,Who are the blockers where points are scored by Zach Randolph (24)?,0, +17261,2122,Who are the blockers where points are scored by Zach Randolph (24)?,0, +17262,2124,Who had all of the blocks in 2012?,0, +17263,2127,what are all the gold medals when the silver medals is smaller than 1.0?,0, +17264,2132,what are all the date for gt3 winner oliver bryant matt harris,0, +17265,2133,what are all the date for gtc winners graeme mundy jamie smyth and gt3 winners hector lester tim mullen,0, +17266,2134,what are all the circuit for 9 september and gt3 winner hector lester allan simonsen,0, +17267,2135,what are all the circuit for gtc winner graeme mundy jamie smyth and pole position bradley ellis alex mortimer,0, +17268,2136,what are all the gtc winners for pole position no. 21 team modena,0, +17269,2137,"What material is made with a rounded, plain edge?",0, +17270,2139,When was the coin with the mass of 3.7 g first minted?,0, +17271,2141,Name the gdp where gdp per capita 20200,0, +17272,2143,What is the gdp of the country with an area of 83871 (km2)?,0, +17273,2144,What was the gdp of the country with a gdp per capita of $18048?,0, +17274,2146,What is the season for no award given for rookie of the year?,0, +17275,2149,what are all the rating with viewers (m) being 2.89,0, +17276,2150,what are all the overall with rating being 1.4,0, +17277,2151,what are all the overall with viewers (m) being 2.61,0, +17278,2152,what are all the rating with viewers (m) being 2.61,0, +17279,2153,what is the year where the qualifying score was 15.150?,0, +17280,2156,what is the final-rank for the uneven bars and the competition is u.s. championships?,0, +17281,2159,When did the season of gurmeet choudhary premiere?,0, +17282,2160,When was the season finale of meiyang chang?,0, +17283,2161,What is the winner of rashmi desai?,0, +17284,2162,When is the season finale of meiyang chang?,0, +17285,2163,In what number kōhaku was the red team host Peggy Hayama? ,0, +17286,2164,Who was the mediator in kōhaku number 53?,0, +17287,2165,On what date was Keiichi Ubukata the mediator and Mitsuko Mori the red team host?,0, +17288,2168,What is the # for the episode with a Production code of 3T7057?,0, +17289,2169,What is the Original air date for the episode directed by Tricia Brock?,0, +17290,2170,What is the Original air date for the episode written by Peter Ocko?,0, +17291,2171,How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?,0, +17292,2174,What was the release date of Sonic Adventure 2?,0, +17293,2175,Was the release on April 8 available on Windows?,0, +17294,2176,What title was released on August 27?,0, +17295,2177,Is icewind dale available for windows,0, +17296,2178,List all number of yards with an AST of 8.,0, +17297,2179,Who did the Seahawks play when the listed attendance was 61615?,0, +17298,2180,"What was the Seahawks record on September 18, 1983?",0, +17299,2182,What was the score of the game when the attendance was 48945?,0, +17300,2183,"Who did the Seahawks play on September 4, 1983?",0, +17301,2184,What was the record set during the game played at Hubert H. Humphrey Metrodome?,0, +17302,2185,On what date was the game against San Diego Chargers played?,0, +17303,2186,What was the date of the game against Kansas City Chiefs?,0, +17304,2187,"What was the result of the game played on September 16, 1984?",0, +17305,2188,On what date did the game end with the result w 43-14?,0, +17306,2189,What was the attendance at the game that resulted in w 24-20? ,0, +17307,2190,Who did they play against in the game that ended in 2-2?,0, +17308,2191,When was the record of 0-1 set?,0, +17309,2193,What was the attendance when the record was 1-1?,0, +17310,2195,What date did the Seahawks play the Kansas City Chiefs at the Kingdome?,0, +17311,2197,"Where did the teams play on October 16, 1977?",0, +17312,2198,What team was the opponent at Mile High Stadium?,0, +17313,2199,What was the record when they played the Los Angeles Rams?,0, +17314,2200,Where did they play the San Diego Chargers?,0, +17315,2202,On what day was the team playing at milwaukee county stadium?,0, +17316,2204,Which episode was watched by 11.75 million U.S. viewers?,0, +17317,2205,"How many U.S. viewers, in millions, watched the episode that aired on November 13, 2007?",0, +17318,2207,How many millions of U.S. viewers watched episode 185?,0, +17319,2208,"Who directed the episode that originally aired on January 15, 2008?",0, +17320,2211,What was the election date for H. Brent Coles?,0, +17321,2212,What was the election date for Arthur Hodges?,0, +17322,2213,What is the country for # 8,0, +17323,2214,what is the country where the player is phil mickelson?,0, +17324,2216,"What round was held at Knowsley Road, resulting in a lose.",0, +17325,2217,What's the score of the QF round?,0, +17326,2219,Who was the opponent in round 2?,0, +17327,2220,When was the game happening at Halton Stadium?,0, +17328,2221,What competition ended with a score of 38-14?,0, +17329,2222,what's the population with country being chile,0, +17330,2223,what's the s mestizo with asians being 0.2% and whites being 74.8%,0, +17331,2224,what's the country with es mulatto being 3.5%,0, +17332,2225,what's the s mestizo with population being 29461933,0, +17333,2226,what's the native american with es mulatto being 0.7%,0, +17334,2228,When did the episode directed by David Duchovny originally air?,0, +17335,2229,"What's the title of the episode directed by David von Ancken, with a episode number bigger than 16.0?",0, +17336,2234,what is the original air date for the episoe written by vanessa reisen?,0, +17337,2235,"What is the u.s. viewers (million) for the title ""the recused""",0, +17338,2237,what is the maximum completed for address on 410 22nd st e,0, +17339,2239,what are all the building with 12 storeys,0, +17340,2241,What is the region 2 for the complete fifth series?,0, +17341,2243,What is the region 1 where region 4 is tba is the complete eighth series?,0, +17342,2244,Name the region 4 for the complete fifth series,0, +17343,2245,How many tries were against when the number won was 14?,0, +17344,2246,What was the number of bonus tries when there were 522 points against?,0, +17345,2248,What amount of points for were there when there was 52 points?,0, +17346,2249,What was the number of points against when the amount won is 10?,0, +17347,2250,What is listed under try bonus when listed under Tries for is tries for?,0, +17348,2251,What is the original date of the repeat air date of 26/01/1969?,0, +17349,2252,What is the repeat date of the episode that aired 22/12/1968?,0, +17350,2253,who is the writer of the episode with prod.code 30-17,0, +17351,2255,"In the 2008/2009 season one team had a season total points of 31, for that team how many total points were scored against them?",0, +17352,2256,"In the 2008/2009 season one team had 1 losing bonus, How many points did that team score that year?",0, +17353,2257,"In the 2008/2009 season one team had 47 tries against, how many games did they win that year?",0, +17354,2258,"In the 2008/2009 season one team had 39 tries against, how many losing bonuses did they have that year?",0, +17355,2259,Who were the candidates when ed markey was the incumbent?,0, +17356,2261,Who were the candidates when Barney Frank was the incumbent?,0, +17357,2263,What party did incumbent Albert Wynn belong to? ,0, +17358,2264,What was the result of the election in the Maryland 7 district? ,0, +17359,2266,What were the results in the election where Albert Wynn was the incumbent? ,0, +17360,2267,Who were the candidates in the Maryland 5 district election? ,0, +17361,2268,What district is Henry Hyde in,0, +17362,2270,Which district is Joe Moakley?,0, +17363,2273,Name the results for district new york 24,0, +17364,2274,Name the district for carolyn mccarthy,0, +17365,2276,Which party does the incumbent first elected in 1994 belong to?,0, +17366,2278,Who was elected in 1972,0, +17367,2280,what is the party with the incumbent jim demint?,0, +17368,2281,what is the party for the district south carolina 4?,0, +17369,2282,what is the party when candidates is jim demint (r) 80%?,0, +17370,2283,what is the party when candidates is jim demint (r) 80%?,0, +17371,2284,who are the candidates when the incumbent is lindsey graham?,0, +17372,2285,What was the results when the incumbent was ernest istook?,0, +17373,2286,What was the results for the district oklahoma 3?,0, +17374,2288,What is the party when the candidates were ernest istook (r) 69% garland mcwatters (d) 28%?,0, +17375,2289,when was the first elected for districk oklahoma 1?,0, +17376,2290,What were the results for the district oklahoma 5?,0, +17377,2293,Who were the candidates in district Pennsylvania 3?,0, +17378,2295,What was the result of the election featuring incumbent norman sisisky?,0, +17379,2296,Who were the candidates in the district first elected in 1998 whose incumbent ended up being Paul Ryan?,0, +17380,2297,Who ran in the district elections won by Tom Petri?,0, +17381,2300,Name the first elected for texas 6 district,0, +17382,2301,Name the incumbent for texas 22 district,0, +17383,2302,How did the election in the Florida 14 district end?,0, +17384,2303,Who's the incumbent of Florida 12 district?,0, +17385,2304,Who is the incumbent of Florida 9?,0, +17386,2305,Who's the incumbent in Florida 6?,0, +17387,2306,What party does Bill McCollum belong to?,0, +17388,2307,What are the results in the county with Peter Deutsch as a candidate?,0, +17389,2308,How did the election end for Robert Wexler?,0, +17390,2309,What party was the winner in the district Maryland 6?,0, +17391,2310,Who run for office in district Maryland 3?,0, +17392,2311,List the candidates in district Maryland 1 where the republican party won.,0, +17393,2313,What party is Frank Lobiondo a member of?,0, +17394,2314,Who were the candidates in the district whose incumbent is Bill Pascrell?,0, +17395,2315,What is the party of the district incumbent Jim Saxton?,0, +17396,2316,What party is John McHugh a member of?,0, +17397,2317,What's the party elected in the district that first elected in 1990?,0, +17398,2318,What's the first elected year of the district that Ed Towns is an incumbent of?,0, +17399,2320,What were the candidates in the district that first elected in 1980?,0, +17400,2321,When was Chaka Fattah first elected in the Pennsylvania 2 district? ,0, +17401,2323,When was incumbent Bud Shuster first elected? ,0, +17402,2325,Incumbent Tim Holden belonged to what party? ,0, +17403,2326,In what district was Tim Holden the incumbent? ,0, +17404,2327,Which incumbent was first elected in 1984?,0, +17405,2328,When was the incumbent in the Tennessee 4 district first elected? ,0, +17406,2329,Who are the candidates in the Tennessee 3 district election? ,0, +17407,2331,List all the candidates for the seat where the incumbent is Sam Gibbons?,0, +17408,2332,Who were the candidates in district Wisconsin 4?,0, +17409,2333,Who's the incumbent in the district that first elected in 1969?,0, +17410,2334,Who's the incumbent of district Wisconsin 5?,0, +17411,2336,What party was first elected in 1974?,0, +17412,2337,What district is bill thomas from?,0, +17413,2338,What district is bill thomas from?,0, +17414,2339,Who was the incumbent of district Georgia 2?,0, +17415,2340,What district is Mac Collins an incumbent in?,0, +17416,2342,Who were the candidates in the district where Charlie Norwood is the incumbent?,0, +17417,2343,"Which result did the Republican have with the incumbent, Billy Tauzin?",0, +17418,2346,List all results in elections with Richard Baker as the incumbent.,0, +17419,2349,what's the result with district being washington 7,0, +17420,2351,"what's the result for first elected in 1948 , 1964",0, +17421,2352,what's the first elected with district illinois 18,0, +17422,2353,what's the party with candidates  jerry weller (r) 51.77% clem balanoff (d) 48.23%,0, +17423,2354,what's the party for the first elected in 1980,0, +17424,2355,what's the result with district illinois 15,0, +17425,2357,Name thedistrict for 1994,0, +17426,2358,Name the result for New York 11,0, +17427,2361,What year was Larry combest elected,0, +17428,2362,To what district does Bill Hefner belong?,0, +17429,2363,Who ran unsuccessfully against Bill Hefner?,0, +17430,2365,What party is Sanford Bishop a member of?,0, +17431,2366,What party won in the district Georgia7?,0, +17432,2368,Who opposed Marty Meehan in each election?,0, +17433,2369,Who are the opponents in Massachusetts5 district?,0, +17434,2370,What parties are represented in Massachusetts4 district?,0, +17435,2371,Who is the incumbent in district Massachusetts7?,0, +17436,2376,What party does ron klink represent?,0, +17437,2377,Who was in the election that was for incumbent bud shuster's seat?,0, +17438,2378,What district had someone first elected in 1982?,0, +17439,2380,What was the result of the election where william f. goodling was the incumbent?,0, +17440,2381,What party did incumbent Howard Coble belong to?,0, +17441,2382,What party did incumbent Stephen L. Neal belong to? ,0, +17442,2385,What are the locations where the year of election is 1980?,0, +17443,2386,What location is Vin Weber from?,0, +17444,2387,What is Larry Combest's district?,0, +17445,2388,What is the status of incumbent Charles Stenholm?,0, +17446,2390,What is the elected status of the Democratic party in 1989?,0, +17447,2391,Who are the opponents in district California 9?,0, +17448,2392,Who are the incumbents elected in 1974?,0, +17449,2393,Which incumbent was first elected in 1958?,0, +17450,2394,Who are all the candidates who ran in the district where Ralph Regula is the incumbent?,0, +17451,2395,Which party does Del Latta belong to?,0, +17452,2396,Which party does Tom Luken belong to?,0, +17453,2397,Who were all the candidates when incumbent was Tim Valentine?,0, +17454,2398,Name the incumbent for first elected 1958,0, +17455,2399,What is the district for 1952?,0, +17456,2400,What is the incumbent for 1974?,0, +17457,2401,To what party does Cardiss Collins belong?,0, +17458,2402,Who was the candidate in the Virginia 3 district election? ,0, +17459,2403,What was the result of the election in the Virginia 3 district?,0, +17460,2404,Who were the candidates when Lamar S. Smith was incumbent?,0, +17461,2405,What party did Beau Boulter represent?,0, +17462,2406,Who were the candidates when Jack Fields was the incumbent?,0, +17463,2407,What was the final result for Les Aspin?,0, +17464,2408,Who were the candidates that ran when Jim Moody was up for reelection after 1982?,0, +17465,2410,Which party is associated with the person who was first elected in 1982?,0, +17466,2412,What was the results for the candidates listed as bart gordon (d) 76.5% wallace embry (r) 23.5%?,0, +17467,2413,Who is the incumbent that is listed with the candidates listed as marilyn lloyd (d) 57.4% harold w. coker (r) 42.6%?,0, +17468,2414,In what district would you find the candidates listed as jim cooper (d) unopposed?,0, +17469,2415,who is the incumbent with candidates being bud shuster (r) unopposed,0, +17470,2416,who is the incumbent with candidates being tom ridge (r) 80.9% joylyn blackwell (d) 19.1%,0, +17471,2417,what's district with candidates being curt weldon (r) 61.3% bill spingler (d) 38.7%,0, +17472,2418,what's party with district being pennsylvania 21,0, +17473,2420,what's the district with first elected being 1972,0, +17474,2422,what's the result with candidates being billy tauzin (d) unopposed,0, +17475,2424,what's the result with district being louisiana 2,0, +17476,2425,who is the the candidates with first elected being 1977,0, +17477,2426,What happened to the incombent who was elected in 1980?,0, +17478,2427,How did the election end for Terry L. Bruce?,0, +17479,2428,What party was Tony P. Hall affiliated with?,0, +17480,2430,Name the candidates in 1964,0, +17481,2432,Who are all the candidates vying for Henry B. Gonzalez' seat?,0, +17482,2433,Name all the candidates vying for Albert Bustamante's seat.,0, +17483,2434,In what district was the incumbent Michael Bilirakis? ,0, +17484,2435,Who is the candidate in election where the incumbent was first elected in 1980? ,0, +17485,2436,What party does incumbent Charles Edward Bennett belong to? ,0, +17486,2437,What was the result of the election in the Florida 18 district? ,0, +17487,2438,In what district is the incumbent Lawrence J. Smith? ,0, +17488,2439,where is the district where the incumbent is del latta?,0, +17489,2440,what is the party for district ohio 11?,0, +17490,2441,who were the candidates for district ohio 6?,0, +17491,2442,What is the party for District Georgia 9?,0, +17492,2443,Which district shows a first elected of 1980?,0, +17493,2444,What is the party for the incumbent Wyche Fowler?,0, +17494,2445,Who are shown as candidates when George Darden is the incumbent?,0, +17495,2446,What district has Dan Crane as incumbent?,0, +17496,2447,In which district is Robert W. Edgar the incumbent?,0, +17497,2448,To which party does Robert W. Edgar belong?,0, +17498,2449,What district is incumbent jack hightower from?,0, +17499,2451,What incumbent won the district of texas 22?,0, +17500,2452,Who's the incumbent of the Louisiana 1 district?,0, +17501,2453,Who were the candidates in the Louisiana 4 district?,0, +17502,2454,Who's the incumbent in the district first elected in 1976?,0, +17503,2455,what's the incumbent with district being massachusetts 2,0, +17504,2456,what's the party with candidates being silvio conte (r) unopposed,0, +17505,2457,what's the first elected with incumbent being joseph d. early,0, +17506,2458,who is the the incumbent with dbeingtrict being massachusetts 2,0, +17507,2459,what's the party with dbeingtrict being massachusetts 3,0, +17508,2461,What are the candidates in the district whose incumbent is Gus Yatron?,0, +17509,2462,What's the winning party in the Pennsylvania 6 district?,0, +17510,2463,What candidate is a member of the Republican party?,0, +17511,2464,What district is Ray Musto the incumbent of?,0, +17512,2466,What was the outcome of the election in Pennsylvania 6 district?,0, +17513,2467,Where was Al Gore elected,0, +17514,2468,Election results of 1976,0, +17515,2469,What was the incumbent for missouri 1?,0, +17516,2470,What was the result of the election when someone was first elected in 1960?,0, +17517,2471,What year was incumbent phil crane first elected?,0, +17518,2472,What candidates were featured in the 1974 election?,0, +17519,2473,What year was Jerry Huckaby first elected?,0, +17520,2474,What other cadidate ran against Dave Treen?,0, +17521,2476,What district did Dave Treen serve?,0, +17522,2478,"In the Georgia 6 district, what is the elected party?",0, +17523,2479,"In the race involving Billy Lee Evans as the seated Representative, was he elected again?",0, +17524,2480,"Which district has Ronald ""bo"" Ginn as the seated Representative?",0, +17525,2482,Which district is republican?,0, +17526,2483,Name the result when the incumbent was george h. mahon,0, +17527,2484,What was the incumbent of texas 3?,0, +17528,2485,What was the incumbent for texas 19?,0, +17529,2486,Which district has candidates is dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?,0, +17530,2487,What is the result for the district missouri 2?,0, +17531,2491,What district did S. William Green belong to?,0, +17532,2492,What district did the Democratic party incumbent Stephen J. Solarz get first elected to in 1974?,0, +17533,2494,Who were the candidates when Shirley Chisholm was the incumbent?,0, +17534,2495,What is the district that has Bob Wilson as an incumbent?,0, +17535,2497,What district is Charles H. Wilson the incumbent of?,0, +17536,2498,What party was the winning one in the elections in the California 30 district?,0, +17537,2501,what is the district where the incumbent is richard kelly?,0, +17538,2502,what is the result where the candidates is robert l. f. sikes (d) unopposed?,0, +17539,2503,"who is the incumbent where the candidates is william v. chappell, jr. (d) unopposed?",0, +17540,2504,what is the district where the incumbent is james a. haley?,0, +17541,2505,what is the district where the incumbent is richard kelly?,0, +17542,2506,who are the candidates where the district is florida 8?,0, +17543,2507,what year was the first elected incumbant Sidney R. Yates?,0, +17544,2510,In which district is the incumbent John Breaux?,0, +17545,2512,What were the results when the incumbent was John Breaux?,0, +17546,2513,Name the candidates for texas 1,0, +17547,2514,Name the incumbent for district texas 12,0, +17548,2515,Name the candidates for texas 20,0, +17549,2516,what is the district with the candidates edward boland (d) unopposed?,0, +17550,2517,what is the party where the candidates are edward boland (d) unopposed?,0, +17551,2518,what is the party where the incumbent is edward boland?,0, +17552,2520,List all candidates in elections where the incumbent politician is Goodloe Byron.,0, +17553,2522,What is the party of the election in which Robert Bauman is the incumbent?,0, +17554,2523,List all results where the voting district is Maryland 7.,0, +17555,2524,What are all the results where Robert Bauman is the incumbent politician?,0, +17556,2525,Who were the candidates in the district won by the incumbent Del Latta?,0, +17557,2526,Who were the candidates in the districts that was first elected in 1966?,0, +17558,2527,Who was running for office in the California 10 district?,0, +17559,2530,Phillip Landrum was first elected in 1952 from the ninth district of Georgia.,0, +17560,2531,What party did the incumbent from the Illinois 12 district belong to? ,0, +17561,2532,Who was the democratic incumbent in the Illinois 11 district who was re-elected? ,0, +17562,2533,Which incumbent was first elected in 1964? ,0, +17563,2534,What party did the incumbent from the Illinois 1 district belong to? ,0, +17564,2535,What candidates ran in the election with don fuqua?,0, +17565,2538,Who was the incumbent in 1940?,0, +17566,2539,what is the party when the incumbent is sidney r. yates?,0, +17567,2543,who were the candidates when the incumbent was ed derwinski?,0, +17568,2545,Who is the incumbent in district Texas 15?,0, +17569,2546,Which district elected incumbent Earle Cabell?,0, +17570,2547,What was the result when Ray Roberts was elected?,0, +17571,2549,Incumbent Bill Harsha was the winner in an election in which the candidates were who?,0, +17572,2550,What was the party of the first elected candidate in 1954?,0, +17573,2552,Which party is Lawrence H. Fountain part of?,0, +17574,2553,Who was the first person elected in North Carolina 8?,0, +17575,2554,who was the candidate elected to the democratic party in 1952?,0, +17576,2555,What district did Joe Waggonner belong to?,0, +17577,2556,What is the name of the incumbent who was first eleccted in 1940?,0, +17578,2557,What party does incumbent edwin reinecke represent?,0, +17579,2558,Who were the candidates in the election that featured incumbent don edwards?,0, +17580,2559,Who's the incumbent of Indiana 4 district?,0, +17581,2560,Who's the incumbent of the district with first election held in 1950?,0, +17582,2561,Who was featured in the election of charles edward bennett redistricted from 2nd?,0, +17583,2562,Name the first elected for the republican party,0, +17584,2563,Name the district with philip philbin,0, +17585,2564,Name the party with edward boland,0, +17586,2565,What was the district who had their first elected in 1966?,0, +17587,2566,Who was the candidate when the incumbent was Richard C. White?,0, +17588,2567,What district did Donald Ray Matthews belong to?,0, +17589,2568,What party did Don Fuqua belong to?,0, +17590,2571,Who was the winner in the Louisiana 7 district?,0, +17591,2572,what's party with district being tennessee 3,0, +17592,2574,what's party with district  being tennessee 3,0, +17593,2576,what's incumbent with district being tennessee 5,0, +17594,2577,Who ran in the race for Jack Brooks' seat?,0, +17595,2578,which section did seymour halpern run in,0, +17596,2579,What district is incumbent albert w. johnson from?,0, +17597,2581,What district is incumbent elmer j. holland from?,0, +17598,2582,To which party does Frank T. Bow belong?,0, +17599,2583,Who ran in the race for the seat of incumbent Carl W. Rich?,0, +17600,2584,In which district is the incumbent Carl W. Rich?,0, +17601,2585,Name the candidates where incumbent Carl Vinson is?,0, +17602,2586,Name the candidates for massachusetts 8,0, +17603,2587,What candidates were in the election when a republican was re-elected?,0, +17604,2588,What district is incumbent frank chelf from?,0, +17605,2590,Who were all the candidates when the first elected year was 1961?,0, +17606,2591,What party did Hale Boggs belong to?,0, +17607,2592,what is the political affiliation of the texas 12 district,0, +17608,2593,how many voted in the texas 6 section,0, +17609,2594,what is the political affiliation of ray roberts,0, +17610,2595,What district featured an election between james a. byrne (d) 59.3% joseph r. burns (r) 40.7%?,0, +17611,2596,Name the candidates for massachusetts 6,0, +17612,2597,Name the result for massachusetts 3,0, +17613,2598,Name the candidate first elected in 1942,0, +17614,2599,Name the party for massachusetts 3,0, +17615,2600,What district is incumbent albert rains from?,0, +17616,2602,Who was the incumbent in the Arkansas 2 district election? ,0, +17617,2603,When was Dale Alford first elected in the Arkansas 5 district? ,0, +17618,2605,When party did the incumbent in the Arkansas 5 district belong to? ,0, +17619,2606,What was the result in the Arkansas 5 district election? ,0, +17620,2607,What party did the incumbent in the Arkansas 2 district belong to? ,0, +17621,2610,What was the result of the election in which Lindley Beckworth was the incumbent?,0, +17622,2611,Which incumbent was first elected in 1936? ,0, +17623,2612,What was the result of the election in which Walter E. Rogers was the incumbent? ,0, +17624,2613,When was Paul Rogers first elected?,0, +17625,2614,Which district is James A. Haley from?,0, +17626,2616,In what district is the incumbent John Bell Williams?,0, +17627,2617,In what year was John Bell Williams first elected?,0, +17628,2619,What is the district for carl vinson?,0, +17629,2621,What is the first elected for georgia 4?,0, +17630,2622,which affiliation does edwin e. willis affiliate with,0, +17631,2623,which affiliation is james h. morrison part of,0, +17632,2624,Who is the candidate that was first elected in 1914?,0, +17633,2625,In which district is the incumbent Carl Vinson?,0, +17634,2627,Name the result for south carolina 4,0, +17635,2628,Name the candidates for south carolina 3,0, +17636,2629,Name the incumbent for first elected 1956,0, +17637,2631,What is the result for first elected in 1944,0, +17638,2633,Who is the incumbent in the Alabama 6 voting district?,0, +17639,2634,Which candidates were in the election where Frank W. Boykin was an incumbent?,0, +17640,2635,Who were the candidates in the election where the incumbent is George M. Grant?,0, +17641,2636,Which candidates ran in the Alabama 6 district?,0, +17642,2638,What was the result when incumbent Fred E. Busbey was elected?,0, +17643,2640,What was the result when Leo E. Allen was elected?,0, +17644,2641,Which party had a person who has been in the seat since 1914?,0, +17645,2642,"Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr.",0, +17646,2646,Who is the incumbent first elected in 1944?,0, +17647,2647,What was the result for the politician first elected in 1942?,0, +17648,2648,what's the result for district ohio 2,0, +17649,2649,who is the the incumbent with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%,0, +17650,2650,who is the the incumbent with district being ohio 2,0, +17651,2651,what's the result with incumbent being william h. ayres,0, +17652,2653,what district is Brooks Hays in,0, +17653,2654,Omar Burleson was the incumbent in what district? ,0, +17654,2655,In what district was incumbent first elected in 1938? ,0, +17655,2656,Name the party for the pennsylvania 25,0, +17656,2658,What is the incumbent for pennsylvania 15,0, +17657,2660,What is the candidates for fred e. busbey?,0, +17658,2661,What is the incumbent for 1932?,0, +17659,2663,who is the the incumbent with dbeingtrict being florida 2,0, +17660,2664,what's the result with candidates being charles edward bennett (d) unopposed,0, +17661,2665,what's the result with dbeingtrict being florida 4,0, +17662,2668,What was the result of the election when Tic Forrester ran as an incumbent?,0, +17663,2669,What was the final result for Craig Hosmer?,0, +17664,2670,What district does Harlan Hagen represent?,0, +17665,2671,Who was the candidate in the election in the Louisiana 2 district? ,0, +17666,2672,What candidate was re-elected in the Louisiana 5 district? ,0, +17667,2673,What party's candidate was re-elected in the Louisiana 6 district?,0, +17668,2674,What was the result in the election where Hale Boggs was the incumbent? ,0, +17669,2675,"what is the channel width that overlaps channels 1,3-6?",0, +17670,2676,Name the result for mississippi 2,0, +17671,2678,Name the candidates for result of lost renomination democratic loss,0, +17672,2679,Name the result for first elected of 1920,0, +17673,2681,What is the candidates result that is tom j. murray (d) unopposed?,0, +17674,2682,For the Republican party what are the names of the incumbents?,0, +17675,2684,Which district had Paul B. Dague as the incumbent?,0, +17676,2685,What was the result in the election where the incumbent was first elected in 1942? ,0, +17677,2686,What was the result of the election in the Texas 3 district? ,0, +17678,2687,What party did incumbent Wright Patman belong to? ,0, +17679,2688,What was the result of the election in the Texas 4 district? ,0, +17680,2689,What party did the re-elected incumbent of the Texas 11 district belong to?,0, +17681,2690,List all those first elected in the California 22 voting district.,0, +17682,2691,Who was the first elected incumbent in the 1946 election?,0, +17683,2693,Which party had Clair Engle as an incumbent?,0, +17684,2694,What party does sid simpson represent?,0, +17685,2696,What year was incumbent barratt o'hara first elected?,0, +17686,2699,Who is the candidate wehre district is louisiana 1?,0, +17687,2700,What is the party where the incumbent is overton brooks?,0, +17688,2701,who athe party where district is louisiana 2?,0, +17689,2702,who is the candidate where district is louisiana 3?,0, +17690,2704,What was the result when incumbent Tom Steed was elected?,0, +17691,2705,What was the candidates for hardie scott,0, +17692,2708,What is the party for first elected 1948 for william t. granahan,0, +17693,2711,Who was the incumbent in the Illinois 17 district?,0, +17694,2715,What was the result of the election with jamie l. whitten?,0, +17695,2716,What candidate was re-elected and was first elected in 1942? ,0, +17696,2717,Who are the candidates in the election in the Ohio 9 district? ,0, +17697,2719,What party does the incumbent from the Ohio 5 district belong to? ,0, +17698,2720,What party does the incumbent from the Ohio 20 district belong to? ,0, +17699,2721,What party does the incumbent from the Ohio 7 district belong to? ,0, +17700,2722,Who is the candidate for the district Arkansas 2?,0, +17701,2723,Which district has the incumbent Wilbur Mills and a re-elected result?,0, +17702,2724,What year was first-elected for the row of Texas 2?,0, +17703,2725,What was the result for the incumbent Milton H. West?,0, +17704,2726,What party is associated with Texas 2?,0, +17705,2727,"When the result is retired to run for U.S. Senate Democratic Hold, who is the candidate?",0, +17706,2728,What candidate has a result of being re-elected in the Texas 7 District?,0, +17707,2730,Which district is associated with the incumbent Carl Vinson?,0, +17708,2731,Which candidates are associated with the Georgia 7 district?,0, +17709,2732,What candidate is associated with the Georgia 4 district?,0, +17710,2733,What year was incumbent joe b. bates first elected?,0, +17711,2734,What party is incumbent virgil chapman from?,0, +17712,2735,What year was clair engle first elected?,0, +17713,2736,what is the result of the first elected is 1943?,0, +17714,2738,what the was the final in which frank w. boykin was running,0, +17715,2740,Name the candidates for ellsworth b. buck,0, +17716,2741,What are the candidates for new york 35?,0, +17717,2742,What is the party for new york 20?,0, +17718,2743,What was the result of the election featuring r. ewing thomason (d) unopposed?,0, +17719,2744,What district is eugene worley from?,0, +17720,2746,what's the result with incumbent being jack z. anderson,0, +17721,2747,what's the district with result being re-elected and candidates being clarence f. lea (d) unopposed,0, +17722,2748,what's the first elected with incumbent being clair engle,0, +17723,2749,who is the the candidates with incumbent being alfred j. elliott,0, +17724,2750,who is the the incumbent with candidates being jack z. anderson (r) unopposed,0, +17725,2753,Who were the candidates when Noah M. Mason was incumbent?,0, +17726,2754,In what year was Leo E. Allen first elected?,0, +17727,2755,Who were the candidates when Sid Simpson was the incumbent?,0, +17728,2756,What was the result of Robert L. F. Sikes' election bid?,0, +17729,2759,Which incumbent was first elected in 1940?,0, +17730,2760,What is the first electedfor district ohio 18,0, +17731,2761,What is the incumbent for ohio 12?,0, +17732,2762,Who are all of the candidates in the election featuring james r. domengeaux?,0, +17733,2763,Name all the candidates that ran for the seat where Harold D. Cooley is the incumbent?,0, +17734,2766,What was the result in Pennsylvania 13?,0, +17735,2767,Who was the incumbent in Pennsylvania 27?,0, +17736,2768,Who are the contenders In the New York 19 polling area race?,0, +17737,2770,Who are the contenders In the New York 29 polling area race?,0, +17738,2771,Which political party is involved where John J. Delaney is the sitting Representative?,0, +17739,2772,Who is the sitting Representative In the New York 10 polling area race?,0, +17740,2774,What is the district for james p. richards?,0, +17741,2775,What is the candidate for south carolina 4?,0, +17742,2776,What is the candidate for south carolina 3?,0, +17743,2777,What is the first elected for south carolina 4?,0, +17744,2779,What party does clyde t. ellis represent?,0, +17745,2781,what's the result with dbeingtrict being california 10,0, +17746,2782,what's the party with first elected being 1926,0, +17747,2783,what's the incumbent with result being new seat republican gain,0, +17748,2785,what's the first elected with incumbent being joe starnes,0, +0,4,how many times is the fuel propulsion is cng?,3, +1,7,how many times is the model ge40lfr?,3, +2,8,how many times is the fleet series (quantity) is 468-473 (6)?,3, +3,19,How many number does Fordham school have?,3, +5,38,How many players were with the school or club team La Salle?,3, +6,41,How many wins were there when the money list rank was 183?,3, +9,46,How many teams had a #1 draft pick that won the Rookie of the Year Award?,3, +10,51,what's the total number of singles w-l with doubles w-l of 0–0 and total w-l of 3–1,3, +15,73,"How many schools are in Bloomington, IN?",3, +16,74,How many of the schools are designated private/Presbyterian?,3, +18,76,"How many of the schools listed are in Ames, IA?",3, +19,78,How many countries (endonym) has the capital (endonym) of Jakarta?,3, +20,82,"The season premiere aired on September 11, 2000 aired on how many networks? ",3, +22,90,How many County Kerry have 53% Irish speakers?,3, +24,93,How many States have an Indian population of 30947?,3, +26,97,How many Australians were in the UN commission on Korea?,3, +27,101,What is the number of season premieres were 10.17 people watched?,3, +29,105,How many top tens had an average start of 29.4?,3, +33,119,What is the total number of votes if Scotland cast 35?,3, +36,132,What is the number for t c (k) when the notation is tl-2212?,3, +37,133,How many 2010 estimations have been done in the city of Cremona?,3, +40,136,How many 2001 censuses are there on number 13?,3, +41,141,How many nationalities are the pick 193?,3, +42,143,How many songs received a 10 from Goodman and were rated by Tonioli?,3, +43,146,"How many scores did Goodman give to ""samba / young hearts run free"", which was in second place?",3, +44,156,what's the total number of position with driver  robby gordon,3, +46,174,What was the number of nominations for natalia raskokoha?,3, +52,185,HOW MANY TEMPERATURE INTERVALS ARE POSSIBLE TO USE WITH ACRYL? ,3, +53,186,How many matches where played with Jim Pugh?,3, +54,188,"How many matched scored 3–6, 7–6(5), 6–3?",3, +55,192,How many birthdays does Earl Hanley Beshlin have?,3, +56,197,How many playerd Mrs. Darling in the 1999 Broadway?,3, +57,203,How many years did BBC One rank 20th?,3, +59,205, how many ↓ function / genus → with escherichia being espd,3, +60,211,How many original titles did Marriage Italian-Style have? ,3, +69,243,How many primers annulus colors were there when the color of the bullet tip was white?,3, +70,244,How many bullet tips colors had other features of a blue band on case base?,3, +72,247,How many years were there with 348 attempts?,3, +73,248,How many characters is by Babs Rubenstein?,3, +74,250,How many people play Frank in London?,3, +75,255,What was the total number of Class AAA during the same year that Class AAA was White Oak?,3, +76,256,"How many records are listed on Friday, May 25?",3, +77,257,"How many opponents were played on Saturday, June 9?",3, +79,260,How many settings where there for episode 29 of the season?,3, +80,266,What is the total number of lyricist where the lyrics theme is romance and the song lasts 3:50?,3, +81,268,What is the total number of music genre/style in which the lyrics are a detective story?,3, +82,270,What is the number of the division for the 1st round?,3, +83,272,What is the total number of poles for arden international?,3, +84,273,What is the number of wins for gp2 series for racing engineering?,3, +85,274,What is the number of podiums for season 2010 for campionato italiano superstars.,3, +86,276,"How many writers had an US air date of september 25, 1993?",3, +87,277,How many villians were in No. 25?,3, +89,279,"what is the total number of playoffs where regular season is 6th, southwest",3, +91,283,How many titles have the number 11,3, +92,284,How many have Mrs. briar as a villain,3, +93,285,how many have the number 8,3, +94,286,"How many have the title ""the tale of the room for rent""",3, +95,291,"How many villains appeared in the episode titled ""The Tale of the Virtual Pets""?",3, +97,296,Name the number of species with sepal width of 3.4 and sepal length of 5.4,3, +98,300,Who is the director and what number is the episode for episode #1 of Are You Afraid of the Dark season 3?,3, +99,303,Who wrote episode #1 in season 7?,3, +100,309,What's the report on Penske Racing winning while the pole position was Al Unser?,3, +102,320,How many winners are there of farma?,3, +106,328,How many mileposts are there on Anne Street?,3, +108,337,How many wheels does the train owned by Texas and New Orleans Railroad #319 have?,3, +111,354,How many games had a score value of 813.5 in post-season play?,3, +113,360,how many founded dates are listed for carlow university 1,3, +114,365,"How many episodes were titles ""voicemail""?",3, +116,375,How many seats were won in the election with 125 candidates?,3, +118,377,How many people attended the game against the indianapolis colts?,3, +119,379,How many results are there for the 0-4 record?,3, +120,380,"How many weeks are there that include the date October 11, 1969.",3, +121,381,"How many weeks are there that include the date November 9, 1969.",3, +122,382,How many records are there at the War Memorial Stadium?,3, +132,409,How many points for 2005?,3, +133,411,how many positions in 2009?,3, +135,414,What is the total for 10th position?,3, +136,415,how many reports of races took place on october 16?,3, +139,426,"How many episodes were titled ""identity crisis""?",3, +140,429,How many pre-race analysis occur when Allen Bestwick does the lap-by-lap?,3, +142,434,How many titles got a viewership of 26.53 million?,3, +143,440,How many titles were there for the 113 episode?,3, +145,445,How many rounds were there of the Bosch Spark Plug Grand Prix?,3, +146,447,On how many dates did the Michigan International Speedway hold a round?,3, +147,448,Name the total number of bids of the sun belt conference,3, +148,451,What is the number of bids with elite eight larger than 1.0,3, +151,463,How many directors were there for the film Course Completed?,3, +152,468,How many villages had 21.7% of slovenes in 1991?,3, +160,493,"How many seasons is the season finale on May 26, 2010?",3, +164,506,What's the total attendance of the leagues in season of 2010?,3, +165,517,How many are listed under 潮爆大狀,3, +166,519,"How many people wrote ""Michael's Game""?",3, +167,529,What's the total number of episodes with the production code 2395113A?,3, +171,547,"how many times does the episode called ""coop de grace"" appear ",3, +173,553,How many colleges have a DB position?,3, +175,555,How many CFL teams are from York college?,3, +176,558,How many times were players named brett ralph were selected?,3, +178,561,How many fb players were drafted?,3, +179,562,How many players played for adams state school?,3, +180,568,What is the number of position where the pick number is 43?,3, +181,574,What rank is 愛のバカ on the Japanese singles chart?,3, +182,575,How many songs have mi-chemin as their Japanese name and romanji name?,3, +183,577,How many conditions have an unaffected prothrombin time and a prolonged bleeding time,3, +184,591,"In Round 6, how many winning drivers were there?",3, +186,595,How many districts have an area of 17.72 KM2?,3, +187,597,What is the number of colour with the regisration number of mg-509?,3, +189,600,How many episodes had 16.03 million viewers?,3, +190,601,"What is the number of interregnum for duration 3 months, 6 days?",3, +191,606,"What is the percentage for manhattan 45,901?",3, +194,628,How many times did episode 79 originally air? ,3, +198,658,What is the number of capacity at somerset park?,3, +202,667,How many times is 3 credits 180?,3, +203,669,How many 3 credits are there with 5 credits of 5?,3, +204,670,How many 4 credits is the hand two pair?,3, +209,686,what is the total number of semi-finalist #2 where runner-up is east carolina,3, +210,691, how many numer of jamaicans granted british citizenship with naturalisation by marriage being 1060,3, +212,695,"How many episodes had their first air date on March 6, 2008?",3, +213,701,"where title is beginning callanetics , what is the total of format ?",3, +214,704,"What was the GF attendance at the location of Sydney Football Stadium, Sydney (6)?",3, +215,709,"What is the compression ratio when the continuous power is hp (KW) at 2,200 RPM and the critical altitude is at sea level?",3, +216,710,"When the engine is Wasp Jr. T1B2, what is the number needed for takeoff power?",3, +217,712,"How many episodes aired on october 27, 2008",3, +219,715,How many seasons did the canterbury bulldogs (8) win?,3, +220,716,"How many teams lost at the sydney football stadium, sydney (11)?",3, +221,727,How many characters were portrayed by the informant of don flack?,3, +222,733,What was the duration of Robert Joy's portrayal?,3, +225,737,How many viewers (millions) were there for rank (week) 20?,3, +227,740,"How many times was the episode named ""conference call""?",3, +228,741,How many times was the rank (night) 11?,3, +231,748,What is the number of rank with the viewership of 5.96 million?,3, +235,760,What's the total number of episodes whose original airings were viewed by 1.82 million viewers?,3, +236,782,What is the number of jews where the rank is 1?,3, +237,787,how many crew had u15 3rd iv being bgs and u15 1st iv being acgs and open 1st viii being acgs,3, +238,789,how many open 2nd viii had u15 3rd iv being gt,3, +239,790,How many schools have an enrollment of 850?,3, +240,792,How many schools are located in South Brisbane?,3, +242,794,What is the enrollment of STM which has been in competition since 1990?,3, +243,798,How many on the list are called the Austrian Grand Prix?,3, +244,805,How many rounds were 2r?,3, +245,809,what's the overall rank with rating/share 18–49 of 2.1/5,3, +246,812,What is the number of group b winner for francavilla?,3, +248,825,what of the total number of date where grand prix is portuguese grand prix,3, +249,826,What is the number of pole position with a round of 15?,3, +252,834,How many drivers had the fastest lap at Silverstone?,3, +253,843,How many providers were founded in 1964?,3, +255,846,Whatis the total number of half marathon (mens) that represented kazakhstan?,3, +256,847,What is amount of countries where half marathon (women) is larger than 1.0?,3, +257,848,How many times is Moldova the winner of half marathon (womens)?,3, +258,854,How many events did nigel mansell drive the fastest and a mclaren - honda win?,3, +260,872,what's the total number of race winner with rnd being 10,3, +261,881,How many rounds did Patrick Tambay record the fastest lap?,3, +262,890,How many races had the pole position Alain Prost and the race winner Keke Rosberg?,3, +264,894,what's the total number of report with date  29 april,3, +265,897,How many days is the Monaco Grand Prix?,3, +266,898,How many rounds were won with James Hunt as pole position and John Watson as fastest lap?,3, +267,899,The Dijon-prenois had how many fastest laps?,3, +268,907,how many times is the pole position niki lauda and the race is monaco grand prix?,3, +269,916,How many dates have silverstone circuit,3, +270,917,How many constructors are listed for the XVI BRDC international trophy race,3, +271,920,What is the total amount of circuts dated 22 april?,3, +272,925,How many different kinds of reports are there for races that Juan Manuel Fangio won?,3, +273,932,How many constructors won the III Redex Trophy?,3, +274,942,How many titles were directed in series 79?,3, +276,959,How many houses are green?,3, +277,964,In which week was the game against a team with a record of 3-6 played?,3, +278,966,"How many opponents were there at the game with 64,087 people in attendance?",3, +279,968,"How many times was there a kickoff in the September 4, 1988 game? ",3, +280,969,How many crowds watched the game where the record was 1-3? ,3, +281,970,What year finished with Daniel Zueras as the runner-up?,3, +282,971,How many people hosted the show in the year when Chenoa ended up in fourth place?,3, +283,972,How many fourth places were there in 2003?,3, +284,976,How many have are model 2.4 awd?,3, +285,977,How many engine b5204 t3?,3, +286,978,How many engine b5234 t3?,3, +287,979, how many power (ps) with torque (nm@rpm) being 240@2200-5000,3, +288,993,How many positions are for creighton?,3, +293,1019,How many schools did darryl dawkins play for,3, +294,1021,How many schools are listed for the player who played the years for Jazz in 2010-11?,3, +295,1022,How many players were names Howard Eisley?,3, +296,1027,How many players have played for Jazz during 2006-2007?,3, +297,1029,For how many players from UTEP can one calculate how many years they've played for Jazz?,3, +298,1030,How many position does Jim Farmer play in?,3, +299,1033,How many years did Paul Griffin play for the Jazz?,3, +300,1035,How many players only played for the Jazz in only 2010?,3, +302,1050,"What was the margin of victory over Justin Leonard, phillip price?",3, +305,1059,What is the total number of goals on the debut date of 14-04-1907?,3, +306,1063,What is the toatl number of caps where the name is Hans Blume?,3, +307,1071,How many different scores are there for the Verizon Classic?,3, +308,1073,How many tournaments were held in Maryland?,3, +309,1074,How many different locations have the score 207 (-10)?,3, +311,1077,What was the number of nickname founded 1918?,3, +312,1078,What was the number of location of nickname cbsua formerly known cssac?,3, +315,1101,How many scores were at the Northville Long Island Classic?,3, +316,1103,what is the total number of purse( $ ) where winner is jimmy powell (2),3, +319,1110,How many tournaments ended with a score of 204 (-12)?,3, +321,1117,How many locations logged a score of 206 (-7)?,3, +322,1118,How many tournaments recorded a score of 206 (-7)?,3, +323,1122,How many purses were there for the mar 16?,3, +326,1135,"How many matches had the result of 6–3, 6–2?",3, +327,1139,How many celebrities had an 18October2007 Original air Date?,3, +329,1143,"What is the number of series with a title of ""with friends like these""?",3, +330,1144,What is the number of series with production code 503?,3, +332,1152,"What is the amount of marginal ordinary income tax rate for single in which the range is $8,351– $33,950?",3, +333,1156,"What is the amoun of marginal ordinary income tax rate where married filing jointly or qualified widow is $208,851–$372,950?",3, +334,1158,what is the total number of coach where captain is grant welsh and win/loss is 5-15,3, +336,1168,How many different voivodenship have 747 900 citizes?,3, +338,1173,How many times did anderson university leave?,3, +343,1193,How many champions were there in 2009?,3, +344,1196,"How many players were from high point, nc?",3, +345,1198,How many hometowns does the catcher have?,3, +346,1204,How many schools did Bubba Starling attend?,3, +347,1218,How many positions did the player from Spring High School play?,3, +348,1222,How many schools did Mike Jones attend?,3, +349,1232,HOW MANY PLAYERS PLAY FOR OREGON?,3, +350,1234,"How many players are from Delray Beach, Florida?",3, +351,1235,How many schools did Derrick Green attend?,3, +352,1237,How many positions does Greg Bryant play?,3, +353,1238,How many schools did Derrick Green attend?,3, +354,1243,"What position is associated with the hometown of Olney, Maryland?",3, +355,1246,"How many players are from Indianapolis, Indiana? ",3, +356,1259,how many times was the player felipe lopez?,3, +357,1274,Name the total number of nba drafts that went to east side high school,3, +358,1281,How many years where Neu-Vehlefanz had a number of 365?,3, +359,1282,How many times did Neu-Vehlefanz occur when Schwante had 2.043?,3, +360,1283,How many years where Eichstädt had a number of 939?,3, +361,1284,How many have been replaced where the appointment date is 10 December 2007 and the manner of departure is quit?,3, +362,1286,How many manners of departure did peter voets have?,3, +363,1292,"How many series has the title ""interior loft""?",3, +365,1306,"Kimball, toby toby kimball is a player; How many times at school/ club team/country was the player present?",3, +366,1312,what is the total number of player where years for rockets is 1975-79,3, +367,1313,what is the total number of player where years for rockets is 2004-06,3, +368,1315,what is the total number of years for rockets where school/club team/country is baylor,3, +369,1316,How many positions had jersey number 32,3, +376,1349,How many countries has a gdp (nominal) of $29.9 billion?,3, +378,1354,How many releases did the DVD River Cottage forever have?,3, +379,1355,What is the total number of discs where the run time was 4 hours 40 minutes?,3, +380,1359,Name the number of complement for 4th hanoverian brigade,3, +384,1372,How many rounds is the player Matthew Puempel associated with?,3, +385,1374,How many players had overall 78?,3, +387,1376,How many positions did player Ben Harpur play?,3, +393,1389,what is the total number of percent (2000) where percent (1980) is 3.4%,3, +397,1395,How many tracks are titled Mō Sukoshi Tōku?,3, +398,1399,How many doubles champions were there for the Serbia f6 Futures tournament?,3, +399,1400,How many singles tournaments did Ludovic Walter win?,3, +400,1408,What is the number of nicknames for the meaning of god knows my journey.,3, +401,1409,What is the number of meaning where full name is chidinma anulika?,3, +402,1413,what is the total number of location where station number is c03,3, +404,1423,What is the number of first class team with birthday of 5 december 1970?,3, +405,1429,How many musical guests and songs were in episodes with a production code k0519?,3, +406,1430,"How many episodes originally aired on August 31, 1995?",3, +407,1432,"How many episodes were titled ""Man's best friend""?",3, +408,1433,"What is the season # when the musical guest and song is lisa stansfield "" you know how to love me ""?",3, +410,1439,How many titles are there for season 8,3, +411,1445,How many numbers were listed under attendance for March 2?,3, +412,1449,How many times is the score 98–90?,3, +414,1455,"How many high points were at the wachovia center 18,347?",3, +415,1461,How many times was the game 39?,3, +417,1466,"When gordon (27) had high points, what was the number of high assists?",3, +418,1470,How many high points were there in the game 67?,3, +419,1473,how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)?,3, +420,1476,How many players had the most points in the game @ Milwaukee?,3, +421,1479,What was the total number of games where A. Johnson (6) gave the most high assists?,3, +424,1503,How many times was the final score l 96–123 (ot)?,3, +425,1504,How many times was the high assists earl watson (5) and the date of the game was december 2?,3, +426,1506,"What is the number of the leading scorer for keyarena 16,640?",3, +427,1507,What is the number of leading scorer of february 21?,3, +430,1529,How many successors were seated in the New York 20th district?,3, +431,1531,How many teams placed 4th in the regular season?,3, +432,1533,How many open cups were hosted in 1993?,3, +434,1540, how many countries sampled with year of publication being 2007 and ranking l.a. (2) being 7th,3, +435,1542,How many losingteams were for the cup finaldate 20 August 1989?,3, +436,1543,How many seasons was the losing team Adelaide City?,3, +437,1547,How many womens singles winners were there when peter rasmussen won the mens singles?,3, +438,1552,Name the number of titles written by adam i. lapidus,3, +439,1556,"When pinyin is xīnluó qū, what is the simplified value?",3, +440,1560,"How many NHL teams are there in the Phoenix, Arizona area?",3, +441,1561,What is the media market ranking for the Blackhawks?,3, +442,1564,How many netflow version are there when the vendor and type is enterasys switches?,3, +444,1571,What is the number of jurisdiction for 57.3 percent?,3, +446,1575,How many trains leave from puri?,3, +447,1580,What is the number of nationality in 1992?,3, +448,1584,How many times does the rebuilt data contain cannot handle non-empty timestamp argument! 1929 and scrapped data contain cannot handle non-empty timestamp argument! 1954?,3, +449,1586,How many times was the rebuilt data cannot handle non-empty timestamp argument! 1934?,3, +451,1590,The 1.6 Duratec model/engine has how many torque formulas?,3, +452,1593,How many capacities are possible for the 1.6 Duratec model/engine?,3, +453,1598, how many president with date of inauguration being 4june1979,3, +454,1601," how many end of term with age at inauguration being 64-066 64years, 66days",3, +455,1603,How many games were on May 20?,3, +456,1606,How many NHL teams does Terry French play for?,3, +457,1608,How many positions do the players of Chicago Black Hawks play in?,3, +458,1611,What's Dave Fortier's pick number?,3, +459,1618,How many teams did Bob Peppler play for?,3, +460,1620,How many nationalities are listed for the player Glen Irwin?,3, +461,1626,what is the total number of pick # where nhl team is philadelphia flyers,3, +462,1639,What's the total number of episodes with production code 2T6705?,3, +463,1640,What's the total number of directors who've directed episodes seen by 11.34 million US viewers?,3, +464,1644,What is the number of runner up when the winner of women is norway and third is sweden?,3, +465,1650,How many episodes were written only by William N. Fordes?,3, +466,1654,How many classes are taken in the third year when pag-unawa was taken in the first year?,3, +467,1665,How many years did Peter Mikkelsen win the Mens Singles?,3, +468,1667,How many Mixed Doubles won when Oliver Pongratz won the Men's Singles?,3, +469,1675,How many subjects have the pinyin shixun?,3, +470,1677,How many pinyin transaltions are available for the chinese phrase 釋蟲?,3, +472,1679,How many mens doubles when womens doubles is catrine bengtsson margit borg?,3, +473,1688,Name the number of mens doubles for 2004/2005,3, +474,1689,Name the total number for mens single for 2002/2003,3, +475,1691,How many times was pernell whitaker an opponent?,3, +476,1694,How many opponents fought on 1982-12-03?,3, +477,1696,"How many trains call at Castor, Overton, Peterborough East and are operated by LNWR?",3, +479,1705,what's the total number of title for production code 39,3, +480,1709,"How many episodes were titled ""a pig in a poke""? ",3, +482,1715,How many women doubles teams competed in the same year as when Jamie van Hooijdonk competed in men singles?,3, +485,1724,How many leaders are there in the intergiro classification in stage 20?,3, +486,1728,Name the general classification of stage 15,3, +487,1731,Name the total number of trofeo fast team of stage 16,3, +488,1739,How many times was the GFR 2006 equal to 53.2?,3, +489,1740,How many mens doubles took place in 1970/1971?,3, +490,1750,What is the number of rank of peak fresvikbreen?,3, +492,1753,How many times did Niels Christian Kaldau win the men's single and Pi Hongyan win the women's single in the same year?,3, +493,1759, how many reverse with series being iii series,3, +496,1763,Nigeria had the fastest time once.,3, +497,1764, how many runners-up with nation being india,3, +498,1766, how many winners with # being 4,3, +500,1769,What was the total of arlenes vote when craig voted for brian and karen?,3, +502,1771,What is the number eliminated when kelly and brendan are safe?,3, +503,1773,What is the total number of brunos vote when willie and erin are eliminated?,3, +504,1780,What is the number of locations with the fastest times of 11.13?,3, +505,1782,What's the number of episodes with a broadcast order s04 e07?,3, +506,1783,"what's the total number of episodes with a US air date of january 15, 2005?",3, +511,1796,What is the preliminary score associated with the interview score of 8.488?,3, +512,1797,What swimsuit score did the state of Virginia contestant achieve?,3, +513,1804,How many results are there with the original title of ani ohev otach roza (אני אוהב אותך רוזה)?,3, +514,1810,What is the numberof running wiht pamela zapata?,3, +516,1817,What is the total number of titles written by Casey Johnson?,3, +517,1820,How many millions of total viewers watched series #57?,3, +520,1830,How many players lost to eventual winner in the season when ASC Jeanne d'Arc lost to eventual runner up?,3, +521,1831,What's the number of seasons i which USC Bassam lost to eventual runner-up?,3, +522,1836,How many divisions were listed in 2006?,3, +523,1838,How many people named Nick Lucas are on the show?,3, +524,1843,How many networks aired the franchise in 1981 only?,3, +525,1844,"In how many networks the local name of the franchise was ""in sickness and in health""?",3, +526,1858,How many losing hands are there before 2007?,3, +528,1862,"For the sector of Gatunda how many entires are show for the August 15, 2012 population?",3, +533,1867,What is the monto where the total region is 11230?,3, +537,1875,how many times is the date (to) 1919?,3, +538,1877,how many notes are form the date (from) 14 march 1910?,3, +541,1883,How many population figures are given for Glengallen for the year when the region's total is 30554?,3, +545,1887,How many population total figures are there for the year when Allora's population was 2132?,3, +547,1900,"How many master recordings are there for ""Famous for Nothing""?",3, +549,1903,What's the total number of crew chiefs of the Fas Lane Racing team?,3, +551,1911,Name the number of constr with the first win at the 1978 brazilian grand prix,3, +552,1916,How many compound names list a chemical class of depsipeptide and a clinical trials β value of 1/7?,3, +553,1918,How many trademarks list a molecular target of minor groove of dna and a clinical status value of phase i?,3, +555,1936,How many times was Sanger 3730xl $2400 usd?,3, +556,1941,How was times was the dance the jive and the week # was 10?,3, +557,1955,How many time is sunday day one is ahad?,3, +561,1967,How many were won with the points against was 450?,3, +562,1973,What is the number of the name for number 4?,3, +564,1975,what amount played tried for 60? ,3, +565,1979,What amount of points where points were 389?,3, +566,1985,HOW MANY GAMES WERE LOST BY 12 POINTS?,3, +567,1987,How many listings are under money list rank wher 2nd' value is larger than 2.0?,3, +568,1991,How many rain figures are provided for sunlight hours in 1966?,3, +569,2005,How many races is different distances does Rosehill Guineas compete in? ,3, +570,2014,"How many backgrounds are there represented from Memphis, Tennessee?",3, +571,2015,How many people had a prosecutor background?,3, +572,2017,How many clubs have a tries against count of 41?,3, +573,2018,How many clubs have won 6 games?,3, +574,2019,How many clubs have a tries against count of 45 and a losing bonus of 4?,3, +575,2021,How many clubs have tries for count of 50?,3, +576,2024,How many electorates are there with Hedmark as a constituency?,3, +578,2029,What's the total number of episodes both directed by Tom Hooper and viewed by 8.08 million viewers?,3, +579,2032,What's the total number of directors whose episodes have been seen by 9.14 million viewers?,3, +580,2035, what's the no with current club being panathinaikos and position being forward,3, +583,2044,Name the total number of grupo capitol valladolid,3, +584,2046,What is the total number that has a height of 2.06?,3, +587,2054,How many clubs does number 6 play for?,3, +588,2055, how many player with no being 12,3, +589,2063,How many different values of total power are there for the unit whose construction started on 01.03.1977 and whose commercial operation started on 01.02.1984?,3, +592,2069,In what year did Easton LL Easton play in Maryland?,3, +593,2078,How many locations does the team Newcastle Jets come from? ,3, +595,2082,What is the number of played when points against 645?,3, +598,2085,How many teams scored 616 points?,3, +599,2086,How many teams drew the widnes vikings?,3, +602,2090,What is the total points for the tean with 8 losses?,3, +603,2091,How many numbers are given for losses by the Keighley Cougars?,3, +604,2096,Name the number of australian marquee for travis dodd,3, +605,2102,What is the number of starts for 1987?,3, +606,2105,Name the total number of scoring average for money list rank of 174,3, +608,2112, what's the the mole with airdate being 5 january 2012,3, +609,2120,What is the number of steals for 2012,3, +610,2123,How many rebounds were there in 2008?,3, +613,2128,How many numbers were listed under Silver Medals for Portsmouth HS?,3, +617,2138,How many coins have a diameter of 23mm?,3, +618,2140,What is the number of population for lithuania?,3, +619,2142,Name the total number of area for 775927 population,3, +621,2147, how many air date with overall being 83/95,3, +622,2148, how many viewers (m) with overall being 91/101,3, +623,2154,how many times was the qualifying score 60.750?,3, +624,2155,how many times is the qualifying score 61.400?,3, +628,2167,What year is Jiyai Shin the champion?,3, +629,2172,"How many episodes were aired on the Original air date for ""Circus, Circus""?",3, +630,2173,How many michelob ultra mountains classification for darren lill,3, +635,2201,How many times during the season were the seahawks 8-6?,3, +636,2203,How many times did the team play at oakland-alameda county coliseum?,3, +637,2206,"How many episodes originally aired on April 29, 2008?",3, +638,2209,How many players weight 95?,3, +641,2218,How many rounds ended with a score of 16-52?,3, +642,2227, how many native american with whites being 1.0%,3, +643,2230,How many episodes have been directed by David Duchovny?,3, +645,2232,Name the number of shows when there was 2 million views,3, +648,2238,what is the total number of building for address on 201 1st avenue south,3, +650,2242,What is the number of region 4 for the series of the complete seventh series?,3, +651,2247,How many numbers were listed under losing bonus when there were 68 tries for?,3, +652,2254,what is the prod.code of the episode with original air date 01/12/1968?,3, +653,2260,How many times was the incumbent mike capuano,3, +655,2265,How many candidates ran in the election where Wayne Gilchrest was the incumbent?,3, +658,2272,Name the first election for john mchugh,3, +659,2275,Name the number of party for new york 29,3, +660,2277,How many districts have Bart Stupak as the incumbent?,3, +662,2287,How many party were listed for district oklahoma 5?,3, +663,2291,How many parties is the incumbent Bob Brady a member of?,3, +664,2292,How many candidates were there in the district won by Joe Hoeffel?,3, +669,2319,How many elections have resulted in retired democratic hold?,3, +670,2322,How many incumbents were first elected in 1984? ,3, +671,2324,How many candidates ran in the election where Mike Doyle was the incumbent? ,3, +673,2335,How many districts does gary condit represent?,3, +675,2344,How many districts was Robert Livingston incumbent in?,3, +677,2347, how many party with district being washington 7,3, +680,2356,"what's the total number of candidates for first elected in 1948 , 1964",3, +681,2359,Name the number of first elected for new york 11,3, +682,2360,Name the first elected for new york 1,3, +683,2364,How many districts are respresented by Alex McMillan?,3, +685,2372, how many first elected with district being new york2,3, +686,2373, how many district with candidates being eliot l. engel (d) 85.2% martin richman (r) 14.8%,3, +687,2374, how many candidates with party being democratic and dbeingtrict being new york5,3, +688,2375, how many first elected with result being re-elected and incumbent being gary ackerman redistricted from the 7th district,3, +689,2379,How many republican incumbents first elected in 1974?,3, +690,2383,In how many districts was the democratic incumbent elected in 1974? ,3, +692,2389,How many incumbents represent district California 34?,3, +693,2409,"In the district called Tennessee 6, how many in total of first elected are there?",3, +694,2411,How many candidates are listed all together for the incumbent named bob clement?,3, +696,2421, how many district with incumbent being lindy boggs,3, +697,2423, how many candidates with result being retired to run for u. s. senate republican hold,3, +698,2429,Name number first elected for tennessee 2?,3, +699,2431,How many districts have Mac Sweeney as incumbent?,3, +701,2460,How many candidates won the election in the district whose incumbent is Bud Shuster?,3, +702,2465,How many parties does the incumbent Donald A. Bailey a member of?,3, +704,2477,How many sitting politicians were originally elected in 1972?,3, +705,2481,How many parties are there in races involving Dawson Mathis?,3, +708,2490,How many times was the candidates dick gephardt (d) 81.9% lee buchschacher (r) 18.1%?,3, +710,2496,How many outcomes were there in the elections in California 38?,3, +711,2499,How many times did an election feature the result robert l. leggett (d) 50.2% albert dehr (r) 49.8%?,3, +713,2508,How many incumbents are there in district Louisiana 5?,3, +714,2509,How many incumbents resulted in a lost renomination republican gain?,3, +716,2519,How many times was the candidates paul tsongas (d) 60.6% paul w. cronin (r) 39.4%?,3, +717,2521,How many instances are there of party in the situation where Robert Bauman is the incumbent politician?,3, +718,2528,How many parties won the election in the California 23 district?,3, +720,2536,How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed?,3, +723,2541,how many times was the candidates phil crane (r) 58.0% edward a. warman (d) 42.0%?,3, +724,2542,how many times was it the district illinois 18?,3, +727,2551,How many districts does Donald D. Clancy represent?,3, +728,2569,How many parties won the election in the Louisiana 5 district?,3, +729,2570,How many candidates were elected in the Louisiana 4 district?,3, +730,2573,how many party with district being tennessee 1,3, +731,2575, how many incumbent with district  being tennessee 5,3, +732,2580,How many times was frank m. clark the incumbent?,3, +733,2589,How many districts represented Edwin E. Willis?,3, +734,2601,How many candidates represent the district of kenneth a. roberts?,3, +736,2608,How many candidates were there in the election for William Jennings Bryan Dorn's seat?,3, +739,2618,How many districts have W. Arthur Winstead as elected official?,3, +741,2626,Name the candidates for l. mendel rivers,3, +742,2630,Name the number of party with the incubent james william trimble,3, +743,2632,What is the number of party in the arkansas 1 district,3, +745,2639,How many results are listed for the election where Noah M. Mason was elected?,3, +746,2643,How many candidates ran in the race where the incumbent is J. L. Pilcher?,3, +748,2645,Thomas J. Lane is the incumbent of how many parties?,3, +749,2652, how many party with candidates being john m. vorys (r) 61.5% jacob f. myers (d) 38.5%,3, +751,2659,What are the candidates for noah m. mason?,3, +752,2662, how many first elected with incumbent being charles edward bennett,3, +753,2666, how many party with candidates being charles edward bennett (d) unopposed,3, +754,2667, how many first elected with incumbent being william c. lantaff,3, +755,2677,Name the number of candidates for 1941,3, +757,2683,"How many parties match the canididates listed as howard baker, sr. (r) 68.9% boyd w. cox (d) 31.1%?",3, +758,2692,How many results does the California 29 voting district have?,3, +759,2695,How many candidates ran against barratt o'hara?,3, +761,2698,How many results for incumbent Noble Jones Gregory?,3, +763,2706,What is the number of candidates for pennsylvania 3,3, +764,2707,What is the number of candidates for pennsylvania 21,3, +765,2709,How many candidates were there in the race where Cecil R. King is the incumbent?,3, +766,2710,How many districts have an incumbent first elected in 1944?,3, +767,2712,How many people on this list are named thomas abernethy?,3, +768,2713,How many times was w. arthur winstead first elected?,3, +769,2714,How many times was william m. colmer winstead first elected?,3, +771,2729,Which party is associated with the candidate Albert Sidney Camp (D) unopposed?,3, +772,2737,what the the end number where albert rains was running,3, +773,2739,Name the total number of first elected for sol bloom,3, +774,2745, how many result with candidates being richard j. welch (r) unopposed,3, +775,2751,How many parties does incumbent carl vinson represent?,3, +776,2752,How many parties does incumbent stephen pace represent?,3, +777,2757,How many districts have an incumbent first elected in 1940?,3, +778,2758,How many races involve incumbent Pat Cannon?,3, +779,2764,How many partys have a candidate first elected in 1923?,3, +780,2765,what was the number of candidates when Leon Sacks was incumbent?,3, +781,2769,How many polling areas are there with John Taber as the sitting Representative?,3, +782,2773,How many sitting Representatives are there in the New York 10 polling area?,3, +783,2778,How many candidates were in the election featuring brooks hays (d) unopposed?,3, +784,2780, how many party with candidates being john j. phillips (r) 57.6% n. e. west (d) 42.4%,3, +786,2787, how many party with dbeingtrict being alabama 6,3, +788,2792,In how many districts was the incumbent Estes Kefauver? ,3, +790,2796,William Fadjo Cravens is the only candidate who was first elected in 1939.,3, +791,2801, how many dbeingtrict with candidates being william b. bankhead (d) 71.3% e. m. reed (r) 28.7%,3, +792,2804,How many incumbents were first elected in 1930?,3, +793,2805,"In how many districts is the incumbent Dave E. Satterfield, Jr.",3, +794,2807,How many parties does william b. cravens represent?,3, +796,2814,How many districts does riley joseph wilson?,3, +797,2815,How many districts for rené l. derouen?,3, +798,2819,How many first elections have Claude Fuller as incumbent?,3, +799,2820,How many winners were there in the Georgia 1 district?,3, +801,2830, how many incumbent with first elected being 1932,3, +802,2832, how many district  with incumbent being david delano glover,3, +803,2842, how many first elected with district is kansas 3,3, +804,2845,How many candidates ran in the election in the Arkansas 4 district? ,3, +805,2846,How many districts does william b. oliver represent?,3, +807,2848,How many people were elected in 1929,3, +808,2849,how many people won in 1914,3, +809,2851,Name the number of incumbents for texas 12 ,3, +810,2852,How many parties were represented for Charles R. Crisp?,3, +811,2857,How many of the first elected were listed when Hatton W. Sumners was incumbent and re-elected?,3, +812,2862,How many districts does john j. douglass represent?,3, +813,2863,how many areas were in the election in 1912,3, +817,2876,How many times was incumbent cordell hull first elected?,3, +818,2877,"How many times was the election joseph w. byrns, sr. (d) unopposed?",3, +820,2880,Name the total number of result for mississippi 4?,3, +821,2884,How many candidates won the election of john n. sandlin?,3, +823,2891,How many candidates were there when Henry Garland Dupré was the incumbent? ,3, +824,2894,How many different original air dates did the episode number 6 have? ,3, +825,2898,How many teams have an eagles mascot?,3, +826,2899,How many teams have the titans as a mascot?,3, +828,2902,Which party was the incumbent from when the cadidates were henry e. barbour (r) 52.1% henry hawson (d) 47.9%? Answer: Democratic,3, +829,2905,Which District was the incumbent Julius Kahn from? Answer: California 4th district,3, +830,2910, how many city with name being providence tower,3, +831,2914, how many date with score being w 113–87,3, +832,2928,How many rankings did the 5th season have?,3, +833,2929,How many times did the 2nd season have a finale?,3, +834,2930," how many county with per capita income being $20,101",3, +836,2935,how many people work with N Rawiller,3, +838,2937,How many serial branches have radio electrial = rea-iv?,3, +839,2941,How many branches have radio electrical=hon s lt(r)?,3, +842,2945,How many episodes have a series number of 35?,3, +844,2947,how many have times of 6,3, +845,2950,tell the number of times where kansas was the location,3, +846,2954,"How many entries are listed under ""current status"" for the WJW-TV ++ Station?",3, +847,2955,How many stations have fox as the primary affiliation and have been owned since 1986?,3, +848,2958,"How many channel tv (dt)s are in austin, texas?",3, +851,2975,how many turns were completed to make a mean of 34.0,3, +852,2984,How many leading scorers were there in the game against Utah?,3, +853,2985, how many location attendance with team being charlotte,3, +854,2988, how many high assbeingts with score being l 90–98 (ot),3, +855,2990,How many pairs of numbers are under record on April 12?,3, +856,2991,Name total number of won for tries for 92,3, +857,2995,Name the total number of points for when try bonus is 10,3, +858,2996,Name the number of won for maesteg harlequins rfc,3, +859,3000,what amount of try bonus where the game was won by 11?,3, +860,3001,what is the total amount of tries where the points were 325?,3, +861,3007,How many communities had a total renewable generation of 1375?,3, +863,3011,How many races were for a distance of 2020 m?,3, +864,3026,How many people named gloria moon were on the 2002 and 2012 commissions?,3, +866,3029, how many bush% with total# being 191269,3, +868,3031,How many entries are there for weight when the winner is 1st - defier and venue is randwick?,3, +870,3036,How many districts had an depravity level of 27.7,3, +871,3040,what is the total score for the date of january 3?,3, +872,3043,How many players led Game #66 in scoring?,3, +873,3049,How many records are there for the games that took place on January 14.,3, +875,3060, how many total population with catholic being smaller than 31370649.1405057 and region being north africa,3, +876,3063, how many title and source with pal -295- being yes and jp -210- being yes,3, +877,3065, how many na -350- with title and source being bokumo sekai wo sukuitai: battle tournament,3, +879,3075,How many goals Olimpia recorded for 32 matches?,3, +880,3084, how many equivalent daily inflation rate with time required for prices to double being 3.7 days,3, +881,3085, how many country with currency name being republika srpska dinar,3, +882,3086, how many equivalent daily inflation rate with currency name being republika srpska dinar,3, +883,3088,How many grand final dual television commentators were there in 1961?,3, +885,3091,How many games played on june 25?,3, +886,3096,On what position number is the club with a w-l-d of 5-7-4?,3, +888,3099,How many films titled Gie have been nominated?,3, +889,3102,"How many years have a film that uses the title ""Nagabonar"" in the nomination?",3, +891,3125,How many clubs had 7 wins? ,3, +893,3140,What year was Skyline High School founded?,3, +894,3141,How many enrollment figures are provided for Roosevelt High School?,3, +896,3149,How many people had the high rebound total when the team was 19-13?,3, +897,3154,How many players scored the most points when the opposing team was New Orleans/Oklahoma City?,3, +898,3155,How many players scored the most points on game 4?,3, +900,3158, how many local title with televbeingion network being tv nova website,3, +901,3163, how many chroma format with name being high profile,3, +902,3170, how many song title with artbeingt being chubby checker,3, +906,3174,How many different total number of transit passengers are there in London Luton?,3, +915,3195, how many airport with rank being 4,3, +916,3196, how many mens singles with mens doubles being pontus jantti lasse lindelöf,3, +918,3212,How much audience did the 7th Pride of Britain Awards ceremony have?,3, +919,3219,How many classes between senior and junior year for world history,3, +921,3222, how many original airdate with writer(s) being becky hartman edwards and director being adam nimoy,3, +922,3225, how many height m ( ft ) with frequency mhz being 100.1,3, +923,3227, how many height m ( ft ) with notes being via wccv; formerly w236aj,3, +925,3232, how many highest with team being forfar athletic,3, +926,3239,How many of the elected officials are on the Economic Matters committee?,3, +927,3250,What was the number of rounds on the Hidden Valley Raceway?,3, +929,3253,"How many counties have an area of 1,205.4 km2?",3, +930,3257, how many capital with population census 2009 being 284657,3, +932,3271,How many stations own Bounce TV?,3, +933,3277, how many tries against with lost being 11,3, +934,3283, how many points for with points against being 177,3, +935,3294,tell how many wins there was when the score was 490,3, +936,3304, how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi,3, +937,3306,how many big wins does peru state college have,3, +939,3314," how many primary payload(s) with shuttle being columbia and duration being 13 days, 19 hours, 30 minutes, 4 seconds",3, +940,3319, how many class with poles being bigger than 1.0,3, +945,3336, how many mean elevation with lowest point being gulf of mexico and state being texas,3, +946,3343,How many family friendly games are in the 1990s?,3, +947,3348,When altos hornos zapla is the home (1st leg) what is overall amount of 1st leg?,3, +948,3350,How many 2nd legs had an aggregate of 2-4?,3, +949,3351,How many home (2nd leg) had a 1st leg 1-1?,3, +956,3376,Name the number of clock rate mhz when bandwidth mb/s is 2400,3, +957,3382,How many locations had a density (pop/km²) of 91.8 in the 2011 census?,3, +958,3383,"When the 2006 census had a population of 422204, what was the density (pop/km²) ?",3, +960,3386,How many teams scored exactly 38 points,3, +963,3389,How many games did the team that began in 2011 and scored 36 points play?,3, +964,3392,How many episodes had a broadcast date and run time of 24:43?,3, +965,3393,How many members gained university status in 1900?,3, +967,3395,How many members have professor edward acton as vice-chancellor?,3, +970,3400,How many new pageants does Aruba have?,3, +971,3403,what is the number of teams where conmebol 1996 did not qualify?,3, +973,3416,How many incumbents for the district of South Carolina 5?,3, +975,3423,Name the total number of publishers for flushed away,3, +978,3429,How many power stations are connected to grid at Heysham 2,3, +982,3435,How many extra points did Paul Jones score?,3, +986,3441,How many player with total points of 75,3, +988,3443,Name the number of points for right halfback and starter being yes,3, +989,3444,"Na,e the number of field goals for right tackle",3, +991,3449,How many points did the player who was right guard score?,3, +994,3453,Who are the UK co-presenters that have Joe Swash as a co-presenter and Russell Kane as a comedian?,3, +995,3464,How many people finished 9th?,3, +997,3466,Who directed series #4 that was teleplayed by David Simon?,3, +1000,3487,Name the total number of 1991-92 for 1992-93 for 44,3, +1001,3492,Name the total number of 1stm when 2nd m is 125.5,3, +1002,3494,Name the number of nationality is tom hilde,3, +1004,3507,How many full names are provided for the jumper whose 2nd jump was 96.0m?,3, +1005,3512,Name the number of date for shea stadium,3, +1006,3514,How many home team scores have a time of 4:40 PM?,3, +1007,3516,What is the total number of attendees where the home team was Port Adelaide?,3, +1010,3523, how many pos with member association being china pr,3, +1011,3524, how many points (total 500) with pos being 11,3, +1013,3529,How many points total for san lorenzo?,3, +1014,3532,Name the total number of telephone 052 for 362.81,3, +1015,3535,How many of the cmdlets are the 2008 version?,3, +1016,3539,how many points did the team that scored 27 points in the 1987-88 season score?,3, +1019,3556,How many hosts were on Seven Network?,3, +1024,3569,How many entries are there for date of situation for #4?,3, +1025,3570,How many # entries are there for the date of situation of 23 January 2003?,3, +1029,3580,When 1934 wsu* 19–0 pullman is the 1894 wsu 10–0 moscow how many 1899 wsu* 11–0 pullmans are there?,3, +1030,3584,"What is the total amount o teams where winnings is $1,752,299?",3, +1031,3586,What is the totl amount of years where avg start is 27.3?,3, +1032,3590,Name the number of class aa for bridgeport and 1999-2000,3, +1033,3594,Name the number of class aaaaa for 1988-89,3, +1034,3601,How many times was there a class A winner when Gregory-Portland was the class AAAA?,3, +1035,3602,How many Class AAAA winners where in 2002-03?,3, +1036,3624,Name the number of branding for 31 physical,3, +1037,3625,Name the number of virtual for NBC,3, +1038,3626,Name the virtual for Fox,3, +1039,3627,Name the owners for prairie public,3, +1040,3628,Name the total number of class aaa for 2006-07,3, +1041,3635, how many winning team with circuit being road america,3, +1042,3640,"What is the number of appearances where the most recent final result is 1999, beat Genk 3-1?",3, +1044,3648,How many socialists correspond to a 7.5% People's Party?,3, +1045,3651,How many percentages of Left Bloc correspond to a 32.1% Social Democratic?,3, +1046,3655,How many colleges did pick number 269 attend?,3, +1047,3656,How many picks played Tight end?,3, +1048,3658,What position does Robert Brooks play?,3, +1050,3668, how many college with player being rich voltzke,3, +1052,3677,How many times was obamacare: fed/ state/ partnership recorded for Louisiana?,3, +1053,3678,"How many numbers were recorded under revenue when revenue per capita was $6,126?",3, +1054,3679,How many times was presidential majority 2000/2004 recorded when obamacare: fed/ state/ partnership was Utah shop?,3, +1055,3682,"How many times was revenue in millions recorded when the spending per capita was $6,736?",3, +1059,3686,How many release dates does volume 4 DVD have?,3, +1060,3689,what amount of stations have station code is awy?,3, +1061,3692,How many stations in 2011-12 had volume of 11580 in 2008-09?,3, +1063,3694,How many years was the total 402?,3, +1064,3697,Who won the points classifications in the stage where Matteo Priamo was the winner?,3, +1066,3704,How many people directed the show written by Chris Sheridan?,3, +1068,3707,How many positions does rene villemure play?,3, +1071,3718,Name the number of teams for college/junior club for philadelphia flyers,3, +1072,3721,How many positions did 1972 NHL Draft pick Rene Lambert play?,3, +1073,3725, how many player with nhl team being vancouver canucks,3, +1074,3733,How many class AA in the year 2002-03,3, +1075,3747,When the 1 is the rank what is the overall amount of international tourist arrivals in 2012?,3, +1076,3762,What is the total number of population in the year 2005 where the population density 35.9 (/km 2)?,3, +1077,3766,Name the total number of list votes for 20.95%,3, +1079,3769,"In the year where Angela Stanford had a scoring average of 71.62, how many times did she take second place?",3, +1082,3775,How many total earnings are recorded when her best finish is t2 with a 71.25 scoring average?,3, +1084,3777,How many years has she ranked 56 on the money list?,3, +1092,3799,How many scores were there in week 11?,3, +1099,3810,How many different skippers of the yacht City Index Leopard?,3, +1100,3819,Name the number of wins for when points is 17,3, +1101,3820,Name the number of draws for when conceded is 25,3, +1106,3830,How may draws did libertad have?,3, +1107,3833,Name the number of men doubles for 2007,3, +1108,3835,Name the number of years for womens doubles being diana koleva emilia dimitrova and jeliazko valkov,3, +1109,3843,HOW MANY YEARS DID MENS DOUBLES PLAYER HEIKI SORGE MEELIS MAISTE PLAY?,3, +1111,3850,How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles,3, +1115,3861,how many years has сенки been nominated?,3, +1116,3862,how many directors for the film мајки,3, +1117,3864,How many times was performer 3 Kate Robbins?,3, +1118,3867,How many episodes was Jimmy Mulville performer 4?,3, +1119,3868,"How many instruments did Stuart play on ""We Got Married""?",3, +1120,3870,What was the total number of seats won where the % of votes is equal to 20.29?,3, +1124,3880,"What is the total number of values for attendance for the date October 1, 1978?",3, +1126,3883,How many games had the attendance of 60225?,3, +1128,3894,Name the french actor with javier romano,3, +1129,3904,How many values of Other A correspond to Tommy Johnson Category:Articles with hCards?,3, +1130,3905,How many different Leagues are associated with Billy Meredith Category:Articles with hCards?,3, +1131,3906,How many separate values for Years are associated with FA Cup of 5?,3, +1132,3908,What was the GDP (in millions USD) of Indonesia in 2009?,3, +1134,3911,what class is Braxton Kelley in?,3, +1135,3912,how many hometowns use the position of fs?,3, +1136,3914,How many games were played against the Chicago Bears?,3, +1137,3920,Where is California Lutheran University located?,3, +1138,3925,How many different jockeys ran on 17 Feb 2007?,3, +1139,3927,How many jockeys are listed running at the Sir Rupert Clarke Stakes?,3, +1140,3928,How many venues had a race called the Australia Stakes?,3, +1141,3932,Name the number of weeks for 50073 attendance,3, +1142,3940,Name the number of weeks for san francisco 49ers,3, +1144,3944," how many result with date being october 25, 1964",3, +1145,3945," how many opponent with date being october 25, 1964",3, +1146,3947,Name the total number of population 2000 census for mesquita,3, +1147,3949,Name the number of area where population density 2010 for 514,3, +1148,3950,Name the number of population density 2010 for duque de caxias,3, +1150,3957,Name the santee sisseton for híŋhaŋna,3, +1152,3961,How may women doubles winner were there when Philippe Aulner was mens singles winner?,3, +1153,3962,How many mixed doubles were won in 1996?,3, +1154,3968,How many mixed doubles were there in the year that Olga Koseli won the women's singles?,3, +1158,3972,How many different directors are associated with the writer Gaby Chiappe?,3, +1159,3977,Who wrote the episode that David Tucker directed?,3, +1160,3980,"Which numerical entry corresponds to ""Episode 9""?",3, +1161,3981,How many licenses have version 1.2.2.0?,3, +1162,3983,How many licenses have mind workstation software?,3, +1167,4001,What is the total of all Shot PCT occurrences when the value of Blank Ends is 8?,3, +1169,4005,How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi,3, +1170,4007,How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?,3, +1171,4008,"How many times were the winnings $3,816,362?",3, +1172,4009,How many wins were there when the position was 26th?,3, +1173,4011,How many teams had a 76th position finish?,3, +1175,4014,How many entries arr there for the top 10 for the 78th position?,3, +1177,4016,How many entries are shown for winnings for team #07 robby gordon motorsports?,3, +1178,4024,"How many categories are there when the attribute is ""onreset""?",3, +1179,4025,"How many descriptions are there when the attribute is ""ondragstart""?",3, +1180,4028,In how many stages did Jose Vicente Garcia Acosta won?,3, +1183,4031,How many seasons in the top division for the team that finished 005 5th in 2012-2013,3, +1184,4032,How many countries does honoree Roberto de Vicenzo represent?,3, +1186,4041,How many nominees had a net voice of 15.17%,3, +1187,4043,How many nominee's had a vote to evict percentage of 3.92%,3, +1188,4044,How many eviction results occurred with a eviction no. 12 and a vote to save of 2.76%?,3, +1189,4061,Name the total number of segment c for pressure cookers,3, +1191,4067,Name the segment c for crash test dummies,3, +1192,4070,Name the total number of episodes for s fire extinguisher,3, +1193,4071,Name the total number of segment b for s banjo,3, +1194,4072,Name the total number of segment d for wooden s barrel,3, +1195,4073,How many segment A were in series episode 14-05,3, +1196,4078,How many episodes have the Netflix episode number S08E04?,3, +1199,4082,How many segment C are there in the episode where segment D is bicycle tires?,3, +1201,4084,How many segment b's when segment a is filigree glass,3, +1202,4089,Name the number of episods for segment c being s oyster,3, +1204,4092,Name the number of sement d for solar water heaters ,3, +1207,4106,Name the number of episode for phyllo dough,3, +1209,4120,Name the total number of median income for population 2006 for 365540,3, +1212,4124,How many times was leather introduced before pedal steel guitars in episode 111?,3, +1214,4139,If 0.52% is the percentage of the population in chinas tujia what is the overall amount of tujia population?,3, +1215,4142,If the country is fenghuang how many provinces are there? ,3, +1216,4156,How many stages were there where the winner and the points classification were Alberto Contador?,3, +1217,4157,"When the winner was Alessandro Ballan, how many total team classifications were there?",3, +1218,4158,"When the team classification was quick step, what was the total number of general classifications?",3, +1219,4165,What is the coordinate velocity v dx/dt in units of c total number if the velocity angle η in i-radians is ln[2 + √5] ≅ 1.444?,3, +1220,4173,When are all dates in the year 2006?,3, +1222,4179,How many prizes were available when Jenny Shin became the champion?,3, +1223,4181,How many games did the team with 29 for win?,3, +1225,4184,Name the number of lost for against being 46,3, +1226,4185,Name the number of against for portuguesa santista,3, +1231,4196,Name the number ends won when L is 4 and stolen ends is 17,3, +1232,4204,How many dates of polls occur in the Madhya Pradesh state?,3, +1233,4205,How many under the category of Against have a Difference of 11,3, +1239,4214,How many were the show's average weekly ranking when it reached No. 2 in average nightly ranking?,3, +1241,4222,Name the number of februaries,3, +1249,4236,How many figures are there for wheels for LMS numbers 16377-9?,3, +1253,4249,How many original air dates were there for episode 17?,3, +1256,4259,Name the number for fifth district for richard houskamp,3, +1258,4266,How many school/club teams have a player named Manuel Luis Quezon? ,3, +1259,4267,How many players are listed for the school/club team Washington? ,3, +1260,4268,How many players with a position are listed for the 2009 season? ,3, +1261,4274,How many teams have 62 tries against?,3, +1262,4276,How many teams have 21 tries for?,3, +1263,4277,How many chassis used number 34?,3, +1264,4279,How many cars used number 48?,3, +1265,4281,Name the total number of years where runner-up and championship is us open,3, +1266,4287,Name the total number of qualifiying for race 3 being 3,3, +1267,4291,Name the total number of positions for race 1 being 2,3, +1268,4295,how many winners were in round 8,3, +1269,4296,How many episodes air on Wednesday at 12:00pm?,3, +1270,4304,How many years has station KPIX been owned?,3, +1271,4308,"How many entries for prothrombin time are there where platelet count is ""decreased or unaffected""?",3, +1272,4315,How large is the Boreal Shield in km2?,3, +1273,4322,"How many wrestlers were born in nara, and have a completed 'career and other notes' section?",3, +1274,4327,Name the number of proto austronesian for *natu,3, +1276,4338,Name the total number of air dates for 102 episode,3, +1281,4357,Name the number of wheel arrangement when class is d14,3, +1283,4365,Name the number of players from arizona,3, +1284,4367,Name the number of players for louisiana state,3, +1286,4378,How many stamps have a face value of 37¢ and were printed in the banknote corporation of america?,3, +1287,4382,"How many values for result correspond to attendance of 74,111?",3, +1288,4383,How many locations have the Sun Life Stadium?,3, +1291,4386,How many values for attendance correspond to the 1986 Peach Bowl?,3, +1292,4388,Who were all the pictorials when the centerfold model was Rebekka Armstrong?,3, +1293,4390,Who was the interview subject when the centerfold model was Sherry Arnett?,3, +1294,4392,What is the date of the issue where the pictorials is of Female s disk jockey?,3, +1295,4396,"IN THE ISSUE WHERE LENNY KRAVITZ ANSWERED THE 20 QUESTIONS, HOW MANY PICTORIALS WERE IN THE MAGAZINE?",3, +1296,4397,IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT?,3, +1297,4401,How many centerfold models were there when the cover model was Torrie Wilson?,3, +1298,4403,How many centerfolds were in the 9-98 issue?,3, +1299,4408,How many times was Jillian Grace the centerfold model?,3, +1300,4410,How many total interview subjects wererthere when the centerfold model was Tamara Witmer?,3, +1301,4425,HOW MANY MODELS WERE ON THE COVER OF THE ISSUE WHERE THE CENTERFOLD WAS STEPHANIE LARIMORE?,3, +1302,4427,HOW MANY TIMES WAS LUDACRIS THE INTERVIEW SUBJECT FOR THE 20 QUESTIONS COLUMN?,3, +1303,4432,what is the total rank where the rank is 58?,3, +1304,4434,what is the total number of rank where viewers is 9.38?,3, +1305,4436,How many platforms have a southern opertator and the pattern is all stations via clapham junction?,3, +1306,4438,"When London Bridge is the destination, how many lines are there?",3, +1308,4444,Name the number of numbers for howard clark,3, +1312,4452,How many players named sanath jayasuriya?,3, +1313,4454,How many overs bowled for muttiah muralitharan?,3, +1315,4459,how many games has kansas state and depaul played against each other,3, +1316,4469,"Name the number of advocate #1 that aired on april 2, 2008",3, +1317,4470,"Name the poll winner for march 19, 2008",3, +1318,4477,How many times did drinking games win the poll?,3, +1320,4492,"How many episodes aired on february 13, 1954?",3, +1321,4496,What is the total number of CFL teams in the college Wilfrid Laurier,3, +1326,4503,How many locomotives have a name of City of Birmingham,3, +1327,4504,How many locomotives have a livery that is highland railway green,3, +1329,4507,What was the total number of first down on October 23?,3, +1331,4509,Name the number of season number for jeff truman,3, +1333,4518,Name the total number of japanese for amagasaki,3, +1334,4526,How many teams are listed for February 18?,3, +1335,4531,How many players had the most assists against New Jersey?,3, +1337,4543,How many values of HDTV apply when television service is elite shopping tv?,3, +1338,4544,How many countries have content of arte?,3, +1339,4545,How many values of HDTV correspond to television service of la sorgente sat 1?,3, +1341,4549,Name the number of package options for music box italia,3, +1342,4554,Name the total number of hdtv for eurotic tv,3, +1343,4556,How many times was something listed under content when the television was R-light?,3, +1344,4563,How many different contents are offered by the Qualsiasi Tranne Sky HD package?,3, +1345,4565,How many PPV values are listed for when television service Sky Cinema 1?,3, +1346,4570,Name the total number of dar for disney channel and number is 613,3, +1349,4577,How many countries had a per capita withdrawal (m 3 /p/yr) of 372?,3, +1350,4578,How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?,3, +1351,4581,In how many countries was the total freshwater withdrawal (km 3 /yr) 169.39?,3, +1352,4584,Name the total number when date is 30 may 2010,3, +1354,4588,Name the number of panelists for 20 january 2006 air date,3, +1355,4589,Name the number of music guests for jade goody and kenzie,3, +1357,4596,How many validations are listed for the iin range 36?,3, +1358,4600,What episode did Pamela Anderson guest host.,3, +1359,4605,Name the total number of panelists for 19 january 2007,3, +1360,4611,What is the effective exhaust velocity in a Space Shuttle Vacuum?,3, +1362,4624,Name the number of regular judge when host is bernie chan,3, +1364,4626,Name the number of team for 35 runs margin and india winner,3, +1365,4631,"On Sept. 17, how many first downs did the oilers have?",3, +1369,4647,How many headphone classes have a US MSRP of $150?,3, +1370,4648,How many values for earpads correspond to the headphone class Prestige and a US MSRP of $79?,3, +1379,4679,What is the total number of regions where the average family size is 2.8?,3, +1381,4682,How many total families are there in regions with 5.8 percent of the population being made up of deportees?,3, +1383,4685,How many lengths of line 3 are given?,3, +1384,4688,"Name the total number of hangul chosongul for 8,352",3, +1385,4691,Name the number of region for 경상남도,3, +1386,4694,Name the population density people where population % eu for 1.7%,3, +1387,4695,Name the number of area km 2 for population density is 87,3, +1388,4697,How many networks are there that have a channel number 7?,3, +1390,4701,"How many Universities were founded in Tacoma, Washington?",3, +1392,4705,What is the total number of viewers where the share is 7 and the week rank is 64?,3, +1393,4706,How many episodes have a share bigger than 7.0?,3, +1394,4707,How many episodes have a weekly rank tba and are broadcast at 8:00 p.m.?,3, +1395,4709,What broadcast dates have a weekly rank of 73?,3, +1396,4713,What is the result for salmonella spp. if you use citrate?,3, +1397,4727,How many Ford Focus electric vehicle emission test scores were recorded in California?,3, +1401,4745,How many years was the operating profit (s$m) 717.1?,3, +1402,4750,Name the total number of pinyin for hsin-yüan-i-ma,3, +1403,4754,How many frequency figures are given for next station service pattern?,3, +1404,4756,How many tournament wins were at Volvo Masters Andalucia?,3, +1407,4763,What is the total number of episodes where alexa wyatt is the writer?,3, +1408,4768,How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ?,3, +1409,4779,"How many times did the team achieve an overrall record of mu, 21-19?",3, +1410,4786,Name the total number of opponets venue for oklahoma,3, +1411,4787,Name the total number of last 5 meetings for texas tech,3, +1412,4788,Name the total number of series sorted for when released is april 2010,3, +1413,4797,How many feet in length are there when the length is 106.1 meters? ,3, +1419,4815,How many languages for the 2001 (74th) awards?,3, +1420,4825,NJame the total number of population for towns/villages for 217,3, +1422,4839,How many numbers were listed under area with a population of 240075 as of 2009?,3, +1423,4842,Name the dates for margin of victory being 5 strokes,3, +1424,4852,Who many dates are in position 9 and the sellout is 81%?,3, +1425,4853,What is the position of tickets sold/available when the sellout is 82%?,3, +1426,4859,How many years did he have an average finish of 29.2?,3, +1427,4860,How many years did he finish in 59th?,3, +1428,4861,How many instances do you see the year 2003?,3, +1432,4879,Name the total number of nicknames for st. bonaventure university,3, +1433,4880,Name the total number of affiliation for enrollment being 14898,3, +1434,4886,How many schools have the team nickname bobcats? ,3, +1437,4892,Name the number of pinyin where simplified is 河西区,3, +1439,4900,How many days did Hawthorn play as a home team?,3, +1440,4903,How many days was the away team's score 11.8 (74)?,3, +1442,4915,How many crowd sizes were recorded at the game when the home team scored 7.8 (50)?,3, +1443,4916,"When the home team scored 7.8 (50), how many away team scores were recorded?",3, +1444,4923,Name the total number of ground for essendon,3, +1446,4925,When ground is manuka oval what is the home team score?,3, +1448,4946,How many locations does Elon University have?,3, +1450,4951,How many release prices are there for the Pentium iii 550?,3, +1454,4967,how many teams won at golf when wooster won soccer,3, +1455,4973,Total enrollment at the school with the nickname Blue Hens,3, +1456,4976,"How many nicknames does the school in Newark, DE have",3, +1458,4992,How many players named Jeff Brown were drafted,3, +1461,5000,How many times is a score for stolen ends recorded for France?,3, +1464,5004,How many seasons was Dave Reid treasurer?,3, +1467,5010,When 1509 is the c/w 15+ how many results of 15 to 17 are there?,3, +1468,5011,When 2275 is 70+ how many results of 40 to 44 are there?,3, +1469,5013,When 2073 is 65 to 69 how many results of 25 to 29 are there?,3, +1474,5020,What province has the Chinese translation 重庆?,3, +1475,5021,What is the total administrative population of Shanghai?,3, +1477,5023,What is the total urban population of the city with the pinyin translation chángchūn?,3, +1478,5027,How may players played for the Grizzlies from 2000-2002?,3, +1479,5032,How many directors were there in total for the episode with series #62?,3, +1481,5034,What are the nationalities of players who attended duke?,3, +1482,5035,How many nationalities does athlete Casey Jacobsen have?,3, +1483,5037,How many athletes play the position of guard?,3, +1484,5039,How many players went to depaul?,3, +1487,5050,what is the total number for reason for change is district michigan 3rd?,3, +1488,5058,"How many episodes have the title ""the world of who""?",3, +1489,5063,"How many appointed archbishops were ordained as priests on December 20, 1959",3, +1490,5066,How many players Bowled 4/125?,3, +1496,5079,How many days are associated with production code 210?,3, +1497,5080,How many titles have a production code of 211?,3, +1498,5081,How many seasons have a production code of 204?,3, +1499,5087,How many tree species are there when the total plant species is 113?,3, +1503,5101,How many targets are there with an approval date of 1997?,3, +1506,5107,How many percentage figures are given for the urban population when the total population number is 14685?,3, +1507,5108,For how many years was the urban population 57%?,3, +1508,5110,How many had a length of 455?,3, +1510,5113,How many have a length of 375?,3, +1511,5120,How many opponents did the team play in week 13?,3, +1519,5140,How many teams are listed for 3rd wickets?,3, +1520,5141,How many total batting partners were most successful in the 2006 season?,3, +1522,5150,Name the total number of results for new orleans saints,3, +1523,5151,What is the total number of opponents for the game recorded as 1-3?,3, +1524,5154,How many opponents were there for the game recorded as 6-4 in the Atlanta Falcons 1978 season?,3, +1528,5161,name the total number of top 10 also where the position is 51st ,3, +1529,5163,Name the total number of winnings for 1995,3, +1531,5166,Name the total number of teams for top 10 being 5,3, +1532,5167,How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones?,3, +1533,5174,How many games were played at Cleveland Stadium?,3, +1534,5175,In what week number was the attendance 74716?,3, +1535,5179,How many weeks had an attendance of 60038?,3, +1539,5200,How many figures are there for Rank 07-11 when the world ranking is 4?,3, +1540,5201,How many figures are given for pubs 2011 in Chennai?,3, +1541,5202,Name the number location of georgia perimeter college,3, +1542,5205,Name the total number of nicknames for andrew college,3, +1544,5216,"On November 14, 2007, how many different Republican: Jeff Sessions are there?",3, +1545,5220,"When the poll source is research 2000/daily kos, what is the total number of dates administered? ",3, +1546,5221,"On July 17, 2008, what was the total number of lead maragin? ",3, +1547,5226,How many teams had 632 points against?,3, +1548,5228,How many times did Public Policy Polling under Republican: Jack Hoogendyk?,3, +1550,5232,How many dates were recorder administered when poll were sourced from Strategic Vision and the Republican Jack Hoogendyk had 29%?,3, +1551,5234,How many longitudes have a diameter of 224.0?,3, +1552,5237,How many longitudes have a latitude of 9.9n?,3, +1556,5243,how many points scored by sportivo luqueño,3, +1557,5245,"If team two is San Lorenzo, how many were on team one?",3, +1558,5246,"If team two is Lanús, what was the total number of points?",3, +1559,5252,How many numbers are listed under diameter with a lattitude of 5.0n?,3, +1562,5266,"Name the total number of year named for athena , greek goddess of wisdom .",3, +1563,5269,How many schools are named otafuku tholi?,3, +1567,5275,What is the score for round 2 for team Toshiba?,3, +1568,5278,How many years have a longitude measure of 20.0e?,3, +1570,5289,Name the total number of index weighting % at 17 january 2013 for bouygues,3, +1571,5293,How many headquarters are there listed for HSBC?,3, +1574,5298,Name the number of rank for 9.52 profits,3, +1576,5306,How many percentages are listed for the election in 1983?,3, +1577,5311,"What is the species with the common name ""mouse""?",3, +1578,5319,Name the number of judges for dré steemans ann van elsen,3, +1580,5323,Name the nickerie for marowijne being 4.7%,3, +1582,5328,Name the number of flaps for 63 points ,3, +1584,5330,How many p.ret are there when kr avg is 11.3 ? ,3, +1587,5347,How many numbers were recorded for Chester when the religion was Hindu?,3, +1590,5351,Name the total number of air dates for 05 cycle,3, +1591,5354,Name the total number of immunity for cycle number of 13,3, +1593,5363,How many were the shares when the viewers reached 3.11 million?,3, +1594,5368,Name the number of gregorian calenda rof gemini,3, +1595,5377,How many scores are listed for game 37?,3, +1596,5380,what is the nightly rank where the episode number production number is 06 1-06?,3, +1597,5381,what is the number of weekly rank where the total is 1980000?,3, +1598,5387,Name the tongyong for qiaotou,3, +1599,5392,How many values are in the PF cell when Jennifer Jones is skip?,3, +1603,5396,How many values are in the ends won cell corresponding to a PA of 39?,3, +1606,5400,"When the blank ends at 1, what is the PA?",3, +1607,5401,How many times did the team play charlotte?,3, +1608,5408,In how many locations did Game 13 take place?,3, +1609,5411,How many games was game 43?,3, +1610,5412,Name the total number of high rebounds for february 10,3, +1611,5416,On how many dates did the Timberwolves play Phoenix? ,3, +1613,5427,How many Q1 figures are given for Alexander Wurz?,3, +1615,5440,How many athletes completed a trans 1 within 0:26?,3, +1616,5446,what is the total number of attendance where the date is december 29?,3, +1617,5450,How many appointment dates were recorded when Jürgen Kohler was the replaced by?,3, +1618,5453,Number of participants with a score 8.895 in preliminary,3, +1619,5458,What is the total number of population in the land with an area of 149.32 km2?,3, +1621,5464,Name the number of location attendance for l 141–143 (ot),3, +1623,5474,Name the number of high assists for july 1,3, +1624,5480,How many dates have a Match number of 5?,3, +1625,5486,Name the high rebounds for score of 64-74,3, +1630,5514,How many high assists are listed for the game with a score of 68-60?,3, +1632,5520,How many attendance figures are given for the game where the final score was lost 5-3?,3, +1633,5530,How many dates did David Savage get man of the match?,3, +1634,5538,What was the record against Washington?,3, +1635,5552,How many statuses are listed for the parish officially named Gagetown?,3, +1636,5557,How many population values are listed for the community with an area of 10.25 sq.km.?,3, +1637,5561,How many episodes have the season number of 1?,3, +1638,5568,what is the total number of model wehre the status is named geneva?,3, +1639,5573,How many years was the original title was স্বপ্নডানায় (swopnodanay)?,3, +1640,5581,How many figures are given for total number of South Asians in 2001 for the area where they were 4.4% of population in 2011?,3, +1643,5585,"Name the number of tv seasons for season finale being may 24, 1994",3, +1644,5586,"Name the number of tv seasons for season finale of may 23, 1995",3, +1645,5587,Name the driver/passenger for 30,3, +1647,5590,"Name the number of going to for thurlby, braceborough spa at departure being 16.50",3, +1648,5594,how many records were made on the game that ended with score w 121–119 (ot),3, +1649,5598,Scott Dixon had how many Grid positions?,3, +1650,5600,How many positions did the car with a final time of +10.8098 finish in?,3, +1654,5608,On how many different dates was event 1 Suspension Bridge?,3, +1655,5609,On which episode number is event 4 The Wall and event 1 the Pendulum?,3, +1657,5613,How many drivers on the grid are called Vitor Meira?,3, +1662,5620,"When they played Universidad de Chile, what was the score of the first leg?",3, +1663,5623,What was the score on the 1st leg if the team 2 is botafogo?,3, +1664,5627,"How many different items appear in the high points column when the location attendance was US Airways Center 18,422?",3, +1665,5631,How many times did Ron Artest (24) receive the record for high points?,3, +1668,5641,"How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6–2, 3–6, 5–7?",3, +1669,5646,High points earned by Josh Howard (19) resulted in how many high rebounds?,3, +1670,5652,How many upstream speeds are there for downstream of 20 mbit/s and bandwidth of 40 gb?,3, +1672,5664,How many pressure figures are given for the .380 acp cartridge?,3, +1673,5674,Name the total number of assists for 77 blocks,3, +1676,5682,How many drivers were there for Samax Motorsport?,3, +1677,5684,How many drivers where there when the time/retired +3 laps and points were 24?,3, +1679,5686,How many car numbers were recorded when the time/retired is +4.0019?,3, +1680,5693,How many scores are listed for the game against Houston,3, +1681,5699,How many games was High Points andre iguodala (29)?,3, +1682,5700,How many games were played on March 15?,3, +1683,5706,"How many players had high points in the location/attendance FedexForum 11,498 respectively?",3, +1684,5712,What is the total number of high points on January 21?,3, +1685,5717,How many games occur on the date December 12?,3, +1686,5718,How many high assist are on the date December 13?,3, +1687,5723,How many assists were made in the game against San Antonio?,3, +1688,5729,How many location attendance was recorded for December 5?,3, +1689,5731,How many games were recorded when the team was @ Memphis?,3, +1690,5737,How many vacancies happened on 25 May?,3, +1691,5738,how many 1391 carelia where 1398 donnera is 2397 lappajärvi,3, +1692,5744,"If the points is 15, what is the fin. pos?",3, +1695,5748,How many winning scores were there in the rr donnelley lpga founders cup?,3, +1699,5762,What are the records of games where high rebounds is amar'e stoudemire (11),3, +1700,5776,What game was the record 2-3?,3, +1704,5798,What was the number of seasons that was directed by Joanna Kerns?,3, +1705,5801,How many titles are given for the episode directed by Joanna Kerns?,3, +1707,5807,How many episodes were there in season 19?,3, +1710,5813,How many teams finished with a 2nd points total of 31?,3, +1712,5815,How many games with record 1-3-3,3, +1713,5816,How many attended on mathches against atlanta thrashers,3, +1715,5823,How many points were scored when the record was 6-8-6?,3, +1716,5830,How many locations were recorded when the opponent Columbus Blue Jackets?,3, +1718,5835,How many were won when the points were 12? ,3, +1719,5841,How many games or records were played on the Miami Orange Bowl?,3, +1720,5846,How many seasons in Tamil occur when the season in Sanskrit is Grishma?,3, +1721,5848,How many faculty members have 20 years of experience? ,3, +1722,5857,How many schools won their last occ championship in 2006?,3, +1724,5879,How many different meanings does the verb with part 4 gegeven have?,3, +1725,5881,How many different classes of verbs are there whose part 3 is lucon?,3, +1726,5883,How many different part 3 verbs are there that mean to freeze?,3, +1727,5899,How many verbs mean to bear,3, +1728,5900,"How many verbs mean to grow, to produce",3, +1729,5902,"What is the original air date of episode 8? Answer: Dec. 21, 2006",3, +1730,5915,Name the number of builders for number 96,3, +1731,5921,How many writers are listed for the episode with a production code of 5008?,3, +1732,5923,How many locations have the call signs dxjp-fm? ,3, +1737,5942,In the Champions league is the forward position smaller than 6.0,3, +1739,5944,when the position is forward and the league is 5 what number is the Champion league,3, +1740,5945,if p is bigger than 4.0 what is total number,3, +1741,5948,How many districts had republican Bob Goodlatte as a candidate?,3, +1742,5950,How many won when points against is 410?,3, +1743,5952,How many clubs have 62 points?,3, +1747,5960,Name the number of lead margin for republican joe kenney being 31%,3, +1750,5966,How many 3rd ru does Canada have? ,3, +1752,5970,"How many different lead margins were stated in the poll administered on September 11, 2008?",3, +1753,5975,Name the number of color for furcifer pardalis,3, +1754,5976,Name the number of international frieghts for domestic mail of 260,3, +1755,5977,Name the total number of domestic mail for 7853 for total frieght and mail,3, +1756,5978,Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260,3, +1759,5984,How many transfer windows coming from Crystal Palace?,3, +1760,5997,what ist he total number of ages where the start date is 6 november?,3, +1761,6000,"How many seasons did ""strangled, not stirred"" air?",3, +1762,6001,How many episodes did Alison Maclean direct?,3, +1763,6005,"How many different play-by-play announcers also had pregame analysis by Darren Flutie, Eric Tillman and Greg Frers?",3, +1764,6010,Name the total number of county seat or courthouse for april 1 2010 denisty is 2205,3, +1765,6011,Name the total number of states for july 1 2010 density is 1209,3, +1767,6013,How many values for number of clubs have Shandong as the runner-up?,3, +1768,6014,How many total wins with Shanghai as runner-up?,3, +1769,6016,Name the number of lost where tries for is 109,3, +1770,6025,How many points categories are there when the losing bonus is 2 and points for are 642?,3, +1771,6026,How many people wrote the episode that had 6.34 million viewers?,3, +1772,6029,How many episodes of 30 minutes were written by John Sullivan?,3, +1773,6031,"What is the total length when the title is "" one man's junk """,3, +1774,6034,How many episodes aired on 22january2009,3, +1778,6038,How many status are there for Moncton?,3, +1781,6048,How many stages were won by Robbie McEwen?,3, +1782,6049,How many car numbers were listed for Rusty Wallace?,3, +1784,6056,When 2005 is the season how many drivers are there?,3, +1790,6075,In how many years was Tom Fleming the final television commentator? ,3, +1793,6083,"This constellation, abbreviated as 'oph' has how many right ascension (in hm)?",3, +1794,6085,This constellation with a ranking of 51 has how many percentages on record?,3, +1795,6091,How many times did the Denver Broncos face the Dallas Texans this season?,3, +1797,6106,Who many votes did E. Greenberg receive in Morris County?,3, +1798,6108,Name the slope length for 1966 groundstation,3, +1801,6113,How many categories of new entries this round are there for the fourth round proper? ,3, +1802,6114,How many runner-ups were there when the show went to Japan?,3, +1803,6115,How many won the prize when Regina was the runner-up?,3, +1804,6120,"How many RolePlay actors played the role requiring a ""male, younger"" actor?",3, +1805,6121,How many RolePlay actors played the same role as FlatSpin's Tracy Taylor?,3, +1806,6126,"On how many locations is there a church named Askrova Bedehuskapell, built in 1957?",3, +1807,6134,When turquoise is the map colour how many avg. trips per mile (×1000) are there?,3, +1809,6138,How many capitals had brest litovsk voivodeship as voivodeship after 1569?,3, +1812,6144,Name the number of parish for vilnes kyrkje,3, +1815,6149,In how many weeks was the game played on November 3 played?,3, +1816,6159,how many division southwest was there when division east was babi,3, +1818,6163,how many production codes were there for the episode that was 32 in the series?,3, +1819,6165,How many years was the film The Blossoming of Maximo Oliveros entered?,3, +1820,6166,How many directors were there for the film with the original title of The Moises Padilla Story?,3, +1822,6180,Name the number of weeks for october 26,3, +1823,6181,What is the attendance record for week 6?,3, +1824,6188,Name the total number for co 2 for atd/axr,3, +1825,6212,For the chinese name 盧奕基 how many in total is the govt salary?,3, +1826,6213,"For the name romanised name is lo yik-kee, victor what is the total number foreign nationality that is listed?",3, +1828,6216,Name the total number of points for newell's old boys,3, +1829,6219,"If the second leg is Instituto, what is the total number of aggregate?",3, +1834,6233,How many comments are there in the Bethel (CA) Borough area?,3, +1835,6234,How many total numbers of attendance are there during the game in October 27?,3, +1836,6237,How many total number of attendance were there when the game was held in Anaheim Stadium?,3, +1839,6242,Name the total number directed by for uk viewers being 6.86,3, +1842,6245,"In the game with 31 points, how many goals were conceded?",3, +1843,6246,How many games had 22 points?,3, +1844,6248,How many clubs had 29 points?,3, +1845,6250,How many draws were there when the conceded goals was numbered at 45?,3, +1851,6264,how many times did estudiantes de la plata participate in 2008 suruga bank championship,3, +1852,6266,how many teams were first round eliminated by estudiantes in 2008 copa sudamericana,3, +1853,6287,What are the results of incumbent dave weldon?,3, +1854,6288,"How many districts have the incumbent, Charles Rangel? ",3, +1855,6290,"In the district of Pennsylvania 1, what is the total number of political parties?",3, +1857,6292,How many parties were first elected in 1994?,3, +1858,6293,"In district Pennsylvania 11, what was the total numbers of results?",3, +1859,6294,During what year was Representative Spencer Bachus first elected?,3, +1860,6297,How many categories of first elected are in Washington 4 district? ,3, +1861,6302,How many people were first elected with an incument of diane watson?,3, +1864,6307,"How many traditional Chinese for the translation of ""Crossing the River""?",3, +1866,6314,How many zodiac signs does the month by the Thai name of กันยายน belong to?,3, +1867,6318,how many times was 27 missing kisses used in nomination,3, +1868,6329,When the earning per share is listed as 22.0 what is the year to april?,3, +1869,6333,Name the total number of director for oro diablo,3, +1870,6334,Name the number of result for maroa,3, +1871,6335,Name the number of director for huelepega: ley de la calle,3, +1872,6347,how mnay greek designation in tampa,3, +1873,6352,How many episodes were shown on Friday if 210 Kirby's Epic Yarn was shown on Wednesday?,3, +1874,6353,How many episodes were shown on Friday if 190 Boardwalk Empire was shown on Wednesday?,3, +1876,6360,How many years was he car number 92?,3, +1877,6361,How many years was the chassis a lotus-ford 38/7?,3, +1880,6368,How many cities were there in 2012 where the rate of burglary was 224.8?,3, +1881,6371,How many different numbers for Afinsa when value is 5p?,3, +1882,6374,How many orders when the species is Pavo Cristatus?,3, +1883,6376,"If the spectral type is g1v, what is the total distance amount?",3, +1884,6377,What is the hd designation for arrival date of February 2070?,3, +1885,6379,"If the arrival date is January 2059, what is the total amount of signal power?",3, +1887,6386,How many series had viewers totaling 23.93 million?,3, +1888,6387,How many original air dates totaled 26.06 million viewers?,3, +1889,6389,How many digital terrestrial channels are there for channel 4?,3, +1890,6394,How many years was the pageant miss globe international and delegate was karen loren medrano agustin?,3, +1891,6395,"How many pageants were in san fernando, pampanga?",3, +1892,6396,How many pageants were margaret ann awitan bayot the delegate of?,3, +1893,6400,how many porphyria have substrate δ-aminolevulinic acid,3, +1894,6403,How many episodes had a viewership of 2.65 million?,3, +1895,6405,How many winners of Binibining Pilipinas-International when Nina Ricci Alagao?,3, +1896,6408,How many winners of binibining pilipinas-International when Maria Karla Bautista won binibining pilipinas-world?,3, +1897,6409,Who is the second runner up when Janina San Miguel won binibining pilipinas-world?,3, +1898,6410,"When Margaret Ann Bayot won binibining pilipinas-international, how many winners of Miss Universe Philippines were there?",3, +1901,6414,How many figures for votes Khuzestan were there when the percentage was 34.50?,3, +1902,6417,Name the total number of year to april for ebit being 24.5,3, +1903,6425,How many missions countries have notability with president of burundi?,3, +1905,6434,"How many cover dates does the story ""Devastation Derby! (part 1)"" have?",3, +1910,6451,how many callings of trains arriving at 09.06,3, +1914,6478,When winter pines is the fcsl team how many mlb teams are there?,3, +1916,6489,What is the total number of episodes listed with a production code of 306?,3, +1917,6496,"With a per capita income of $30,298, what was the total number of households?",3, +1918,6500,"How many production codes have the title ""the better man""?",3, +1919,6502,How many air dates where directed by jim donovan?,3, +1921,6505,In what district is the city listed in Serial number 9?,3, +1922,6506,What is the area of the city in the Sargodha district?,3, +1924,6509,What is the population (2010 census) if s barangay is 51?,3, +1927,6524,How many reasons were given when A. Willis Robertson (D) resigned?,3, +1930,6541,how many people commentated where broadcaster is orf,3, +1931,6547,"List the total number of institutions founded in Rock Island, Illinois.",3, +1932,6565,"How many different season have an Army - Navy score of 10 dec. 2016 at Baltimore, MD (M&T Bank Stadium)?",3, +1933,6571,how many 2nd episodes for u.s. acres episode the orson awards,3, +1934,6578,How many original airdates is Garfield episode 1 is cute for loot?,3, +1935,6580,How many u.s. episodes have Garfield episode 2 the picnic panic?,3, +1936,6589,Name the tourism receipts 2003 for tourism competitiveness 3.26,3, +1937,6591,Name the total number of tourism receipts 2011 where tourism receipts 2003 13.5,3, +1938,6594,When vista radio is the owner how many call signs are there?,3, +1939,6595,When fm 97.3 is the frequency how many formats are there?,3, +1940,6601,When 1008/1009 is the production code how many directors are there?,3, +1941,6613,How many titles were released on 21 October 1992?,3, +1943,6617,"If new entries this round is 65, what is the round?",3, +1949,6625,How many draws occurred when 25 points were scored? ,3, +1952,6629,How many sets of marks does Tonioli get in week 3?,3, +1955,6637,how many latitudes have 0.081 (sqmi) of water?,3, +1963,6651,How many places associated with latitude 48.247662?,3, +1965,6655,What is the geo id for malcolm township?,3, +1968,6663,How many ansi codes are there for longitude 46.415037?,3, +1969,6665,How many ansi codes are there for latitude 48.142938?,3, +1970,6669,Name the number of county for 90 population,3, +1971,6678,"How many round of 32 results are followed by Polidori ( Ita ) w 6-1, 3-6, 6-3 in the round of 16?",3, +1976,6685,When 1.67 is the height how many contestants are there?,3, +1978,6688,When toronto is the hometown how many height measurements are there?,3, +1979,6690,"How many years was the 2nd place team merchants, tampico, il?",3, +1980,6693,When scorpion is the sankrit gloss how many qualities are there?,3, +1981,6694,When धनुष is the sankrit how many western names are there?,3, +1983,6710,How many percentages were recorded under 2006 when in 2001 was 14.6%?,3, +1984,6712,How many numbers were recorded under 2001 when 2006 was 18.9?,3, +1985,6715,How many positions was the United States in?,3, +1986,6717,"If the rings number is 60.000, what is the number for the vault?",3, +1987,6718,"If the parallel bars numbers is 61.500, what is the total number for the flood?",3, +1990,6733,How many penalties are there when Eric Vigeanel is the rider?,3, +1993,6742,Namr the total number of played for 5 losses,3, +1997,6751,How many times was team 1 the wykeham wonderers?,3, +1998,6755,How many series were directed by Rob Renzetti?,3, +1999,6757,Did this driver have any winnings the season he had 32 starts,3, +2004,6767,"For period September 2009, what is the other Mozilla total number?",3, +2005,6768,Name the total number of production code by david richardson and todd holland,3, +2006,6769,"Name the total number of series for march 19, 2000",3, +2007,6778,How many times did Keith Downing depart a position?,3, +2008,6788,Name the number of number in series for production code of 06-04-621,3, +2009,6789,"Name the total number of written by for original air date for may 8, 2005",3, +2010,6796,"How many categories for, replaced by, exist when the outgoing manager is Alan Buckley? ",3, +2011,6798,How many podiums for the driver with 18 stage wins?,3, +2013,6807,"In 2009, how many were runner-up?",3, +2014,6810,what is the [a] (mol/l) where [hpo 4 2− ]/[a] (%) is 0.612?,3, +2018,6822,When (river garry) is the hr name how many builts are there?,3, +2020,6824,When river ness is the hr name how many builts are there?,3, +2023,6833,How many socialist have a lead of 12.6%?,3, +2026,6838,How many different records were there in the games that ended in w 70-66?,3, +2028,6855,How many opponents was a game with a record 17-6 played against?,3, +2030,6866,What were the high points for the game played at the MCI Center?,3, +2036,6879,Name the number of traditional chinese for album number 6th,3, +2037,6882,How many samples were taken of 嬰幼兒配方乳粉2段基粉 ?,3, +2042,6895,How many values of prominence(m) occur at rank 5?,3, +2044,6903,When buffalo narrows is the name how many measurements of population density per kilometer squared are there?,3, +2047,6907,When 4.5 is the percentage of change how many population counts were made for 2011?,3, +2049,6912,How many states or District of Columbia have 65.4% overweight or obese adults?,3, +2052,6921,How many values for population(2011) correspond to a 1.40% in 2006?,3, +2053,6928,How many original Australian performers are there when the Original West End Performer is Jordan Dunne?,3, +2055,6936,Name the number of poles for stefano livio category:articles with hcards,3, +2056,6938,Name the number of wins for michele rugolo category:articles with hcards,3, +2057,6941,Name the number of apps for total g is 8,3, +2058,6944,In how many countries is Itaipu a supply point for electricity?,3, +2059,6948,"what row is the population of Latin America/Caribbean when Asia is 4,894 (46.1%)?",3, +2064,6956,When joj agpangan* is the name how many duration's are there?,3, +2065,6957,When davao city is the home or representative town or province and clash 2010 is the edition how many ages are there?,3, +2066,6959,When days 1-86 is the duration how many names are there?,3, +2067,6961,"When guiguinto, bulacan is the home or representative town or province how many names are there?",3, +2069,6967,How many different scores did Team Europe get when Mika Koivuniemi played for them?,3, +2070,6972,How many years did Florida finish in 4th place?,3, +2071,6973,"What is the total number of 3rd placed teams when the host is University of Manitoba, Winnipeg, Manitoba?",3, +2072,6976,When 14 is the match number how many usa teams are there?,3, +2073,6977,When chris barnes is on team usa how many europe teams are there?,3, +2074,6984,How many clubs achieved the 5th position in 2012-13?,3, +2080,7011,What is the total number of gentle personalities?,3, +2083,7026,How many boroughs with different ranks have a total Asian population of 33338?,3, +2090,7036,What's the bus width (in bit) of the model whose core is 650 MHz?,3, +2091,7046,Featherstone Rovers club played a total of how many games?,3, +2094,7050,"How many times was the score 6–7(5), 6–2, 6–3?",3, +2095,7054,"state the number of surface where championship is australian open and score in the final is 6–3, 4–6, 11–9",3, +2096,7060,how many first performances where performer is wilfred engelman category:articles with hcards,3, +2097,7064,"How many different finales had the English title ""Beyond the Realm of Conscience""?",3, +2099,7071,How many conflicts started in Afghanistan?,3, +2102,7081,How many different original air dates does the episode with series number 13 have?,3, +2104,7089,"When the launch date is 14.09.2005, and the frequency is 900mhz and 1800mhz, how many carriers are there?",3, +2105,7090,"How many standards are there, when the launch date was 17.04.2006?",3, +2109,7098,How many servers have a kernel version 3.11?,3, +2110,7104,How many color systems has a bit rate of 5.734?,3, +2112,7107,"For episode number 7, what was the numbers of original air dates?",3, +2113,7111,"How many teams won $2,089,556?",3, +2114,7112,HOw many top 5 starts did the team with an average start of 17.7 have?,3, +2116,7115,How many 1st leg have team 1 ofk belgrade?,3, +2118,7123,how many total where last/current driver(s) is narain karthikeyan ( 2010 ),3, +2119,7124,How many numbers were recorded for Qatari female when Qatari male was 97?,3, +2120,7125,How many years were there 97 qatari male births?,3, +2121,7127,How many runner-ups when Jason Crump placed 3rd?,3, +2122,7130,How many placed 4th on April 25?,3, +2123,7137,Name the best uk team for university of birmingham,3, +2124,7139,Name the total location for dynamic events winner,3, +2126,7146,Name the original air date for production code of 3t7501,3, +2128,7157,How many places did the rank change since 22006 for County Leitrim? ,3, +2132,7167,How many QB ratings for the player with 1069 completions?,3, +2133,7168,How many yardage figures for the player with 72.3 QB rating?,3, +2134,7169,In how many locations was the game against Barcelona Dragons played?,3, +2135,7170,how many posiitions did saudi arabia land on,3, +2136,7172,which group stage was there 0 play-offs and 12 clubs played in it,3, +2137,7175,"how many people directed the episode that is called ""dead inside""",3, +2141,7182,How many house colours are associated with house names of Hillary?,3, +2142,7184,How many house mascots are associated with yellow house colours?,3, +2147,7194,When 1180 am is the frequency how many call signs are there?,3, +2148,7198,How many drivers does India have/,3, +2149,7199,How many championships does Pakistan have?,3, +2150,7200,"How many countries have 2 current drivers as of March 20, 2010?",3, +2152,7214,Name the number of developed by for solid edge,3, +2153,7216,"Name the number of application for modeling, computer aided design, animation",3, +2160,7237,"If the title if the Lost Boy, how many directors were there?",3, +2163,7242,How many authors are present when the original was Carry On?,3, +2165,7246,What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich?,3, +2168,7252,How many point categories are there for the 3 mile run? ,3, +2169,7254,What is the indoor number for the NER region? ,3, +2170,7259,How many scorecards are there for the match on October 28? ,3, +2171,7260,How many venues were there for the match on November 6? ,3, +2172,7269,What is the total number of capitals that have an area of exactly 1104 square km?,3, +2173,7271,How many populations have a capital of Hong Kong?,3, +2175,7279,How many % same-sex marriages are there for the year 2008?,3, +2176,7280,How many % same-sex marriages are marriages between men for 923? ,3, +2179,7288,What is the total number of John Merrick as a runner up?,3, +2180,7290,How many numbers have sp of 20/1 and a finishing position of fence 19?,3, +2182,7305,How many nationalities does Tom Colley have?,3, +2183,7307,What's the number of positions of the player playing in Minnesota North Stars?,3, +2185,7313,"When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there?",3, +2186,7315,How many positions for denis patry?,3, +2188,7319,how many times was total considered when hancock # was 1394,3, +2189,7320,how many times was hancock % considered when starky % was 20.96%,3, +2190,7321,How many times was country considered when starky % was 20.96%,3, +2192,7327,How many averages are there when the economy rate is 2.26?,3, +2193,7329,How many figures for wickets when the strike rate is 54.0?,3, +2194,7331,How many areas (km 2) have 151511 as the census 2006 population?,3, +2199,7341,How many elections had 1423 average voters per candidate?,3, +2200,7343,What is the modified torque (lb/ft) when the standard hp n/a?,3, +2207,7363,How many different enrollment numbers are there for the school whose students are nicknamed Barons?,3, +2208,7364,"In how many different years did schools located in Logan Township, Pennsylvania join the Conference?",3, +2209,7365,How many different isolation numbers does the Jack Mountain peak have?,3, +2210,7367,"How many different isolation numbers does the peak with an elevation of 2782.622 = 9,127feet 2782m have?",3, +2215,7378,Name the total number of position for don clegg,3, +2219,7389,Name the number of direction for győr-moson-sopron,3, +2220,7391,Name the number of direction for debrecen,3, +2221,7393,On how many locations is the Saint Joseph's College of Maine located?,3, +2222,7394,"On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?",3, +2226,7417,"How many terms began when the term ended in January 3, 1989?",3, +2227,7418,How many different total points does the couple ranked at number 5 have?,3, +2229,7422,What was the total result for couple Ellery and Frankie?,3, +2235,7436,"How many basketball arenas are there that belong to a school with a capacity of 3,000?",3, +2236,7445,Name the total party for north carolina 7,3, +2240,7455,How many different pairs of candidates were there for the district first elected in 1988?,3, +2242,7459,How many races had #99 gainsco/bob stallings racing in round 10?,3, +2245,7479,How many times did Roy Emerson win the Australian Open?,3, +2248,7483,Name the total number of club worl cup for djibril cisse,3, +2250,7489,On how many different dates was a game against Houston played?,3, +2251,7490,How many different players did the high assists in games where the high rebounds were done by Sales (10)?,3, +2253,7496,how many verbs have the yo form as sienta?,3, +2254,7499,How many have the Till Agra of 500?,3, +2259,7509,how many callsigns are for the branding telemundo 47,3, +2261,7514,Name the term ends for bethlehem,3, +2262,7515,Name the total number of districts for rob teplitz,3, +2263,7518,For how many contestants was the background internet dreamer? ,3, +2264,7522,"If the rating/share is 3.8/10, what is the total number of rating?",3, +2265,7523,"If the night rank is 9, what is the total share number?",3, +2266,7528,How many cities had a census of 400000 in 1940?,3, +2267,7529,"Name the season number for ""the night of the feathered fury""",3, +2272,7540,"From writer Max Ehrlich, what is the total amount of series numbers?",3, +2273,7542,How many winning drivers are there when the winning team is Bryan herta autosport?,3, +2275,7546,How many Huckleberry Hound episodes were aired on 1960.09.18?,3, +2277,7557,When 1992 is the year how many divisions are there?,3, +2278,7560,When 2008 is the year how many divisions are there?,3, +2280,7562,what is the highest number of dismissals in a match with 8 innings,3, +2281,7563,what is the rank of adam gilchrist,3, +2282,7565,How many locations have been used for ballparks named Memorial Stadium?,3, +2284,7569,Farr Yacht Design designed boats for how many country/flags?,3, +2285,7571,In how many locations was the episode with the Bailey family filmed?,3, +2286,7572,How many episodes with different season numbers had the Jeans family in them?,3, +2288,7577,How many locations featured the Webb Family?,3, +2289,7578,What episode in the season was episode us17 in the series?,3, +2290,7579,What episode in the season was episode us18 in the series?,3, +2291,7585,how many original air date where family/families is the ryder family and the schwartz family,3, +2292,7590,Name the number of families for uk30,3, +2295,7594,Name the number of locations for uk32,3, +2297,7600,How many teams does Jeff Wyler own?,3, +2298,7606,In how many teams is Waqar Younis the head coach?,3, +2299,7610,How many case deflectors are there for the Colt 646? ,3, +2300,7614,How many episodes had the series number of 38?,3, +2301,7615,How many different numbers of people in the US who'd seen the episode with a season number 8 are there?,3, +2302,7616,Name the rufus guest for 15 december 2008,3, +2303,7624,"Name the total number of timeslot for august 9, 2007 finale",3, +2304,7626,How many items were under ranking l.a.(2) when the world ranking was 21st?,3, +2305,7628,How many years were listed under index when there were 157 countries sampled?,3, +2306,7630,How many years were recorded when world ranking was 21st?,3, +2307,7636,on 19 april 1985 how many of number last flew,3, +2308,7639,how many number is located at registration f-bvff?,3, +2310,7645,"How many different series number does the episode titled ""Skate or Die"" have?",3, +2311,7647,How many episodes with different series numbers were seen by 8.69 people in the US?,3, +2313,7650,"If the San Antonio de Lomerio municipality percentage is 5.480, what is the total percentage for the San Julian municipality?",3, +2314,7654,How many total number have robert young as the director?,3, +2316,7656,How many dvd releases where directed by david decoteau?,3, +2317,7661,how many high points where date is february 19,3, +2318,7662,state the number of location attendance where record is 15–10 (5–7),3, +2319,7663,how many dates where high assists is stu douglass (5) – 4,3, +2320,7664,how many records were made on february 22,3, +2325,7686,On how many different dates did the episode with series number 35 air for the first time?,3, +2328,7693,How many people lived in san gabriel in the year 2000?,3, +2329,7694,"How many different titles does the representative whose mission was terminated on August 5, 1984 have?",3, +2330,7700,Name the championship for winner and judy tegart dalton lesley turner bowrey,3, +2332,7706,How many rounds were there in Karlskoga Motorstadion with Roger Eriksson at the pole position?,3, +2333,7709,how many drivers driving toyota corolla,3, +2335,7711,how many vehicles where top 13 time is 1:18.72,3, +2340,7731,How many directed have the product code of 2.8?,3, +2341,7732,"When ""helpful tracy"" is the original title how many numbers are there?",3, +2342,7735,When 1.17 is the production code how many air dates are there?,3, +2343,7738,state the wins of the team with 2 top 10,3, +2345,7756,How many different release dates are there for the audio book with a story number 7?,3, +2346,7761,how many companies released an audiobook titled deadly download,3, +2347,7764,"how many formats of books authored by day, martin martin day",3, +2348,7765,How many players were drafted from laval?,3, +2349,7771,"how many notes were read by reader varma, idria indira varma?",3, +2357,7793,How many authors or editors are there for the book title elf child?,3, +2358,7809,How many different popular vote counts were there for the candidate Rick Perry?,3, +2359,7811,How many different popular vote counts are there for Rick Perry?,3, +2360,7813,How many states-first place are there for the office of Governor?,3, +2361,7834,how many matches did wayne mardle play,3, +2362,7836,How many different results are there for the season with a 4-3 conference record?,3, +2363,7838,How many different conference records are there for season 2006?,3, +2366,7842,"The country, competing in the Mr. International competition, that holds a rank of 3, has how many 2nd runners up?",3, +2367,7843,"For the country that holds a rank of 2, in the Mr. International Competition, what is the total number of competitors listed as 2nd runner ups?",3, +2372,7857,How many different results were there for the number of votes fro Obama in the county where he got 27.8% of the votes?,3, +2373,7858,How many episodes directed by ben jones and written by paul dini?,3, +2377,7869,How many parties are named the Center Alliance,3, +2379,7873,when the points for is 139 is points difference?,3, +2381,7881,Name the number of season for team bruichladdich,3, +2385,7888,How many couples have an average of 25.3?,3, +2386,7889,How many different numbers of total dances are there for the couple ranked at number 6?,3, +2392,7897,"How many districts had crib damage of 1,164.50?",3, +2394,7903,How many players had 6 180s?,3, +2395,7909,How many dates are associated with a guest 4 being Jim Jeffries (debut)?,3, +2396,7913,Name the guest 2 for colin murray 6 april,3, +2397,7916,How many seasons featured 29 conversions?,3, +2402,7922,In how many counties di McCain win 41.62% of the vote?,3, +2404,7941,What is the total number of entries for Leif Olson?,3, +2405,7942,What is the total number of players who had a money list rank of 96?,3, +2406,7946,When 30% is scott mcadams (d) percentage how many poll sources are there?,3, +2408,7950,How many different production codes does the episode directed by Dominic Polcino have?,3, +2410,7967,"How many values of periselene when epoch is November 15, 2004, 17:47:12.1?",3, +2411,7968,How many times did the Bruins play Tennessee?,3, +2413,7973,How many different shareholders have 2.39 % of capital?,3, +2414,7976,How many different numbers of B shares does Handelsbanken fonder have?,3, +2416,7978,How many different results for red (e8) does the model with parchment/saddle interior/roof have?,3, +2417,7979,How many different total results are there for the model with parchment/black interior/roof?,3, +2419,7983,Name the number for db,3, +2420,7990,How many GICS sectors have a free float of 0.2391?,3, +2421,7991,How many values of free float for the BSE code of 4EH?,3, +2422,7993,How many polls taken on different dates show an undecided percentage of 25%?,3, +2423,7999,How many different heights are there for the contestants from Warsaw?,3, +2424,8000,What is the total of countys where Obama is popular by 35.44%?,3, +2425,8002,What is McCains percent when Obamas is 39.13%,3, +2427,8005,Name the total number of district for population may being 478,3, +2429,8009,How many were written by Peter Winther?,3, +2430,8010,How many directors were in Season 2?,3, +2431,8019,What is the moment of intertia in torsion (j) Cm4) for the beam height (mm) 120??=,3, +2432,8022,What is the number for the moment of intertia in torsion (j) (cm 4) for the 4.7 web thickness (mm)?,3, +2433,8024,What is the flange width (mm) for cross section area (cm 2) 16.4?,3, +2434,8026,How many items were recorded marseille (32 draw) was a 2 seed?,3, +2440,8041,How many numbers in the season were written by Brett Conrad & Liz Sagal?,3, +2444,8049,How many seats were forfeited in the revolutionary socialist party?,3, +2445,8054,How many results finished in a loss?,3, +2447,8056,How many times were Duke the opponents?,3, +2452,8078,Name the number of spring enrollment for sioux falls seminary,3, +2453,8080,Name the total number of founded for yankton,3, +2454,8082,How many French words does zinnapòtamu in Central-Southern Calabrian translate to?,3, +2455,8085,How many Phonetic Greek words translate to grenouille in French?,3, +2457,8096,What is the total number of schools founded that have an enrollment of 5634?,3, +2459,8104,Name the total number of previous br number for number 21,3, +2460,8113,How many figures are given for McCain's % in Davidson county?,3, +2462,8118,In how many counties did McCain get 65.72% of the votes?,3, +2465,8124,When n/a is the cash fate and n/a is the 31-day pass how many types of fare are there?,3, +2467,8131,How many values for small power demand occur when medium power demand is 11.07?,3, +2469,8137,How many LOA (metres) reported for Black Jack?,3, +2470,8139,How many sail numbers for boat skippered by Geoff Ross?,3, +2472,8147,What is the number of Mike Thomas?,3, +2475,8154,How many different engines are there for the model with model designation 97G00?,3, +2476,8166,What is the height if de is the position?,3, +2477,8169,How many engines are there for model 97H00?,3, +2478,8174,how many players played running back where status is made 53-man roster at start of 2009 season,3, +2479,8175,"howe many positions did wallace, mike mike wallace play for ",3, +2481,8182,How many attempts did Charley Johnson have?,3, +2482,8184,Name the number opponent for loss result,3, +2483,8189,How many opponents were in North Carolina state game?,3, +2484,8190,How many 125cc winners were in the same events as when the Moto2 winner was Shoya Tomizawa?,3, +2485,8191,After how many opponents was the overall record 1-0-0?,3, +2487,8194,How many games were played against Tulane?,3, +2488,8197,How many connection catagories are there for Tampa? ,3, +2491,8204,The player who had 145 yards had how many touchdowns?,3, +2493,8211,How many episodes had a production code of 5m13?,3, +2496,8222,How many titles were directed by Alex Chapple?,3, +2500,8244,How many episodes were written by Kirstie Falkous & John Regier?,3, +2502,8254,How many opponents led to an exactly 7-0 record?,3, +2503,8256,How many episodes ran 24:33?,3, +2504,8259,"On broadcast date is 21march1970, how many people tuned in?",3, +2506,8262,What is the total number of opponents played against the bears in game 4?,3, +2507,8269,How many figures are given for Walker's percentage in Kenosha county?,3, +2508,8271,How many total figures are given for Milwaukee county?,3, +2509,8275,How many games did they play when their record 0-2-0?,3, +2510,8278,Name the total episode for runtime of 24:11,3, +2511,8289,How many times did the Wildcats play a game 11 regardless of points scored?,3, +2512,8290,Name the number of black knights points for 3 game,3, +2513,8295,Name the number of date for 1-0 record,3, +2516,8299,How many dates have boston college as the opponent?,3, +2518,8301,How many records have black knights points as 17?,3, +2519,8303,How many results have a game of 5?,3, +2524,8323,"When the production (mt) is 650000, what is the total number of rank?",3, +2534,8352,what is all the broadcast date when viewers were 8.4 millions,3, +2535,8353,how many episode have 8.4 millions viewer.,3, +2537,8358,"How many of the series # when the original airdate is september 25, 1967?",3, +2539,8369,Name the number of cancelled for turnham green,3, +2540,8370,Name the number of details for emlyn road,3, +2542,8372,How many original air dates were there for episodes with a production code of 4398016?,3, +2543,8373,"How many dates did the episode ""out of sight"" originally air on?",3, +2544,8376,Name the number of rank for season 6,3, +2545,8379,"How many items are listed under the column of U.S. viewers for episode ""Bite Me""?",3, +2546,8386,When circuit ricardo tormo is the circuit what is the round?,3, +2547,8387,How many opponents were there when the record was 6-0?,3, +2548,8394,Name the number of song for scoreboard being 3rd,3, +2549,8396,how many venues were played on in round 1,3, +2550,8399,how many rounds had the score 44-22,3, +2551,8401,How many Small catagories are there for the department that has a medium of 17101? ,3, +2552,8404,How many total catagories are there for La Paz? ,3, +2556,8411,Name the number of long jump for 1500m being 2,3, +2557,8414,Name the total number of date for round 26,3, +2558,8416,Name the total number of opponets for 05/09/2009,3, +2560,8424,How many villages have a density persons/ha of 5.5?,3, +2561,8426,"How many years had scores of 10–12, 6–1, 6–3?",3, +2564,8442,How many episodes had the us viewers (millions) figure of 5.0?,3, +2566,8448,How many results were there on 19/06/2009?,3, +2568,8455,David Kasouf plays for how many colleges? ,3, +2569,8461,How many players are at the DT position? ,3, +2571,8466,How many clf teams have a pick # of 5?,3, +2572,8467,How many total positions are there for utah college?,3, +2574,8471,"When ""i feel good"" is the title and joe sachs is the writer how many series numbers are there?",3, +2575,8472,How many stages of the rally took 14:33.9 for the leader to finish?,3, +2577,8476,How many locations have #12 Michigan State as the big ten team?,3, +2578,8481,How many dates have a big ten team of #10 purdue?,3, +2580,8485,How many different results of the population count in 2001 are there for the census division whose population in 1996 is 880859?,3, +2582,8490,"How many have the name, ""The Fire Engine""?",3, +2583,8495,"How many results have 14,381 as the attendance?",3, +2584,8500,How many opponents did they play on 17/05/2009?,3, +2585,8502,Name the artist for 7 points,3, +2586,8503,Name the number of artists for panel points being 5,3, +2587,8504,Name the total number of televote points for cry on my shoulders,3, +2588,8509,What is the number of external links with a coach named Katie Kansas?,3, +2590,8515,Name the number of episode summary for jesse csincsak,3, +2591,8516,Name the number of coach for full episode deshunae is made into a volleyball player.,3, +2592,8520,"How many seasons have a premier date of January 6, 2005? ",3, +2595,8538,"how many records had result/games: 10 games (29,606 avg.)",3, +2597,8540,When 2005 is the date/year how many measurements of attendance are there?,3, +2598,8551,What is the number of attendance with the pre-season game as the type of record?,3, +2603,8563,Name the number of vocalists for which one ~ is it?,3, +2604,8565,Name the number for margin of victory being 3 strokes,3, +2605,8566,Name the winning score for 8 feb 2009,3, +2609,8574,Name the number of total pts for gbr challenge,3, +2610,8575,"What is the total number of second place finishes when the city & nation was Chicago, USA?",3, +2615,8592,Name the innings for 5088 runs scored,3, +2619,8602,How many song titles belong to the artist Ratt?,3, +2620,8611,How many weeks featured duffy as the original artist?,3, +2621,8615,"With an original artist names Bette Midler, what is the order number?",3, +2622,8622,How many points does Swedish America's Cup Challenge have for rr1?,3, +2623,8630,How many calibers require the type LB/RN?,3, +2625,8642,Name the total number of production code for episode by steve cohen & andrew dettman,3, +2627,8649,Name the number of cab size for 4 medium tanker,3, +2631,8658,When samai amari is the asian rider classification how many asian team classifications are there?,3, +2632,8663,How many titles were written by Don Shank and Genndy Tartakovsky?,3, +2633,8673,How many champions are shown for the runner-up of stefan edberg?,3, +2634,8678,"How many weeks are shown for the champion of john mcenroe 6–2, 6–3?",3, +2635,8688,"How many people vacated to successor Dave E. Satterfield, Jr. (d)?",3, +2636,8694,"Name the number of reason for change on may 11, 1939",3, +2637,8700,how many persons got the third position whan sanyo electric tokushima got the fourth position?,3, +2638,8701,how many persons got the fourth position when the regional was shikoku?,3, +2639,8706,How many figures are named for security forces in 1998?,3, +2640,8709,How many tournaments were at sime darby lpga malaysia?,3, +2641,8721,How many number in series's are written by Greg Haddrick?,3, +2643,8725,what is the total number of established univeristy receiving research grants in the amount of 2.203?,3, +2645,8732,How many countries did Utah Bulwark's owner come from?,3, +2646,8733,How many horses are mentioned competing in 1985?,3, +2649,8739,How many different municipal mayors were there in the municipality with an area of 42.66 km2?,3, +2650,8742,How many different counts of the population in Cavinti in 2010 are there?,3, +2651,8746,How many different episode numbers are there for episodes directed by Wayne Rose?,3, +2653,8761,How many destinations have a weekly frequency and are named AC Express?,3, +2654,8762,What is the number of frequencies that have a destination of Jaipur?,3, +2656,8767,How many positions is player Tom Glavine?,3, +2657,8769,what is the total number o production code where us viewers is 2.76?,3, +2658,8773,How many maac are there that have 14th as the ncaa and the overall is 20-10?,3, +2659,8774,How many overall in the year 2010-2011?,3, +2660,8777,How many drivers had a time of 3:09:45?,3, +2661,8778,How many drivers drove 300 laps at average speed of 103.594?,3, +2662,8779,How many dates had an average speed of 102.003?,3, +2663,8787,What was the number of season number entries that had US Viewers of 12.30 million?,3, +2664,8790,What was the total number of weeks where the game played Ivor Wynne Stadium?,3, +2666,8797,Which season received 10.2 million viewers?,3, +2669,8812,How many rounds were on July 10?,3, +2670,8813,Name the number of years for 18.5,3, +2672,8815,Name the number of wins for 30 starts,3, +2673,8818,Name the position for 23.7 avg start,3, +2675,8821,How many cars does Gregg Mixon own?,3, +2677,8825,How many episodes in the season were directed by Jeremy Podeswa?,3, +2678,8827,How many episodes in the series were directed by Alan Taylor?,3, +2679,8828,How many different teams had an average start of 12.9?,3, +2680,8830,How many different amounts of winnings were there for the year when the team had an average finish of 17.4?,3, +2682,8833,How many years was the position 97th?,3, +2683,8834,How many wins when the average start is 29.0?,3, +2684,8842,"How many partners were there when the score was 7–6 (7–4) , 6–3?",3, +2686,8857,What is the rank of the company known for retailing?,3, +2690,8869,How many entrants was yves giraud-cabantous?,3, +2691,8871,How many drivers did Bob Gerard Racing have?,3, +2692,8872,"For the team with 7 points, how many points were scored against this season?",3, +2694,8875,What is the total number of January (°C) temperatures when the July (°C) temperatures were 22/13?,3, +2695,8876,What is the total number of January (°C) temperatures when the July (°C) temperatures were 23/15?,3, +2701,8887,What are all the title directed by reginald hudlin,3, +2704,8902,What is the rank when 36.5 is tumbling?,3, +2706,8904,How many different outcomes of the French Championships were there?,3, +2707,8905,How many different final scores were there in 1963?,3, +2708,8908,What are the results for the film titled 'Joki'?,3, +2709,8913,How many values for founded when enrollment is 850?,3, +2710,8918,How many categories for elapsed time exist for the $16.50 fixed-limit badugi game?,3, +2711,8919,"How many elapsed times were recorded for the game that had a prize pool of $1,678,200?",3, +2712,8922,HOw many films did martin repka category:articles with hcards direct?,3, +2713,8925,"How many original titles were listed as ""If the Sun Never Returns""?",3, +2714,8928,"How many films are titled ""Dans la Ville Blanche""?",3, +2715,8929,How many of the writers had 5.35 viewers?,3, +2716,8934,Name the total number 1980 mil for soviet union,3, +2717,8937,How many languages have elles as the film title used in nomination?,3, +2718,8938,How many languages is refractaire as the film title used in nomination?,3, +2719,8939,How many languages have le roman de renart as the original title?,3, +2721,8948,How many times did Tim Macrow and Joey Foster both got the fastest lap and pole position respectively?,3, +2724,8965,How many english titles were directed by carlos moreno?,3, +2725,8966,How many years was their W/L/D record 13:10:0?,3, +2726,8968,"How many number of site have May 1, 2004 as the date?",3, +2727,8975,"How many directors have vietnamese titles of Gate, Gate, Paragate?",3, +2729,8980,How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?,3, +2730,8984,Name the parishes for beira baixa province,3, +2732,8990,How many outcomes were there for matches played with Chuck McKinley on grass in 1962?,3, +2733,8992,What round did they face fc st. gallen?,3, +2734,8994,How many dfb-pokal did kevin-prince boateng have?,3, +2735,8999,How many scores are there when the championship game opponent is Miami University?,3, +2736,9003,How many time does the platelet count occur when prothrombin time and bleeding time are prolonged?,3, +2737,9004,What is the bleeding time for the disseminated intravascular coagulation condition?,3, +2740,9010,"How many of the episodes in the top 50 rankings were originally aired on June 28, 2010?",3, +2741,9012,How many locations are there for the athletic nickname is blue crusaders?,3, +2742,9013,"How many entries are shown for school colors for the location of naga , camarines sur?",3, +2743,9014,For the athletic nickname of golden knights how many entries are shown for enrollment?,3, +2744,9017,How many original airdates did season 20 have?,3, +2745,9022,"How many total viewers have April 21, 2010 as the original airing on channel 4?",3, +2746,9025,"How many position in channel 4s ratings a have February 24, 2010 as the original airing on channel 4?",3, +2748,9032,"How man seasons have the air date of October 2, 2001? ",3, +2750,9056,Name the number of number in season for 3.09,3, +2751,9057,when was the episode premiere if the production code is 11.19? ,3, +2752,9061,how many episodes has been directed by Mark K. Samuels ?,3, +2753,9066,Who is the writer of episode 13?,3, +2754,9067,Which series number has the production code 7.07?,3, +2757,9073,How many episodes have the production code 8.04,3, +2758,9080,How many launch dates are there for digital transmission?,3, +2760,9103,How many teams did Farhad Kazemi leave?,3, +2763,9109,On how many different dates was the race at the Silverstone circuit?,3, +2764,9112,"If the name is Timo Higgins, what is the total date of birth amount?",3, +2765,9114,"If the home team is UMBC and the weight is 78kg, what the the name total number?",3, +2767,9122,Name the number of number in season for 26,3, +2768,9124,How many directors are there for the episode that had 1.59 million U.S. viewers?,3, +2784,9149,Name the total number of tier 1 capital for allied irish banks,3, +2786,9164,How many college/junior/clubteams have John garrett as the player?,3, +2787,9168,How many production stage managers worked with Gabriel di Chiara as the Male Rep?,3, +2788,9169,How many production stage managers worked with secretary Rachel Hartmann?,3, +2789,9174,How many different drivers were there for the team when the manufacturer was Toyota?,3, +2790,9175,In how many different years did the race happen on February 27?,3, +2791,9178,Name the total number of race time for kevin harvick,3, +2792,9180,How many wins are with Dodge vehicles?,3, +2793,9184,How many different cities are represented by contestants whose height stands at 1.80?,3, +2795,9197,Name the number of master recording for doobie brothers the doobie brothers,3, +2796,9206,"how many times has Aaron Ogden (f), been a successor and has had a formal installation? ",3, +2797,9207,How many 5th venue cities were there when Doha was the 1st venue city?,3, +2798,9208,"When Qingdao was the 1st venue city, how many 2nd venue cities were there? ",3, +2799,9209,"In 2010, how many 1st venue cities were there? ",3, +2800,9212,How many seats became avaliable in Massachusetts 3rd district?,3, +2801,9216,List the number of builders where the withdrawn is 1951 and number is 42.,3, +2803,9230,How many asian rank have 1 as a mideast rank?,3, +2806,9240,Name the number of rank world for bhutan,3, +2807,9241,How many items were listed under world rank under the nation of Nigeria?,3, +2808,9242,How many items are listed under gdp per capita under the nation of Burkina Faso?,3, +2812,9246,"How many weight stats are there for players from San Francisco, CA?",3, +2814,9248,"How many height entries are there for players from lagos, nigeria?",3, +2815,9250,How many height entries are there for players from bayside high school?,3, +2816,9251,How many reasons for change were listed when Edward Hempstead was the successor?,3, +2817,9252,How many Vacators were listed when the district was North Carolina 3rd?,3, +2818,9259,How many entries are shown for date of successors formal installation where successor is john w. walker (dr)?,3, +2819,9265,How many trophy presentations where in the year 1987?,3, +2821,9273,Name the number of reporters for heywood hale broun,3, +2822,9276,How many elevations are listed for Paratia? ,3, +2823,9279,Name the total number for race caller for bob costas and charlsie cantey,3, +2824,9281,How many reporters for the year 1993?,3, +2825,9284,HOw many jockeys had eoin harty as a trainer,3, +2826,9289,Name the total number of reason for change for not filled this congress,3, +2827,9294,Name the number of nat for total g of 6,3, +2829,9297,"when administrative centre is egilsstaðir, what is the pop./ km²?",3, +2832,9304,Name the total number of lg for cg is larger than 1.0 for c apps is 3,3, +2833,9312,How many written by have wendey stanzler as the director?,3, +2836,9328,what is the total number of 2006-2007 and 2007-2008 for jack huczek?,3, +2837,9329,what isthe total number of seasons for chris crowther?,3, +2839,9342,What was the partner count when the opponents in the final was forget leconte?,3, +2841,9344,"Name the number of year for score being 6–3, 6–2, 6–4",3, +2842,9356,How many entries for 1983-84 when 1984-85 is Terri Gilreath?,3, +2843,9357,How many heights are listed for Jesse Holley in the WR position? ,3, +2844,9363,"If the security issues is 99-025 and the distribution mechanism is the Microsoft website, what is the release date total number?",3, +2845,9367,How many locations are listed for the winner Temple?,3, +2846,9368,How many locations are listed for the Big 12 Conference?,3, +2847,9375,How many games were there on May 1?,3, +2848,9377,How many games were played on May 11?,3, +2849,9380,"Name the high points for mo williams , lebron james , j.j. hickson (6)",3, +2850,9384,How many scores are associated with a record of 27-9?,3, +2851,9385,How many games are associated with a record of 29-10?,3, +2852,9389,Name the total number of date for l 85–86 (ot),3, +2853,9390,Name the network for 2007 total,3, +2854,9415,What is the total number of winners when the team classification leader was Kelme-Costa Blanca and the combativity award was won by Jacky Durand?,3, +2855,9417,What is the total number of team classifications when the young rider classification leader was Salvatore Commesso and the combativity award winner was Jacky Durand?,3, +2857,9419,"How many races are in College Station, Texas and won by Johnny Rutherford? ",3, +2858,9424,How many races took place on October 1?,3, +2859,9425,How many types of tracks are there on the Phoenix International raceway?,3, +2861,9427,How many races took place on the Indianapolis Motor Speedway track?,3, +2862,9430,How many laps have a 3:34:26 race time?,3, +2863,9434,How many years was Pontiac the manufacturer for Joe Gibbs Racing? ,3, +2864,9436,How many average speeds are listed in the year 2003? ,3, +2865,9440,Name the total number of stage for lloyd mondory,3, +2870,9465,Name the total number of runner up a for perambalur,3, +2871,9467,How many margins have a winner of S. Singaravadivel?,3, +2872,9468,How many winners have a runner-up of A. Karthikeyan?,3, +2873,9474,How many margin results are listed in the election that was won by L. Adaikalaraj C and the party was the Indian national congress? ,3, +2876,9484,How many park and rides are proposed for Overlake Village?,3, +2877,9485,How many neighborhoods have a station proposed at a Hospital?,3, +2879,9499,How many names have a country of civ?,3, +2880,9507,Nam the total number for bruce coulter award for 9th game,3, +2882,9510,How many records show Utah as the opponent?,3, +2883,9512,How many records were there when opponents were 9?,3, +2884,9513,Name the number of record for 12 cowboys points,3, +2886,9515,Name the result for cowboys points being 23,3, +2887,9517,Name the unemployment rate for 34024,3, +2888,9518,Name the total number of population for craig,3, +2891,9535,How many counties have a population of 2266?,3, +2892,9536,How many statuses are listed for Wayne county? ,3, +2897,9551,Name the total number of r for josh thompson,3, +2898,9552,What was the total number of rebounds on november 27?,3, +2899,9554,List the location and number of fans in attendance for game 7/,3, +2901,9559,How many rebound did the person who scored 147 points have?,3, +2904,9567,"How many values for number occur with the hometown of Canton, Illinois?",3, +2905,9571,Name the total number of player for 51 points,3, +2908,9576,When nd 2 fe 14 b (bonded) is the magnet how many measurements of tc (°c)?,3, +2909,9581,Name the number of road record for team ole miss,3, +2912,9585,How many steals were the in games that andy kaufmann played?,3, +2914,9587,How many games had three pointers where the number of points was 581?,3, +2915,9588,"How many timeslots were available for the season finale on August 29, 2009?",3, +2917,9591,"How many rankings were there for the season with a finale on August 20, 2011?",3, +2918,9592,"How many episodes had a season premiere on December 11, 2010?",3, +2920,9595,"How many outcome have a score of 7–6 (9–7) , 6–3?",3, +2922,9598,"How many years have a final score of 6–3, 6–2?",3, +2923,9600,How many years had a total earnings amount of 2254598?,3, +2932,9627,Name the total water resources m3 for rainfall being 650,3, +2933,9629,What is the amount of US open runner-up score?,3, +2935,9632,How many opponents have wimbledon (2) as the championship?,3, +2936,9636,How many high rebound catagories are listed for game number 5? ,3, +2938,9643,Name the high points for 21-45 record,3, +2939,9647,Name the total number for score l 110-112,3, +2940,9652,How many high rebounds are in series 3-3?,3, +2943,9662,Name the number of location for 22-1,3, +2945,9666,Name the number of high rebounds for l 92–96 (ot),3, +2946,9669,what is the total number of high rebounds for minnesota?,3, +2947,9673,How many high rebounds were there on April 7?,3, +2948,9677,Name the number of high points for ford center,3, +2949,9684,What was the total score for january 18?,3, +2952,9691,How many attended on december 2?,3, +2953,9696,Name the number of date for dallas,3, +2955,9700,How many people wrote episode 68 in the series?,3, +2956,9701,"How many writers were there for episode named ""embassy""?",3, +2957,9710,"which is the number of the season episode whose premiere was in january 3, 1997?",3, +2958,9715,"How manu original airdates have ""a cellar full of silence"" as the title?",3, +2960,9718,"Name the number of scm system for nant, visual studio",3, +2961,9719,"Name the number of other builders for nant, visual studio",3, +2963,9721,What is the total number of 4th runner-up where the 2nd runner-up is smaller than 1.0 and the 1st runner-up is smaller than 1.0 and the total is 2?,3, +2965,9727,What is the # when u.s. viewers (million) is 17.44?,3, +2967,9729,How many race 3 winners were there when Mitch Evans won race 2?,3, +2968,9733,In how many years did Pat Bradley became the champion?,3, +2969,9735,How many different countries did the champion Se Ri Pak (2) represent?,3, +2973,9742,List the number of shows that had 12.04 million viewers in the united states,3, +2974,9748,When 68-292-68-292 is the ignition timing how many graphicals is it?,3, +2975,9750,When 1-1-0-0-1-1-0-0- is the graphical how many ignition timings are there?,3, +2981,9758,"If the position is AM and the league is larger than 7.0, what is the total R number?",3, +2983,9765,How many states had a population density of 10188.8?,3, +2984,9766,Name the number of left for cardinals,3, +2986,9772,Name the number of rank for stone park,3, +2988,9787,How many bowlers were there when david hussey azhar mahmood gurkeerat singh was the batsmen?,3, +2989,9790,How many sesason were there when for is deccan chargers and bowler is amit mishra?,3, +2991,9792,Name number of stellar classification for 3 neptune planets < 1 au,3, +2992,9797,Name the number of names for exeter chiefs,3, +2993,9803,How many different brief descriptions are there for crashes with 0/161 fatalities?,3, +2998,9815,Name the number of bush % for elko,3, +2999,9817,If the position of 26th what is the season total number?,3, +3000,9819,"If the primary (South) winners is Inter The Bloomfield, what is the season total number?",3, +3001,9820,What is the season total number if the primary (South) winners is Ridings High 'A'?,3, +3002,9823,What isthe minor (South) winners total number is the primary (South) winners is Mendip Gate?,3, +3004,9828,Name the number of year for mark martin,3, +3005,9829,Name the number of year for june 30,3, +3006,9832,How many frequencies have a model number of core i5-655k?,3, +3007,9837,How many KEI catagories are listed when the economic incentive regime is 2.56? ,3, +3008,9847,"How many series premieres did the season ""All-stars"" have?",3, +3014,9859,How many wins did he have with carlin motorsport?,3, +3016,9864,What stage number had the general classification Rory Sutherland?,3, +3017,9868,How many Mountains Classifications were in the race with Mike Northey as Youth Classification?,3, +3018,9869,How many foundation dates were there when the television channels is canal nou canal nou dos canal nou 24 tvvi?,3, +3019,9870,If the radio stations is radio nou si radio radio nou música; what were the total number of television channels?,3, +3020,9871,What is the total number of television channels when one of the radio stations is onda madrid?,3, +3021,9878,How many villains were in episode 3 (13)?,3, +3026,9885,What is the road record for Vanderbilt?,3, +3027,9888,Name the number of three pointers for 67,3, +3029,9890,Name the number of assists for 321 minutes ,3, +3030,9891,Name the number of players for field goals being 25 and blocks is 6,3, +3031,9894,Name the number of high points for record 5-17,3, +3033,9898,Name the total number of step 6 for 11 gs grade,3, +3034,9900,as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat,3, +3036,9904,In how many importing nations is 10 3 m 3 /day (2006) equivalent to 150? ,3, +3039,9910,How many games were played against houston?,3, +3040,9920,"If the total points is 5, what is the 2005-2006 points total number?",3, +3042,9923,What is the 2006-2007 points total number if the team is Saracens?,3, +3046,9938,How many drivers have 1942 points?,3, +3048,9940,How many wins did Andrew Ranger have?,3, +3051,9952,How many different series numbers are there for the episode seen by 7.84 million people in the US?,3, +3053,9955,How many different titles are there of episodes that have been seen by 7.84 million people in the US/,3, +3056,9963,How many different people did different scores of high assists during the December 11 game?,3, +3057,9967,How many values for high assists when the game is 81?,3, +3058,9968,How many times was the high points david lee (30),3, +3059,9971,How many times was the record 19–34,3, +3061,9974,"If the population density is 7,447.32, what is the population total number?",3, +3063,9978,When birkenhead is the city/town and merseyside is the county and england is the country how many ranks are there?,3, +3064,9981,When fleetwood is the city/town how many sets of population are there?,3, +3066,9994,How many people had high rebounds during the game with a record of 34-32?,3, +3067,9995,How many people led in assists on game 71?,3, +3068,10001,How many different high assists results are there for the game played on February 24?,3, +3069,10009,When vince carter (24) has the highest points how many teams are there? ,3, +3071,10014,How many writers were there in the episode directed by Charles Haid?,3, +3072,10017,How many original air dates did episode 12 have?h,3, +3073,10019,Name the number of date for w 107–97 (ot),3, +3074,10023,"How many models have maximum power output is 162kw (220 ps) at 6,300 rpm?",3, +3075,10031,"Which season used production code ""am10""?",3, +3076,10033,What seasons in series 7 did David E. Kelley write ?,3, +3077,10034,Name the total number of date for score being l 106–116 (ot),3, +3079,10040,How many percentages (2006) are there for the population whose mother tongue is French?,3, +3081,10048,Name the score for december 27,3, +3082,10049,"Name the total number of high points for pepsi center 19,756",3, +3083,10053,Name the number of records for 30 game,3, +3084,10059,When the clippers are the team how many games are there?,3, +3085,10063,When carmelo anthony (42) has the highest amount of points how many measurements of highest rebounds are there?,3, +3086,10069,How many players has the highest points in the game against the Heat?,3, +3087,10081,When 78 is the game and brandon roy (6) has the highest amount of assists how many locations/attendances are there?,3, +3089,10085,How many episodes were directed by Sarah Pia Anderson?,3, +3090,10088,How many episodes had a series number of 95?,3, +3091,10089,Name the total number of season for production code 3m17,3, +3093,10093,How many episodes are numbered 12x03?,3, +3094,10101,In how many episodes was Dave's team made up of David Walliams and Louis Walsh?,3, +3095,10103,How many daves team entries are there on 27 october 2006?,3, +3096,10108,Name the number of scores for 5x06,3, +3097,10110,Name the number of jons team for 15x10,3, +3098,10112,Name the total number of jons team for 15x07,3, +3099,10114,In how many episodes were Vanessa Feltz and Lee Mack the team for Sean? ,3, +3104,10124,Name the number of scores for episode 7x05,3, +3105,10126,Name the total number of seans team being 7x04,3, +3106,10127,Name the total number of scores for 7x10,3, +3107,10128,How many dates have a total points for race of 180?,3, +3110,10135,How many opponents were there with the record of 3-2-2?,3, +3112,10139,How many different scores are there for the game with 10-3-4 record?,3, +3114,10142,How many different games against Florida Panthers were played in Verizon Center?,3, +3115,10144,How many times was there a record of 49-15-11?,3, +3116,10145,How many scores had a date of March 6?,3, +3118,10158,"If the average is 45.65, what is the total number of innings?",3, +3121,10163,Name the number of dismissals for adam gilchrist,3, +3123,10167,How many seasons did Ken Bouchard finish in 38th place?,3, +3125,10169,How many races in 2012 season have 0 podiums?,3, +3126,10170,How many seasons have motopark team?,3, +3128,10174,What is the points total number if the assists is 7?,3, +3130,10177,What is the blocks total number if the points is 4?,3, +3132,10180,How many rebounds did crystal ayers have?,3, +3139,10197,What is the power stage wins total number if the wins is 10?,3, +3142,10203,When dxcc-tv is the call sign how many station types are there?,3, +3143,10204,When dwhr-tv is the call sign how many station types are there?,3, +3144,10205,What date did Episode 22 originally air?,3, +3145,10218,"How many rankings (timeslot) were there for the episode that aired on May 2, 2010?",3, +3147,10225,How many drivers used lola t92/00/ buick for their chassis/engine?,3, +3149,10231,How many values for 24 mountains when the bearing or degrees is 67.6 - 82.5 82.6 - 97.5 97.6 - 112.5?,3, +3150,10235,What were the total career titles of the player who led for 5 years?,3, +3154,10245,Name the production code # for episode 109,3, +3155,10247,"How many different people directed the episode titled ""Fright Night""?",3, +3157,10249,"How many original air dates are there for the episode titled ""Everyone can't be George Washington""?",3, +3159,10257,"During the act, Performance of ""Lost"" by Anouk, what was the result?",3, +3161,10261,How many imr* have tfr* 5.35?,3, +3162,10270,Name the opponents for december 3,3, +3163,10271,How many games did they play the carolina hurricanes?,3, +3165,10287,How many contestants of whatever age are there whose hometown of Andujar?,3, +3168,10297,What is the number in the season of the episode with a production code of 2-05?,3, +3169,10299,What is the total number of titles for the episode numbered 29 in the series?,3, +3170,10302,How many episodes in the series are also episode 18 in the season?,3, +3172,10309,How many different numbers of Tot enlisted are there on the dates when the number of Enlisted o/s was 801471?,3, +3174,10312,How many contestants where from mitteldeutschland?,3, +3180,10340,"When hittite middle kingdom , new kingdom of egypt is the ubaid period in mesopotamia how many early chalcolithics are there?",3, +3181,10341,When the second intermediate period of egypt is the ubaid period in mesopotamia how many early calcolithics are there?,3, +3183,10353,How many shows did team David consist of vernon kay and dara ó briain,3, +3184,10358,What week did September 29 fall in?,3, +3185,10362,How many different horse-powers does the Cochrane have?,3, +3187,10365,In how many different years was the warship that weights 1130 tons built?,3, +3188,10382,Name the number of regular season for 2007,3, +3191,10390,How many different players got drafted for the Ottawa Renegades?,3, +3192,10393,How many different percentages of immigrants in 2006 can there be for Morocco?,3, +3193,10396,How many different percentages of immigrants are there for the year of 2007 in the countries with 1.2% of the immigrants in the year of 2005?,3, +3194,10404,Name the total number of african record,3, +3195,10410,How many season had Melgar as a champion?,3, +3196,10414,Name the total number of open cup for 1996,3, +3198,10424,"How many positions are available for players who are 6' 07""?",3, +3199,10427,How many averages were listed for the couple who had 12 dances?,3, +3201,10437,How many players have a height of 2.07?,3, +3203,10439,How many current clubs have the player Aigars Vitols?,3, +3206,10444,Name the total number of elementary schools for 31851,3, +3208,10448,How many polling percentages were there in October 2008 when is was 30.8% in Aug 2008?,3, +3209,10454,List the full amount of week 36 results when week 32 is 13.2%.,3, +3216,10481,"How many different matchup/results appear in San Diego, California?",3, +3217,10482,"How many different items appear in the television column when the results where Iowa State 14, Minnesota 13?",3, +3218,10483,How many different items appear in he attendance column at Sun Devil Stadium?,3, +3219,10488,How many north american brands have world headquarters in sagamihara?,3, +3220,10490,Which company name has a 2008 rank of n/a?,3, +3224,10501,What is the winning coach total number if the top team in regular season (points) is the Kansas City Spurs (110 points)?,3, +3225,10504,How many figures for Other in the district where the GN division is 95?,3, +3229,10512,What is the rating/share total number if the total viewers is 12.75 million?,3, +3230,10516,How many shows had 12.46 total viewers?,3, +3232,10521,How many different Leagues had average attendance of 3589?,3, +3235,10526,if the 3fg-fga is 1-20 what is the number in ft pct,3, +3236,10527,in the ft pct .667 what is the number of gp-gs,3, +3237,10540,"How many ""k_{\mathrm{h,cc}} = \frac{c_{\mathrm{aq}}}{c_{\mathrm{gas}}}i if its 'k_{\mathrm{h,px}} = \frac{p}{x}' is 14.97 × 10?",3, +3238,10549,"How many values of last year in QLD Cup if QLD Cup Premierships is 1996, 2001?",3, +3239,10562,Name the number of lines for porta nolana - ottaviano- sarno,3, +3240,10564,Name the number of stations for 15 minutes travel time,3, +3241,10567,How many different provinces is Baghaberd the center of?,3, +3243,10570,How many different numbers of cantons does the province with the Armenian name վասպուրական have?,3, +3245,10581,How many power kw have a frequency of 93.7 mhz?,3, +3246,10583,How many directors worked on the episode written by Brent Fletcher & Miranda Kwok?,3, +3247,10585,How many episodes were viewed by 1.29 million people?,3, +3249,10592,"How many people directed ""through the looking glass""?",3, +3250,10593,How many people directed episode 7 In the season?,3, +3251,10594,How many original air dates were there for the episode with production code 212?,3, +3253,10597,How many seasons did Barking Birmingham & Solihull Stourbridge were relegated from league?,3, +3256,10602,How many were promoted from the league when Esher was relegated to the league?,3, +3258,10604,What is the number of 07-08 oi best values associated with 08-09 i/o bests of exactly 202?,3, +3260,10606,"Name the number of partners for 5-7, 6-7 (5-7)",3, +3261,10610,"Name the number of surfaces for 4-6, 2-6",3, +3264,10613,How many times is keauna mclaughlin / rockne brubaker ranked?,3, +3267,10625,"How many episodes are titled ""Cops & Robbers""?",3, +3268,10629,How many different writers have written the episode with series number 8?,3, +3269,10635,How many release dates are there for year of 1988 and additional rock band 3 features is none?,3, +3270,10638,"How many single / pack names are there for the song title of "" rockaway beach ""?",3, +3273,10650,How many episodes had Yutaka Ishinabe as the iron chef specializing in french cousin?,3, +3275,10653,How many iron chefs were there when the challenge specialty was Japanese cuisine?,3, +3276,10658,How many qualifying start dates for the Concacaf confederation?,3, +3277,10661,How many of 3:26.00 have a championship record?,3, +3278,10662,How many of 3:26.00 when hicham el guerrouj ( mar ) is hudson de souza ( bra )?,3, +3279,10666,"What is the 26 July 1983 total number if Munich, West Germany is Beijing, China?",3, +3280,10667,"If the world record is the African record, what is the 1:53.28 total number?",3, +3281,10669,"How many episodes have the title ""a perfect crime""?",3, +3283,10675,Name the total number of kenesia for african record,3, +3284,10676,List the number of runners up when albertina fransisca mailoa won the putri pariwisata contest?,3, +3285,10691,How many different counts of tue number of Barangays are there for the municipality with 13824 citizens in 2010?,3, +3286,10694,How many circuits had a winning team of #1 patrón highcroft racing ang gtc winning team #81 alex job racing ?,3, +3288,10699,"What is the capacity for Sangre Grande Ground, home of the North East Stars?",3, +3289,10704,How many matches were 44?,3, +3291,10707,Name the total number of monarchs for 23 may 1059 crowned,3, +3294,10718,How many players came from Los Angeles?,3, +3295,10725,How many times is kenenisa bekele ( eth ) is marílson gomes dos santos ( bra )?,3, +3296,10730,"How many production codes have an original airdate of November 16, 1990?",3, +3298,10733,How many production codes were in series 39?,3, +3302,10743,"When ""body damage"" is the title how many air dates are there?",3, +3303,10747,"How many people directed ""odd man in""?",3, +4886,15805,What is the total number of points team Alfa Romeo 184T won?,4, +4901,15892,Tell me the sum of pick number for kenny arena,4, +4902,15900,Tell me the sum of attendane for a result of w 12-3 and week more than 12,4, +4905,15903,How many bronzes were held by those with a total of 4 and less than 3 silvers.,4, +4906,15904,How many rounds did the IFL: Oakland event have?,4, +4919,15964,What is the aggregate of place for points being 35?,4, +4922,15968,Tell me the sum of week for result of l 24–21,4, +4928,15992,"What is the sum of all totals with a rank greater than 6, gold greater than 0, and silver greater than 2?",4, +4938,16057,Tell me the sum of bp 2nd comp with bp azeo of 57.5,4, +4943,16071,"When the earnings are less than $507,292, the money list rank 183, and more than 3 tournaments are played, what is the sum of wins?",4, +4949,16099,What was the sum of ranks of those called Fernando Cavenaghi who appeared less than 7.,4, +4954,16115,"The player is Tim Regan and the pick # is position of d, what's the sum?",4, +4957,16122,Tell me the sum of Year for outcome of runner-up for world darts championship,4, +4971,16170,"In heat rank 7, what is the sum of lanes?",4, +4974,16174,Name the sum of played for serik berdalin and drawn more than 4,4, +4982,16202,How many Silver medals did nation who is ranked greater than 1 and has 4 Gold medals have?,4, +4986,16206,How many silver medals does Belarus (blr) along with 4 gold and 4 bronze?,4, +4990,16227,What is the sum of points in 2010 when the driver had more than 14 races and an F.L. of less than 0?,4, +4995,16242,"In the sixth round, what is the sum of fixtures when there were more than 15 clubs involved?",4, +4996,16246,Tell me the sum of frequency for ERP W less than 1,4, +4999,16255,Tell me the sum of year for 244 pages,4, +5003,16271,Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2,4, +5008,16287,"Tell me the sum of original week for september 16, 1982",4, +5011,16302,Tell me the sum of cars per set for operator of london midland,4, +5018,16318,What is the sum of year with the local host Sai?,4, +5021,16328,What is the sum of Top-5 values with events values less than 2?,4, +5023,16331,Name the sum of year for 2nd position for junior race,4, +5027,16338,Tell me the sum of total for rank of 1,4, +5029,16342,What is the sum of the averages when there are 68 caps and less than 9 goals?,4, +5031,16346,Tell me the sum of cap/hor for double chair and vertical less than 479,4, +5032,16348,Tell me the sum of year for extra of junior team competition,4, +5042,16389,"What is the sum of Magnitude on february 12, 1953?",4, +5047,16403,"What is the total overall in round 1, in which Charles White was a player?",4, +5057,16445,What was the sum of the crowds that watched Fitzroy play as the away team?,4, +5058,16446,What is the sum of rank with years 1996–2012 and apps greater than 340?,4, +5063,16468,"What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?",4, +5065,16470,What is the sum of crowd(s) when richmond is the away squad?,4, +5066,16478,How large was the crowd when they played at princes park?,4, +5073,16516,How many people watch Essendon as an away team?,4, +5081,16577,How many cop apps in the season with fewer than 12 league apps?,4, +5082,16579,How many league apps in the season with more than 2 cup goals and more than 6 cup apps?,4, +5084,16581,"How many cup goals in the season with more than 5 league apps, 1 cup apps and fewer than 4 league goals?",4, +5086,16593,What year did Omar Gonzalez graduate?,4, +5094,16640,How many bids were there for the .500 win percentage in the Ohio Valley conference?,4, +5095,16646,What is the total of the crowd when the away team score is 4.8 (32)?,4, +5096,16669,What was Peter Woolfolk's Total Rebound average?,4, +5099,16689,What was the attendance when South Melbourne was the away team?,4, +5104,16697,What is the crowd size of the game at Brunswick Street Oval?,4, +5113,16756,What is the sum of all the crowds at matches where the away team's score was 7.6 (48)?,4, +5115,16773,"What is the sum of week(s) with an attendance of 30,751?",4, +5123,16798,How many games had an assist number greater than 54?,4, +5134,16863,"What week did the Jets play in the meadowlands with and attendance of 78,161?",4, +5135,16874,"What is the % (1960) of Troms, which has a % (2040) smaller than 100 and a % (2000) smaller than 4.7?",4, +5149,16968,What is the WPW freq with a day power of 250?,4, +5153,16976,"What is the Euro for a ticket with a Price per ""Within"" Day of &0 8?",4, +5161,17017,What was the sum of the crowds at Western Oval?,4, +5164,17033,"What is the week more than 58,675 attended on october 22, 1995?",4, +5167,17044,What round did Takayo Hashi face Yoko Hattori?,4, +5168,17051,What is the sum of bronze when silver is greater than 3?,4, +5191,17138,"What is the sum of forms with greater than 17 pages and a total of $1,801,154?",4, +5193,17160,What is the crowd size of the game where the away team scored 8.15 (63)?,4, +5198,17193,How large a crowd did the Fitzroy Away team draw?,4, +5201,17204,What is the sum of car numbers with less than 126 points and 147 laps?,4, +5209,17230,What is the number of the crowd for the home team of South Melbourne?,4, +5213,17250,What was the crowd when the VFL played Windy Hill?,4, +5214,17252,What was the sum of the crowds in the matches where the away team scored 11.8 (74)?,4, +5224,17289,What is the total crowd size when the away team scores 14.6 (90)?,4, +5235,17317,What was the crowd size of the match where the home team scored 7.7 (49) against Geelong?,4, +5247,17356,What is the sum of crowd(s) when north melbourne is away?,4, +5249,17365,What is the sum of elections in vicenza?,4, +5261,17406,The school nicknamed the wildcats has what sum of enrollment?,4, +5265,17436,"What is the high score for the player with 0 stumps, 4 catches, more than 14 inns and an average smaller than 56.1?",4, +5276,17480,What is the total difference for teams that played less than 6 games?,4, +5314,17615,Which year was the vessel Deva built as a Panamax DNV class ship?,4, +5318,17631,What is the sum of caps for players with less than 9 goals ranked below 8?,4, +5323,17662,"Before 2007, how many wins were there when the point total was 48?",4, +5324,17663,"In 2011, how many wins did Michael Meadows have?",4, +5329,17688,"How many gold(s) for teams with a total of 14, and over 6 bronze medals?",4, +5333,17696,What was the sum of the crowd sizes when the home team scored 9.17 (71)?,4, +5337,17727,What is the sum of people per km2 for the sandoy region with an area of 112.1?,4, +5343,17743,"What is the sum of gold medal totals for nations with 1 silver, less than 2 bronze, and ranked below 10?",4, +5360,17802,What is the sum of every heat for the nationality of Macedonia with a rank less than 114?,4, +5364,17814,What was the attendance when the VFL played Glenferrie Oval?,4, +5386,17948,What year was Leon Blevins picked?,4, +5400,18018,How many votes were tallied in 1956 with a % of national vote larger than 11.47?,4, +5401,18019,"How many candidates were nominated in 1952 with under 305,133 votes?",4, +5404,18028,Which Interview has a Province of monte cristi and a Swimsuit larger than 7.27,4, +5406,18030,"Which Interview has a Swimsuit larger than 7.6, and a Province of la vega, and an Average smaller than 8.38?",4, +5408,18042,What is the Total medals won by the nation in Rank 6 with less than 2 Bronze medals?,4, +5419,18077,"What is the sum of the weeks during which the Redskins played against the Houston Oilers and had more than 54,582 fans in attendance?",4, +5429,18145,"What is the sum of Total for 0 gold and less than 2, silver with a rank of 6?",4, +5436,18175,"Which Draws have Losses larger than 16, and a Season larger than 1966?",4, +5437,18176,"Which Draws have a Team of annandale, and Losses smaller than 13?",4, +5448,18219,"Which Net profit/loss (SEK) has a Basic eps (SEK) of -6.58, and Employees (Average/Year) larger than 31,035?",4, +5449,18220,"Which Passengers flown has a Net profit/loss (SEK) smaller than -6,360,000,000, and Employees (Average/Year) smaller than 34,544, and a Basic eps (SEK) of -18.2?",4, +5466,18241,"What's the total of 1988-89 that has a 1986-87 of 38, and Points that's smaller than 109?",4, +5468,18246,Record of 11-10-3 is what sum of game #?,4, +5472,18268,Matches larger than 5 is the sum of what position?,4, +5476,18287,How many finalists were there when the years won was 2008 and the won % was greater than 33?,4, +5477,18295,How many points have a percentage of possible points of 67.22%?,4, +5478,18297,"How many seasons have fernando alonso as the driver, and a percentage of possible points of 64.12% and points less than 109?",4, +5480,18307,What is the sum of team impul with the date of 8 july,4, +5483,18313,Which Drawn has Games smaller than 7?,4, +5491,18325,WHich Year has a Music director(s) of anu malik?,4, +5496,18352,"Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1233, and a Rank of 9th?",4, +5497,18353,"Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1467.5, and a Common of moncalieri?",4, +5505,18393,Which Enrollment has a Mascot of norsemen?,4, +5506,18397,Which Win percentage has a Name of red kelly?,4, +5513,18437,How many yards did Davin Meggett have with more than 9 Rec.?,4, +5516,18440,"What is the grid associated witha Time/Retired of +8.180 secs, and under 47 laps?",4, +5533,18469,"how many wins did players earning less than $10,484,065 have?",4, +5534,18479,How many laps for mi-jack conquest racing when they went off course?,4, +5539,18488,Name the sum of total for gold less than 1 and bronze of 3,4, +5542,18491,What was the sum of the population in 2010 for the division of japeri with an area of 82.9 squared km?,4, +5550,18528,What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer?,4, +5551,18529,What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer?,4, +5553,18535,"What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing?",4, +5564,18582,"What is the palce number of Russia, which has 6 ropes of 19.425 and a total less than 38.925?",4, +5565,18583,"What is the place of the nation with a total greater than 37.85 and 4 hoops, 2 clubs of 19.15?",4, +5568,18590,"Which Points have a Rank of 3, and a 1st (m) smaller than 132?",4, +5571,18594,"How much Overall has a Pick # smaller than 20, and a Round smaller than 6?",4, +5577,18609,What is the number of Last Runners-up that has the club name of dempo sc?,4, +5585,18650,Around what time frame release a Sampling Rate of 12-bit 40khz?,4, +5595,18681,How many earnings have Wins larger than 3?,4, +5599,18686,"Which Points have a Game smaller than 8, and a Record of 1–0–0?",4, +5600,18687,"Which Game has a Record of 5–3–1, and an October smaller than 29?",4, +5602,18689,"Which Game has a Record of 4–2–1, and Points larger than 9?",4, +5612,18717,What is the sum of the points for the player who was a rank of 61t?,4, +5615,18725,"How many world rankings are after Aug 5, 1980 ?",4, +5624,18795,How many points was before game 14?,4, +5637,18813,what is the points total for forti corse?,4, +5646,18865,Wins smaller than 0 had what sum of year?,4, +5662,18888,"Which Extra points has Points smaller than 12, and a Player of chuck bernard, and Touchdowns larger than 1?",4, +5663,18889,"How many Field goals have Touchdowns smaller than 3, and a Player of willis ward, and an Extra points smaller than 0?",4, +5672,18937,"How many Poles have a Class of 125cc, and a Team of matteoni racing team, and Points larger than 3?",4, +5673,18938,"How many Podiums have a Class of 250cc, and an F laps of 0?",4, +5675,18940,"Average larger than 450, and a Capacity smaller than 5,177, and a Stadium of ochilview park is what sum of the highest?",4, +5676,18941,"Capacity smaller than 3,292, and a Highest larger than 812, and a Stadium of strathclyde homes stadium has what sum of the average?",4, +5679,18947,"Which December has Points of 48, and a Game larger than 33?",4, +5686,18964,Which Rating has a Centre of helsinki?,4, +5688,19005,"How many Games have a Lost of 6, and Points smaller than 7?",4, +5694,19032,"How many points have 500cc for the class, a win greater than 0, with a year after 1974?",4, +5695,19033,"How many wins have a year after 1976, and 350cc as the class?",4, +5706,19075,"What is the total number of averages where the played is more than 38, the 1990-91 is 39, and the 1989-90 is 34?",4, +5707,19083,What is the sum for the game with a score of 103–126?,4, +5718,19108,"What is the sum of area with a population of 5,615 and number more than 6?",4, +5719,19110,What is the number of races that took place with points of 257?,4, +5720,19111,What is the number of points that driver fernando alonso has in the season he had 20 races?,4, +5723,19116,What is the sum of goals for Torpedo Moscow in division 1 with an apps value less than 29?,4, +5724,19126,Enrollment that has a School of south central (union mills) has what sum?,4, +5731,19147,"What is the full amount of Total Cargo (in Metric Tonnes) where the Code (IATA/ICAO) is pvg/zspd, and the rank is less than 3?",4, +5733,19160,"When 2000-2005 is smaller than 2.52, and 1990-1995 is less than 0.37, what's the total of 1995-2000?",4, +5737,19171,"How many years have a Location of pacific ring of fire, and Eruptions of pinatubo?",4, +5742,19184,How many touchdowns are there that has field goals less than 0 and 0 extra points?,4, +5743,19185,How many field goals are there that have 8 touchdowns and more than 49 points?,4, +5748,19210,Shawn Michaels entered the elimination chamber in what position?,4, +5749,19213,What is the sum of all gold medals for Algeria when total medals is less than 3?,4, +5755,19222,What's the total Lost with Games that's less than 4?,4, +5756,19223,"What's the total of Games with a Lost that's larger than 2, and has Points that's smaller than 0?",4, +5760,19238,"Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state?",4, +5763,19242,"Which Points have an Opponent of @ atlanta thrashers, and a Game smaller than 28?",4, +5776,19280,What is the sum of all played when less than 4 sets were won and 3-dart average was 53.19?,4, +5782,19324,"Which Attendance has an Opponent of phillies, and a Record of 30-33?",4, +5787,19333,What is the rank of the team with 11 total medals and more than 4 silver medals has?,4, +5791,19339,How many rounds have goalie as the position?,4, +5801,19367,How many games against for team guarani with under 3 draws?,4, +5802,19377,"What is the pick number for the player playing tackle position, and a round less than 15?",4, +5807,19397,What is the sum of the points when Carlos drove for repsol honda in 8th place?,4, +5810,19400,What is the total number of goals from 24 tries and 96 or greater points?,4, +5813,19409,What are the sum of points in 1989 with 0 wins?,4, +5825,19441,What is the total attendance for the date of october 5?,4, +5830,19451,How many attendances had the Detroit Lions as opponents?,4, +5833,19468,"Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold?",4, +5834,19469,Nation of total has what sum of gold?,4, +5835,19470,"Total of 3, and a Gold larger than 0, and a Nation of belarus, and a Silver larger than 2 has what sum of bronze?",4, +5840,19523,What is the score of the scores when Game had a Record of 17-29?,4, +5843,19528,How many yards per attempt have net yards greater than 631?,4, +5867,19596,"Which Rank that a Name of thomas morgenstern, and Points larger than 288.7?",4, +5869,19598,"What is the overall number for Louisiana Tech college, and a pick more than 10?",4, +5871,19601,"What is the overall number for a pick of #10, from Louisiana Tech, and a round bigger than 3?",4, +5875,19606,"What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF?",4, +5876,19613,How many Drawn is which has a Games smaller than 6?,4, +5878,19615,How many Drawn has a Games larger than 6?,4, +5879,19616,"How many jewish have a muslim less than 36,041, a total less than 161,042, a year after 2006, with a druze greater than 2,534?",4, +5883,19620,"How many muslims have a jewish of 112,803, and a year after 2008?",4, +5889,19630,"What's the area of askøy, with a Municipal code less than 1247?",4, +5890,19632,What's the Municipal code of the FRP Party with an area of 100?,4, +5900,19652,What is the sum avg/g with an effic of 858.4?,4, +5910,19682,before week 12 what was the attendance on 1983-11-21?,4, +5915,19695,How many wins does Greg Norman have?,4, +5924,19722,"How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999?",4, +5925,19723,What is the total number of quantity when the introductory year was 1984?,4, +5933,19732,"What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4?",4, +5947,19780,What's the total Year with a Length of 4:45 an has an Album of Les Mots?,4, +5952,19792,How many total matches with less than 1 win and a position higher than 8?,4, +5956,19811,What's the number of laps for 16 grids?,4, +5986,19929,What is the sum of launches with Long March 3 and 0 failures?,4, +5995,19982,When did Kim Thompson win with 278 score?,4, +5996,19984,What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest?,4, +6006,20012,what is the 1st prize for may 21,4, +6013,20031,"How many wins did the player who earned $6,607,562 have?",4, +6017,20049,"How many Bronzes that has a Silver of 0, and a Gold of 0, and a Nation of denmark, and a Total larger than 1?",4, +6019,20051,"How many Silvers that has a Gold smaller than 1, and a Rank of 9, and a Total smaller than 1?",4, +6032,20095,"How many starts have a year prior to 2012, and team penske as the team, with a finish greater than 27?",4, +6033,20106,"What is the sum of numbers listed in 18-49 for the episode that aired on June 25, 2009 with an order larger than 29?",4, +6037,20121,How many people attended the game when Larry Hughes(33) was the leading scorer and cleveland was visiting?,4, +6040,20131,"What was the Attendance on November 29, 1953?",4, +6044,20151,Opponent of @ phoenix suns had what sum of game?,4, +6054,20182,How many points did Stuart have when he had less than 1 touchdown?,4, +6056,20187,"Score of 3–2, and a Opponent of reds had what sum of attendance?",4, +6058,20190,Which Top-25 has a Top-5 smaller than 0?,4, +6059,20191,"Which Top-25 has a Top-5 larger than 9, and Wins smaller than 11?",4, +6086,20277,How many rebounds does Fedor likholitov have with a rank greater than 8?,4, +6088,20282,with games more than 22 what is the rebound total?,4, +6100,20344,"What is the total of electors when the share of votes was 11,0%?",4, +6115,20379,"1996[2] larger than 68, and a 1990 smaller than 352, and a 1970 larger than 105, and a 1950 of 119 is the sum of what 1980?",4, +6116,20380,"1996[2] of 127, and a 1990 smaller than 120 is the sum of 1990?",4, +6119,20394,What is the sum of losses that have points of 11 and more than 1 draw?,4, +6123,20398,What's the February for the game against the Montreal Canadiens?,4, +6130,20441,How many rounds did the match go for the Bellator 72 event?,4, +6131,20443,What is the sum of the live viewers for episodes with share over 5?,4, +6132,20444,What is the sum of the ratings for episodes with live viewers of 2.96?,4, +6135,20453,Which Capacity has a Location of mogilev?,4, +6143,20488,What is the January sum with the record of 17-20-2 with a game smaller than 39?,4, +6148,20496,"Which Females (%) has an HIV awareness (males%) larger than 92, and Females Rank larger than 2, and Males Rank smaller than 3?",4, +6149,20497,League Cup smaller than 0 is what sum of the total?,4, +6151,20505,Which Game has a November of 29?,4, +6180,20621,"on april 29, what was the attendance?",4, +6183,20625,"Successes smaller than 6, and Launches larger than 1, and a Failures of 2 is what sum of the partial failures?",4, +6185,20630,Which Year has a Genre of rock (track)?,4, +6189,20638,"What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses?",4, +6201,20672,What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30?,4, +6210,20709,"What year was she on a 350cc class bike, ranked 16th, with over 0 wins?",4, +6211,20710,"How many points did she have with team bultaco, ranked 6th?",4, +6212,20718,"How much Attendance has an Opponent of rockies, and a Record of 32-30?",4, +6218,20752,What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4?,4, +6221,20756,Which Round has a Player of todd fedoruk?,4, +6223,20758,"How many Laps have a Driver of david coulthard, and a Grid smaller than 14?",4, +6238,20799,How many people attended the game with parent recording the decision and a Record of 42–18–10?,4, +6239,20816,"How much Silver has a Nation of mexico, and a Total larger than 1?",4, +6241,20818,"How much Bronze has a Nation of mexico, and a Total larger than 1?",4, +6251,20862,What attendance does 1-6 record have?,4, +6252,20869,Which sum of Seasons in league has a Best Position of 5th (2007)?,4, +6253,20873,What is total amount of points for the 2007 season?,4, +6259,20889,"Which Gold has a Rank larger than 6, and a Nation of netherlands, and a Bronze smaller than 0?",4, +6269,20963,"How much Played has a Lost larger than 14, and Drawn of 8, and a Team of ipatinga?",4, +6272,20966,"How many Lost have Points larger than 40, and a Position of 11, and a Played smaller than 38?",4, +6276,20970,"How many games drawn with a Points difference of 31 - 33, and under 4 games lost?",4, +6288,21003,"What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3?",4, +6289,21004,What is the sum of gold values that have bronze values over 0 and totals under 2?,4, +6297,21036,Which year did the World indoor championships gave a position of 3rd?,4, +6301,21057,What is the sum for December against the vancouver canucks earlier than game 33?,4, +6302,21058,What is the sum for December when the record was 22-12-5?,4, +6316,21117,What is the sum of Long for derrick locke?,4, +6324,21139,"Which Avg/G has an Effic larger than 129.73, and a Cmp-Att-Int of 333-500-13?",4, +6326,21141,"Which Avg/G that has a Name of opponents, and an Effic smaller than 129.73?",4, +6328,21145,How many runs were there when the high score was 55 and there were more than 12 innings?,4, +6329,21146,How many runs were there when there was 1 match and les than 86 average?,4, +6330,21156,What is the sum of Tujia population with the Zhangjiajie prefecture in Sangzhi county?,4, +6338,21169,What is the Year the competition the british empire and commonwealth games were held?,4, +6342,21185,What is the total number of first prizes in USD for the Canadian Open?,4, +6343,21193,What is the overall number of the player from Utah with a pick # higher than 7?,4, +6345,21195,"What round did Mitch Davis, with an overall higher than 118, have?",4, +6349,21200,"How many wins for team mv agusta, over 10 points, and after 1957?",4, +6354,21218,What is the sum of average values for 23 yards?,4, +6357,21221,What is the sum of values for INT'S with Mossy Cade for 0 yards and less than 3 sacks?,4, +6364,21236,"Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8?",4, +6371,21263,What is the run 2 of athlete Maria Orlova from Russia?,4, +6372,21264,What is the run 3 of the athlete with a run 1 more than 53.75 and a run 2 less than 52.91?,4, +6377,21269,"How many wins are associated with a position of under 6, over 8 top 5s, and 1793 points?",4, +6385,21283,"Which Season has Ties smaller than 1, and a Team of vancouver grizzlies, and Wins smaller than 1?",4, +6391,21308,What is the sum of points values that are associated with 0 losses and more than 8 games?,4, +6398,21325,"Which Played has a Lost larger than 4, and a Team of américa, and Points smaller than 5?",4, +6399,21326,"Which Lost has a Position of 3, and a Drawn larger than 3?",4, +6404,21347,Name the sum of drawn with lost more than 1 and games less than 5,4, +6406,21349,Name the sum of points with games less than 5,4, +6408,21356,"Which Events have Earnings ($) of 1,841,117, and a Rank smaller than 4?",4, +6417,21439,"Which Grid has a Team of rusport, and Laps larger than 221?",4, +6419,21444,What is the total number of points for ray agius,4, +6426,21468,"Which Rank has a Capacity smaller than 12,000, and a Country of united states?",4, +6431,21479,What year did Culver leave?,4, +6444,21526,What is the Wins before 1960 with less than 2 Points?,4, +6450,21555,How many league cups for m patrick maria with 0 total?,4, +6462,21593,what is the sum of the year in rhode island,4, +6465,21623,"What is the total number of squad no when there are more than 8 points, Danny Mcguire is a player, and there are more than 0 goals?",4, +6470,21666,What is the grid of driver joão urbano?,4, +6483,21699,"Which Avg/G has a Gain of 16, and a Name of barnes, freddie, and a Loss smaller than 2?",4, +6487,21703,"Which Loss has a Name of bullock, chris, and a Long smaller than 36?",4, +6488,21704,"How much Long has a Loss larger than 2, and a Gain of 157, and an Avg/G smaller than 129?",4, +6490,21710,"Which Date has a Score of 6–3, 7–6?",4, +6491,21711,"Which Date has a Score of 7–6(3), 4–6, 6–2?",4, +6495,21722,"In what Week were there less than 30,348 in Attendance with a Result of W 37-21?",4, +6498,21730,What is the attendance in texas stadium?,4, +6499,21739,What is the max speed of the unit with an 8+4 quantity built before 1971?,4, +6500,21741,What is the power of the unit built after 1995?,4, +6503,21746,Which Game has an Opponent of @ carolina hurricanes?,4, +6505,21748,Which Game has a November of 22?,4, +6508,21751,"What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0?",4, +6509,21752,"How much Lost has an Against larger than 19, and a Drawn smaller than 1?",4, +6513,21760,"How many Horsepowers have a Year smaller than 1974, and a Tonnage of 4437?",4, +6525,21795,What is the pick number for tulane university?,4, +6526,21796,What is the pick number for the kansas city royals?,4, +6535,21817,with build 5/69-6/69 what's the order?,4, +6536,21824,What is the attendance of the game that has the opponent of The Nationals with a record of 68-51?,4, +6544,21857,"What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13?",4, +6555,21875,"Which Wins have a Win % smaller than 0.8270000000000001, and a Name of rick mirer, and Ties smaller than 1?",4, +6563,21889,What is the grid of pkv racing with the driver oriol servià?,4, +6564,21902,"What round was john sutro, tackle, drafter with a pick lower than 79?",4, +6568,21919,"How many starts are associated with an oldsmobile engine, 21 finishes and before 2001?",4, +6576,21934,"Which 2nd (m) has an Overall WC points (Rank) of 1632 (1), and Points larger than 273.5?",4, +6586,21972,How many field goals did Carter get when he had 0 extra points?,4, +6598,21996,"What was the Week on October 18, 1992?",4, +6599,21999,"What attendance has astros as the opponent, and april 29 as the date?",4, +6601,22016,"What is the total of wins where the top 25 is 6, top 10 is more than 2, and the event number is less than 19?",4, +6602,22017,What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0?,4, +6607,22028,"Which Points have Touchdowns larger than 0, and an Extra points smaller than 0?",4, +6614,22051,"What is the number of Population 2001 Census that has 476,815 in Population 1991 Census?",4, +6638,22138,What team had less than 291 total points whole having 76 bronze and over 21 gold?,4, +6642,22145,Which Team wins has an Individual winner smaller than 1 and Total win larger than 1?,4, +6655,22209,"Which April has Points of 95, and a Record of 41–25–10–3, and a Game smaller than 79?",4, +6678,22286,Name the sum of played with wins more than 19,4, +6681,22291,"Which Goals have a Club of hallelujah fc, and a Rank of 7?",4, +6685,22295,"What is the grid number of Sandro Cortese, who has Aprilia as the manufacturer and less than 19 laps?",4, +6690,22300,Which Drew has a Lost larger than 14?,4, +6692,22319,"What is the total of medium earth orbital regime, accidentally achieved and successes greater than 3?",4, +6694,22321,What is the total failures of heliocentric orbit orbital regimes and launches less than 1?,4, +6698,22336,For how many years was the location at Beijing?,4, +6720,22412,How many Laps have a Driver of satrio hermanto?,4, +6726,22421,"5 Hoops that has a Place larger than 7, and a Total larger than 38.525 had what sum?",4, +6730,22442,"Which Attendance has a Home of philadelphia, and Points smaller than 23?",4, +6734,22451,What was the sum of the E scores when the total score was 19.466?,4, +6745,22485,"Which Against has Losses larger than 2, and Wins of 8, and Byes smaller than 0?",4, +6746,22486,Which Draws have Wins larger than 14?,4, +6754,22507,"Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2?",4, +6756,22509,Which Pos has a Car # of 33?,4, +6760,22514,"How many 2nd (m) have aut as the nationality, with 4 as the rank, and a 1st less than 122.5?",4, +6761,22527,How many issues end on jan–72?,4, +6765,22548,"What is the total number of win % when John Gartin is coach, the crew is varsity 8+, and the year is 2005?",4, +6767,22550,What is the total of win percentages when the year is 2008 and the crew is varsity 8+?,4, +6777,22566,Which Week had a Result of w 23-17?,4, +6778,22568,"Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold?",4, +6779,22569,"Smaller than 4, and a Silver larger than 0, and a Rank of 3, and a Bronze smaller than 6 then what is the sum of the gold?",4, +6793,22622,"Which Position has Losses of 11, and a Played larger than 22?",4, +6800,22632,How many picks involved the player Joe Germanese?,4, +6810,22655,How many Wins have a Top 5 smaller than 0?,4, +6814,22660,"With less than 1 Championship, what es the Established date of the Niagara Rugby Union League?",4, +6821,22679,"Name the sum of cuts with wins less than 2, top-25 more than 7 and top-10 less than 2",4, +6822,22697,"what year has 13,426,901 passengers and more than 10,726,551 international passengers?",4, +6824,22711,What is the number of the station in Suzuka that is smaller than 11.1 km and has an l stop?,4, +6825,22712,What is the distance of Kawage station?,4, +6832,22731,"How many losses have points less than 3, with a drawn greater than 0?",4, +6839,22769,Which Drawn has a Team of internacional-sp?,4, +6840,22770,"How much Lost has a Drawn larger than 5, and a Played larger than 18?",4, +6845,22782,What is the total number of Round that has a Time of 6:04?,4, +6849,22802,"Which Conceded has Draws smaller than 5, and a Position larger than 6?",4, +6851,22804,Which Scored has a Team of recoleta?,4, +6857,22834,What is the sum of againsts the team with less than 38 played had?,4, +6859,22836,What is the position of the team with more than 16 losses and an against greater than 74?,4, +6862,22840,What was the quantity of the A Score when the E Score was larger than 9.566 in the Greece and the T score was more than 4?,4, +6863,22841,"What was the total of A Score when the E Score was greater than 9.383, total was less than 19.716 and the T Score was larger than 4?",4, +6864,22846,What does the ERP W sum equal for 105.1 fm frequency?,4, +6871,22875,Old Scotch had less than 9 losses and how much against?,4, +6873,22882,Name the sum of laps for mi-jack conquest racing and points less than 11,4, +6874,22885,Name the sum of grid with laps more than 97,4, +6877,22888,"How many Ends Won have Blank Ends smaller than 14, and a Locale of manitoba, and Stolen Ends larger than 13?",4, +6897,22956,How many PATAs does an nForce Professional 3400 MCP have?,4, +6902,22995,"Average larger than 2,279, and a Team of queen of the south, and a Capacity larger than 6,412 has what lowest of the sum?",4, +6904,23019,"Can you tell me the sum of Podiums that has the Season of 2006, and the Races larger than 16?",4, +6905,23020,"Can you tell me the sum of FLap that has the Pole larger than 0, and the Podiums of 6?",4, +6908,23031,What was the attendance when the score was 8–7?,4, +6918,23070,What day in December was the game before game 11 with a record of 7-2-2?,4, +6921,23073,How many seats have a quantity over 45?,4, +6928,23117,Which Pos has a Driver of brian scott (r)?,4, +6942,23164,What were the Points in the game with a Score of 2–7?,4, +6944,23166,What's the Bronze cumulative number for less than 0 gold?,4, +6951,23173,"How many Extra points have Touchdowns of 1, and a Player of ross kidston, and Points smaller than 5?",4, +6964,23209,"Who has a total of the Bronze less than 4, gold more than 0, and no silver?",4, +6966,23211,What's the total Lost that has a Played that's larger than 42?,4, +6975,23257,"What's the sum of Losses that Scored larger than 15, has Points that's larger than 16, and Played that's larger than 9?",4, +6977,23259,"What's the sum of WIns with Draws that's larger than 1, Losses that's smaller than 4, and Conceded of 20?",4, +6982,23276,"What is the natural change number of Syria when there were 67,000 deaths and an average population greater than 2,820?",4, +6988,23290,What is the sum of the pick for player roger zatkoff?,4, +6991,23298,How many Points have an Opponent of @ calgary flames?,4, +6993,23304,"Which Social and Liberal Democrats/ Liberal Democrats has a Control of labour hold, and a Liberal larger than 0?",4, +6995,23313,What is the total number of overall figures when duke was the college and the round was higher than 7?,4, +7004,23334,What is the sum of the points when there are fewer than 4 games?,4, +7008,23345,Name the sum of rating % for cctv and position more than 7,4, +7010,23350,Name the sum of round for pick of 169,4, +7012,23372,"Which Game has a Record of 8–2–0, and Points larger than 16?",4, +7014,23375,How many points have November of 15?,4, +7017,23399,Which Game has a Series of bruins lead 3–1?,4, +7018,23402,Which Game has a Score of 3–6?,4, +7020,23409,How much Attendance has an Opponent of oxford united?,4, +7021,23411,"How many Podiums where their total for the Series of Macau grand prix, as well as being a season before 2008?",4, +7029,23441,"In the Ohio 4 district, that is the first elected date that has a result of re-elected?",4, +7032,23450,What is the total of the team with a T score greater than 8 and an E score less than 8.4?,4, +7034,23453,What is the total of the team with a T score less than 6.8?,4, +7037,23468,How many people live in Norton?,4, +7046,23501,"Which Game has Points smaller than 10, and an October larger than 12, and an Opponent of @ washington capitals?",4, +7047,23510,What is the sum of goals for the 2004/05 Season?,4, +7052,23521,"Nationality of england, and a Lost larger than 39, and a Win % of 28.7, and a Drawn smaller than 37 had what sum of matches?",4, +7054,23523,Lost of 18 had what sum of win %?,4, +7056,23532,"How many legs were won by the player who had less than 84 100+, less than 14 legs lost, and less than 3 played?",4, +7058,23535,"What is the number of legs lost of the player with more than 8 legs won, 4 played, less than 6 180s, and a 100+ greater than 46?",4, +7068,23556,"3rd Runner-up of 2, and a Country/Territory of venezuela has what sum of 4th runner-up?",4, +7069,23557,"2nd Runner-up larger than 4, and a Country/Territory of israel, and a 4th Runner-up smaller than 0 has which sum of 6th Runner-up?",4, +7073,23563,"Which 1956 has a County of vâlcea, and a 2011 smaller than 371714?",4, +7083,23587,"Which Overall has a College of florida state, and a Round larger than 2?",4, +7084,23588,"How many Picks have a Position of kicker, and an Overall smaller than 137?",4, +7090,23616,What was the sum of the winner's shares for US Senior Opens won by Brad Bryant before 2007?,4, +7098,23631,In what Round was Pick 138?,4, +7102,23643,"Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate?",4, +7105,23655,What is the sum of the distances in 2nd for ranks higher than 4 and distance for 1st less than 111.5?,4, +7126,23710,"How many Picks have a College of tennessee, and an Overall smaller than 270?",4, +7140,23744,"Which Pocona Municipality (%) has a Puerto Villarroel Municipality (%) larger than 14.6, and a Pojo Municipality (%) smaller than 88.5?",4, +7143,23748,"Which Pos has a Team of roush fenway racing, and a Car # of 99?",4, +7147,23757,What is the sum of the capacities for Carrigh wind warm that has a size of 0.85 MW and more than 3 turbines?,4, +7148,23760,"What is the population where the rank is higher than 51 and the Median House-hold income is $25,250?",4, +7157,23788,"How many wins does the player ranked lower than 3 with earnings of $3,315,502 have?",4, +7163,23797,"How many total events have cuts made over 12, more than 2 top-5s, and more than 11 top-10s?",4, +7164,23798,How many total wins are associated with events with 1 top-10?,4, +7175,23833,Which cornerback round has a pick number lower than 26 and an overall higher than 41?,4, +7185,23873,What is the sum of Gold with Participants that are 4 and a Silver that is smaller than 0?,4, +7189,23883,What is the number of earning for more than 2 wins and less than 25 events?,4, +7199,23913,"What is the sum of the weeks that games occured on october 21, 1974 and less than 50,623 fans attended?",4, +7201,23921,How many total medals for germany with under 56 bronzes?,4, +7204,23929,What Week has a Result of l 17-14?,4, +7207,23938,How much Overall has a Pick # of 26?,4, +7208,23940,"How much Overall has a Round smaller than 6, and a Pick # of 26?",4, +7218,23963,What is the total for New York's game?,4, +7233,24023,"What is the of Fleet size with a IATA of pr, and a Commenced operations smaller than 1941?",4, +7238,24043,"What is the sum of Top-10(s), when Cuts made is less than 10, and when Top-5 is less than 0?",4, +7242,24064,How many totals had more than 4 bronze?,4, +7245,24070,How many total No Results occured when the team had less than 46 wins and more than 16 matches?,4, +7262,24152,How many numbers had Brandon Dean as a name?,4, +7264,24160,"What is the total number of games played with 3 losses, 1 or more drawns and 10 or fewer points?",4, +7268,24164,"What is the sum of the points of club nevėžis-2 kėdainiai, which has more than 35 goals conceded?",4, +7271,24167,"What is the total losses against 1412, and 10 wins, but draws less than 0?",4, +7276,24172,What is the sum of wins against the smaller score 1148?,4, +7278,24177,"Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand?",4, +7280,24179,"Which Bronze has a Country of malaysia, and a Total smaller than 2644?",4, +7294,24251,"What's the sum of Men's race when Women's race is less than 1, Women's Wheelchair is 1, Men's wheelchair is more than 3 and the Total is more than 3?",4, +7303,24287,What is the sum of the wards/branches in Arkansas of the North Little Rock Arkansas stake?,4, +7308,24331,What was the score of the game against the San Diego Chargers?,4, +7309,24334,"What week had 58,025 in attendance?",4, +7328,24390,"What is the sum of Counties when there were 701,761 votes and less than 57 delegates?",4, +7331,24394,What is the sum of totals associated with a UEFA Cup score of 4?,4, +7332,24395,What is the sum of totals for FA Cup values of 0?,4, +7335,24403,"How many blocks have a weight greater than 82, and a height less than 199?",4, +7348,24437,"Which Agricultural Panel has a Nominated by the Taoiseach larger than 6, and a Total larger than 60?",4, +7349,24447,What is the points sum of the series with less than 0 poles?,4, +7350,24448,"What is the sum of the races in the 2007 season, which has more than 4 podiums?",4, +7351,24449,"What is the sum of the poles of Team la filière, which has less than 162 points?",4, +7353,24452,"What is the sum of the Cultural and Educational Panels that have an Administrative Panel greater than 1, an Agricultural Panel of 11 and a University of Dublin smaller than 3?",4, +7354,24453,What is the sum of Agricultural panels that have an Industrial and Commercial Panel smaller than 0?,4, +7361,24466,"How many Points have an Against smaller than 43, and a Position smaller than 1?",4, +7365,24470,"How much Played has an Against larger than 37, and a Lost of 15, and Points smaller than 11?",4, +7369,24482,"Which Position has an Against of 32, and a Difference of 18, and a Drawn larger than 4?",4, +7378,24517,"Total weeks of 49,980 attendance?",4, +7395,24585,What is the sum of bronzes associated with 0 golds and a rank of 10?,4, +7412,24663,"How many losses have 222 as the goals against, with points greater than 78?",4, +7413,24664,"How many goals against have 64 for games, a loss less than 12, with points greater than 107?",4, +7414,24665,What is the place of the song 'Never Change'?,4, +7440,24780,"What is the sum of Events when the top-25 is more than 5, and the top-10 is less than 4, and wins is more than 2?",4, +7442,24782,What is the sum of Cuts made when there were more than 72 events?,4, +7447,24801,What was the 2010 census when the 2011 estimate was 410?,4, +7453,24819,What is the sum of against in Ballarat FL of East Point and wins less than 16?,4, +7454,24822,How many visitors in 2007 were there for ski jumping hill?,4, +7458,24826,"What is the sum of Rebounds, when Team is Aris Thessaloniki, and when Games is greater than 14?",4, +7461,24850,What is the sum of completions that led to completion percentages of 65.4 and attempts under 451?,4, +7468,24874,What day in December was the game that resulted in a record of 6-3-1?,4, +7469,24875,How many were in attendance against the Oakland Raiders after week 7?,4, +7478,24898,"How many golds had a silver of more than 1, rank more than 1, total of more than 4 when the bronze was also more than 4?",4, +7479,24899,What is the total of rank when gold is 2 and total is more than 4?,4, +7480,24900,What is the total number of bronze when gold is less than 1 and silver is more than 1?,4, +7481,24901,"What is the total of rank when silver is more than 1, gold is 2, and total is more than 4?",4, +7483,24905,"What is the sum of Points for 250cc class, ranked 13th, later than 1955?",4, +7491,24931,In what year Year has a Co-Drivers of jérôme policand christopher campbell?,4, +7493,24937,"What is the sum of Points, when the Performer is fe-mail?",4, +7498,24968,What was the Attendance when Oxford United was the Home team?,4, +7503,24985,"What is the sum of season when the venue was donington park, and Brazil came in second?",4, +7512,24995,What is the total number of Losses that Melton had when they had fewer Draws than 0?,4, +7525,25064,What is the total number of laps for the time of +7.277 and the grid number of more than 6?,4, +7532,25094,How many games were played against when the team played more than 22 total?,4, +7536,25109,"What was the sum of the points for the song ""why did you have to go?""",4, +7542,25119,What is the sum of numbers that had a type of Driving Van Trailer?,4, +7548,25125,"What is the total launch failures when there are 4 launches, and the not usable is greater than 0?",4, +7556,25152,"How many places have yamaha as the machine, and 89.85mph as the speed?",4, +7569,25185,"What is the sum of Natural Change, when Natural Change (Per 1000) is greater than 5.4, when Crude Death Rate (Per 1000) is less than 14.3, when Live Births is less than 6,950, and when Crude Birth Rate (Per 1000) is less than 28.2?",4, +7583,25228,"What is the sum of Away Losses with a No Result of more than 0, losses of more than 6, and matches of more than 91?",4, +7584,25229,"What is the sum of Wins with a result of 0, and the away wins of 1, and the losses are less than 5?",4, +7586,25238,What Tries against that have a Points against of 95 and Tries for larger than 20?,4, +7587,25239,"What Tries for has a Team of neath, and Points against larger than 109?",4, +7588,25240,How many Points against that have a Team of harlequins and Tries against smaller than 8?,4, +7590,25258,What is the sum pick # of the player from round 4?,4, +7591,25260,What is the sum of the round of the player who plays linebacker and has a pick # greater than 251?,4, +7600,25297,"What is the sum of Height (cm), when the Weight (kg) is 90?",4, +7608,25320,What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0?,4, +7609,25321,What is the total for the University of Dublin when 2 are nominated by Taoiseach and the industrial and commercial panel is greater than 0?,4, +7624,25372,How many years were there a men's double of györgy vörös gábor petrovits and a men's single of györgy vörös?,4, +7625,25373,"Which Drawn has a Points of 6, and a Against larger than 16?",4, +7627,25375,"Which Points has a Team of são paulo athletic, and a Position larger than 5?",4, +7629,25377,What track has a catalogue of 47-9465?,4, +7638,25417,What is the sum of the Game with a Set 4 of 25-21 and a Set 3 of 25-23?,4, +7651,25445,"What is the sum of Medium Gallup, March 2008 values where the Medium Gallup, May 2008 values are under 10?",4, +7661,25536,"What is the sum of Week when there were 67,968 people in attendance?",4, +7667,25555,"Can you tell me the sum of Matches that has the Goals of 103, and the Rank larger than 9?",4, +7668,25557,How many laps had a time stat of accident for the rider carmelo morales when the grid was more than 25?,4, +7671,25566,How many drawns have 7 for the lost?,4, +7673,25568,What is the sum of Maidens with a number of Matches that is 2?,4, +7680,25608,"How many years have an accolade of 50 best albums of the year, with #3 as the rank?",4, +7682,25620,"Which Attendance has a First Downs smaller than 26, an Opponent of los angeles rams, and Points For larger than 28?",4, +7687,25629,How many Games for the Player from Lietuvos Rytas Vilnius with less the 43 Rebounds?,4, +7691,25639,How many points did Antwain Barbour score in the year he played 39 games?,4, +7701,25671,"How many totals have a rank greater than 4, czech Republic as the nation, and a bronze greater than 0?",4, +7705,25677,"What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?",4, +7715,25712,"What is the sum of Against when the drawn is less than 2, the position is more than 8, and the lost is more than 6.",4, +7717,25715,"What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4?",4, +7718,25716,"What is the sum of Top-5, when Tournament is Totals, and when Events is greater than 86?",4, +7724,25736,What is the sum of Blank Ends for Denmark when less than 42 is the ends lost?,4, +7739,25791,"What is the sum for December that has 0.36 in July, and lager than 0.35000000000000003 in February?",4, +7744,25818,What was the total matches that ranked above 10?,4, +7749,25835,"What is the sum of Population (1 July 2005 est.), when Area (km²) is less than 5,131, when Population density (per km²) is less than 180, when Subdivisions is Parishes, and when Capital is Roseau?",4, +7753,25851,What is the sum of Rob Coldray's goals when he made fewer than 348 appearances with goals/game ratio less than 0.313?,4, +7760,25877,"What is the sum of Weight for the person with a height of 6'6""?",4, +7767,25900,How many games were played by the Scottish Wanderers where less than 5 Points were scored?,4, +7768,25901,How many games were played where exactly 15 points were scored?,4, +7786,25957,What is the sum of top-25s for events with more than 1 top-5?,4, +7788,25969,"What is that if the weight for the play born on June 2, 1983?",4, +7797,25997,How much gold did South Korea get?,4, +7803,26014,"Which Rank has a Goals smaller than 76, and a Matches larger than 270?",4, +7813,26032,"How many are there in 2003 that have 0 in 2001, more than 0 in 2009 and fewer than 0 in 1999?",4, +7814,26035,"Which Year has an Expenditure smaller than 41.3, and a % GDP of x, and an Income larger than 34.4?",4, +7817,26047,How many Gold medals did Japan receive who had a Total of more than 1 medals?,4, +7821,26063,How many ranks had 367 matches and more than 216 goals?,4, +7827,26081,what is the number of passengers when the capacity is 81.2%?,4, +7843,26097,What is the rank of the player with less than 34 points?,4, +7854,26124,"What is the total against that has wins less than 9, and losses less than 16, and 2 as the byes, and Ballarat FL of ballarat?",4, +7860,26131,What is the sum of Attendance when macclesfield town was the way team?,4, +7867,26149,"What is the sum of Rank, when Name is Will Solomon, and when Games is greater than 21?",4, +7868,26152,What were the Bills points on Nov. 11?,4, +7874,26163,What are the Cuts made with a Top-10 smaller than 2?,4, +7878,26168,"What is Sum of Score, when Player is Vijay Singh?",4, +7879,26169,"What is Sum of Score, when Place is T2, and when Player is Justin Leonard?",4, +7882,26199,"What is the total number of delegate that have 4 counties carries and more than 1,903 state delegates?",4, +7884,26203,"Which Bronze has a Silver of 15, and a Gold smaller than 20?",4, +7886,26205,"Which Gold has a Bronze larger than 1, and a Total larger than 80?",4, +7890,26231,"What is the area km2 of the area with a pop density people/km2 larger than 91, is a member state of Italy, and had less than 58.8 population in millions?",4, +7892,26234,"What is the sum of the pop density people/km2 with a population % of EU of 0.1%, an area % of EU of 0.1%, and has more than 0.5 population in millions?",4, +7904,26277,"How many against have a difference of 6, with a played greater than 19?",4, +7916,26323,"What is the sum of percentage of marine area with an area of territorial waters of 72,144 and exclusive economic zone area less than 996,439?",4, +7926,26358,"What is the sum of Seasons, when the Team is Penske Racing, and when the Date is October 3?",4, +7928,26370,"How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3?",4, +7929,26371,How many France bronze have a gold of more than 1 and a rank of 0?,4, +7930,26372,How many gold have a silver of 1 and a bronze of 0?,4, +7932,26380,In what Season was the Series Formula Renault 3.5 series with less than 7 Races?,4, +7945,26422,"What is the sum of games Played by the Team Vasco Da Gama, with fewer than 12 Against?",4, +7946,26426,How many weeks had the Green Bay packers as opponents?,4, +7947,26429,"How many total innings have an average under 6.33, strike rate under 71.43, balls faced over 36, and smaller than 19 runs scored?",4, +7950,26432,"What is the sum of balls faced associated with a strike rate over 48.28, 3 innings, and an average under 5?",4, +7951,26438,What is the sum of Weeks on Top for the Volume:Issue 34:9-12?,4, +7955,26442,"What FA trophys have tony hemmings as the player, with a league greater than 15?",4, +7968,26488,What's the total points that Scuderia Ferrari with a Ferrari V12 engine have before 1971?,4, +7970,26490,"What is the sum of Year(s), when Postion is 6th, and when Competition is Commonwealth Games?",4, +7977,26513,What is the sum of the earnings for rank 3?,4, +7979,26515,"What is the sum of wins for a rank less than 3, and earnings more than 24,920,665?",4, +7980,26517,"What the total of Week with attendance of 53,147",4, +7985,26528,what year was the opponent caroline garcia?,4, +7987,26530,what year was the memphis event?,4, +7989,26549,How many matches ended with more than 22 points?,4, +8000,26612,What is the sum of all total medals with more than 2 bronze medals and more than 1 gold medal for the United States?,4, +8002,26614,What is the sum of all silver medals with less than 23 medals in total and more than 3 bronze medals for the United States?,4, +8007,26625,What is the total sum of points for songs performed by Partners in Crime?,4, +8009,26646,What is the sum of the pick numbers for the player that went to San Miguel Beermen who played at San Sebastian?,4, +8022,26683,"Which Game has an Opponent of at kansas city chiefs, and an Attendance smaller than 40,213?",4, +8026,26710,WHat is the number of Population has a Density of 50.09 and a Rank larger than 30?,4, +8027,26711,"What is the Density that has a Population larger than 290,458, and an Area of 91.6?",4, +8033,26722,"What is the year of the winner from the army school, plays the halfback position, and has a % of points possible of 39.01%?",4, +8034,26726,"How many were in Attendance on February 21, 1988 against the New Jersey Saints?",4, +8037,26736,What is the sum of the golds of the nation with 5 total and less than 0 bronze medals?,4, +8038,26737,"What is the sum of the gold medals of the total nation, which has more than 19 silver medals?",4, +8049,26788,"What is the sum of 1886(s), when 1886 is greater than 1070, and when 1891 is less than 1946?",4, +8050,26789,"What is the sum of 1891(s), when 1872 is less than 685, and when 1881 is less than 348?",4, +8051,26790,"What is the sum of 1872(s), when 1866 is greater than 856, when 1861 is greater than 1906, and when 1876 is greater than 1990?",4, +8054,26804,How many total Gold medals did the nation ranked #3 receive?,4, +8057,26813,"How many Migration (per 1,000) has a Crude birth rate (per 1,000) of 17.54 and a Natural change (per 1,000) larger than 10.95?",4, +8059,26816,"What is the sum of Games for Allofs, Klaus, with Goals less than 177?",4, +8066,26841,What is the total of wins when the evens is less than 3?,4, +8091,26914,Which issue was the Spoofed title Route 67 for which Mort Drucker was the artist?,4, +8094,26917,"How many losses have corinthians as the team, with an against greater than 26?",4, +8096,26919,"How many positions have 15 for the points, with a drawn less than 3?",4, +8120,27004,"Which Term expiration has an Appointing Governor of george pataki, republican, and an Appointed larger than 2004?",4, +8124,27015,Which Balls Faced has a Average of 39.13 and Runs Scored larger than 313?,4, +8126,27018,How many S.R. that has Runs Scored of 161 and an Average larger than 26.83?,4, +8132,27050,"What is the sum of Races, when Podiums is less than 3, when Wins is 0, when Season is after 2001, and when Points is 32?",4, +8145,27067,What is the amount of fog where the rain is 1 109?,4, +8146,27068,What is the amount of snow where the days for storms are 31?,4, +8156,27084,What is the sum of Game with a Score that is w 104–90 (ot)?,4, +8162,27109,What is the sum of 1938 values where 1933 values are under 68.3 and 1940 valures are under 4.02?,4, +8179,27162,"What is the sum of White (%), when Black (%) is less than 5,8, and when Asian or Amerindian (%) is less than 0,2?",4, +8180,27163,"What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3?",4, +8182,27165,"What is the sum of Asian or Amerindian (%), when Black (%) is 9,7, and when White (%) is greater than 45,7?",4, +8192,27186,"What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP?",4, +8195,27190,"Which Year has a Result smaller than 20.26, and a Location of eugene?",4, +8216,27281,How many Assists for the Player with more than 25 Games?,4, +8220,27286,"In what Year did Chernova come in 1st in Götzis, Austria?",4, +8221,27293,How many rounds had a selection of 165?,4, +8229,27324,How many weeks have w 51-29 as the result/score?,4, +8236,27356,"What is the total number of bronze medals when the silver is greater than 0, and the total medals 5?",4, +8242,27382,"How many weeks have September 14, 2008 as the date?",4, +8243,27392,"What is the sum of Rank that when the Singapore Cup is 0 (1), and the Name is masrezwan masturi?",4, +8244,27412,What is the total lost that has points greater than 8 and a difference of - 8 and a position of greater than 5?,4, +8246,27422,How many losses have a draw greater than 0?,4, +8257,27472,"What is the game 2 sum attendance of the team with a total attendance of 759,997?",4, +8259,27477,Which year had a Score of kapunda 14-13-97 tanunda 5-14-44?,4, +8286,27564,How many top-25s are associated with more than 91 events?,4, +8289,27571,"For how many years did the song ""Lost Without Your Love"" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26?",4, +8290,27574,What is the sum of the Billboard 200 Peak scores after the Year 1971?,4, +8291,27575,What is the sum of the Billboard 200 Peak scores given to the song with the Title Bread?,4, +8295,27580,What is the sum of rank when total is 3 and the nation is Australia?,4, +8296,27584,What issue was the spoofed title Ho-Hum land?,4, +8297,27592,What is the total sum of the goals at competitions with more than 10 draws?,4, +8311,27627,"What is the sum of Goals Against, when Lost is 45, and when Points is greater than 68?",4, +8320,27671,"What is the sum of the points with less goals conceded than 51, larger than position 1, has a draw of 7, and more losses than 5?",4, +8324,27702,"What is the sum of Solidat (c) that's purpose is display type, heavy duty jobs, and a hardness (brinell) is smaller than 33?",4, +8325,27703,"When the Sn/Sb (%) of 13/17, and a Liquidat (c) bigger than 283 what's the solidat (c)?",4, +8331,27726,How many grids had a constructor of renault and less than 4 laps?,4, +8336,27773,What is the sum of attendance for the games played at Los Angeles Rams?,4, +8337,27774,"In which week was the attendance 47,218?",4, +8342,27792,"What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0?",4, +8345,27795,"What is the number of losses when there were 14 matches, and the No Result was larger than 0?",4, +8346,27796,"What is the number of matches when the wins are less than 8, and losses of 7, in 2011?",4, +8347,27817,"What is the sum of Round, when Position is Forward, and when School/Club Team is Western Kentucky?",4, +8348,27824,How many in total were in attendance at games where Chelsea was the away team?,4, +8371,27911,"What is the sum of the ranks for the film, eddie murphy raw?",4, +8403,28005,Where was the place that the downhill was 71.6 and the average was less than 90.06?,4, +8415,28042,"Which Total has a Club of darlington, and a League goals of 13, and a League Cup goals of 1?",4, +8418,28068,"What is the sum of Broadcasts (TV) 1, when Series is ""3 4"", and when US Release Date is ""27 December 2006""?",4, +8426,28118,WHAT IS THE YEAR OF FLOETIC?,4, +8432,28147,How many High schools in the Region with 8 Cemeteries?,4, +8434,28151,"What is the rank for the period of 1973–89, with less than 423 games.",4, +8442,28176,"Which Overall has a College of michigan state, a Position of fb, and a Round larger than 8?",4, +8445,28179,Which Round has a Pick larger than 1?,4, +8449,28183,"What is the sum of the values for N, Laakso-Taagepera, when Largest Component, Fractional Share is 0.35000000000000003, and when Constellation is E?",4, +8450,28184,"What is the sum of the values for Largest Component, Fractional Share, when Constellation is E, and when N, Golosov is greater than 2.9?",4, +8454,28192,"What is the total number of branches when the on-site ATMS is 1548, and the off-site ATMs is bigger than 3672?",4, +8458,28209,"What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846?",4, +8459,28210,What year did Bangkok University and Chunnam Dragons have a score of 0-0?,4, +8460,28219,"Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100?",4, +8462,28221,"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?",4, +8469,28252,"What was the Week number on November 20, 1977?",4, +8472,28259,"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?",4, +8496,28344,"What is the sum of Agriculture, when Regional GVA is greater than 6,584, when Services is greater than 7,502, and when Industry is greater than 1,565?",4, +8497,28345,"What is the sum of Year, when Regional GVA is 6,584, and when Services is less than 5,277?",4, +8506,28370,"What is the sum of Poles, when Season is greater than 2004, and when Podiums is less than 1?",4, +8508,28372,"What is the sum of Poles, when Season is before 2005, when Position is ""2nd"", and when Wins is less than 6?",4, +8510,28381,What is the sum of Altrincham's Points 2 when they had more than 52 Goals For?,4, +8512,28386,Which round was Joe Taylor selected in?,4, +8515,28392,What is the overall sum of round 3?,4, +8516,28395,What is the sum of the pick in round 17?,4, +8517,28398,"What is the sum of Date of Official Foundation of Municipality, when Province is ""Kermān"", when 2006 us ""167014"", and when Rank is less than 46?",4, +8519,28400,"What is the sum of Rank, when Province is Gīlān, when Date of Official Foundation of Municipality is after 1922, and when 2006 is greater than 557366?",4, +8524,28421,what is the react when the country is sweden and the lane is higher than 6?,4, +8525,28431,"What is the sum of Year, when Rank is less than 19?",4, +8526,28432,"What is the sum of Year, when Publication is ""VH1"", and when Rank is greater than 11?",4, +8528,28437,"What is the sum of Round, when Nationality is ""United States"", and when Pick is ""125""?",4, +8534,28448,WHAT IS THE ROUND WITH PICK OF 7?,4, +8535,28449,WHAT IS THE PICK WITH K POSITION AND OVERALL SMALLER THAN 181?,4, +8536,28450,"WHAT IS THE ROUND FROM MICHIGAN COLLEGE, AND OVERALL LARGER THAN 37?",4, +8541,28463,"Which Pick has a Round larger than 1, a School/Club Team of alcorn state, and a Position of defensive back?",4, +8544,28470,"Which Points have a Record of 21–36–9, and an Attendance larger than 14,768?",4, +8549,28479,WHAT IS THE SUM OF RACES WITH 9 POINTS?,4, +8553,28494,What is the sum of the rounds where the overall pick was more than 295 and the pick was smaller than 10 and the player was rich dobbert?,4, +8554,28500,"What is the total of Played where the Goals For is higher than 60, the Lost is 8, and the Position is less than 1?",4, +8559,28510,What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa?,4, +8576,28621,"What is the attendance sum of the game on March 16, 1990 with a loss record?",4, +8577,28623,Which Round has a Pick smaller than 6?,4, +8580,28630,What draft pick number attended syracuse and was drafted by the Carolina panthers?,4, +8585,28649,"What is the total q > 1.4 with a q > 1 less than 7,801,334, and a q > 1.05 greater than 812,499?",4, +8588,28652,"What is the total of q > 1.4 when q > 1.3 is 455, and q >1.2 is less than 3,028?",4, +8590,28657,"What is the sum of Total trade (tonnes) where the Imports are 111,677 tonnes and there are fewer than 129 vessels entering port?",4, +8594,28683,"What is the sum of Poles, when Podiums is 0, and when Races is 17?",4, +8597,28688,For the game against the San Francisco 49ers what was the total attendance?,4, +8598,28707,"What is the sum of Overall, when Round is less than 24, and when College is North Carolina State?",4, +8607,28758,Total points with 114 played and average of 0.982?,4, +8608,28760,"Total average with less than 105 points, 1993-1994 less than 30, and the team of gimnasia y tiro?",4, +8614,28811,Which Zone has a Champion of surozh sudak?,4, +8616,28824,"Can you tell me the sum of Poles that has the Season of 2005, and the Series of formula three sudamericana?",4, +8617,28827,"What is the sum of Game, when Date is 29 January 2008?",4, +8619,28845,"How many Opponents have a Result of win, and Nuggets points smaller than 115, and an Opponent of washington?",4, +8634,28913,"What is the sum of Game, when Attendance is greater than 18,007, and when Opponent is ""Minnesota Wild""?",4, +8636,28916,How many sets lost have a loss smaller than 3 and a rank larger than 1?,4, +8637,28921,What is the Rank of the Nation with more than 1 Gold and a more than 4 Total medals?,4, +8643,28946,"What is the sum of Average, when 2006 is ""36/40"", and when Played is greater than 126?",4, +8646,28967,"What is the sum of the yr plyf of coach ed robinson, who has a G plyf of 0?",4, +8661,29043,What is the sum of the dates in december that were against the atlanta flames before game 40?,4, +8668,29084,"What is the sum of the pick of darryl pounds, who has an overall greater than 68?",4, +8676,29102,"What is the sum for the year with a location of newport, rhode island?",4, +8677,29107,"What is the sum of number of bearers in 2009 for a rank above 1, a type of patronymic, an etymology meaning son of Christian, and the number of bearers in 1971 greater than 45.984?",4, +8683,29139,Which Year has a Community Award of jarrod harbrow?,4, +8687,29159,what is the assists when the club is chicago fire and goals is more than 2?,4, +8695,29177,"Which Year did not qualify for Playoffs, and had a Division smaller than 3?",4, +8702,29212,"How much average Finish has Starts of 9, and a Top 10 smaller than 0?",4, +8707,29229,What's the total number of game that has 377 points?,4, +8709,29231,What is the total number of games that has Juan Carlos Navarro and more than 266 points?,4, +8710,29232,What's the rank of Igor Rakočević of Tau Cerámica with more than 377 points?,4, +8715,29246,"For the 27 arrow match event, what's the sum of all scores for that event?",4, +8718,29251,What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup?,4, +8726,29264,What's the sum of all of ivet lalova's Heat stats?,4, +8733,29283,"What is the total number of races when there was more than 1 pole, and the fastest number of laps was less than 4?",4, +8736,29286,"What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races?",4, +8737,29292,Total overall from penn state?,4, +8741,29316,How many goals when the points 1 is 38 and the played number is less than 42?,4, +8754,29357,what is the sum of the wkts when the ovrs were bigger than 2 and econ was bigger than 7.84?,4, +8755,29358,What is the sum of the runs when the wkts were bigger than 0 and ovrs were smaller than 2?,4, +8764,29373,"What is the sum of the values for Melbourne, when Episode Number Production Number is 19 2-06, and when Sydney is less than 389,000?",4, +8769,29394,How many games total were played against @ Boston Bruins this season?,4, +8775,29426,Sum of m. night shyamalan ranks?,4, +8779,29459,"How many goals for had a drawn more than 12 for the Goole Town team, as well as more than 60 goals against?",4, +8788,29488,"What is the sum for the week with the date october 30, 1994?",4, +8791,29501,"what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?",4, +8796,29507,What district has a democratic leader from Roby?,4, +8801,29512,What's the sum of the number of episodes that originally aired after 1991 with a series number smaller than 21 and a DVD Region 2 release date of 26 march 2012?,4, +8814,29547,What is tony lema's to par?,4, +8819,29559,"Can you tell me the sum of Intake that has the Faith of rc, and the DCSF number larger than 2428?",4, +8823,29565,"How much international mail has a change of +35,7% later than 2008?",4, +8824,29566,"How much international mail has 4,650 international freight and more than 0 domestic mail?",4, +8836,29610,"How many Assists have a Club of adler mannheim, and Points larger than 57?",4, +8837,29611,How many points have 41 assists?,4, +8839,29622,"What is the sum of the years where the attendance was 95,000 and the runner-up was dresdner sc?",4, +8843,29627,"Total for 1994, 1997 years won?",4, +8857,29697,"What is the sum of Year, when Opponent is #3 UCONN?",4, +8868,29762,What is the 2006 sum with a rank 1 and more than 6758845 in 1996?,4, +8874,29781,Which Game has a Record of 27–30?,4, +8876,29790,"what is the goals when the goal difference is more than -3, the club is real avilés cf and the goals against is more than 60?",4, +8878,29792,what is the played when the wins is 21 and the positions is higher than 3?,4, +8879,29793,"What is the sum of Week, when Date is December 2, 2001?",4, +8882,29805,"What is the sum of To Par, when Player is ""Bob Rosburg""?",4, +8890,29870,How many seats does leader Raymond McCartney have?,4, +8892,29883,"What is the sum of Game(s), when High Rebounds is ""Pierson (6)""?",4, +8894,29888,How many Laps does GP Motorsport Team have?,4, +8898,29898,"How many ranks have $1,084,439,099 as the worldwide gross?",4, +8906,29922,"What is the sum of December, when Game is greater than 31, and when Score is ""5 - 2""?",4, +8914,29942,"Which Games lost has Points against of 61, and Points difference smaller than 42?",4, +8916,29948,"Which Attendance has a Date of december 22, 1985, and a Week smaller than 16?",4, +8920,29971,What is the scored figure when the result is 40-22?,4, +8923,29976,What is the Jersey Number of the Player from Clemson?,4, +8947,30105,"What is the sum of Round, when Record is ""19-25-5""?",4, +8949,30119,How many picks had a round smaller than 6 and an overall bigger than 153?,4, +8953,30126,"What is the sum of t (µm), when Technology is MJ?",4, +8957,30161,How many years have an Opponent in the final of welby van horn?,4, +8963,30174,"What is the sum of Silver, when Total is less than 1?",4, +8965,30189,"Which Grid has Laps of 24, and a Rider of marco melandri?",4, +8971,30205,What is the sum of the rounds where the draft pick came from the college of tennessee and had an overall pick number bigger than 153 and a pick less than 14?,4, +8985,30254,"What is the sum of Pick #, when College is Laurier?",4, +8989,30268,"What is the number of the game when the opponent was the New York Islanders, and a February less than 24?",4, +8997,30296,"What is the sum of October, when Opponent is ""Pittsburgh Penguins""?",4, +8998,30297,"What is the sum of Game, when Record is ""2-1-1"", and when October is less than 21?",4, +9000,30308,What is the total rank of Hungary (HUN) when the bronze medals were less than 0?,4, +9005,30333,"What is the sum of Gold, when Silver is greater than 6, when Rank is 1, and when Bronze is less than 61?",4, +9009,30341,What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen?,4, +9017,30396,WHAT IS THE LOSS WITH AN AVERAGE OF 89.9?,4, +9030,30438,"What is the sum of To Par, when Year(s) Won is ""1978 , 1985""?",4, +9039,30492,"How many races had 4 podiums, 5 poles and more than 3 Flaps?",4, +9051,30513,"What is the sum of Runners-Up, when Champions is greater than 5?",4, +9057,30519,What is the total for the team with more than 2 golds and more than 0 bronze?,4, +9059,30523,What is the total of laps with grid of 2,4, +9061,30525,What is the total laps when manufacturer of gilera has time of 40:19.910 and grid is larger than 3?,4, +9063,30527,"What is the sum of 3rd Throw, when Result is greater than 546, and when 1st Throw is less than 9?",4, +9065,30530,what is the rank when the time is 3:12.40?,4, +9066,30531,what is the rank when the heat is more than 4?,4, +9069,30541,What was the total score where Toronto was played?,4, +9076,30572,The player Cecil Martin with an overall less than 268 has what total pick?,4, +9078,30581,What is the sum of the years with bus conner as the BSU head coach?,4, +9079,30592,"What is the pick of Charley Taylor, who has an overall greater than 3?",4, +9089,30605,How many people attended the green bay packers game?,4, +9098,30641,What's the diameter when longitude is 105.0e before 2003?,4, +9105,30648,In what year was Lesli Margherita nominated?,4, +9109,30679,"Which Points 2 has Drawn of 15, a Position larger than 20, and a Goals For smaller than 45?",4, +9111,30681,"Which Points 2 has a Goal Average 1 larger than 1.17, a Goals Against larger than 48, and a Position larger than 6?",4, +9113,30687,What was the sum of the rounds for the player who had a position of LS and an overall draft pick bigger than 230?,4, +9118,30697,"Can you tell me the sum of Grid that has the Time of +6.355, and the Laps larger than 23?",4, +9124,30719,"What is the sum of share with a rating larger than 1.2, a 3 rank timeslot, and 6.07 million viewers?",4, +9129,30725,what is the round when the college is north carolina and the overall is more than 124?,4, +9135,30768,"WHAT IS THE SUM OF PICK WITH AN OVERALL LARGER THAN 250, AND FOR FLORIDA COLLEGE?",4, +9137,30775,How many runs did mahela jayawardene and thilan samaraweera have?,4, +9150,30807,What was the sum of attendance for games with a time of 3:23?,4, +9155,30851,What is the sum of the attendance where the score was 1:1?,4, +9164,30897,What is the sum of Preliminary scores where the interview score is 9.654 and the average score is lower than 9.733?,4, +9165,30898,What is the sum of Swimsuit scores where the average score is 9.733 and the interview score is higher than 9.654?,4, +9166,30899,What is the sum of Evening Gown scores where the swimsuit score is higher than 9.4 and the average score is lower than 9.733?,4, +9172,30912,What is the sum of the gold medals for the nation of Great britain who had more than 8 silvers and a total of less than 61 medals?,4, +9190,30977,"What is the sum of All-Time, when Amateur Era is less than 0?",4, +9204,31024,How many grids did Shinichi Nakatomi ride in?,4, +9205,31034,What is the sum of value for average finish with poles less than 0?,4, +9214,31087,What is the position when the points 1 is 61?,4, +9223,31115,"What is the sum of Year, when Role is ""himself"", and when Notes is ""celebrity guest alongside yg family""?",4, +9225,31118,"What is the sum of Year, when Title is ""Mnet Director's Cut""?",4, +9226,31124,what is 2011 when the rank is less than 8 and the water park is ocean world?,4, +9231,31162,"If the player is Corey Pavin when he had a To par of over 7, what was the sum of his totals?",4, +9245,31205,"What is the sum of Population, when Markatal is greater than 48, when Inhabitants Per Km² is greater than 24, and when Municipality is Runavík?",4, +9246,31206,"What is the sum of Markatal, when Inhabitants Per Km² is less than 13, and when Area (in Km²) is 27?",4, +9248,31208,"How many Wins have Losses larger than 2, and an Against of 73.3?",4, +9249,31209,In what Year was the Game on September 26?,4, +9263,31281,"How many total goals did the squad with 2 playoff apps, 2 FA Cup Apps, and 0 League Cup goals get?",4, +9266,31293,What was the score of the golfer from the united states who had a To par of e?,4, +9277,31335,"What is the sum of Pick #, when Position is Guard, and when Round is greater than 2?",4, +9283,31349,what is the total made with a 3pm-a of 5-5 and a total attempted less than 14,4, +9286,31352,"What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier?",4, +9289,31364,"What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins?",4, +9296,31397,Which Round has a Pick of 25 (via hamilton)?,4, +9298,31415,"If the goals scored were below 6, 11 games were played, and there were 7 assists, what's the sum of points with games meeting these criteria?",4, +9308,31489,"What is the number of goals when the goal difference was less than 43, and the position less than 3?",4, +9313,31497,"What is the sum shot % when the country is finland, and an ends lost is larger than 49?",4, +9318,31506,Which League Cup has a Scottish Cup larger than 69?,4, +9321,31510,"What is the sum of the round of the new york jets NFL club, which has a pick less than 166?",4, +9323,31543,"What is the sum of revenue in Hong Kong with a rank greater than 42, less than $3.46 billion in assets, and greater than $0.17 billion in profits?",4, +9324,31544,What is the sum of revenue for the banking industry with a Forbes 2000 rank under 53?,4, +9328,31548,How many Sri Lankans were admitted in 2004 when more than 594 Nepalis were admitted?,4, +9335,31562,"What is the sum of Blks, when Stls is 1, and when Rebs is greater than 8.6?",4, +9337,31566,How many picks had less than 11 rounds and a player of Charley Casey?,4, +9338,31567,How many rounds had a position of kicker?,4, +9344,31584,"What is the sum of To Par, when Country is ""United States"", and when Year(s) Won is ""1973""?",4, +9345,31601,"What is the sum of Points, when Home is ""Pittsburgh"", when Date is ""December 21"", and when Attendance is greater than 5,307?",4, +9349,31612,What is the 2008 population in 함흥 (Ham Hyung)?,4, +9350,31620,What was the lead margin when Schweitzer had 55% and Jones had 2%?,4, +9356,31639,What is the points when played is less than 38?,4, +9364,31698,"On what Date did Columbia release the Track ""Do it again""?",4, +9377,31765,"What is the sum of Points 1, when Team is ""Gainsborough Trinity"", and when Played is greater than 46?",4, +9389,31823,What is the rank for less than 6 plays?,4, +9404,31932,"Which Bronze has a Silver larger than 1, a Total larger than 3, a Nation of turkey, and a Gold smaller than 2?",4, +9407,31935,"In what Weeks is the game against the Tampa Bay Buccaneers with less than 44,506 in Attendance?",4, +9411,31959,Which OWGR pts has Dates of may 10-13?,4, +9432,32039,"What is the total round when DB was the position, and the pick less than 21, and Jeff Welch as the name?",4, +9436,32044,"WHAT IS THE SUM OF PICK FOR DAVID TERRELL, WITH A ROUND SMALLER THAN 7?",4, +9444,32068,"Which Pick has a Round larger than 8, a Name of kenny fells, and an Overall larger than 297?",4, +9445,32070,Which Overall has a Name of markus koch?,4, +9448,32084,How many times did Sham Kwok Fai score in the game that was played on 22 February 2006?,4, +9459,32122,What is the sum of the heights in meters for the commerzbank tower built after 1984?,4, +9465,32142,"What is the 1989 number when the 200 number is less than 52.8 in Arizona, New Mexico, and Utah",4, +9467,32144,"What is the 2000 number when the 1969 is 54.3, and the 1979 is less than 48.4?",4, +9468,32145,"What is the 2000 number when the 1989 is less than 54.9 in Arizona, New Mexico, and Utah?",4, +9469,32146,What is the 1979 number for Standing Rock Indian Reservation when the 1989 is less than 54.9?,4, +9471,32149,"Can you tell me the sum of Grid that has the Manufacturer of aprilia, and the sandro cortese?",4, +9472,32152,"What is Sum of Round, when College/Junior/Club Team is Brandon Wheat Kings ( WHL ), when Player is Mike Perovich (D), and when Pick is less than 23?",4, +9473,32153,"What is the sum of Round, when Player is Tim Hunter (RW), and when Pick is less than 54?",4, +9483,32221,How many total games were played against @ St. Louis Hawks this season?,4, +9494,32277,"Which week had an attendance of 55,158?",4, +9509,32308,"Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰?",4, +9510,32309,"Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?",4, +9524,32367,"What is International Trade (Millions of USD) 2011 when 2011 GDP is less than 471,890 and UN budget of 0.238% and GDP nominal less than 845,680?",4, +9541,32449,"what is the winter olympics when the country is soviet union and holmenkollen is 1970, 1979?",4, +9545,32456,What is the sum of speed in km per hour reached by John Egginton?,4, +9550,32464,What is the total of rebound averages with more than 98 games and a rank of 7?,4, +9554,32487,What is the number for the interview in Illinois when the preliminary is less than 8.558?,4, +9569,32546,"Which Silver has a Rank of 1, and a Total smaller than 11?",4, +9571,32583,"What is the sum of Total, when Player is ""Tommy Bolt""?",4, +9574,32594,What year was the team Club of atlético de san juan fc who plays at hiram bithorn stadium founded.,4, +9580,32609,"Which season was there a game with the score of 1:3 played at the venue of national stadium, maldives?",4, +9583,32622,"Name the Pick # which has a Position of lb, and a CFL Team of winnipeg?",4, +9584,32623,"WHAT IS THE SUM OF ATTENDANCE FOR DETROIT, WHEN POINTS ARE LARGER THAN 33?",4, +9589,32630,"What is the sum of Year, when Result is 9th?",4, +9591,32640,What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34?,4, +9593,32648,Can you tell me the sum of Loss that has the Gain of 2646?,4, +9594,32649,"Can you tell me the sum of Gain that has the Name of kass, rob, and the Avg/g smaller than 1.9?",4, +9597,32654,What kind of Crowd has a Ground of subiaco oval?,4, +9599,32677,"What is the sum of Game, when High Points is ""D. McKey (24)"", and when Team is ""@ Dallas Mavericks""?",4, +9601,32683,What is the total population for Saint-Antoine with an area squared of 6.43?,4, +9602,32685,How many games in February have a record of 40-15-5?,4, +9604,32687,How many games have the New York Islanders as an opponent before February 7?,4, +9611,32748,What is the total number of years in which Eiza González had a nominated work in the category of solista favorito?,4, +9613,32755,What number game was it that the Spurs were @ Miami?,4, +9625,32820,"What was the Attendance on December 21, 1986 before Week 16?",4, +9633,32852,"In what Week was the Attendance 39,923?",4, +9649,32954,"Which Joined has a Nickname of knights, and an Enrollment larger than 2,960?",4, +9651,32960,"What is the sum of Crowd, when Date is Sunday, 4 March, and when Home Team Score is 22.13 (145)?",4, +9658,32988,"What is the sum of Wins, when Played is less than 5?",4, +9660,32990,"What is the sum of Wins, when Team is Sweden, and when Played is less than 5?",4, +9667,33031,What is the total number of weeks that the buffalo bills played against the San Diego Chargers?,4, +9668,33033,"How many weeks were there games with 41,384 fans in attendance?",4, +9670,33042,What is the total of attendance at Venue h when Auxerre were playing?,4, +9672,33052,"what is the position when lot is less than 14, goal difference is +1 and drawn is more than 15?",4, +9677,33067,"How many picks have charley sanders as the name, with a round greater than 22?",4, +9682,33072,What is the Attendance of the game against the Florida Panthers?,4, +9683,33077,"What is the sum of Game, when Date is ""Wed. Nov. 14""?",4, +9691,33116,What is the sum of the game numbers for games with less than 30 points?,4, +9695,33125,"What is the sum of Capacity, when Team is ""Denizlispor""?",4, +9700,33144,What is the average when interview is 9.465 and evening gown is less than 9.454?,4, +9709,33185,What is the Place of the couple with a Rank smaller than 7 and 514.55 Points?,4, +9710,33186,"What is the total Lane with a Mark of 47.02, and a Heat higher than 5?",4, +9713,33196,"Which Pick has a Name of ed hickerson, and a Round smaller than 10?",4, +9731,33236,"what is the sum of drawn when points is less than 15, lost is 8 and position is more than 6?",4, +9741,33297,What was sweden's purse in USD?,4, +9747,33305,How many seats were up for election during the vote where the election result was 9 and the new council 27?,4, +9751,33312,"what is 2001 when the year is ebitda and 2009 is less than 3,600?",4, +9753,33317,what is the year when the citation is honor and the author is kadir nelson?,4, +9755,33325,"What is the sum of Bronze, when Gold is less than 1, when Total is greater than 1, and when Rank is 10?",4, +9757,33327,"What is the sum of Total, when Silver is greater than 1, when Rank is 9, and when Bronze is greater than 0?",4, +9759,33329,"What is the sum of Rank, when Bronze is less than 1, when Nation is Switzerland (SUI), and when Total is less than 2?",4, +9760,33330,"What is the sum of Total, when Silver is greater than 1, when Nation is Germany (GER), and when Gold is less than 1?",4, +9765,33343,"How many Laps have Rider of olivier jacque, and a Grid larger than 7?",4, +9773,33384,How many total rounds used the submission (choke) method?,4, +9778,33412,What pick was used to select a Defensive End in round 8?,4, +9779,33418,"What is the sum of the number played with more than 5 losses, more than 1 draw, and a position under 8?",4, +9781,33420,What is the sum of points for a position over 5 with more than 2 draws?,4, +9784,33434,"What is the total for the draw with 0 points, and less than 14 lost?",4, +9785,33436,What is the sum of the game with the boston bruins as the opponent?,4, +9788,33443,"How many starts had an avg start of less than 37 and won $1,636,827?",4, +9791,33446,"in 2007, what is the avg finish that had a start less than 1?",4, +9792,33456,What was the year of the finish with the class pos of 6th and laps smaller than 317?,4, +9809,33556,"How many Points have a Home of pittsburgh, and a Score of 1–7?",4, +9812,33591,what is the crude birth rate (per 1000) when the live births 1 is 356 013?,4, +9815,33621,What is the sum of the weight of the race with a 1st pos'n and a 8f distance?,4, +9819,33630,What is the population of Chimbote?,4, +9822,33650,"How many Dates have a Score in the final of 6–4, 6–2?",4, +9825,33664,How many matches were played that resulted in less than 59.1 overs and a 6.78 Economy rate?,4, +9832,33686,"How many rounds have picked smaller than 220, with Alford Turner as a player?",4, +9834,33688,What is the total pick with Bill Duffy?,4, +9835,33689,What is the total round with pick of 109?,4, +9840,33719,"What is the total Col (m) when the Prominence (m) is less than 4,884, and India / Burma is the location?",4, +9845,33753,How many losses did ev bruckberg have when the drawn was more than 1?,4, +9854,33827,What is the sum of the attendance on November 24?,4, +9857,33837,What is the sum of FA Cup goals when there are 19 league goals?,4, +9866,33883,"How many Seats 2005 has a Percentage in/de-crease of 50.0%, and a Governorate of dhi qar governorate, and a In/de-creased by larger than 6?",4, +9874,33903,"Name the Wins which has a Class of 350cc, and a Year smaller than 1973?",4, +9876,33910,What was the Overall number for the player with a position of C and a round greater than 7?,4, +9885,33943,How many times have Central Crossing won the OCC Championship?,4, +9888,33957,How many attended during the game with a score of 80-94?,4, +9889,33970,What is the Sets+ for Team unicaja almería where the Sets- were less than 21 and the Points+ were less than 1497?,4, +9892,33984,What is the sum of the games before January 19 with a 27-6-6 record?,4, +9895,34022,what is the year when the driver was kevin lepage?,4, +9902,34045,"What is the sum of November, when Game is greater than 23?",4, +9903,34046,"What is the sum of November, when Game is ""17""?",4, +9913,34098,What is the sum of To par when the Finish is t11?,4, +9921,34136,What pick in round 5 did the 49ers pick Jim Pilot?,4, +9924,34157,"How many codes have a density of 621.68, and a Land area (hectares) larger than 75.28?",4, +9928,34177,What's the sum of all values in category 1 when category 3 is equal to 300?,4, +9941,34247,What was the tie number for the round against visiting opponent Chelsea?,4, +9942,34252,What is the total of events when the tournament was U.S. Open and the Top-25 was less than 1?,4, +9943,34253,How many total wins have 3 as the Top-35 and less than 5 cuts made?,4, +9946,34256,What is the total Top-25 when the events were less than 0?,4, +9957,34324,"What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández?",4, +9958,34327,What day in February had an opponent of @ Colorado Rockies?,4, +9967,34361,What's the total sum of points scored by the Brisbane Broncos?,4, +9974,34380,COunt the sum of Diameter (km) which has a Latitude of 62.7n?,4, +9980,34428,"Can you tell me the sum of Starts that the Winnings of $139,774, and the Wins smaller than 0?",4, +9984,34439,"What is the sum of Money ($), when Score is 70-71-70-69=280?",4, +9995,34496,What was the number of the game against Charlotte?,4, +10009,34559,What is the overall sum of the game with a pick less than 8 from the college of western michigan?,4, +10011,34570,"When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share?",4, +10012,34572,"What is the total net profit when earnings per share is 27.4, and profit/loss befor tax was smaller than 194.6 million?",4, +10017,34577,"When the Runners-Up is larger than 0, what's the sum of winners?",4, +10022,34617,"What is the sum of the total As of team bucheon sk, who had the chunnam dragons as their opponent at the bucheon venue?",4, +10023,34618,What is the sum of the assists kang jae-soon had in the k-league competition in ulsan?,4, +10024,34619,What is the sum of the goals on 2007-06-16?,4, +10026,34634,In what Round was OL Player Richard Zulys picked?,4, +10027,34640,What pick was a player that previously played for the Minnesota Lynx?,4, +10029,34645,WHAT IS THE SUM OF AST AVG WITH RANK 5 AND GAMES BIGGER THAN 108?,4, +10033,34665,"What is the sum of the positions for the player who had less than 25 losses, a goal difference of +20, 10 draws, and played less than 42?",4, +10048,34703,How many Silver medals did the Nation ranking 8 with more than 1 Total medal but less than 1 Gold receive?,4, +10049,34706,"In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?",4, +10055,34714,What is the total for the team with 0 bronze and 3 silver?,4, +10061,34729,"What is the sum of Points, when Equipment was ""Zabel-BSU"", and when Position was 42?",4, +10068,34794,"What is the sum of # Of Candidates, when # of Constituency Votes is less than 25,643,309, when Leader is Masayoshi Ōhira, and when Election is before 1979?",4, +10074,34830,What was the number of the game played on February 24?,4, +10077,34841,"What is the total wins with less than 2 ties, 18 goals, and less than 2 losses?",4, +10086,34891,What is the sum of the areas for populations of 542?,4, +10088,34906,Sum of cuyo selection as the opposing team?,4, +10091,34910,"Give the sum of the version with the coptic small letter sampi, and a year after 2005.",4, +10092,34911,What is the year that has a name with the Greek small letter sampi?,4, +10093,34919,What was the total for the golfer who had a To par of +10 and year won of 1971?,4, +10111,34992,What's the int'l student review that has the 2010 QS Rank of none?,4, +10117,35009,"What is the sum of Played, when Losses is ""13"", and when Position is greater than 11?",4, +10120,35014,What day in March is the game with a 48-13-11 record and a game number less than 72?,4, +10122,35028,"What is the sum of Round(s), when Method is ""Submission (Banana Split)""?",4, +10142,35125,How many totals have a To par of –1?,4, +10146,35151,A total larger than 302 and playoffs of 35 also list the total of regular seasons as what?,4, +10158,35190,"What is the sum of Races, when Series is Toyota Racing Series, and when Podiums is greater than 3?",4, +10166,35218,"How much Overall has a Position of wr, and a College of alberta?",4, +10184,35308,Which Round has a Player of damon jones?,4, +10189,35344,What is the total number in class for the Whitehaven Coal?,4, +10193,35353,COunt the silver that has a Bronze smaller than 1?,4, +10200,35369,On which week was the opponent the oakland raiders?,4, +10201,35371,"How many people are enrolled in platteville, wi?",4, +10202,35385,what is the lost when played is less than 42?,4, +10204,35388,"what is the position when the points 1 is less than 36, goals for is less than 40 and drawn is less than 9?",4, +10206,35410,How many weeks had a Result of w 20–6?,4, +10208,35413,"WHAT ARE THE RACES WHEN FLAPS ARE ZERO, PODIUMS ARE LARGER THAN 0, SEASON IS 2008, AND POLE SMALLER THAN 1?",4, +10216,35451,What number of wins was ranked higher than 5?,4, +10217,35456,How many people were in the crowd when the away team scored 17.17 (119)?,4, +10219,35462,"How many goals were scored on November 22, 1994?",4, +10229,35478,What was Scott Riggs points when he had more than 400 laps?,4, +10239,35513,How many people attended when the away team was Richmond?,4, +10240,35515,What's the sum of the attendance for the calgary home team?,4, +10241,35520,What is the sum of Crowd when the away team scored 8.12 (60)?,4, +10245,35532,"When the laps are 31 and the constructor was honda, what's the sum of all grid values?",4, +10263,35624,How many Golds did the country with a Rank better than 5 and more Bronze than 1 receive?,4, +10265,35626,"When the Total is less than 1, and Bronze is 0, how many Gold medals are there?",4, +10275,35651,"What year was the role nan taylor, alias of nan ellis, aka mrs. andrews and directed by William keighley?",4, +10277,35657,What is the sum of all ratings at a weekly rank of 10 and a share less than 11?,4, +10285,35693,How many people attended Melbourne's away game?,4, +10288,35719,What is the 1st week sales for the album finding forever before the number 6?,4, +10290,35723,How many laps did Jo Bonnier driver when the grid number was smaller than 11?,4, +10291,35724,How many laps were there when time/retired was gearbox?,4, +10292,35725,How many were in attendance at the game where the visiting team was the Jazz?,4, +10295,35738,How many total wins with the latest win at the 1999 Italian Grand Prix at a rank of 15?,4, +10300,35752,I want to know the sum of fa cup goals for david mirfin and total goals less than 1,4, +10301,35757,What is the sum of channels for qubo network?,4, +10313,35809,What was the total number of years than had best improved singer (躍進歌手)?,4, +10332,35893,Tell me the sum of gold for bronze less than 0,4, +10333,35905,How many times has Watney made the top 25 for a tournament in which he as also been cut 6 times?,4, +10343,35937,"With a Type of 4-6-4t, what is the sum Withdrawn?",4, +10344,35940,What was the issue price in the year 2008?,4, +10350,35953,What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5?,4, +10354,35980,"Can you tell me the sum of Swing to gain that has Constituency of caithness, sutherland and easter ross?",4, +10370,36044,What is the combined crowd in Vancouver on may 22?,4, +10371,36047,How many caps for mike macdonald?,4, +10378,36079,How many attended the game on 12/17 with stephen jackson as the leading scorer?,4, +10382,36090,How many laps did innes ireland drive with a grid higher than 11?,4, +10386,36125,"How many wins did SD Eibar, which played less than 38 games, have?",4, +10389,36128,What is the number of played games a club with more than 71 points and less than 8 losses has?,4, +10398,36149,Name the sum of Long for yards less than 197 and players of matt nagy,4, +10405,36178,How many championships did the team or teams established in 1976 win?,4, +10409,36187,"There is a building at 800 Boylston Street, how many floors does it have?",4, +10413,36192,How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2?,4, +10435,36283,What is the total pick numbers for the CFL team Edmonton Eskimos?,4, +10436,36285,What is the total number of picks for the position of OL?,4, +10474,36441,On what date did Epic label start its release?,4, +10475,36443,Which game did Curtis Borchardt play with more than 274 rebounds?,4, +10476,36447,Which game did Bruesa GBC play in with fewer than 275 rebounds that is ranked less than 4?,4, +10480,36453,What is the rank for the player with 5 wins and under 32 events?,4, +10482,36455,"What is the rank for the player with over 2 wins and under $1,162,581 in earnings?",4, +10483,36465,"What is the 1930 population when the 2006 est. is less than 44,726 in the county of frio?",4, +10485,36467,Tell me the sum of wins for top 5 less than 1,4, +10489,36471,What was the Attendance on April 28?,4, +10493,36509,What is the top speed of the model 1.8 20v t?,4, +10497,36535,What is the average crowd size for an away team with a score of 14.2 (86)?,4, +10500,36561,"How many events for orville moody, ranking below 3?",4, +10507,36587,what is the grid when the time/retired is 1:46:42.3?,4, +10509,36593,What is the grid total for cars that went 17 laps?,4, +10516,36623,How many yards for the player with 20 solo tackles and under 0 TDs?,4, +10523,36643,I want the sum of Laps with Grid less than 11 for jean-pierre jarier,4, +10526,36655,"What is the number played for the Barcelona B club, with wins under 11?",4, +10529,36658,What is the Crowd number for the Away team of Richmond?,4, +10540,36692,What was the total Attendance for Games while Chicago was the visiting Team?,4, +10543,36750,"In the game at Victoria Park, what was the number of people in the crowd?",4, +10546,36782,How many Drawn did Coach Francis Cummins have with less than 4 Lost?,4, +10569,36911,"What is the rank of Lee Trevino, who had less than 27 wins?",4, +10572,36917,What is the total End term with a Title of prince regent of bavaria?,4, +10581,36931,"What is the lap total for george eaton, with a grid under 17 retiring due to gearbox?",4, +10582,36932,How many laps for denny hulme with under 4 on the grid?,4, +10583,36934,What is the sum of the crowd when the away team score was 12.11 (83)?,4, +10584,36936,What is the sum of Crowd when Essendon was the home team?,4, +10586,36945,What is Mark Grieb's average when his TDs are smaller than 2?,4, +10587,36946,What is Craig Whelihan's average when his yards are smaller than 0?,4, +10595,36967,"In the tournament of HSBC Champions, what was the sum of the Starts with Wins lower than 0?",4, +10597,36972,Which Total has a Gold smaller than 0?,4, +10601,36977,"How many Poles have Drivers of juan cruz álvarez, and FLaps larger than 0?",4, +10610,37024,What is the points for a team with more than 9 wins and more than 40 goals?,4, +10626,37092,What is the sum of people in attendance on September 8?,4, +10628,37104,In what Year was the Rank 14.0 14?,4, +10630,37110,How many people watched the game at Lake Oval?,4, +10635,37127,"What is the grid total that had a retired for engine, teo fabi driving, and under 39 laps?",4, +10639,37132,What is the evening gown score where the interview score is 9.22 and the preliminaries are larger than 9.057?,4, +10642,37136,"How many 5K wins did Lynn Jennings, who had more than 0 10K wins, have?",4, +10644,37138,"How many 5K wins did Emily Chebet, who had more than 2 total, have?",4, +10648,37151,Name the sum of gross tonnage for wood on date more tahn 1846 for comissioned and ship of esk,4, +10649,37152,Tell me the sum of Gross Tonnage for isis ship on date commisioned less than 1842,4, +10659,37211,What is the sum of the stages for category 1 races after the year 2003?,4, +10667,37230,Which Grid did Alain Prost drive on?,4, +10670,37251,What is the total of a crowd with an Away team score of 8.17 (65)?,4, +10688,37323,How many people were in the crowd when the away team was north melbourne?,4, +10689,37326,"When was the first HC climb which, more recently than 2012, had more than 1 HC climbs, more than 29 times visited?",4, +10701,37396,Name the sum of long for avg more than 9.8 with rec less than 5 and yards less than 20,4, +10702,37397,Name the sum of long for avg less than 6 and rec less than 2,4, +10707,37404,Tell me the sum of number of jamaicans given british citizenship for 2004 and registration of a minor child more than 640,4, +10709,37429,How many laps did the grid 1 engine have?,4, +10723,37457,What is the 1995 value with a Jiangxi year and a 2008 value bigger than 67?,4, +10725,37459,"What is the 1995 value with a 2005 value bigger than 74, a 2008 value of 84, and a 2000 value less than 80?",4, +10730,37498,"What was the Attendance when the Home team was Montreal, on the Date of March 24?",4, +10733,37507,I want to know the sum of points with a previous rank of 3,4, +10734,37509,Tell me the sum of rank for australia when points are less than 79,4, +10737,37516,What is the bodyweight for the player with a clean & jerk of 82.5 and total smaller than 152.5?,4, +10738,37527,How many draws feature artist wendy fierce?,4, +10740,37537,"What is the premiere rating for a Chinese title of 野蠻奶奶大戰戈師奶, and a Peak smaller than 41?",4, +10745,37590,"For Laps smaller than 6, what does the Grid add up to?",4, +10747,37598,What is the purse total for the royal caribbean golf classic?,4, +10751,37625,What is the total points when there is a refusal fault and the rider is H.R.H. Prince Abdullah Al-Soud?,4, +10755,37643,"What's the sum of the population for the place simplified 上杭县 with an area smaller than 2,879?",4, +10762,37655,What is the Enrollment where Cougars is a Mascot?,4, +10766,37665,"what is the sum of games played when the losses is less than 7, the wins is 6 and the goals for is more than 76?",4, +10768,37667,what is the sum of wins for the ottawa hockey club when the games played is less than 10?,4, +10769,37668,"How many people attended the game on February 3, 2008?",4, +10772,37675,What is the sum of goals scored in regular league play by Mustoe where he scored 0 goals in the League Cup?,4, +10775,37681,How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)?,4, +10792,37746,What year was there a category of Best Supporting Actress?,4, +10807,37788,what is the grid when the laps is more than 20?,4, +10813,37832,What's the sum of the games that had paul (9) for high assists?,4, +10819,37854,What is the number of the grid when there was a Time/Retired of engine and less than 9 laps?,4, +10846,37928,What is the total where the nation is South Africa (rsa) and bronze is less than 1?,4, +10861,37976,How many carries for jeff smoker?,4, +10867,38015,"What is the sum of the Bronze medals when the Gold medals are larger than 0, Silver medals are smaller than 1, and the total is smaller than 1?",4, +10875,38035,What is the total round with an overall of 199 with sweden?,4, +10878,38049,How many medals for spain with 1 silver?,4, +10887,38098,"How many genes have a Species of leptospira interrogans, and a Base Pairs smaller than 4,277,185?",4, +10888,38101,What is the sum of draws with 274-357 goals?,4, +10898,38130,"What is the total share with Timeslot of 8:30 p.m., anAir Date of march 27, 2008, and a Rank greater than 65?",4, +10909,38188,Tell me the sum of draws for position less than 15 with played more than 38,4, +10910,38189,Name the sum of played for position less than 9 and draws more than 19 with goals against more than 27,4, +10927,38271,what is the total of floors when the name is kölntriangle and rank is less thank 63?,4, +10930,38281,"What was the total for David O'Callaghan, and a Tally of 1-9?",4, +10932,38285,What is the sum of the weeks on a chart a song with a position less than 1 haas?,4, +10936,38307,"What is the total share for an episode with an air date of November 19, 2007?",4, +10944,38341,What is the total GNIS Feature ID with a County of idaho?,4, +10951,38358,Which round was Mike Peca (C) of Canada selected in?,4, +10953,38361,What is the sum of laps for grid 20?,4, +10955,38363,"what was the score of the parallel bars with a floor exercise score more than 9.137, vault more than 9.5 and horizontal bar of 9.225?",4, +10959,38371,How many TDs for the player with a long of less than 4 and under 8 yards?,4, +10971,38394,How many people attended the game that resulted in an away team score of 18.17 (125)?,4, +10983,38436,"What is the 1978 Veteran membership with a late 1941 macedonia and a late 1943 less than 10,000?",4, +10987,38463,"How many wins did Hale Irwin get with earnings smaller than 20,592,965?",4, +10989,38466,How many laps were driven in 2:54:23.8?,4, +10992,38480,"What draw for ""ljubav jedne žene"" with under 153 points?",4, +10997,38508,"How big was the crowd size, at the Junction Oval venue?",4, +11007,38543,what is the tie no when the away team is solihull moors?,4, +11010,38560,Tell me the sum of round for record of 6-3,4, +11012,38564,How many total units were built of Model ds-4-4-660 with a b-b wheel arrangement and a PRR Class of bs6?,4, +11015,38569,What is the population total for saint-wenceslas with a region number of under 17?,4, +11046,38674,What is the total amount of grid when the laps amount was smaller than 68 and the time/retired was injection?,4, +11052,38703,what is the rating when the rank (timeslot) is less than 3 and the rank (night) is less than 8?,4, +11054,38708,What is the total audience on may 28?,4, +11056,38710,"How many allsvenskan titles did club aik have after its introduction after 2000, with stars symbolizing the number of swedish championship titles ?",4, +11063,38723,"When the club is flamengo in the 2009 season, and they scored more than 0 goals, what's the sum of the Apps?",4, +11071,38763,In what grid did Richard Robarts make 36 laps?,4, +11072,38764,How many laps were completed in grid 18?,4, +11084,38796,what is the points for rank 12?,4, +11086,38806,What is the Crowd number for the Away team whose score is 14.18 (102)?,4, +11093,38840,"What was the long of Trandon Harvey who had an greater than 8 average, more than 3 rec., and more than 28 TD's?",4, +11094,38841,How many attended tie number 1?,4, +11096,38846,"What is the sum of Year with a Type of informal, and a Location with justus lipsius building, brussels, and a Date with 23 may?",4, +11097,38853,"What is the total of yards when asst. is 19, totaltk is 60 and sack is more than 0?",4, +11098,38854,what is the total sack for mike green when fumr is less than 0?,4, +11099,38855,what is the total sack when totaltk is 1 and asst. is more than 0?,4, +11101,38857,what is the sum of totaltk when yards is less than 0?,4, +11110,38884,"How many total viewers for ""the summer house""?",4, +11113,38890,What is the total year with a Position of 12th?,4, +11115,38893,What is the grid total for david coulthard?,4, +11125,38923,I want the sum of year for mark barron,4, +11129,38938,"What is the sum of the average of Hawaii, with an interviewer larger than 9.636?",4, +11131,38940,What is the sum of swimsuit with an evening gown of 9.773 and average larger than 9.674?,4, +11138,38977,What is the sum of laps for Derek Warwick?,4, +11140,38999,What is the grid for dirk heidolf?,4, +11141,39001,How many caps does stephen hoiles have?,4, +11145,39009,What is the total amount of bronze medals a team with 1 gold and more than 3 silver medals has?,4, +11148,39020,What is the sum of every REG GP that Peter Andersson played as a pick# less than 143?,4, +11152,39024,How many laps have a grid under 14 and a time/retired of out of fuel?,4, +11159,39036,What's the sum of significand with ~34.0 decimal digits and an exponent bias larger than 16383?,4, +11160,39037,"What's the sum of sign with an exponent bias less than 1023, ~3.3 decimal digits, and less than 11 bits precision?",4, +11161,39038,"What's the sum of sign with more than 53 bits precision, double extended (80-bit) type, and more than 80 total bits?",4, +11163,39040,How many years did the team that has a Singles win-Loss of 4-9 and first played before 1999?,4, +11171,39080,What was the crowd total on the day the home team scored 12.12 (84)?,4, +11172,39084,What is the sum of crowds that saw hawthorn at home?,4, +11173,39092,Tell me the sum of win % for drawn being larger than 35,4, +11175,39094,Name the sum of drawn for 30 october 2006 and win % more than 43.2,4, +11179,39100,What is the sum of every track with a catalogue of EPA 4054 with a 2:05 length?,4, +11188,39154,Which Crowd has an Away team of collingwood?,4, +11195,39166,Tell me the sum of top 5 with events less than 12 and top 25 less than 0,4, +11197,39172,How many people attended the game on 8 March 2008?,4, +11198,39179,What is the total number of points when the grade was A?,4, +11200,39193,What is the sum of Artist Steve Hepburn's Mintage?,4, +11205,39205,"How many wins do the players that earned more than 720,134 have?",4, +11207,39210,"What is the sum of the interview scores from North Dakota that have averages less than 8.697, evening gown scores less than 8.73, and swimsuit scores greater than 8.41?",4, +11208,39211,What is the sum of the swimsuit scores from Missouri that have evening gown scores less than 8.77 and average scores less than 8.823?,4, +11211,39214,"What is the sum of the evening gown scores where the interview score is less than 8.77, the swimsuit score is equal to 7.8, and the average score is less than 8.2?",4, +11212,39215,What was the attendance for the game that has a tie number of 13?,4, +11214,39217,What is the grid number for troy corser with under 22 laps?,4, +11227,39259,"What is the total Tonnage GRT with a Type of cargo ship, and a Nationality of norway?",4, +11230,39273,What is the total of Prom in M for Peak great knoutberry hill?,4, +11234,39287,When the Venue was mcg what was the sum of all Crowds for that venue?,4, +11238,39306,"If the Home team had a score of 21.22 (148), what is the sum of all Crowds?",4, +11258,39399,What is the average crowd size at Princes Park?,4, +11268,39439,How big was the crowd for Essendon?,4, +11278,39504,I want the sum of drawn for lost less than 0,4, +11279,39506,Tell me the sum of rank for when gold is more than 0 and silver less than 23 with total more than 32,4, +11280,39507,Tell me the sum of silver for liechtenstein and bronze more than 4,4, +11287,39548,I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s,4, +11291,39555,What year was the downy woodpecker coin created?,4, +11293,39561,Which Crowd has an Away team score of 17.11 (113)?,4, +11296,39594,What is the sum of a rank whose nation is West Germany and has bronze larger than 0?,4, +11311,39646,"Kecamatan Bogor Timur has more than 6 villages, what is the area in km²?",4, +11312,39647,"There are less than 11 settlements in Kecamatan Bogor Tengah, what is the area in km²?",4, +11314,39649,what is the sum of tonnage when the type of ship is twin screw ro-ro motorship and the date entered service is 11 february 1983?,4, +11316,39654,What's the sum of gold where silver is more than 2 and the total is 12?,4, +11320,39658,What was the attendance number for the Timberwolves game?,4, +11325,39673,What was the attendance of april 17?,4, +11327,39683,what is the laps when the driver is tony rolt and the grid is less than 10?,4, +11334,39709,What year is center Ann Wauters?,4, +11340,39723,What is the total number of years did he play the forward position and what school/club/team/country of Oregon State did he play?,4, +11344,39727,"What is the ranking for bruce fleisher with over $2,411,543?",4, +11351,39752,what is the rank when the player is henry shefflin and the matches is higher than 4?,4, +11355,39760,How many grids had more than 61 laps?,4, +11357,39762,"When the school picking is utah state for the position of linebacker, what's the sum of those rounds?",4, +11360,39769,What is the place number for adrian vasile with less than 127.74 points?,4, +11363,39772,What is the average of the contestant with a swimsuit less than 9.32?,4, +11366,39781,How large was the crowd at Glenferrie Oval?,4, +11369,39787,What is the grid total for kazuyoshi hoshino with under 71 laps?,4, +11371,39791,What is the total number of events the Open Championship has with less than 0 cuts?,4, +11375,39798,How many were in attendance when the away team scored 8.13 (61)?,4, +11378,39815,What's the crowd population of the home team located in Richmond?,4, +11380,39840,What is the total Until when the Titles was 5?,4, +11384,39855,"What is the sum of podiums of the teams with a final placing of 14th, seasons after 2008, and less than 1 races?",4, +11398,39898,What is the number of the Foundation with Japanese orthography of 国立看護大学校?,4, +11402,39905,What's the sum of asts for boston college with a rebs over 63?,4, +11411,39939,What are the seasons where Marcello Puglisi (formula master italia) was the secondary class champion?,4, +11414,39952,What is the silver total for nations with 10 bronze medals?,4, +11415,39953,What is the gold total for lithuania with under 2 silvers?,4, +11434,40009,How many total Silver has a Bronze larger than 19 and a Total smaller than 125?,4, +11439,40040,What is the Decile with a State Authority and a roll of 120?,4, +11446,40057,"What is the goal difference sum that has goals against smaller than 33, draws larger than 13?",4, +11453,40099,What is the Took Office Date of the Presidency that Left Office Incumbent?,4, +11468,40179,Name the sum of draws when the position is less than 17 and wins is less than 11,4, +11469,40180,what is the first season of current spell when the number of seasons is more than 72 and the position in 2012 4th?,4, +11473,40187,What is the sum of all total values for Switzerland?,4, +11496,40270,"What is the sum Total (kg) associated with a Snatch less than 110, and a Clean & jerk larger than 120?",4, +11508,40297,"What is the average relative annual growth of Lebanon, which has a July 1, 2013 projection larger than 4,127,000?",4, +11512,40310,How many games had 2 goals scored?,4, +11514,40314,How many people attended games with st kilda as the home side?,4, +11520,40331,I want the sum of pages for thistle among roses,4, +11521,40338,How many people attended Junction Oval?,4, +11522,40342,What is the total capacity for the stadium of pasquale ianniello?,4, +11526,40351,How many laps had a grid of greater than 17 and retired due to collision?,4, +11535,40390,What is the total series numbers that is directed by Jefferson Kibbee and has a production code of 2398191?,4, +11538,40405,What is the sum of the difference for 9 draws and over 18 played?,4, +11540,40407,What is the sum of all points when number played is less than 18?,4, +11544,40419,What is the sum of the number of regular games played by Morgan Clark with the number of road games less than 7?,4, +11549,40448,"On what Date was the Score of 3–6, 6–4, 3–6, 6–1, 6–2",4, +11552,40459,"In grid 15, how many laps were there before ending with a time of exhaust?",4, +11554,40471,What is the crowd size when the away team was South Melbourne?,4, +11558,40511,What is the grid for Jack Brabham with more than 65 laps?,4, +11579,40625,What is the total number of averages with an interview of 8.75 when the evening gown number was bigger than 8.75?,4, +11580,40626,"What is the total number of interviews where the evening gown number is less than 8.82, the state is Kentucky, and the average is more than 8.85?",4, +11581,40627,How many averages had a swimsuit number of 8.42 and an evening gown number that was less than 8.71?,4, +11585,40640,What is the sum of Sylvain Guintoli's laps?,4, +11586,40679,How many people attended the game with the home side scoring 18.14 (122)?,4, +11589,40697,What is the opening day net gross a Reliance Entertainment movie before 2011 had?,4, +11594,40703,"At the power plant located in ramakkalmedu, what is the sum of the total capacity (MWe)?",4, +11597,40724,What is the total crowd count for the venue Princes Park?,4, +11598,40725,"For the away team with a score of 16.13 (109), what is the total crowd count?",4, +11599,40734,What is the Quantity of Type 2-4-2t?,4, +11600,40735,What was the Quantity on Date 1900?,4, +11603,40742,What is the lap total for the grid under 15 that retired due to transmission?,4, +11604,40744,what is the sum of laps when grid is less than 20 and johnny herbert is driving?,4, +11606,40754,What is the total capacity (MW) of the windfarm located in the state/province of Gansu?,4, +11607,40756,How many people in total have attended games at Kardinia Park?,4, +11617,40793,What are the carries of the player Jeremiah Pope?,4, +11625,40822,Which is the total number in the 2010 Census in Oconee County where the area in square miles was less than 674?,4, +11626,40823,"What is the total number of areas by square mile where the founding year was 1785, the county seat was in Spartanburg, and the land area by square mile was more than 811?",4, +11628,40833,How big is the Venue of Brunswick Street Oval?,4, +11639,40884,What series had Joan Tena in sixth place?,4, +11643,40930,what is the rank when silver is less than 0?,4, +11645,40935,What is the total of attendance with a Record of 5-9-0?,4, +11647,40953,What was the total number of average attendance for games of 1311?,4, +11654,41003,What is the total Crowd number for the team that has a Home team score of 13.9 (87)?,4, +11658,41016,What is the grid total for bruce mclaren with over 73 laps?,4, +11667,41052,"When the %2001 is more than 61.4, and the %2006 fewer than 54.1, how many Seats in 2001 were there?",4, +11671,41056,"What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against?",4, +11673,41058,How many ties do teams with 25 Goals For and more than 5 wins have?,4, +11686,41139,How many laps had a grid number of 7?,4, +11688,41153,How many people attended the game when the away team scored 10.11 (71)?,4, +11694,41169,Name the sum of 2010 for 2000 of 17 and 2005 more than 16,4, +11695,41170,What is the total of crowd at Venue of mcg?,4, +11711,41195,What is the combined of Crowd that has a Home team which scored 12.15 (87)?,4, +11712,41196,What is the combined of Crowd that has an away team which scored 19.15 (129)?,4, +11714,41202,What is the long of the player with 16 yards and less than 1 TD?,4, +11726,41248,Tell me the sum of longitude for diameter being 22.6 and latitude less than -12.4,4, +11733,41279,What is the release date of the CD by EG Records in the UK?,4, +11739,41310,Which Crowd has an Away team score of 9.21 (75)?,4, +11740,41325,What is the sum of gold medals for the United States with silver medal count greater than 3?,4, +11746,41336,Name the sum of swimsuit when the evening gown is less than 6.983 and the average is less than 7.362,4, +11754,41357,What is the pick # of the player with a PI GP less than 0?,4, +11755,41358,What is the reg gp of the player with a round number less than 2?,4, +11758,41363,How many spectators were at the game where Richmond was the away team?,4, +11770,41410,Tell me the sum of rank for placings of 58,4, +11775,41425,How many cuts were made when there weren't any wins but had a top-5 of 1 and a top 10 larger than 4?,4, +11777,41435,How many rounds have a Pick of 13?,4, +11778,41436,How many rounds have School/club team of pan american?,4, +11780,41445,How big was the crowd when the opponent was essendon?,4, +11782,41460,What amount of Gold does Russia have and have a rank larger than 1?,4, +11783,41461,What is the sum of the ranks with a total of 1 and silver less than 0.,4, +11790,41482,"What is the number of points for east germany, and a Places of 88?",4, +11792,41489,"What place did R. Wenzel, who was active after 1934, have?",4, +11800,41535,Name the sum of year for swimming and first of mike,4, +11802,41542,What year is the player who attended la salle with under 6 assists from?,4, +11808,41557,How many years did he play in santiago de compostela?,4, +11809,41558,What is the Total Finale of 女人唔易做?,4, +11816,41573,What is the sum of the figure skating scores whose total is less than 117.78?,4, +11823,41613,Tell me the sum of TD's for 4 avg.,4, +11825,41626,"What numbered pick was mattias ohlund, with over 52 PL GP, and also a round under 11?",4, +11828,41636,What is the sum of grids with an engine in Time/Retired with less than 45 laps for Giancarlo Baghetti?,4, +11830,41649,What is the number of bronze for Canada and silver is less than 0?,4, +11833,41673,"What is the total attendance with a Report of sd.hr, and a Score of 3–1, and a Date of 14 apr 2001?",4, +11835,41678,How many people were in the crowd when the Home Team was Hawthorn?,4, +11850,41755,How many bronze medals did west germany win when they had less than 2 silver medals?,4, +11851,41756,How many bronze medals were won when the total was larger than 2 and the more than 2 gold medals were won?,4, +11852,41757,How many gold medals were won when more than 2 bronze medals were won?,4, +11856,41775,How many goals for were scored for the team(s) that won fewer than 4 games and lost more than 6?,4, +11863,41786,Name the sum of swimsuit for average more than 9.23 for delaware for interview more than 9.73,4, +11864,41787,Name the sum of average for interview more than 9.57 and swimsuit more than 9.65,4, +11870,41819,"What is the sum of all win% with average home/total attendance of 3,927 (19,633)?",4, +11876,41872,How large was the crowd at the Kardinia Park venue games?,4, +11877,41883,What is the total grid number where the time/retired is +58.182 and the lap number is less than 67?,4, +11887,41939,How big was the crowd at the game the away team geelong played at?,4, +11891,41950,What is the sum of averages with a long value of 32?,4, +11894,41956,What Grid has a Time/Retired of clutch?,4, +11905,42021,"When the Home team scores 14.16 (100), what is the sum of the Crowds?",4, +11910,42046,How many laps for a grid of over 18 and retired due to electrical failure?,4, +11911,42047,What was the crowd attendance for the game with an away team score of 14.10 (94)?,4, +11915,42056,What is the number of annual ridership with a station that has more than 13 stations and larger than 4 lines?,4, +11921,42081,How many silvers for japan (1 gold)?,4, +11923,42085,What was the sum roll of Karaka area?,4, +11930,42130,How many number Builts had unit numbers of 375301-310?,4, +11936,42161,what is the year when the title is jotei?,4, +11941,42184,What is the rating of the episode with 13.47 million viewers and overall rank larger than 6?,4, +11951,42208,"What is the grid total that has a Time/Retired of + 1:33.141, and under 70 laps?",4, +11961,42232,What is the total wins with less than 21 goals taken?,4, +11962,42241,when was the building withdrawn when the builder was ac cars and was introduced before 1958?,4, +11963,42245,"How many carries for the RB averaging 4.7, and a long of over 30 yards?",4, +11978,42313,How many games were played when the loss is less than 5 and points greater than 41?,4, +11980,42331,What is the total Crowd with a Home team of collingwood?,4, +11982,42349,How many gold have a National of New Zealand with a total less than 2?,4, +11988,42383,How many people were in the crowd at collingwood's home game?,4, +11993,42403,What was the total size of the crowd when an away team had a score of 9.9 (63)?,4, +11998,42420,what is the platform when the frequency (per hour) is 4 and the destination is west croydon?,4, +12011,42498,"what is the sum of goals for when the position is less than 8, the losses is less than 10 the goals against is less than 35 and played is less than 38?",4, +12015,42517,How many people attended the home game for South Melbourne?,4, +12025,42544,"What's the total number of NGC that has a Declination ( J2000 ) of °15′55″, and an Apparent magnitude greater than 10?",4, +12030,42560,What is the sum of grid values of driver Michael Schumacher with lap counts larger than 66?,4, +12038,42617,what is the places when for the soviet union with a rank more than 11?,4, +12040,42622,Name the sum against for byes less than 0,4, +12041,42623,Name the sum of draws for losses less than 2 and wins of 16,4, +12045,42634,What year was the timber trade?,4, +12047,42649,"Which sum of AVE-No has a Name of albula alps, and a Height (m) larger than 3418?",4, +12055,42693,"What is the PI GP of Rob Flockhart, who has a pick # less than 122 and a round # less than 3?",4, +12058,42698,"Name the sum of land for ANSI code of 2390496 and population less than 7,284",4, +12072,42751,What was Andorra's total with less than 10 silver and more than 5 bronze?,4, +12074,42759,How many losses had more than 122 years and more than 1244 total games?,4, +12081,42782,Tell me the sum of Grid for giancarlo fisichella,4, +12083,42785,What was the crowd attendance when the home team scored 13.17 (95)?,4, +12085,42792,How many laps with a grid larger than 7 did a Lotus - Ford do with a Time/Retired of + 2 laps?,4, +12089,42813,What is the total average for swimsuits smaller than 9.62 in Colorado?,4, +12091,42815,What is the silver medal count of the team that finished with 8 bronze medals?,4, +12096,42829,What was the attendance at the Fitzroy home game?,4, +12098,42838,"In the match where the venue was arden street oval, what was the crowd attendance?",4, +12099,42839,What was the crowd attendance in the match at punt road oval?,4, +12102,42852,How many attended the game on April 17?,4, +12104,42857,What's the sum of draws for against larger than 1228 with fewer than 1 wins?,4, +12107,42867,What is the overall draft number for the running back drafted after round 1 from fresno state?,4, +12108,42868,What is the overall total for players drafted from notre dame?,4, +12109,42869,Name the sum of gold which has a silver more than 1,4, +12112,42872,I want the sum of gold for silver being less than 0,4, +12118,42889,"What is the total number of Points with Wins larger than 0, a Position of 12th, and Poles larger than 0?",4, +12125,42915,How many matches has 51 draws and more than 6 against?,4, +12132,42922,"What is the sum of Position, when Points 1 is greater than 23, and when Goals For is ""77""?",4, +12135,42933,"What is the sum of the pe draw of team plaza amador, who has less than 6 pg won?",4, +12136,42934,What is the sum of the places of the team with more than 49 points and less than 54 goals scored?,4, +12138,42939,"What is the sum of households that makes a median household income of $44,718?",4, +12149,42990,What was the total when the first was November 1966?,4, +12151,42994,What year has 54 (73) points?,4, +12163,43031,"How much Grid has a Time/Retired of +0.785, and Laps larger than 29?",4, +12164,43033,"How many Laps have a Grid smaller than 5, and a Time/Retired of retirement?",4, +12170,43041,What is the total bodyweight of everyone that has a Snatch of 153.0?,4, +12186,43090,What is the sum of silver medals for the entry with rank 3 and a total of 4 medals?,4, +12197,43112,"What is the sum of Pleasure, when Drug is ""LSD"", and when Psychological Dependence is greater than 1.1?",4, +12198,43123,How many byes when there are 11 wins and fewer than 5 losses?,4, +12208,43149,"What is the total pld that has 36 points in 2007-08, and less than 55 points in 2008-09?",4, +12210,43157,How many byes were then when there were less than 737 against?,4, +12220,43188,"What is the rank of a country with more than 2 gold, less than 5 silver, and less than 31 total medals?",4, +12222,43194,"What is the number of households in the county with median income of $65,240 and population greater than 744,344?",4, +12225,43204,"What is the sum of the glyph with a binary less than 111001, an octal less than 65, and a hexadecimal less than 30?",4, +12230,43209,What is the sum of the glyph with a 38 hexadecimal and a binary less than 111000?,4, +12235,43246,What is the sum of the Pick # Anthony Maddox?,4, +12237,43252,"How many race 1's have 5 as the race 3, with points less than 59?",4, +12240,43268,"What is the population when the Per capita income of $18,884, and a Number of households smaller than 14,485?",4, +12242,43271,What is the sum of the stand with a qual more than 589?,4, +12244,43282,What is the rank for the nation with 0 silver medals and a total larger than 2?,4, +12250,43299,"How many Goals against have Goals for smaller than 33, and Points smaller than 16?",4, +12253,43322,What are the downhill points for the skier with total of 9.31 points?,4, +12269,43418,"How many points have an Engine of ferrari tipo 033 v6 tc, and a Year larger than 1987?",4, +12277,43466,How many Grid has a Rider of ryuichi kiyonari?,4, +12280,43472,"What is the sum of the to par of player meg mallon, who had a total greater than 157?",4, +12282,43484,"What is the sum of Against, when Opposing Teams is ""South Africa"", and when Status is ""First Test""?",4, +12285,43500,"What is the sum of P desc with a P 2007 of 0,00 and a P, Ap 2008 less than 30,00, and a P CL 2008 that is more than 10,56?",4, +12288,43503,"How much Fighting Spirit has a Total of 13, and a Technique smaller than 1?",4, +12293,43527,What is the total number of played for the entry with a position of less than 1?,4, +12307,43572,How many goals against total did the team with more than 52 goals and fewer than 10 losses have?,4, +12310,43575,What is the total number of losses that has draws larger than 1 and a Portland DFL of westerns?,4, +12311,43576,What is the sum of draws for all byes larger than 0?,4, +12312,43577,What is the sum of byes for losses larger than 14 for a Portland DFL of westerns?,4, +12313,43611,What is the sum of the pick of the guard position player?,4, +12319,43648,How much is the purse worth (¥) after 2012?,4, +12321,43659,"What is the sum of Frequency, when Type is ""Christian Pop""?",4, +12323,43683,How many total wins for Leopold that had fewer than 1706 against?,4, +12325,43685,What is the total number of against when they had 14 losses and more than 0 byes?,4, +12326,43705,How many seats does the party of others have with a change of -1 and more than 0% votes?,4, +12328,43707,What is the change number with fewer than 4.7% votes and more than 0 seats?,4, +12330,43747,"What is the goal difference when there are fewer than 12 wins, 32 goals against and 8 draws?",4, +12343,43791,"How many kills have 15 as the injured, with a year prior to 1987?",4, +12349,43815,"What is the sum of Grid, when Time is ""+16.687""?",4, +12364,43901,"Which Year has a Competition of european indoor championships, and a Venue of budapest , hungary?",4, +12366,43908,"What is the total of against matches when there are less than 12 wins, less than 0 draws, and Moulamein is the golden river?",4, +12371,43913,"Which percent has Wins larger than 72, and a Name of john yovicsin?",4, +12372,43914,"How many Ties have Years of 1919–1925, and a Pct larger than 0.734?",4, +12373,43915,"Which Pct has Years of 1957–1970, and Wins smaller than 78?",4, +12378,43964,What is the sum of the all around with a 37.75 total?,4, +12380,43968,"How many againsts have asba park, kimberley as the venue?",4, +12385,44011,"What is the sum of Against, when Status is ""Six Nations"", and when Date is ""30/03/2003""?",4, +12388,44040,"What is the sum of the to par for the United States in the winning year of 1967, and has a total of more than 146?",4, +12396,44068,"What is the rank that when Serbia is the nation, and gold is larger than 0?",4, +12398,44072,"How much To par has a Total larger than 149, and a Country of united states, and a Year(s) won of 1997?",4, +12399,44074,"Which Rank has a Network of bbc one, and a Number of Viewers of 30.15million? Question 2",4, +12401,44093,"What is the total attendance with a 1-0 result, at Venue H, and Round SF?",4, +12409,44122,"How many Points have an Average smaller than 1, a Played larger than 38, and a Team of gimnasia de la plata?",4, +12411,44138,"Which Position has Goals against smaller than 43, and Wins larger than 14, and Played larger than 38?",4, +12415,44147,What is the year that a record was recorded with Libor Pesek as conductor?,4, +12419,44174,"What is the sum of League Goals, when Position is ""DF"", when League Cup Apps is ""0"", when Total Apps is ""7"", and when FLT Goals is less than 0?",4, +12425,44196,"How many draws have french as the language, with a place less than 1?",4, +12428,44212,"How much silver does the rank have that has gold smaller than 4, and a total of 1 and a rank larger than 6?",4, +12429,44213,"Which rank has a more than 0 silver, 4 bronze, and a total smaller than 10?",4, +12435,44240,What is the total 140+ with a high checkout of 74 and a 100+ higher than 17?,4, +12449,44321,How many wins have more than 1 loss and a team of chiefs?,4, +12452,44324,"How many wins when there are more than 19 points, place smaller than 12, and fewer than 30 played?",4, +12457,44350,Name the Round that has Res of win and an Opponent of demian maia?,4, +12464,44381,"How many Apps have a Rank larger than 2, and Goals smaller than 102?",4, +12466,44396,What is the Weight of the Senior Player with a Height of 6–10?,4, +12469,44459,"How much Played has Goals Against of 45, and Goals For smaller than 65?",4, +12472,44462,"what is the sum of bronze when the rank is 5, the nation is poland and gold is less than 0?",4, +12473,44463,"what is the sum of silver when the rank is 3, nation is france and bronze is less than 0?",4, +12504,44551,"Count the Earnings per share (¢) in April smaller than 2012, a Revenue (US $million) of 432.6 and a EBIT (US $m) smaller than 150.5?",4, +12509,44585,What is the total number of losses for entries with 15 wins and a position larger than 3?,4, +12510,44587,"What is the position of club Melilla CF, with a goal difference smaller than -10?",4, +12511,44588,"What is the sum of goals against for positions higher than 14, with fewer than 30 played?",4, +12520,44610,"How many apps have 28 goals, and a Total smaller than 191?",4, +12521,44627,What is the sum of the rounds of the match with brett chism as the opponent?,4, +12527,44657,"When rank is 7 and silver is less than 0, what is the total gold?",4, +12529,44689,"What is the population (2008) when the capital was Sanniquellie, created later than 1964?",4, +12534,44713,WHAT YEAR WAS THE WORLD CHAMPIONSHIPS IN WITH NOTES OF 39.01?,4, +12535,44714,What's the sum of money ($) that angela park has won?,4, +12553,44793,"What is the sum for the pick of the year 2009, and a round smaller than 2 and an NBA Club Denver Nuggets?",4, +12556,44797,What's the sum of the headcounts that have an n/a value of $60k to $70K?,4, +12559,44813,"What is the sum of Polish Cup, when Player is ""Maciej Iwański"", and when Ekstraklasa is less than 1?",4, +12564,44835,"What is the sum of the kono with a bonthe greater than 21,238?",4, +12568,44866,How many years did caroline lubrez win?,4, +12584,44929,What is Wayne Grady's total?,4, +12606,45010,"How many years had a 100 m hurdles event at the world championships in Osaka, Japan?",4, +12608,45024,"What is the Unit for the Aircraft F.e.2b, located in Logeast?",4, +12613,45081,In which year did Misaki Doi lose the Australian Open Grand Slam?,4, +12616,45085,How much Ekstraklasa has a Total smaller than 3?,4, +12617,45086,"How much Puchat Ligi has a Total smaller than 5, and an Ekstraklasa larger than 1?",4, +12621,45092,"How much Played has a Position of 7, and a Drawn smaller than 7?",4, +12626,45110,"How much Total has a Rank smaller than 10, and a Silver larger than 3, and a Gold larger than 3?",4, +12629,45116,"Can you tell me the sum of Wins that has the Club of abuls smiltene, and the Goals smaller than 18?",4, +12638,45130,"How much Against has Draws of 2, and Losses smaller than 4?",4, +12647,45159,"What is the sum of Total, when Year(s) Won is ""1966 , 1970 , 1978"", and when To par is less than 4?",4, +12652,45208,"What is the sum of the final for finland, who placed greater than 2 and had an all around larger than 18.9?",4, +12667,45276,"How many 2007s have 0.2 as a 2006, with a 2010 less than 0.1?",4, +12669,45293,"How many years have runner-up as the outcome, and indian wells as the championship?",4, +12680,45331,"What is the total rate of murder and non-negligent manslaughter when larceny-theft is 3,693.9 and burglary is more than 1,027.0?",4, +12694,45371,In what year was The House of Blue Leaves nominated for outstanding actress in a play?,4, +12698,45380,What is the byes for Woorineen when losses are more than 13?,4, +12703,45397,How many against on the date of 08/06/1985?,4, +12705,45405,In what year was the winner a soccer player from Virginia?,4, +12711,45413,"What is the sum of Wins, when Against is less than 1033, when Golden Rivers is ""Nullawil"", and when Byes is less than 2?",4, +12712,45419,"Which Year has a Competition of european championships, and Notes of 66.81 m?",4, +12728,45519,"Count the Draw which has Lost of 0, and a Goals Scored larger than 0?",4, +12737,45537,"How much Played has Goals against smaller than 34, and Wins smaller than 13?",4, +12740,45547,"How many Matches have Balls smaller than 224, and an Average larger than 38.25, and an S/Rate larger than 139.09?",4, +12754,45578,What was Adam Scott's total score when playing in Australia with a to par of e?,4, +12758,45593,"Name the date of Tournament of paris indoor , france?",4, +12760,45600,"What's the total when the champions league was 0, the coppa italia was less than 0, and the Serie A was more than 1?",4, +12761,45601,"What is the championsleague when the total was greater than 1, the coppa italia was more than 2, and the Serie A was 1?",4, +12763,45606,What is the Total of the Player with a To par of –13?,4, +12771,45629,"How many top division titles does Club Guadalajara have, with more than 42 seasons in Liga MX?",4, +12772,45631,What number is in Bois de Warville with a time less than 810?,4, +12774,45633,What number with the opponent Fokker D.vii have with a time of 1655?,4, +12775,45635,What number has the opponent Fokker d.vii with a time of 600?,4, +12777,45649,How many golds does Germany have with more than 1 silver?,4, +12783,45656,"What is the sum of Second, when Total is less than 70, when Premier is less than 20, and when First is greater than 18?",4, +12784,45660,How much Snatch has a Total (kg) smaller than 257?,4, +12789,45683,WHAT IS THE FLOOR NUMBERS WITH 01.0 10 light street?,4, +12794,45706,"For the 2013 completion schedule, what is the total S.no.?",4, +12797,45754,What is the total amount of money that Payne Stewart has?,4, +12809,45797,What is the population of northfield parish that has an area less than 342.4?,4, +12810,45798,"What is the population of the parish with a census ranking of 579 of 5,008?",4, +12811,45799,What is the population of the parish that has an area of 304.06?,4, +12814,45805,How many people attended the game against the Kaizer Chiefs?,4, +12816,45826,What is all the total election that has conservative as 2nd party?,4, +12820,45869,"What is the total Design flow (LPM) with a Partner of app, a Construction Start of 2008 january, and a Population Served larger than 3500?",4, +12822,45892,How many laps have 16 points and With a Laps Led of greater than 0?,4, +12828,45921,"How many weeks have an attendance less than 26,048?",4, +12838,45962,"What is the total of Matches with Goals of 18, and an Average larger than 0.55?",4, +12848,45991,"Which Attendance has a Result of w 24-14, and a Week smaller than 7?",4, +12855,46023,What is the to par for the player with fewer than 148 total points?,4, +12861,46050,How many total laps were ridden when the grid was 7 and the rider rode the Honda CBR600RR?,4, +12862,46067,"What is the 2005 sum with a 2009 less than 1,850,654?",4, +12865,46070,"What is the sum of the 2008 with a 2007 of 4,244,115 and less than 3,296,267 in 2003?",4, +12868,46083,What's the rank that has a total of less than 1?,4, +12869,46084,What's the bronze medal count when the silver is less than 3 and the gold is 1?,4, +12876,46141,Which Year has a cause of firedamp and a Death toll larger than 11?,4, +12878,46150,What is the sum of the clubs remaining with 34 new entries this round and more than 34 clubs involved?,4, +12888,46196,"What is the sum of the run 1 of athlete matthias guggenberger, who has a run 2 greater than 55.24?",4, +12889,46219,What year had Best Actor in a Musical as a category?,4, +12890,46233,What was the total number of wins that had an against greater than 1136 but losses less than 15 with Ultima with less than 2 byes?,4, +12894,46237,What's the number of byes for someone who had 7 wins and an against number greater than 1412?,4, +12902,46255,What is the sum of the scottish cup of the forward player with less than 2 league cups and a total greater than 6?,4, +12909,46290,"What is the total of the year that more than 13,142 is the high, and 10,387 (2nd) is the average, and there was less than 0 sellouts?",4, +12912,46299,"What is the total of Losses with a Result of runner-up, Wins of 1, and a Year smaller than 2006?",4, +12916,46303,"What is the total number of Year with Wins of 1, and Losses smaller than 1?",4, +12918,46307,What's the sum of attendance when banbury united is the away team and tie no is over 102?,4, +12919,46308,What's the sum of tie no for home team burgess hill town?,4, +12930,46354,How much money was there when the to par was 15?,4, +12940,46405,What is the sum of the points of the club with more than 34 played?,4, +12946,46437,"Which season had a season finale of May 13, 2012?",4, +12948,46445,"What is the total overall for the pick that went before round 4, who went to Tennessee for college, and was picked at a number bigger than 9?",4, +12956,46480,How many bronzes were won by the country with a total higher than 5?,4, +12957,46481,How many bronzes were won for the country that had a larger than 3 rank and a silver win count above 0?,4, +12967,46502,"What is the number of silver when rank was 5, and a bronze was smaller than 14?",4, +12973,46543,"What is the sum of Year, when Award is ""Outer Critics Circle Award"", and when Nominee is ""Nathan Lane""?",4, +12976,46559,"What is the total (kg when the bodyweight is more than 57.8, and the clean & jerk is less than 103?",4, +12982,46572,What is the total Level with 27 Apps after 2006?,4, +12984,46574,what is the total levels in 2007?,4, +12991,46589,"How many ranks have 40 as the apps, with goals per match greater than 1?",4, +12998,46629,What is the sum of men's wheelchair from Ireland and more than 1 total?,4, +13000,46646,How much money did Willie Klein take home from the game in which he had a to par score larger than 13?,4, +13007,46656,What is the sum of Goals scored when there was less than 20 Games played?,4, +13008,46661,"What is the sum of cents that has 53ET cents less than 113.21, and a harmonic more than 1?",4, +13009,46662,"What is the sum of cents that has 12ET cents of 100, and less than 17 harmonic?",4, +13025,46753,"What shows for gold when the rank is less than 3, and silver less than 1?",4, +13027,46755,"What shows for bronze when silver is 1, rank is smaller than 4, and gold is larger than 1?",4, +13028,46756,"What is the gold when silver is 1, rank is larger than 3, total is smaller than 2, bronze is smaller than 0?",4, +13030,46768,What is the total sum of the player from the United States who won in 1986?,4, +13032,46771,What is the sum of the total of the player who won in 1979?,4, +13040,46864,What is the Total for Seve Ballesteros?,4, +13044,46877,"What is the sum of the total of player rich beem, who has a to par greater than 17?",4, +13064,46938,What is the total Money (£) of Player of nick faldo?,4, +13069,46943,How many draws did clitheroe have when their position was less than 12 and they lost less than 4 times?,4, +13072,46959,"What is the loses total when there is less than 4 draws, less than 105 conceded goals, less than 38 goals scored, and the club is positioned greater than 2?",4, +13073,46960,"How many total goals conceded are there when the points are greater than 58, less than 27 wins, and less than 1 draws?",4, +13077,46968,What season had Dalian Wanda as the winner with Yanbian Aodong winning 4th?,4, +13080,46972,"How many Byes have an Against of 972, and more than 11 wins?",4, +13083,46980,How many wins were there in 1994?,4, +13084,46982,How many picks have a Player of pong escobal?,4, +13085,46988,"How much Premier League has an FA Cup of 0, and a Total of 1, and a UEFA Cup larger than 1?",4, +13086,46989,"How many totals have a Premier League smaller than 6, and a League Cup larger than 0?",4, +13090,46995,What week was she safe for a salsa dance?,4, +13092,46999,"What is the sum of rank with more than 1 silver medal, 1 gold medal, and less than 6?",4, +13094,47018,"How many ranks have chen yin as the name, with a lane greater than 8?",4, +13095,47020,How many lanes have a rank greater than 8?,4, +13096,47027,"Which week was on october 30, 1983?",4, +13100,47042,How many people attended the home game against the New York Jets?,4, +13108,47059,"How much Population (2011) has a Land area (km²) larger than 15.69, and a Population density (per km²) larger than 57.3?",4, +13118,47091,Which lane did the swimmer who had a Reaction time of 0.185 and a time of 20.9 swim in?,4, +13124,47143,"What are the total losses with 2 matches, 2 against, 0% of draws and less than 1 wins?",4, +13125,47144,"What is the sum on wins with an against ratio of 0.83, and more than 1 loss?",4, +13126,47153,What's the number of electorates for constituency number 56?,4, +13130,47177,What's Italy's rank?,4, +13135,47206,What is the total against on 08/12/1992?,4, +13157,47240,"How many ranks have more than 7 lanes, and an Athlete of michael mathieu, and a Reaction time larger than 0.203?",4, +13158,47241,"Which Time has a Reaction smaller than 0.20400000000000001, and a Rank of 1?",4, +13174,47281,What is the sum of draws for teams with against of 1731 and under 10 losses?,4, +13206,47347,What shows for 2010 Employees (Total) when the employer is University of Alberta?,4, +13209,47357,"How much Total has a Rank of 5, and a Bronze larger than 3?",4, +13219,47375,When the date is 8 october 2008 what is the sum of attendance?,4, +13229,47395,What year was the player David Rose?,4, +13233,47407,How many positions have Played smaller than 12?,4, +13237,47418,"What is the Week number on September 6, 1946?",4, +13240,47445,"How much Withdrawn has a Number of 42, and a Previous Number(s) larger than 68178?",4, +13267,47544,Which Lead Pitch/mm has a Body Width/mm larger than 10.16?,4, +13268,47545,"How much Body Width/mm has a Part Number of tsop40/44, and a Body Length/mm smaller than 18.42?",4, +13271,47548,What is the Time of the Athlete with a Reaction time of 0.164?,4, +13273,47550,What is the Lane of the Athlete from Great Britain with a Reaction time of less than 0.218 and a Time larger than 44.74?,4, +13277,47555,What's the total of Rank for the County of Galway and has a Total that's larger than 13?,4, +13285,47582,"What is the total in 2000–2012, with more than 2 silver, 0 Bronze, and a Rank smaller than 70?",4, +13299,47658,"Which Score-Final has a Rank-Final of 2, and a Year smaller than 2008?",4, +13300,47659,"How many years have a Rank-Final smaller than 7, and a Competition Description of olympic games, and a Score-Final smaller than 186.525?",4, +13309,47677,How many tries have goals greater than 0?,4, +13315,47687,What the lost that has less than 10 points and less than 38 goals scored?,4, +13317,47689,What the lost in place less than 3 and having more than 63 goals scored?,4, +13319,47694,What is the total Rank for ümit karan when Apps is more than 39 and Rate is more than 0.58?,4, +13320,47695,"When rank is more than 10, what is the total rate?",4, +13323,47709,What is the rank for the team that had a time of 6:41.45 and note FA?,4, +13326,47712,"What is the total of the River Mile in Greenup, Kentucky?",4, +13345,47767,"In what Year is the Location of the Festival Koror, Palau?",4, +13346,47770,"How many counties have people before profit as the party, and a borough greater than 0?",4, +13347,47771,"How many counties have 2 as the total, 0 as the city with a town less than 1?",4, +13350,47788,what is the year when the score is 59-32?,4, +13351,47795,How many wins are there when the draws are less than 0?,4, +13371,47860,"What is the total ranking when there are less than 16 draws, less than 1 point, and the English translation is in love with you?",4, +13377,47886,How much Year Left has a Location of howe?,4, +13378,47894,What rank is Vaud with the lowest point is Lake Geneva?,4, +13379,47895,Wich rank is given to the Canton of Schaffhausen?,4, +13381,47903,That is the total year that Neal Baer is a nominee?,4, +13382,47915,"What is the number of AIDS Orphans as % of Orphans when the Double (AIDS Related) number is 41,000, and the Paternal (Total) is larger than 442,000?",4, +13384,47918,How many clubs are involved when the clubs remaining are 2?,4, +13387,47930,"What year had Nintendo EAD, Monolith Soft as developers?",4, +13399,47968,What is the sum of the lanes before heat 7 that elizabeth simmonds swam?,4, +13411,48007,"What is the altitude (meters) is associated with the Name Mount Launoit, with the range as Belgica Mountains?",4, +13413,48017,"What's the total with silver being less than 0, less than 1 gold, and 3 bronze?",4, +13414,48019,What's Sara Isakovič's lane number that had a heat of 3?,4, +13417,48038,What is the sum of league cup appearances for the players with FA cup goals larger than 0 and FA cup appearances less than 2?,4, +13438,48085,"What is the number of wins when scored was less than 26, and conceded was larger than 23?",4, +13452,48121,How many Viewers have a Rank smaller than 2?,4, +13455,48124,What is the total population in 2010 for the township located in Mountrail which has land less than 34.424 sq miles and a GEO ID less than 3806159940?,4, +13457,48127,"How many Lanes have a Time larger than 13.59, and a Rank larger than 8?",4, +13458,48128,"How many lanes have a Nationality of france, and a Rank larger than 8?",4, +13463,48140,What lane has a time of 1:57.71?,4, +13479,48191,"What is the sum of losses when wins is more than 6, club is camperdown and against is more than 1238?",4, +13483,48209,"What is the rank when time is 11.15 and lane is bigger than 7 with notes Q, PB?",4, +13484,48210,"What is the lane for notes Q, SB and time less than 11.22?",4, +13487,48218,What is the time with fewer than 5 lanes for the United States?,4, +13508,48272,What's the total draws for Ararat when the byes are less than 2?,4, +13509,48273,What's the total losses when there are 8 wins and less than 2 byes?,4, +13511,48275,What are the draws when the losses are less than 1?,4, +13515,48279,What is the sum of the serial numbers for narowal city?,4, +13516,48280,"What is the sum of the area for the bahawalnagar district with a population more than 134,936?",4, +13518,48286,What is the sum of bronzes for teams with more than 0 silver and a total under 1?,4, +13523,48300,"Which B Score has a Total larger than 15.325, and an A Score smaller than 6.4?",4, +13529,48309,What's the finishes for Lambros Athanassoulas having 0 podiums and 0 stage wins?,4, +13538,48325,What's the 2006 if there's less than 6.7 in 2007 and less than 3.4 in 2009?,4, +13547,48338,"what is the gold when the bronze is 1, total is 6 and silver is less than 3?",4, +13550,48355,What is the Attendance of Game 24?,4, +13555,48396,"What is the number of silver when bronze is 0, and rank is less than 2?",4, +13567,48410,How many gold medals for Bulgaria (BUL) with 2 silvers and a less than 18 rank?,4, +13581,48450,"What is the total for Robert Stanescu ( rou ), when the B Score is larger than 8.75?",4, +13585,48465,How many silver for rank 22 when gold count was more than 0 and Bronze count was less than 5?,4, +13597,48493,What is the sum of the area in km with a population of 110 in 2011?,4, +13600,48496,What is the total rank for the lane before 2?,4, +13604,48503,"How many debut years have Years at club of 1950–1951, and Games larger than 14?",4, +13611,48518,What is the A score when the B score is more than 9.15 and the gymnast was in the 2nd position?,4, +13615,48560,"When the president was Yoweri Museveni, and the year was 1993, with rank of 6 under political rights, what was the total of civil liberties?",4, +13619,48571,"What is the total weeks with more 56,134 attendees against the minnesota vikings?",4, +13624,48579,What is the total number of wins for Cobden club when there are more than 2 draws?,4, +13631,48591,How many overs when there are 5231 runs and fewer than 37 matches?,4, +13651,48636,What are the total wins when there are 1261 against?,4, +13652,48638,What is the rank for China?,4, +13657,48653,What is the sum rank of Solomon Bayoh when his time was smaller than 22.16?,4, +13658,48657,what is the heat when the athlete is anita pistone?,4, +13660,48660,What is the sum of matches played for teams with more than 10 losses and under 5 points?,4, +13672,48704,"What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 of 47.91, and an Upper index MJ/ Nm 3 larger than 53.28?",4, +13673,48705,"What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 larger than 47.91, for propylene, and an Upper index MJ/ Nm 3 larger than 77.04?",4, +13699,48757,"What is the sum of placings for the song ""Tavo Spalvos""?",4, +13701,48759,What was the sum of league goals where the toal was 8 and league cup goals were larger than 0?,4, +13711,48786,What is the Shirt No for the person whose height is 188?,4, +13713,48788,"What is the total for the person with free of 47.667, and technical less than 47.417?",4, +13718,48793,"How many points did the ESC Riverrats Geretsried, who lost more than 3 games, score?",4, +13720,48810,What is the sum of totals for ranks under 3 with tallies of 2-5?,4, +13721,48812,"What is the sum of the numbers in series written by sam meikle, which have 21 numbers in the season?",4, +13728,48844,"How much Distance has a County of faulkner, and a Total smaller than 1.5?",4, +13729,48845,How much Distance has Notes of north end terminus of ar 155?,4, +13735,48871,"Which Copa del Rey has a Name of guti, and a FIFA Club World Championship smaller than 0?",4, +13736,48872,Which Copa del Rey has a La Liga smaller than 0?,4, +13742,48890,How many wins when the points are 0 and podiums are less than 0?,4, +13743,48891,What's the fastest laps during the 1995 season having poles & podiums at 0?,4, +13746,48897,What is the number of games for less than 2 seasons and more than 7 draws?,4, +13752,48909,What's the 100+ when the 140+ is less than 128 and the LWAT of 29?,4, +13753,48916,How many years have a Form album of the thing?,4, +13754,48919,How many years were there albums by heat wave?,4, +13761,48932,"What is the gold number when total is more than 1, and bronze is 0, and rank is 5?",4, +13769,48983,What is the sum of the rank of the rower with an r note from Australia?,4, +13771,48988,How many Episodes have a Romaji Title of slow dance?,4, +13785,49024,What was the rank of flori lang when his time was less than 22.27,4, +13795,49041,What Band number has a Power (W) of 400 or less?,4, +13798,49055,"What is the sum of the bronze medals when there were less than 8 total medals, 0 silver medals and a rank of 9?",4, +13805,49068,How many households are in Ottawa?,4, +13806,49070,What is the sum of enrollments for schools located in Culver?,4, +13811,49096,What is the rank of the person with more than 5 games played?,4, +13814,49099,How many bronzes have west germany as the nation?,4, +13822,49123,what is the finishes when points is more than 337 and starts is more than 26?,4, +13842,49181,What's the time of Britta Steffen in a lane less than 4?,4, +13847,49203,"How much Attendance has an Arena of arrowhead pond of anaheim, and Points of 5?",4, +13851,49213,What lane has a time of 24.83 and a heat less than 11?,4, +13856,49232,"How much Attendance has a Loss of divis (0–3–0), and Points smaller than 38?",4, +13866,49262,How many totals does cork have whose rank is larger than 2?,4, +13875,49283,"How much tonnage has a Fate of sunk, and a Flag of great britain, and a Date of 26 september 1940, and Deaths of 2?",4, +13882,49294,What is the rank if the person with a time of 1:40.626?,4, +13891,49325,How many silvers are there with a total of 11?,4, +13895,49332,What is Joselito Escobar's Pick number?,4, +13898,49356,"Count the sum of Col (m) which has an Elevation (m) of 3,011, and a Country of equatorial guinea ( bioko )?",4, +13899,49357,"COunt the sum of Prominence (m) of an Elevation (m) of 2,024?",4, +13904,49398,What was Christian Kubusch's lane when the heat was more than 2 and time was DNS?,4, +13909,49403,What's China's heat for Zhang Lin in a lane after 6?,4, +13910,49409,What is the production number directed by Robert McKimson in series mm titled People Are Bunny?,4, +13921,49463,"How much 2000 has a 2005 smaller than 583,590, and a 2009 smaller than 156,761, and a 2002 larger than 1,393,020?",4, +13924,49466,"what is the giro wins when jerseys is 2, country is portugal and young rider is more than 0?",4, +13932,49499,What is the sum of the [3 H]CFT with an N ÷ D less than 393.8 and a [3H] paroxetine of 1045 (45)?,4, +13937,49514,What is total number of years that has genre of first-person shooter?,4, +13943,49537,"What is the sum of the land in sq mi with an ansi code less than 1036538, a 2010 population less than 42, a longitude greater than -99.442872, and more than 0.882 sq mi of water?",4, +13945,49539,"What is the sum of the 2010 population with a latitude greater than 47.710905, a longitude of -101.79876, and less than 35.695 sq mi of land?",4, +13953,49558,How many bronzes have a Total of 9?,4, +13954,49559,"How much Gold has a Nation of mongolia, and a Total larger than 18?",4, +13955,49564,"What is the rank of the athletes that have Notes of fb, and a Time of 6:47.30?",4, +13959,49568,"What is the sum of time with a lane larger than 6, a nationality of canada, and the react smaller than 0.151?",4, +13961,49580,"How many Points have a Name of stephen myler, and Tries smaller than 0?",4, +13968,49601,What is the sum of the heights for the Cornell Big Red?,4, +13972,49613,How many countries sampled has a world ranking of 33 in 2010 and less than 3 ranking in Latin America?,4, +13987,49706,what is the total when the rank is total and the silver is less than 10?,4, +13990,49709,"what is the total when bronze is more than 1, nation is hong kong (hkg) and gold is less than 3?",4, +13992,49713,"What is the number of matches with an average larger than 6.33, with a rank of 1?",4, +14001,49723,What week did the dallas cowboys play?,4, +14008,49752,What's the against of South Warrnambool when the draw is less than 0?,4, +14013,49760,In what year was the venue Gold Coast and the Men's 35s NSW?,4, +14015,49764,what is the sum of league goals when the fa cup goals is more than 0?,4, +14022,49788,"What is the shirt no with a position of setter, a nationality of Italy, and height larger than 172?",4, +14038,49852,Which Pendle has a Burnley smaller than 0?,4, +14040,49854,How much Hyndburn has a Fylde larger than 3?,4, +14041,49855,"How much Burnley has a Fylde smaller than 1, and a Rossendale larger than 0?",4, +14052,49910,"Which Elevation (m) has a Prominence (m) of 2,876, and a Col (m) larger than 0?",4, +14064,49939,"How many gains have a long greater than 8, with avg/g of 124.9?",4, +14065,49940,"How many longs have a gain less than 379, and 0.8 as an avg/g?",4, +14071,49957,What was John Jones's pick#?,4, +14073,49962,What is the enrollment for the AAAA class in IHSAA?,4, +14077,49973,"What is the number of against when the wins were 8, and a Club of South Warrnambool, with less than 0 draws?",4, +14090,50006,"How many weeks have an Attendance of 62,289?",4, +14095,50017,"How many draws are there when there are 11 wins, and more than 7 losses?",4, +14103,50028,what is the sum of spartak when played is 102 and draw is less than 19?,4, +14106,50035,"What is the sum of staterooms in with a year buit of 2008, and a crew less than 28?",4, +14111,50045,What was the voting order when bunny carr was the commentator?,4, +14115,50051,"How much Gold has a Bronze smaller than 2, and a Silver of 0, and a Rank larger than 3?",4, +14121,50063,What's the rank when the col (m) is less than 33 and has a summit of Haleakalā?,4, +14146,50144,What is the number of gold for the country ranked 19?,4, +14149,50151,"What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208?",4, +14153,50165,How many League Goals have League Cup Goals smaller than 0?,4, +14171,50206,What is the total sum ranked less than 5 with a 37.076 (2) 3rd run?,4, +14172,50212,What is the sum of the prominence in m of slovakia?,4, +14176,50218,"What is the B Score when the total is more than 16.125, and position is 3rd?",4, +14182,50231,"How much Latitude has a Water (sqmi) of 0.267, and an ANSI code larger than 1759605?",4, +14187,50242,What is the 1952 rate when the 1954 is more than 4.2?,4, +14188,50243,"What is the 1955 rate when the 1956 is more than 2.9, and 1953 is larger than 4.5?",4, +14203,50277,What is the sum of the gold medals of the nation with 4 silvers and more than 6 total medals?,4, +14210,50294,"How much Elevation (m) has a Prominence (m) larger than 1,754?",4, +14215,50310,What round did the match at the Golden Trophy 1999 event end?,4, +14220,50363,What is the lane total when rank is 2?,4, +14222,50366,"How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990?",4, +14231,50411,"what is the rank for athlete hauffe, seifert, kaeufer, adamski?",4, +14233,50425,"Of the series that first aired April 8, 2011, what is the total number of episodes?",4, +14236,50428,What's the total of Water (sqmi) with a Land (sqmi) of 35.918 and has a Longitude that is smaller than -97.115459?,4, +14239,50431,What is the total heat ranked higher than 7?,4, +14241,50438,what is the rank when the assumed office is 9 april 1903?,4, +14242,50441,what is the rank when assumed office on 12 may 1857?,4, +14255,50506,"What year was finish Toulouse, and stage was larger than 12?",4, +14257,50514,"How many Games have Years at club of 1971–1974, and a Debut year larger than 1971?",4, +14261,50519,What is Melaine Walker's Rank?,4, +14271,50571,"Which Size has an IHSAA Class of aa, and a Location of milan?",4, +14275,50597,How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4?,4, +14282,50632,How much Scored has Losses smaller than 0?,4, +14288,50642,what is the fa cup goals when total apps is 10 (4)?,4, +14294,50656,"How much Gross Domestic Product has a US Dollar Exchange of 12.19 algerian dinars, and an Inflation Index (2000=100) larger than 22?",4, +14302,50683,"How many lanes have a Time of 53.61, and a Rank larger than 3?",4, +14304,50690,How much Enrollment has a School of fort wayne homestead?,4, +14307,50697,"How many weeks have an attendance greater than 55,121, and l 27-7 as the result?",4, +14322,50732,What is the total of Barangay with an area larger than 865.13?,4, +14325,50735,"What is the total population with a population density less than 29,384.8 in San Nicolas?",4, +14332,50758,What is the sum of the ranks for bulgaria?,4, +14335,50768,Count the Pommel Horse that has Rings smaller than 59.85 and a Team Total larger than 361.2?,4, +14338,50772,what is the place when the televote/sms is 2.39%?,4, +14340,50775,How many production numbers have a Title of bosko in dutch?,4, +14345,50791,what is the avg/g for john conner when long is less than 25?,4, +14349,50818,What sum of draw had more than 22 in Jury and a Televote of 130?,4, +14350,50819,What is the total of the jury that is 2nd place and the total is larger than 190?,4, +14355,50824,"What's the engine capacity when the mpg-UK urban is less than 12.2, the mpg-UK extra urban is less than 18.8 and the mpg-US turban is less than 7.2?",4, +14356,50825,What's the mpg-US urban when the mpg-UK urban is 20 and the mpg-UK extra urban is less than 37.2?,4, +14357,50845,What's the rank when the obese children and adolescent count is 14.2%?,4, +14360,50859,what is the enrollement for the year joined 1958 in clarksville?,4, +14363,50867,"How much Attendance has a Result of 2–4, and a Visitor of brynäs if?",4, +14365,50870,"In what Year of Census or Estimate is the Toronto Population larger than 1,556,396?",4, +14370,50889,What is the total attendance before week 1?,4, +14373,50903,"How much Position has a Lost of 8, and a Played larger than 14?",4, +14374,50904,"Which Drawn has a Lost larger than 8, and Points smaller than 7?",4, +14385,50931,"How much Against has Losses smaller than 7, and a Wimmera FL of horsham?",4, +14386,50932,"How many Draws have Wins larger than 7, and a Wimmera FL of nhill, and Losses larger than 8?",4, +14387,50947,What is the Rank of the Rowers with a Time of 7:30.92?,4, +14390,50960,What is the total time for one south broad?,4, +14394,50972,"How many deciles have a Gender of coed, an Authority of state, and a Name of mount maunganui school?",4, +14398,50979,"What was the amount of Births (000s) that had a death rate larger than 7.6, and a Year of 1990-2009?",4, +14402,50993,What is the total rank with more than 2 silver and total larger than 10?,4, +14403,50994,"What is the total rank with a total larger than 2, and less than 0 gold",4, +14405,50996,"What is the total with a rank less than 5, gold larger than 5 and bronze larger than 8?",4, +14407,51013,How many losses did the Burnaby Lakers accumulate when they scored 8 points in 1998 playing less than 25 games?,4, +14412,51066,"What is the Area of the town with a Population Density of 36 km and a population greater than 3,546?",4, +14414,51082,"For all countries with 7 bronze medals and a total number of medals less than 13, what's the sum of silver medals?",4, +14420,51113,What is the monetary sum with a score of 75-71-75-72=293?,4, +14424,51135,How many total points does Mike Hyndman have with more than 119 assists?,4, +14425,51136,How many assists does David Tomlinson have?,4, +14426,51137,How many points does Shawn Mceachern with less than 79 goals?,4, +14429,51163,"How many gold did Gabon have when they were ranked no higher than 17, and less than 7 in total?",4, +14440,51273,What was the attendance on April 7?,4, +14446,51316,What was the rank of the person who swam in Lane 7 with a time of 2:25.86?,4, +14449,51346,What is the drawn result with a league position of 15th and a lost result that is more than 17?,4, +14459,51368,What is the total decile in the area of Normanby with a roller smaller than 157?,4, +14476,51447,"for a Goals Against smaller than 9, and a Goal Differential of 0, and a Draws smaller than 2, and a Wins of 1, what's the goal total?",4, +14493,51579,Name the sum of points for 1984,4, +14496,51596,How many points for the navy team that lost over 11?,4, +14510,51641,"How many totals have a Bronze of 0, and a Gold smaller than 0?",4, +14511,51642,"What is the total silver with a Rank larger than 9, and a Total larger than 1?",4, +14512,51649,What was the position of the team that had a goal difference of less than -11 and played less than 38 games?,4, +14521,51692,How many draws with 1 loss?,4, +14524,51705,What is the points gained of the match where fans took 403 [sunday]?,4, +14532,51733,How many floors are there at 32 n. main street?,4, +14536,51752,What is the number of party list votes for a vote percentage of 2.6% with 0 total seats?,4, +14537,51770,"How many electors has 465,151 naders and more than 143,630 Peroutka?",4, +14548,51809,What is the listing for 2009 when 1989 is less than 0?,4, +14550,51811,"what is the listing for 1999 when 1990 is more than 0, 2003 is 3, 2007 is more than 1 and 1996 is more than 0?",4, +14552,51813,"what is the listing for 1992 when 1999 is more than 1, 2008 is less than 2 and 2003 is less than 2?",4, +14555,51830,How many constructions has a Wheel arrange- ment of 4-4-0?,4, +14561,51869,What is the sum of PTS when there is a PCT smaller than 0.1?,4, +14568,51879,What's the FA Cup that has a league less than 1?,4, +14595,51954,How many goal differences have Played larger than 44?,4, +14605,51994,"what is the goals scored when draw is less than 8, points is 19 and goals conceded is more than 26?",4, +14606,51995,"what is the points when the goals conceded is less than 24, place is less than 6 and goals scored is less than 26?",4, +14607,51996,what is the place when losses is less than 12 and points is less than 19?,4, +14609,51998,In what Year were there 48 of 120 Seats and a % votes larger than 34.18?,4, +14613,52005,Which lane did George Bovell swim in?,4, +14624,52039,How many years have a Player name of ronnie bull?,4, +14627,52052,"Role of narrator, and a Radio Station/Production Company of bbc audiobooks, and a Release/Air Date of 13 november 2008 is what sum of the year?",4, +14630,52078,What is the total number of points for entrants with a Jordan 192 chassis?,4, +14633,52088,Name the sumof points for year less than 1994 and chassis of lola lc89b,4, +14634,52090,Name the sum of points for 1991,4, +14635,52099,Name the laps for qual of 144.665,4, +14639,52115,How many losses did the team with 0 wins and more than 72 runs allowed have?,4, +14645,52124,What is the total points listed that includes P listed Tyres after 1986?,4, +14647,52126,What is the total point for the year listed in 1988?,4, +14652,52132,How many laps did the 6th placed in 1998 complete?,4, +14656,52146,"What is the population of the place that has an area (km²) of 30,528, and a GDP (billion US$) larger than 58.316?",4, +14674,52231,"What is the total population of Rosenthal that's less than 24,300 for the population and has a population for Glengallan less than 3,410?",4, +14678,52235,"When were the years on which warwick had a population greater than 10,956 and allora had a population bigger than 2,439?",4, +14683,52243,How many goals have more than 38 played and more than 9 draws?,4, +14698,52328,"What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?",4, +14710,52383,"How many sacks have 2006 as the year, and a solo less than 62?",4, +14713,52386,"How many TTkl have 2004 as the year, and a pass def greater than 5?",4, +14715,52388,What is the decile of the school with a roll larger than 513?,4, +14719,52402,What was the attendance of the Blue Jays' game when their record was 47-43?,4, +14728,52427,What is the total dist with Johnny Murtagh and less than 26 runners?,4, +14734,52444,"How many people played at the club that had a ""goal difference"" of -8 and a position lower than 12?",4, +14749,52489,Name the sum of year when start is less than 30,4, +14754,52501,Name the sum of spectators for time more than 20.05 and team #2 of estonia,4, +14780,52626,"Name the sum of inversions for opened of april 20, 2002",4, +14791,52672,What year shows the Entrant of bmw motorsport?,4, +14807,52728,"How many laps for sébastien bourdais, and a Grid smaller than 1?",4, +14829,52844,What year were the Olympic Games?,4, +14832,52857,Name the sum of frequecy with brand of exa fm,4, +14835,52862,"brooklyn dodgers – 3, new york yankees – 5, and a Game larger than 1 had what attendance figure?",4, +14840,52903,What year was a Rial Arc2 chassis used?,4, +14847,52916,"Location of saint paul, and a Final-Score larger than 14.35, and a Event of all around is what sum of year?",4, +14851,52938,What is the total amount of decile with the authority of state around the Pokuru School and a roll smaller than 109?,4, +14858,52949,"What is the Pioneer population with a Sarina population less than 3,268 and a Mirani population less than 4,412?",4, +14859,52950,"What is the Mirani population with a total region population less than 48,530, a Mackay population less than 13,486, and a Pioneer population larger than 9,926?",4, +14864,52977,"What was the week of the game played December 6, 1964?",4, +14867,52980,"What is the sum of losses for Geelong Amateur, with 0 byes?",4, +14868,52981,What is the sum of the number of wins for teams with more than 0 draws?,4, +14870,52989,"In California what was the total rank at Irvine station when the number of boarding and deboardings was less than 683,626?",4, +14871,52990,"At south station what was the total rank when boarding and deboardings were smaller than 1,360,162?",4, +14886,53061,What is the total of the first season in Segunda División that has a City of cañete?,4, +14892,53096,"What is the region total before 1986 with a Waggamba of 2,732, and a Goondiwindi less than 3,576?",4, +14910,53160,What was the attendance for the game on August 16?,4, +14913,53174,What's the total score of Danny Edwards?,4, +14925,53198,Name the sum of points for chassis of brm p160e and year more than 1974,4, +14927,53201,"What is the sum of points in 1991, for footwork a11c chassis?",4, +14933,53246,How much money did the player Ed Oliver win?,4, +14935,53253,How many people attended the Royals game with a score of 17 - 6?,4, +14940,53270,What is the sum of skin depth with a resistivity of 1.12 and a relative permeability larger than 1?,4, +14942,53273,What does DeShawn Stevenson weigh?,4, +14952,53302,"For the Reno Aces, what are the Losses when they had 1 Appearances and a Winning Percentage of 1?",4, +14955,53309,What is the sum of the people in attendance when there was a Loss of clement (5–7)?,4, +14956,53312,How many people went to the game that lasted 2:37 after game 2?,4, +14960,53321,"With an Overall larger than 107, in what Round was Jim Duncan picked?",4, +14963,53336,What is the total of Frequency MHz with a Class of b1?,4, +14976,53397,"What is the total value for Lost, when the value for Points is greater than 21, and when the value for Draw is 2?",4, +14978,53399,"What are the total amount of Goals Conceded when the Points are less than 26, and when the value for Played is less than 18?",4, +14980,53402,What is the sum of Money of the game that was played in the United States with Sam Snead as a player?,4, +14982,53407,What is the sum of the total for a routine score of 26.6?,4, +14984,53422,How many days with frost were there in the City/Town of Lugo have?,4, +14989,53437,The sun of total that has a tour of 7 and a Giro smaller than 3 is 12.,4, +14991,53444,What is the sum of all laps starting at 10 and finishing at 20?,4, +14992,53452,What is the total national rank of Canada with lanes larger than 3?,4, +14999,53486,"What is the sum of people in the total region when more than 5,060 were in Mt. Morgan?",4, +15000,53487,What is the total swimsuit with Preliminaries smaller than 8.27?,4, +15003,53493,How many matches did goalkeeper Wilfredo Caballero have an average less than 1.11?,4, +15007,53502,What's the total number of picks for mckinney high school?,4, +15009,53504,What's the total number of picks for the player Matt Murton?,4, +15011,53535,What is the total number of gold medals won by nations that won 2 silver medals but fewer than 7 in total?,4, +15012,53536,What is the total number of medals won by nations that had 7 bronze medals and more than 18 gold medals?,4, +15018,53547,How many total runners had jockeys of Olivier Peslier with placings under 2?,4, +15023,53579,What year was the Album/Song Speaking louder than before?,4, +15025,53585,"What is the total decile with an Authority of state, and a Name of newfield park school?",4, +15028,53590,Add up all the Ends columns that have goals smaller than 0.,4, +15031,53595,"How many losses are there in the CD Sabadell club with a goal difference less than -2, and more than 38 played?",4, +15046,53652,What is the sum of the place that has less than 2 losses?,4, +15048,53660,"What is the sum of Other, when the Name is Simon Gillett Category:Articles with hCards, and when the Total is less than 34?",4, +15049,53661,"What is the sum of the value ""League Cup"", when the Total is less than 1, and when the League is less than 0?",4, +15052,53664,"What is the sum of League Cup, when the Other is less than 1, when the Name is Gareth Farrelly Category:Articles with hCards, and when the League is greater than 1?",4, +15053,53671,What is the sum of gold medals with a total of 12 medals and less than 4 bronze medals?,4, +15066,53714,"What is the total bronze with a Silver of 2, and a Gold smaller than 0?",4, +15068,53716,"What is the total Gold with a Bronze smaller than 7, a Total of 1, a Nation of cape verde, and a Silver smaller than 0?",4, +15072,53722,"Which sum of week that had an attendance larger than 55,767 on September 28, 1986?",4, +15077,53739,What year was the rider with a final position-tour of 88 and less than 11 final position-giros?,4, +15079,53743,What is the number of ranking when the nationalits is England with more than 53 goals?,4, +15083,53749,"Round 1 of 66, and a Money ($) larger than 400,000 has what sum of year?",4, +15089,53761,"With a type of mass suicide located in France and a low estimate greater than 16, the sum of the high estimate numbers listed is what number?",4, +15090,53762,What is the sum of low estimate(s) that is listed for the date of 1978?,4, +15107,53810,What is the total best for Bruno junqueira,4, +15114,53833,"What is the decile sum with a roll smaller than 25, and franz josef area?",4, +15124,53879,What is the Total with the Event 2004 Athens and Gold less than 20?,4, +15126,53886,What is the number of titles for the city of győr with a rank larger than 4?,4, +15130,53899,Name the sum of points for chassis of maserati 250f and entrant of officine alfieri maserati,4, +15132,53902,What is the attendance of the game on July 26?,4, +15137,53919,Name the sum To par for score of 71-74-71-72=288,4, +15139,53930,How many years has 2 points?,4, +15142,53946,What is the total gold from New zealand and a rank less than 14?,4, +15144,53949,What is the total gold in Norway with more than 1 bronze?,4, +15145,53950,What is the total bronze from Puerto Rico with a total of less than 1?,4, +15146,53958,How many total League goals does Player John O'Flynn have?,4, +15151,53976,"How many FA cups for the player with under 5 champs, 0 league cups, and over 3 total?",4, +15152,53977,How many league cups associated with under 10 championships and a total of under 3?,4, +15159,54014,Name the sum of rank for bronze less than 1 and gold of 1 with total less than 1,4, +15160,54015,Name the sum of rank for silver less than 0,4, +15164,54034,"What is the sum of all attendance on November 17, 1961?",4, +15166,54037,"What is the sum of matches played that has a year of first match before 2000, fewer than 21 lost, and 0 drawn?",4, +15168,54039,What's the total value of សាមសិប?,4, +15170,54042,How much is the total value of kau sĕb UNGEGN ?,4, +15172,54048,Game 1's sum of attendance is?,4, +15174,54067,What is the sum of the roll with an area of Waikaka?,4, +15181,54079,How many silver medals does Cuba have?,4, +15184,54104,What is the sum of UCI points for Kim Kirchen?,4, +15192,54120,"For years before 1996, having a rank of 3rd in the 125cc class, what is the sum of the points?",4, +15194,54130,Which species on Réunion island is part of the procellariiformes order and is part of the hydrobatidae family and has less than 21 species worldwide?,4, +15196,54132,How many species on Réunion do the dromadidae family have with a worldwide speices larger than 1?,4, +15203,54160,How many lanes have a Nationality of iceland?,4, +15208,54194,What's the total rank of the lane smaller than 8 with a time of 59.80?,4, +15210,54196,What year did deputy prime minister Mariano Rajoy Brey take office?,4, +15216,54204,What's the sum of the totals for Russia with more than 1 gold and less than 10 bronze?,4, +15223,54239,What was the total against in uefa champions league/european cup with more than 1 draw?,4, +15224,54240,What is the total against with 1 draw and less than 8 played?,4, +15225,54251,"What is the sum of the game with a PWin% of —, Term [c] of 1987–1988, and Win% less than 0.506?",4, +15226,54253,What is the of games when for the term [c] of 1969 – 1973?,4, +15227,54259,"How many draws have 1 win, 1 loss, and a Goal Differential of +1?",4, +15228,54266,What is the total diagram for builder york?,4, +15230,54271,In what year has a Post of designer?,4, +15240,54331,What is the total number of live births in 2006 with 98.40% of the population as Whites and has more than 2 for the TFR?,4, +15245,54338,what is the rank of the cinema when the number of sites is more than 62 and the circuit is cineplex entertainment?,4, +15264,54423,"What is the sum of number of wins that have earnings of more than (€)2,864,342 and money list rank of 3?",4, +15265,54424,What is the sum of Top 10 performances that have more than 2 wins and is higher than number 16 in the Top 25?,4, +15269,54447,"What is the total year with a Team of scuderia ferrari, an Engine of ferrari 106 2.5 l4, and more than 12 points?",4, +15272,54461,How many points were awarded to the Ford DFZ 3.5 V8?,4, +15274,54486,What is the total points that an 1951 Entrant alfa romeo spa have?,4, +15291,54560,Name the sum of year for connaught engineering and points less than 0,4, +15296,54602,Name the sum of year for olimpija ljubljana with height less than 2.04,4, +15300,54621,What is the amount of 000s from 1996?,4, +15304,54632,Name the sum of ERP W for class of d and frequency mhz of 98.7,4, +15308,54641,What is the sum of the drawn values for teams with 2 losses?,4, +15310,54644,"Name the sum of silver when total is mor ethan 1, bronze is 1 and gold is les than 0",4, +15313,54647,Name the sum of total with gold more than 1 and bronze more than 0,4, +15321,54683,How many years did Barclay Nordica Arrows BMW enter with Cosworth v8 engine?,4, +15322,54684,How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point?,4, +15323,54685,How many years was ensign n180b a Chassis with 4 points?,4, +15335,54713,What is the year when kurtis kraft 500f was the chassis?,4, +15340,54732,Name the sum of points for 1992,4, +15347,54743,"What is the total decile with an Area of whitianga, and a Roll smaller than 835?",4, +15354,54767,What is the total laps for the year 2011?,4, +15355,54769,What is the total of the Divison that is from the country Serbia and Montenegro with apps smaller than 12 with more goals than 0?,4, +15356,54770,What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1?,4, +15364,54818,What is the sum of Mpix with a maximum fps HDRX of less than 12 with a width larger than 5120?,4, +15369,54827,What is the 2006 value with a 2011 value greater than 4113 and a 2008 value less than 7181?,4, +15382,54860,Name the top-25 with wins less than 1 and events of 12,4, +15389,54882,How many players were drafted from the Boston Cannons in the round?,4, +15391,54888,Name the sum of laps for 12 grids,4, +15393,54897,What is the sum of the week for the Denver Broncos?,4, +15394,54898,"What is the attendance number for December 2, 1979?",4, +15395,54901,"Played that has a Points of 38, and a B.P. larger than 5 has what sum?",4, +15415,54970,How many times was the motorcycle ducati 916 2nd place when wins is less than 7?,4, +15417,55006,How many gold medals does the country ranked higher than 2 with more than 8 bronze have?,4, +15423,55027,How many years did John Player Lotus used Cosworth v8?,4, +15441,55111,What is the total of David Toms?,4, +15445,55122,What is the total amount of points that Christy has in the years before 1954?,4, +15453,55168,What were the total Pints after 1957?,4, +15461,55198,"What is the sum of Total Regions that have the Year 1954, and a Nebo greater than 447?",4, +15462,55199,"Before the Year 1947, what is the sum of Broadsound that have a Belyando greater than 11,362, and a Total Region equal to 5,016?",4, +15463,55200,"After 2001, what is the sum of Belyando that have a Nebo greater than 2,522?",4, +15472,55231,What is the sum of all the points won by Peter Whitehead in an alta f2 Chassis?,4, +15473,55233,How many total points were earned with ferrari 125 Chassis after 1952?,4, +15474,55234,What is the total number of Points that Peter Whitehead earned in a Ferrari 125?,4, +15487,55307,"What is the sum of the draw for the song ""Beautiful Inside"" which has a place larger than 2?",4, +15489,55313,What is the total Decile with Waikanae Area?,4, +15491,55341,"What is the Redcliffe population with a Pine Rivers population greater than 164,254 and a total population less than 103,669?",4, +15498,55370,what is the total number of seats 2006 that has parties and voter turnout in % and whose %2006 is greater than 51.5?,4, +15499,55371,what is the total number of seats 2001 with seats 2006 more than 10 and voter communities of cdu?,4, +15502,55396,What is the round for marcus howard?,4, +15510,55427,"Can you tell me the sun of Population that has the Country/Region of hong kong, and the Rank smaller than 2?",4, +15515,55443,Name the sum of year for penrith panthers opponent,4, +15519,55456,How many laps did the rider Alex Baldolini take?,4, +15524,55471,"How many points did the team with more than 68 games, 4 ties, and more than 272 goals against have?",4, +15530,55501,"What is the yield, neutrons per fission of the group with decay constants less than 0.301, a half-life of 22.72, and a group number larger than 2?",4, +4879,15738,Tell me the average units sold for square enix,5, +4880,15741,"What is the average year for Ponce, Puerto Rico events?",5, +4885,15784,"Tell me the average launced for capacity mln tpa of 15,0",5, +4900,15889,"Of the games that sold 321,000 units in the UK, what is their average place?",5, +4908,15915,Tell me the average attendance for week of 11,5, +4914,15957,Tell me the average wins for class of 50cc and rank of 8th,5, +4923,15972,Which rebound was 8 and has and ast that was less than 57?,5, +4924,15987,Which FA Cup apps has league goals of 1 with total goals less than 1?,5, +4930,15994,What is the average value of Bronze when silver is 0 and the total is less than 1?,5, +4934,16015,What are the average laps driven in the GT class?,5, +4939,16060,"Which average 50m split had a 150m split of 1:40.00, with a placing of less than 2?",5, +4940,16065,I want the average year of 敗犬女王,5, +4941,16067,Tell me the average year for my queen,5, +4946,16094,Tell me the average heat rank with a lane of 2 and time less than 27.66,5, +4959,16124,"In 2007, what is the average total matches with points % larger than 33.3?",5, +4963,16152,What is the average Year for the project The Untouchables?,5, +4968,16161,I want the average bronze for total of 19 and silver of 8 with rank of 31,5, +4969,16162,Tell me the average bronze for rank of 43 and total less than 11,5, +4976,16180,Tell me the average Laps for grid larger than 12 and bikes of ducati 999rs for dean ellison,5, +4980,16185,"Tell me the average week for attendance of 48,113",5, +4983,16203,Which nation has more than 6 Silver medals and fewer than 8 Gold medals?,5, +4984,16204,What is the rank of the Nation that has fewer than 24 total medals are more than 7 Gold medals?,5, +4989,16225,"At the UFC 78, what is the average round when the time is 5:00?",5, +4992,16237,Tell me the average Laps for grid larger than 22,5, +4994,16241,"When 4 clubs are involved, what is the average number of fixtures?",5, +4998,16254,I want the average pages for ISBN of 978-0-9766580-5-4,5, +5001,16269,Name the average place for ties less than 1 and losess more than 3 with points of 6 qc,5, +5009,16288,Tell me the average original week for soldier field,5, +5012,16309,"What is the average played value in Belgrade with attendance greater than 26,222?",5, +5025,16336,Tell me the average total for guatemala and bronze less than 2,5, +5038,16379,What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?,5, +5039,16380,What is the average round when there is a defensive back and an overall smaller than 199?,5, +5055,16430,What was the overall pick for the player who was a guard and had a round less than 9?,5, +5070,16507,"Which average overall has a Round of 1, and a Position of center?",5, +5075,16523,What is geelong's aberage crowd as Away Team?,5, +5076,16545,Name the average round where Dave Stachelski was picked smaller than 187.,5, +5077,16549,How many average games did Nick Rimando have?,5, +5083,16580,How many cup goals for the season with more than 34 league apps?,5, +5101,16694,What is the average grid number for paul cruickshank racing with less than 27 laps?,5, +5105,16700,"What week has a date of September 3, 2000?",5, +5107,16711,What year did the Capital City Giants have a game with the final score of 8-0?,5, +5117,16787,What is the average overall rank of all players drafted from Duke after round 9?,5, +5124,16804,How many years has the winner been a member of the National Football League?,5, +5139,16883,What is the crowd with an Away team score of 8.11 (59)?,5, +5142,16894,What was the average crowd size when the away team was South Melbourne?,5, +5152,16975,What was the crowd size at the game where the home team scored 12.17 (89)?,5, +5163,17030,What is the average grid number with a ferrari and a time or retired time of 1:32:35.101?,5, +5169,17052,"What is the average total when gold is 0, bronze is 0, and silver is smaller than 1?",5, +5171,17064,What is the size of the crowd for the game with Footscray as the home team?,5, +5174,17067,What is the average diff when games played are more than 6?,5, +5177,17070,What is the number of games played for the team with 12 points and an against smaller than 52?,5, +5179,17075,What is the average regular number of attendees that has 79 parishes?,5, +5183,17115,"When Fitzroy are the away team, what is the average crowd size?",5, +5184,17118,"What is the average number of tries that has a start larger than 32, is a player of seremaia bai that also has a conversion score larger than 47?",5, +5186,17121,What was the average round when he had a 3-0 record?,5, +5188,17131,"During what week was the match on November 10, 1963?",5, +5189,17136,What is the average crowd size for games with north melbourne as the away side?,5, +5192,17148,Which average crowd has a Home team score of 11.15 (81)?,5, +5208,17224,"When the Away team had a score of 11.16 (82), what is the average Crowd?",5, +5220,17275,What is the total in the case where theere are 6 lecturers and fewer than 48 professors?,5, +5225,17290,What is the average crowd size when fitzroy plays at home?,5, +5230,17305,What was the average crowd size when the home team scored 9.8 (62)?,5, +5231,17307,What is the average amount of goals that have a goal difference or 8 and the losses are smaller than 12?,5, +5233,17309,What is the average goal difference using slavia sofia club?,5, +5234,17310,What is the played average that has botev plovdiv as the club and wins larger than 11?,5, +5238,17324,"What week has an attended smaller than 62,723 on October 22, 1961?",5, +5240,17326,What is the number of starts for the player who lost fewer than 22 and has more than 4 tries?,5, +5242,17328,What is the average crowd size at glenferrie oval?,5, +5248,17364,What is the average election for vicenza province with the liga veneta party?,5, +5258,17397,How many average points did the player with a time/retired of +16.789 and have more laps than 68 have?,5, +5259,17398,How many average points did the team Minardi Team USA have when there was a grid 3 and more laps than 68?,5, +5263,17425,"What is the average number of goals that occurred in Hong Kong Stadium, Hong Kong?",5, +5272,17474,What is the average Worst score for Mario Lopez as the Best dancer and Tango as the Dance?,5, +5282,17496,What is the average crowd size at all matches where the home team scored 6.12 (48)?,5, +5287,17505,What was the average of the Off Reb with steals less than 8 and FTM-FTA of 16-17?,5, +5289,17509,What is the average round in which a Safety with an overall rank higher than 89 was drafted?,5, +5291,17519,What was the average size of the crowd for matches held at Corio Oval?,5, +5292,17547,"In what week was the game on August 10, 1956 played?",5, +5298,17582,What was the average size of the crowd for games where the home team had a score of 10.10 (70)?,5, +5300,17590,What is the # of candidates that have a popular vote of 41.37%?,5, +5301,17591,What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections?,5, +5304,17599,What is the average overall value for a round less than 4 associated with the College of Georgia?,5, +5305,17600,What was the average attendance in weeks after 16?,5, +5311,17608,How many silver medals were won with a total medal of 3 and a rank above 9?,5, +5319,17638,"What week had an attendance of 14,381?",5, +5326,17683,"What is the average Season for coach Fisher, and an actual adjusted record of 0–11?",5, +5331,17690,"What is the average number of golds for nations with less than 2 silver, named uzbekistan, and less than 4 bronze?",5, +5338,17728,"what is the week there were 41,604 people in attendance?",5, +5339,17729,What is the average crowd size for games with hawthorn as the home side?,5, +5341,17733,What was the average crowd size for the game where the away team scored 10.11 (71)?,5, +5342,17742,What is the average number of bronzes when the rank is below 11 for trinidad and tobago with less than 1 total medal?,5, +5365,17815,What was the attendance when North Melbourne was the away team?,5, +5368,17826,What was the average crowd size when Melbourne was the home team?,5, +5376,17888,What is the average crowd for Carlton?,5, +5378,17899,What was the average attendance when the opponent was at Philadelphia Eagles and the week was later than week 6?,5, +5381,17921,What is the average round at which is the position of Tight End and Randy Bethel?,5, +5382,17929,What is the average of all the years when the notes are “electronics brand?”,5, +5385,17942,What was the average crowd size when teh home team scored 13.24 (102)?,5, +5390,17957,"Who was the opponent on the date of November 29, 1970 and the attendance was less than 31,427?",5, +5392,17962,What is the average crowd size when the home side scores 8.9 (57)?,5, +5393,17964,What is the average crowd size when the home team scores 16.9 (105)?,5, +5395,17978,What is the average crowd size when the home team is North Melbourne?,5, +5399,18017,What is the average incorporataed year of the Air India Charters company?,5, +5405,18029,WHich Evening Gown has a Swimsuit smaller than 7.99 and a Interview larger than 7.98?,5, +5407,18038,"How many episodes were in the season that ended on April 29, 1986?",5, +5410,18046,"December larger than 21, and a Opponent of Pittsburgh penguins had what average game?",5, +5414,18055,"Attendance of 19,741 had what average week?",5, +5417,18068,"Which Frequency has a Webcast of •, and a Callsign of xemr?",5, +5418,18071,"Which Frequency has a Website of •, and a Webcast of •in san antonio?",5, +5425,18141,"Which Points have a Year larger than 1998, and Wins of 1?",5, +5427,18143,"What is the silver number when gold is more than 4, and the total is less than 24?",5, +5428,18144,What is the gold number when the total is 8 and bronze is more than 4?,5, +5430,18146,"What is the average Gold when silver is more than 2, and bronze is more than 1",5, +5431,18147,"What is the average Bronze when silver is more than 2, and rank is 2, and gold more than 2",5, +5438,18177,"Which Draws have Losses smaller than 16, and a Team of university, and Wins larger than 0?",5, +5441,18196,What is the average number of points of the team with more than 18 played?,5, +5443,18198,What is the average number of draws of the team with less than 17 points and less than 4 wins?,5, +5450,18221,"Which average Net profit/loss (SEK) has Employees (Average/Year) larger than 18,786, and a Year ended of 2000*, and Passengers flown larger than 23,240,000?",5, +5452,18224,"What average week has shea stadium as the game site, and 1979-12-09 as the date?",5, +5455,18227,Name the average earnings for rank of 3 and wins less than 3,5, +5456,18228,What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85?,5, +5460,18232,"What myspace has linkedin as the site, with an orkit greater than 3?",5, +5463,18235,"What is the average plaxo that has a myspace greater than 64, a bebo greater than 3, with 4 as the friendster?",5, +5471,18267,"Wins of 3, and a Pos. larger than 3 is what average loses?",5, +5474,18271,What's the average pct for George Felton when he had losses greater than 7?,5, +5479,18306,What is the average February that has 56 as the game?,5, +5489,18323,"Which Total has a Rank of 4, and a Silver smaller than 4?",5, +5494,18337,Which Year has Playoffs which did not qualify?,5, +5495,18351,What is the mean round number for center position when the pick number is less than 23?,5, +5501,18364,"What is the average Draw for the artist(s), whose language is Swedish, and scored less than 10 points?",5, +5503,18389,Which December has a Game of 37 and Points smaller than 47?,5, +5507,18399,"Which Win percentage has Points smaller than 472, and a Record (W–L–T/OTL) of 140–220–40?",5, +5518,18442,What's the average loss when the points were 545?,5, +5523,18449,"What average game has @ florida panthers as the opponent, 0-1-2 as the record, with an october greater than 8?",5, +5524,18450,"Which Lost has Games of 64, and Champs smaller than 0?",5, +5526,18453,"Which Champs is the average one that has a Draw larger than 2, and Games smaller than 60?",5, +5530,18460,"ratio of 15:14, and a just (cents) larger than 119.44 is what average size (cents)?",5, +5536,18485,"Name the average Bronze when silver is more than 3, gold is more than 1 and the total is 14",5, +5547,18507,What is the average pick number of Pennsylvania?,5, +5552,18533,Which Drawn has a Difference of 14?,5, +5557,18554,What was the amount of the 1st prize when paul azinger (9) was the winner?,5, +5560,18573,"In what Week were there more than 23,875 in Attendance at Memorial Stadium with Detroit Lions as the Opponent?",5, +5567,18589,"Which Points have a 1st (m) smaller than 132.5, and a Nationality of aut, and a Rank larger than 2?",5, +5569,18591,What was the average rank of Wolfgang Schwarz with greater than 13 places?,5, +5572,18595,"Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127?",5, +5579,18617,"Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137?",5, +5580,18618,"Which Game has Points of 53, and an Opponent of @ minnesota north stars, and a December larger than 30?",5, +5581,18619,Which December has a Record of 21–6–5?,5, +5586,18656,What's the mean number of wins with a rank that's more than 5?,5, +5593,18678,Name the average votes for one london,5, +5598,18685,What is the average of points for 8th place with draw more than 8?,5, +5606,18704,On what Week was the Result W 17-14?,5, +5607,18706,What is the attendance in week 4?,5, +5621,18789,"What is the average rank of Roman Koudelka, who has less than 274.4 points?",5, +5623,18792,"What is the average rank of Gregor Schlierenzauer, who had a 1st greater than 132?",5, +5625,18796,What is the average points on November 6?,5, +5626,18797,Which average's against score has 2 as a difference and a lost of 5?,5, +5630,18801,What is the mean drawn when the difference is 0 and the against stat is more than 31?,5, +5632,18805,"Name of byron geis, and a Weight smaller than 195 involves what average number?",5, +5633,18807,What day in february was game 53?,5, +5638,18828,What is the game number held on May 20?,5, +5645,18858,What is the average total TCs of the season where the strongest storm was Zoe and the season was totals?,5, +5648,18867,"Class of 500cc, and a Wins smaller than 0 had what average year?",5, +5650,18871,"Participation as of actor, film editor has what average year?",5, +5652,18874,What is the average number of Gold when the total is 11 with more than 2 silver?,5, +5655,18879,What is the best time for marcus marshall?,5, +5658,18883,What is the average for the agricultural panel that has a National University of Ireland less than 0?,5, +5664,18890,Whicih Extra points are the average ones that have Points smaller than 6?,5, +5667,18911,What is the average first prize of the tournament with a score of 279 (–9)?,5, +5669,18913,What is the average capacity for the venue where the team kommunalnik played?,5, +5687,18965,"Which Change is the average one that has a Centre of buenos aires, and a Rank smaller than 46?",5, +5689,19006,What is Larry Centers' average number when there were less than 600 yards?,5, +5692,19030,"What is the average year that has a win less than 1, yamaha as the team, with points greater than 2?",5, +5705,19067,What is the average Singapore value with a London value less than 0?,5, +5710,19089,What is the average 2006 value with a 2010 value of 417.9 and a 2011 value greater than 426.7?,5, +5714,19093,"What is the average 2007 value with a 2009 value greater than 2.8, a 4.9 in 2010, and a 2006 less than 2.5?",5, +5717,19102,Which 2nd (m) has a 1st (m) of 120.5 and Points smaller than 249.9?,5, +5721,19112,What was the average Points of the season driver Fernando Alonso had a percentage of possible points of 53.05%?,5, +5725,19129,What is the average Laps that shows spun off for time?,5, +5726,19130,What is the average Laps for the Mexico team with a grid number of more than 1?,5, +5735,19163,When did mika heinonen susanna dahlberg win mixed doubles?,5, +5738,19173,Year larger than 2001 has what average points?,5, +5741,19183,How many extra points are there that Herrnstein had with less than 2 touchdowns and less than 0 field goals?,5, +5745,19199,What is the average game number that took place after February 13 against the Toronto Maple Leafs and more than 47 points were scored?,5, +5746,19202,What is the average percent for the coach from 1905 and more than 7 losses?,5, +5750,19214,"what is the population of Valencia, Spain?",5, +5752,19216,with name meridian condominiums what is number of floors?,5, +5757,19224,What's the Lost average that has a Drawn less than 0?,5, +5758,19227,"What is the average points that have a December less than 6, with a game greater than 26?",5, +5759,19229,"Record of 42–16–8, and a March larger than 5 has what average points?",5, +5761,19239,"Which rec has Yards of 192, and a Touchdown smaller than 1?",5, +5767,19254,What are the average points that have december 27?,5, +5769,19269,What's the average year Charles N. Felton was re-elected?,5, +5771,19274,What's the average pole position for the driver that has a percentage of 44.81%?,5, +5772,19275,What's the average front row starts for drivers with less than 68 pole positions and entries lower than 52?,5, +5773,19277,"Attendance of 60,671 had what average week?",5, +5774,19278,Week of 7 had what average attendance?,5, +5781,19286,"Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards?",5, +5784,19326,What is the frequency MHz of the ERP W's greater than 250?,5, +5793,19350,"What is the number when the height shows 6'6""', and a Games number smaller than 4?",5, +5796,19361,"What's the mean attendance number when the record is 12-4 and the average is less than 10,027?",5, +5799,19365,"What position was played with a Difference of - 5, and a Played larger than 14?",5, +5808,19398,What is the average points won when Carlos had 0 wins?,5, +5817,19423,"Which Year has a Group of césar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)?",5, +5820,19428,Name the average valid poll for seats less than 3,5, +5821,19437,What was the average date with a record of 30-31-9 in a game over 70?,5, +5828,19447,"What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees?",5, +5836,19471,Bronze of 22 has what average silver?,5, +5838,19506,Which Round has a NHL team of edmonton oilers and a Player of vyacheslav trukhno?,5, +5842,19527,"What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8?",5, +5846,19542,"What is the rank of Greg Norman who earned more than $12,507,322?",5, +5850,19558,"Which Pick # has a Round larger than 5, and a Position of wide receiver, and a Name of gregory spann, and an Overall larger than 228?",5, +5851,19561,What is the average drawn number of the team with less than 70 points and less than 46 played?,5, +5853,19563,How many Points has a Game of 82 and a April larger than 10?,5, +5860,19579,Which February has a Game of 64?,5, +5861,19580,"Which Points have a Game smaller than 60, and a Score of 2–0, and a February larger than 1?",5, +5865,19594,Which Points have a Name of denis kornilov?,5, +5870,19599,"What was the pick number for Deji Karim, in a round lower than 6?",5, +5872,19602,"What's the Pick average that has a School/Club Team of Alabama, with a Round that's smaller than 9?",5, +5877,19614,What is the Points that has 61 - 15 Point difference and a Drawn larger than 1?,5, +5882,19619,"What is the average muslim that has a druze less than 2,534, a year prior to 2005, and a jewish greater than 100,657?",5, +5888,19629,How many people did Mayor Olav Martin Vik preside over?,5, +5891,19633,How many people does the KRF Party preside over?,5, +5895,19639,What is the average round of the defensive back player with a pick # greater than 5 and an overall less than 152?,5, +5896,19640,"What is the average overall of John Ayres, who had a pick # greater than 4?",5, +5897,19642,"What is the average overall of Ken Whisenhunt, who has a pick # of 5?",5, +5905,19668,"What is the mean number of wins for the norton team in 1966, when there are 8 points?",5, +5909,19681,what week number was at memorial stadium?,5, +5919,19699,What is the average number lost when the against value is less than 5?,5, +5921,19701,"What is the average total of the census after 1971 with 10,412 (32.88%) Serbs?",5, +5929,19728,How many floors are in the 274 (84) ft (m) building that is ranked number 1?,5, +5932,19731,"What is the average number conceded for hte team that had less than 19 points, played more than 18 games and had a position less than 10?",5, +5945,19773,What is the average date of the game with the Detroit Red Wings as the opponent?,5, +5949,19785,What is Erwin Sommer's average position?,5, +5953,19794,"Which Popular vote has a Liberal leader of king, and Seats won larger than 116, and a Year of 1921?",5, +5960,19830,What is the average number of draws for the team that had more than 0 wins?,5, +5963,19833,What is the average number of wins before the season in 1906 where there were 0 draws?,5, +5972,19850,Which 1990–95 is the average one that has a 2001–05 larger than 0.55?,5, +5975,19862,What games have more than 1 draw?,5, +5979,19882,"Which Position has a Team of criciúma, and a Drawn larger than 8?",5, +5980,19884,"Which Played has a Lost larger than 14, and a Drawn of 10, and Points larger than 46?",5, +5984,19927,What were the average partial failures when the rocket was Ariane 5?,5, +5985,19928,"What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes?",5, +5988,19931,What were the average launches for Ariane 5 and 0 partial failures?,5, +5992,19950,What is the average total that is 1st in 2010?,5, +6002,20007,What is the average position with an against value less than 11?,5, +6008,20019,"What year was the margin of victory 9 strokes and the purse under $2,750,000?",5, +6010,20021,What is the average number of points for a team in the 250cc class with fewer than 0 wins?,5, +6014,20032,What is the average earnings made by Greg Norman?,5, +6015,20038,"What is the average Games for 1965–1981, and a Ranking larger than 4?",5, +6024,20071,Name the averae top 25 with events less than 0,5, +6031,20094,"What is the average finish that has a start greater than 3, with honda as the engine, and 2011 as the year?",5, +6035,20109,What is the average 18-49 for the episode that had an order number higher than 35 and less than 3.5 viewers?,5, +6036,20111,"What year sold 1,695,900+ copies with an Oricon position larger than 1?",5, +6045,20169,What is the average conceded number of the team with a position lower than 8 and more than 2 wins?,5, +6046,20170,"What is the averaged scored number of team guaraní, which has less than 6 draws and less than 5 losses?",5, +6055,20183,Who had a points average with 0 extra points and 0 field goals?,5, +6057,20189,"Which Cuts made has a Tournament of totals, and Wins smaller than 11?",5, +6068,20225,"Which Capacity has a City of london, and a Stadium of queen's club?",5, +6069,20226,"Which Rank has a Name of thomas morgenstern, and Points larger than 368.9?",5, +6070,20227,"Which Rank has an Overall WC points (Rank) of 1561 (2), and a 1st (m) larger than 217?",5, +6078,20251,What is the average maximum height of a shell that travels for more than 16.3 seconds at 55° and has a maximum velocity of 2200 ft/s?,5, +6080,20254,What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25° in 10.1 seconds?,5, +6091,20308,"What was the average week of a game attended by 12,985 with a result of W 38-14?",5, +6092,20318,Name the average attendance from june 11,5, +6093,20321,"Which average Winner's share ($) has a Score of 281 (−7), and a Player of hale irwin, and a Year smaller than 1983?",5, +6098,20341,What is the average number of games associated with 6 points and under 2 losses?,5, +6101,20345,Which Lost has Games larger than 7?,5, +6103,20347,Which Lost has Points larger than 13?,5, +6104,20348,Which Points have a Drawn larger than 1?,5, +6109,20365,"After week 8, what was the Attendance on November 1, 1964?",5, +6126,20409,What is the average number of wins for the person who coached from 1951 to 1956 and had less than 174 losses and less than 6 ties?,5, +6127,20413,"Which Points have a Game larger than 25, and an Opponent of dallas stars?",5, +6141,20477,"Performer 1 of greg proops, and a Performer 3 of ryan stiles, and a Date of 25 august 1995 is which average episode?",5, +6152,20506,"Which Points have a Record of 12–2–4–1, and a November larger than 22?",5, +6155,20510,What day has a record of 25–30–13 and less than 63 points?,5, +6160,20552,"What is the average episode that has September 11, 2007 as a region 1?",5, +6161,20556,What is the average capacity for the farm at Gortahile having more than 8 turbines?,5, +6164,20581,"Which Pos has a Dutch Cup of winner, and a Tier larger than 1?",5, +6165,20582,"What is the average Frequency MHz that is on farwell, texas?",5, +6166,20585,What's the average game against the New Jersey Devils with 19 points?,5, +6167,20586,"Opponent of at boston patriots, and a Week larger than 3 had what average attendance?",5, +6168,20587,Name the average fall 07 for fall 07 more than 219,5, +6175,20604,How many Attendances that has a Visitor of philadelphia on may 20?,5, +6181,20622,on april 9 what was the attendance?,5, +6191,20641,What is the average number of losses for teams with 0 draws and 0 byes?,5, +6195,20645,"Flap of 0, and a Race smaller than 2, and a Season of 1989, and a Pole smaller than 0 had what average podium?",5, +6196,20649,"Elevation of 12,183 feet 3713 m is what average route?",5, +6199,20670,"What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8?",5, +6205,20693,WHICH LOA (Metres) has a Corrected time d:hh:mm:ss of 3:12:07:43?,5, +6207,20706,What year had an edition of 115th?,5, +6215,20738,Record of 11–12 involved what average attendance figures?,5, +6217,20748,What is the average episode number on 19 March 1993 with Jim Sweeney as performer 1?,5, +6225,20770,"What is the average week for the game against baltimore colts with less than 41,062 in attendance?",5, +6226,20771,"What was the average week for the gaime against the philadelphia eagles with less than 31,066 in attendance?",5, +6230,20777,What is the Draws average that has a Played that's smaller than 18?,5, +6233,20789,"Which Extra points 1 point has a Total Points smaller than 30, and Touchdowns (5 points) of 5?",5, +6244,20825,What was the average number of rounds in the fight where Tank Abbott lost?,5, +6257,20887,"Which Bronze has a Nation of canada, and a Rank smaller than 6?",5, +6266,20947,What is the average total for teams with over 3 bronzes and over 8 golds?,5, +6280,20980,"Which Rank is the average one that has a % Change of 0.7%, and a Total Cargo (Metric Tonnes) smaller than 1,556,203?",5, +6281,20982,What is the average grid for the +2.2 secs time/retired?,5, +6283,20985,WHich Facility ID has a Call sign of wnpr?,5, +6291,21012,What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts?,5, +6305,21061,What year is associated with a drama desk award ceremony and a Category of outstanding featured actress in a musical?,5, +6306,21062,What is the average Loss for the long of more than 12 with a name of opponents with a Gain larger than 1751?,5, +6307,21080,What is the average primary intake with an Ofsted number of 117433 and a DCSF number greater than 3335?,5, +6313,21100,What's the Year Average that has a Power of BHP (KW) and Trim of LS/2LT?,5, +6314,21103,What's the Year average that's got Trim of LS/LT and Power of HP (KW)?,5, +6320,21125,"What is the average number of wins for the player with a rank larger than 3 and earnings of $3,707,586?",5, +6323,21128,What is the average year with an average start smaller than 6.3 and fewer than 0 wins?,5, +6327,21143,"Which Effic is the average one that has an Avg/G larger than 3.7, and a GP-GS of 13, and a Cmp-Att-Int of 318-521-15?",5, +6347,21198,How many wins for team nsu and over 2 points?,5, +6351,21209,Name the average attendance with result of won 2-0 on 2 november 2007,5, +6362,21234,"Which FA Cup has a Player of khairan ezuan razali, and a Total smaller than 0?",5, +6366,21247,"Year(s) won of 1994 , 1997 has what average total?",5, +6367,21248,"Player of corey pavin, and a To par larger than 5 has what average total?",5, +6380,21276,"What is the average number of entries driver Mark Webber, who has more than 1014.5 points, has?",5, +6387,21285,"Which Wins have a Team of winnipeg blue bombers, and a Season larger than 1964?",5, +6389,21290,"Which Total has a Nation of japan (jpn), and a Silver smaller than 1?",5, +6390,21305,What is the average number of rounds for winner Rafael Cavalcante?,5, +6396,21323,"Which average Drawn has Points smaller than 14, and a Lost smaller than 4, and a Played larger than 9?",5, +6401,21337,what is the number of people in sri lanka,5, +6432,21488,What is the Places amount of the United States Ranking 8?,5, +6433,21489,What is the average episode number where jimmy mulville was the 4th performer?,5, +6443,21525,In what Year did the Norton Team have 0 Points and 350cc Class?,5, +6446,21534,"Which District has a 2008 Status of re-election, and a Democratic david price?",5, +6447,21535,Which District has a Republican of dan mansell?,5, +6454,21577,"How many Played that has Losses of 6, and Wins larger than 33?",5, +6469,21665,What is the average grid of driver Christian Vietoris who has less than 12 laps?,5, +6484,21700,"Which average Long has a Gain smaller than 16, and a Loss smaller than 6?",5, +6497,21725,What was the Attendance on Week 8?,5, +6501,21743,Result of w 21–7 had what average week?,5, +6506,21749,What is the mean year of marriage when her age was more than 19 and his age was 30?,5, +6510,21753,"Which Played has a Lost of 3, and an Against of 23?",5, +6514,21780,"Which Points have a Year larger than 1966, and Wins larger than 1?",5, +6516,21782,Which Points have Wins larger than 1?,5, +6517,21783,"Which Wins have a Year of 1963, and a Class of 50cc?",5, +6523,21790,Which average Opened has a Manufacturer of vekoma?,5, +6527,21797,"What is the average Pick for the Pasco, Wa school?",5, +6532,21814,What's the average total cargo in metric tonnes that has an 11.8% Change?,5, +6534,21816,"Where the games are smaller than 5 and the points are 6, what is the average lost?",5, +6538,21834,"Which average Game # has a Home of san jose, and Points smaller than 71?",5, +6539,21838,with delivery date of 2001 2001 what is gross tonnage?,5, +6542,21843,What is the average chart number for 11/1965?,5, +6545,21858,What is the average AE 2011 ranking with a Forbes 2011 ranking of 24 and a FT 2011 ranking less than 44?,5, +6546,21859,"What is the average ARWU 2012 ranking of Illinois, Champaign, which has a USN 2013 ranking less than 91 and an EC 2013 ranking larger than 1000?",5, +6547,21860,"What is the average BW 2013 ranking of Texas, Fort Worth, which has an AE 2011 ranking of 1000 and an FT 2011 ranking less than 1000?",5, +6550,21864,What is the average rank for nations with fewer than 0 gold medals?,5, +6557,21877,Which Losses have a Name of jimmy clausen?,5, +6566,21905,What wss the average round drafted for xavier players?,5, +6569,21920,"What was the finish associated with under 11 starts, a honda engine, before 2003?",5, +6582,21966,What is the average pick for clarence mason?,5, +6583,21967,"What is the frequency for the city of Lamar, Colorado?",5, +6584,21968,What is the average ERP W for callsign K207BK?,5, +6588,21974,What is the average field goal someone has when they have 0 extra points but more than 5 touch downs?,5, +6593,21983,"Which Year has a Reg Season of 3rd, western?",5, +6594,21984,"Which Division that has a Reg Season of 1st, western, and Playoffs of champions, and a Year smaller than 2013?",5, +6595,21986,"What is the average attendance for the game before week 4 that was on october 16, 1955?",5, +6600,22015,What is the average games of Tony Dixon?,5, +6606,22027,"Which Touchdowns have an Extra points smaller than 5, and a Player of clark, and Field goals larger than 0?",5, +6618,22065,"Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points?",5, +6619,22070,"What was the average rank of a player with more than 52 points, fewer than 10 draws, a goal loss under 44, and a loss under 15?",5, +6627,22089,What is the average game for March 8 with less than 84 points?,5, +6630,22097,"What number is Fall 06 from the state with 79 or less in Fall 08, 36 or greater in Fall 07 and greater than 74 in Fall 05?",5, +6631,22098,What number is Fall 06 from the state with 34 for Fall 09?,5, +6632,22102,"What is the average GBP Price with an event in Monterey, a RM auction house, and a price of $154,000 later than 2003?",5, +6637,22126,Loss of de la rosa (8–8) has what average attendance?,5, +6639,22139,"What was the average rank for team with more than 44 gold, more and 76 bronze and a higher total than 73?",5, +6641,22144,"What is the average Total for the Rank of 6, when Silver is smaller than 0?",5, +6646,22164,What is the number of floors for the Citic Square?,5, +6650,22169,"Which Faces have a Dual Archimedean solid of truncated icosahedron, and Vertices larger than 32?",5, +6667,22255,"How many goals are associated with over 97 caps and a Latest cap of april 24, 2013?",5, +6691,22316,In what Year is the length of the Song 7:42?,5, +6695,22323,What is the average rank for team cle when the BB/SO is 10.89?,5, +6699,22342,What mean number of extra points was there when James Lawrence was a player and the touchdown number was less than 1?,5, +6711,22382,"What is the average goals for with a position under 12, draws over 1, and goals against under 28?",5, +6722,22417,What is the average number of Gold medals when there are 5 bronze medals?,5, +6731,22448,What was the average E score when the T score was less than 4?,5, +6732,22449,What was the average T score when the E score was larger than 9.6 and the team was from Spain?,5, +6751,22491,What is the average grid number that had Team China with less than 10 laps?,5, +6753,22501,What is the average january number when the game number was higher than 39 and the opponent was the Vancouver Canucks?,5, +6758,22511,"Which Pos has a Car # larger than 2, and a Team of billy ballew motorsports?",5, +6762,22529,What is the game number held on May 2?,5, +6771,22557,"Which Overall is the average one that has a Pick # larger than 7, and a Round larger than 4, and a Name of glen howe?",5, +6780,22570,"Total larger than 3, and a Rank of 4, and a Silver larger than 0 has what average gold?",5, +6795,22624,How many Points has a Position of 8?,5, +6797,22626,Which Position has Draws smaller than 7 and a Played larger than 22?,5, +6802,22638,"Which Points have a Drawn larger than 0, and a Lost larger than 1?",5, +6803,22639,"Which Drawn has a Lost larger than 0, and Points smaller than 11, and Games smaller than 7?",5, +6805,22647,What is the Total of kyrgyzstan with a Silver smaller than 0?,5, +6808,22653,What is average round of Auburn College?,5, +6811,22656,"Which Top 10 has a Top 5 larger than 1, and a Year of 2003, and Poles larger than 0?",5, +6818,22665,"Which Points have an Opponent of vancouver canucks, and a November smaller than 11?",5, +6820,22668,Which Game has a Record of 27-11-10?,5, +6827,22719,What is the average number of borough councilors from Brompton?,5, +6828,22721,5 November 2010 of dragon oil 4.02% has what average Date?,5, +6829,22722,What is the average number of points for a difference of 55 and an against less than 47?,5, +6837,22759,What is the area located in Rhode Island with more than 38 sq mi area?,5, +6838,22760,What is the average area in New York that is larger than 55 sq mi?,5, +6852,22816,What is the average Entre Ríos Municipality with less than 9 Pojo Municipalities?,5, +6858,22835,What is the average drawn of the team with a difference of 4 and more than 13 losses?,5, +6865,22861,Name the average week for result of l 28–17,5, +6870,22874,What's Adam's score when Jade's score is greater than 5 and Peter's score is less than 0?,5, +6895,22937,"What was the average week of a game with a result of l 10-7 attended by 37,500?",5, +6896,22938,"What was the average attendance on October 30, 1938?",5, +6898,22967,What's the average crowd when the away team score was 14.14 (98)?,5, +6901,22985,How many entrants did the events won by Frank Gary average?,5, +6903,22997,"Highest smaller than 3,378, and a Stadium of cappielow has what average capacity?",5, +6907,23030,What was the average attendance when the record was 58–49?,5, +6911,23047,What is the mean Fall 09 number where fall 05 is less than 3?,5, +6917,23068,What is the mean game number when the points scored were more than 99?,5, +6920,23072,What is the average day in December of the game with a 8-2-3 record?,5, +6932,23122,What is the average track number 3:25 long and a title of Great Getting up Mornin'?,5, +6938,23159,"What is the average week that there was a game with less than 18,517 fans attending and occurred on November 21, 1954?",5, +6940,23162,"What is the average attendance for the game that was after week 4 and on November 14, 1954?",5, +6945,23167,"Which average Lost has an Against larger than 19, and a Drawn smaller than 1?",5, +6946,23168,"Which average Against has Drawn of 3, and Points larger than 9, and a Team of portuguesa?",5, +6947,23169,"Which average Against has Points of 6, and a Played smaller than 9?",5, +6948,23170,"Which average Points have a Position of 7, and a Lost smaller than 4?",5, +6949,23171,"Which average Points have a Lost larger than 2, and Drawn larger than 2, and a Difference of 0?",5, +6950,23172,"Which Touchdowns have an Extra points of 0, and Points larger than 5, and a Player of curtis redden?",5, +6954,23176,"Which Points have Touchdowns of 1, and a Field goals smaller than 0?",5, +6959,23196,"Which December has Points of 38, and a Record of 18–6–2?",5, +6961,23205,What round on average was a defensive tackle selected?,5, +6965,23210,"What's the Points average with a Lost of 21, and Position of 22?",5, +6972,23248,"What is the average number of wins of the year with less than 5 top 10s, a winning of $39,190 and less than 2 starts?",5, +6985,23280,What year had a version called Wolf Mix?,5, +6992,23299,What is the mean number of events where the rank is 1 and there are more than 3 wins?,5, +6994,23307,Which Social Democratic Party has a Green smaller than 0?,5, +7006,23342,"What is the average number of played of the team with 3 losses, more than 9 points, a position of 5, and less than 12 against?",5, +7009,23346,Name the average rating % for shandong satellite tv and share % less than 1.74,5, +7015,23383,What is the average attendance that has june 24 as the date?,5, +7031,23449,"What is the average total score of Belarus, which had an E score less than 8.2?",5, +7044,23499,Which Points have an Opponent of vancouver canucks?,5, +7059,23536,"What is the average number of legs won of the player with a high checkout greater than 96, more than 5 played, and a smaller than 95.61 3-dart average?",5, +7072,23562,What is the mean pick number for the cornerback position when the overall is less than 134?,5, +7078,23577,"Which average Against has a Difference of 10, and a Lost smaller than 2?",5, +7079,23578,"How many Attendances have a Result F – A of 0 – 2, and a Date of 31 january 1903?",5, +7081,23584,Which game has an opponent of Phoenix Coyotes and was before Dec 9?,5, +7088,23613,What is the average value for ERP W when frequency is more than 100.1?,5, +7089,23615,"What is the average value of ERP W in Beardstown, Illinois for a frequency greater than 93.5?",5, +7091,23618,What is the average winner's share won by Billy Casper?,5, +7097,23630,"What is the average rank of a nation that had 219,721 in 2012?",5, +7099,23634,What is the average frequency in MHz for stations with an ERP W of 170?,5, +7107,23658,What is the average number of students for schools with a pupil to teacher ratio of 25.1?,5, +7112,23663,Name the average wins outdoor with rank more than 4 and wins less than 3 with outdoor wins more than 0,5, +7116,23671,"Which 1990-1991 is the average one that has Played of 38, and Points of 40?",5, +7122,23686,What year featured lola motorsport as an entrant with over 0 points?,5, +7125,23709,"Which Round has a College of stanford, and an Overall smaller than 8?",5, +7132,23716,What is the average number of losses for teams with fewer than 0 wins?,5, +7133,23717,What is the average number of wins for Runcorn Highfield with more than 0 draws?,5, +7136,23723,"Which Game is the average one that has a February larger than 20, and a Record of 41–17–4, and Points smaller than 86?",5, +7142,23746,"Which Pos has a Car # smaller than 18, and a Driver of mike skinner?",5, +7144,23749,"Which Car # has a Make of toyota, and a Pos of 7?",5, +7150,23762,"What is the Number of Households that have a Per Capita Income of $21,345?",5, +7155,23786,The nation of denmark has what average total nad more than 0 gold?,5, +7160,23794,What is the average number of top-5s for the major with 5 top-10s and fewer than 12 cuts made?,5, +7161,23795,What is the average number of top-10s for the major with 2 top-25s and fewer than 10 cuts made?,5, +7165,23799,What is the average number of cuts made in events with fewer than 1 win and exactly 11 top-10s?,5, +7179,23839,What's the enrollment at 41 Johnson?,5, +7184,23857,What is the average episode number with q146 format?,5, +7192,23889,Which average Drawn has Games larger than 7?,5, +7194,23903,How many households are in highlands county?,5, +7196,23907,What is the bronze for Kyrgyzstan nation with a silver record of greater than 0?,5, +7197,23908,"What is the gold for the nation with a record of bronze 1, Syria nation with a grand total less than 1?",5, +7206,23933,What is the average round for draft pick #49 from Notre Dame?,5, +7215,23958,"What is the average Top-25 that has a Top-10 less than 7, and the Tournament is the open championship, with a Top-5more than 1?",5, +7223,24002,"When the corinthians have a position of less than 5, what is the average against?",5, +7229,24012,What is the average Position with less than 57 against and the team is Juventus?,5, +7231,24014,What is the average Lost when there are 57 against?,5, +7236,24035,What is the average Attendance at a game with a Result of w 30-23?,5, +7244,24067,What is the average total for Tiger Woods?,5, +7246,24071,"When the team had more than 46 wins, what were the average losses?",5, +7249,24075,What is the game average that has a rank larger than 2 with team Olympiacos and points larger than 113?,5, +7255,24120,What is the average number of top-10s for events under 57 and 0 top-5s?,5, +7256,24121,What is the average number of top-10s for events with more than 12 cuts made and 0 wins?,5, +7257,24122,What is the average number of top-25s for events with less than 2 top-10s?,5, +7265,24161,What is the average lost of games played of more than 9?,5, +7279,24178,"Which Gold has a Total of 2998, and a Bronze smaller than 1191?",5, +7281,24185,"When the venue was A and the date was 2 january 2008, what was the average attendance?",5, +7282,24189,"On 1 september 2007, at the Venue A, what was the average attendance?",5, +7287,24223,"What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305?",5, +7290,24247,"How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9?",5, +7292,24249,What's the average men's wheelchair when women's wheelchair is less than 0?,5, +7293,24250,"When the Country is Mexico, Women's race is less than 0, and Men's race is more than 0, what's the average total?",5, +7295,24252,"What's the average Women's Wheelchair when Men's race is 0, Women's race is 1, and Men's wheelchair is less than 2?",5, +7298,24261,Can you tell me the average Chapter that has Articles smaller than 15?,5, +7304,24315,What is the average year for Team Oreca?,5, +7314,24340,"What is the average number of runner-up that National University, which has more than 2 total championships, has?",5, +7316,24343,"What is the average total championships of the university with more than 0 women's, less than 4 runner-ups, and less than 0 men's?",5, +7319,24359,What is the average number of laps when the grid number is 9?,5, +7324,24378,What is the average number of cuts made when there were more than 2 tournaments played in 2011?,5, +7333,24397,"What is the average Weight of the person who is 6'9""?",5, +7340,24415,"What is the average Matches, when Round is Third Qualifying Round?",5, +7346,24435,"Which Labour Panel has an Industrial and Commercial Panel of 9, and a University of Dublin smaller than 3?",5, +7352,24450,"What is the average number of points in the 2012 season, which has less than 1 wins and less than 0 podiums?",5, +7360,24460,Call sign k216fo has what average ERP W?,5, +7364,24469,"Which Points is the average one that has Drawn of 3, and a Played smaller than 22?",5, +7366,24474,"What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11?",5, +7374,24499,"What is the average Week when there were more than 63,866 people in attendance on September 7, 1981?",5, +7375,24500,"What is the average Attendance for the game on November 1, 1981?",5, +7379,24518,"Mean attendance for December 22, 1980?",5, +7380,24525,"Which Round has a Location of auckland, new zealand, and a Method of tko on 1994-11-24?",5, +7398,24588,What is the average amount of earnings for years under 2004 and money list rankings of 6?,5, +7407,24638,"Which PBA Titles has a TV Finals larger than 6, and an Events larger than 20?",5, +7411,24662,What average lost has points greater than 108?,5, +7425,24722,What points average has a played greater than 20?,5, +7427,24724,At what average position is the drawn 9 and the points greater than 25?,5, +7435,24748,"What was the average Year of release for the Album, ""Da Baddest Bitch""?",5, +7436,24760,"What is the average share at 8:00 p.m., and an 18-49 of 1.3/4 with an air date of April 4, 2008?",5, +7439,24779,What is the average Events when the top-25 is 12 and there are less than 0 wins?,5, +7441,24781,What is the average Top-10 when there were 17 cuts made with less than 0 wins?,5, +7443,24783,"What is the average Top-5 for the open championship, and a Top-10 smaller than 2?",5, +7452,24818,"What is the average Byes for the losses of 15, and before 1874?",5, +7465,24867,How many goals on average had 644 matches and a rank bigger than 3?,5, +7470,24876,What is the average attendance for the New York Jets?,5, +7476,24885,Which FA Cup that has a League Cup larger than 3 and a League smaller than 16?,5, +7482,24902,"What is the Wins with a Top-25 of 3, and a Top-5 larger than 1?",5, +7484,24907,"What is the average Year when there were more than 3 points, for MV Agusta and ranked 10th?",5, +7485,24919,What is Relax-Gam's average UCI Rating?,5, +7489,24928,"With 10,894 students enrolled, in what year was this private RU/VH institution located in Troy, New York founded?",5, +7490,24929,"What is the enrollment number for the public institution in Golden, Colorado founded after 1874?",5, +7501,24974,"Which Total has a Rank of 17, and a Gold larger than 0?",5, +7502,24975,"Which Gold has a Rank of 15, and a Total smaller than 2?",5, +7504,24986,"What is the average Season when the venue was circuit de nevers magny-cours, and Drivers was more than 30?",5, +7506,24988,"What is the average Points For when there are Points Against more than 780, and Points smaller than 0?",5, +7507,24989,"What is the average Points when the Points Against is 594, and Losses is more than 3?",5, +7508,24990,"What is the average Percentage when there are more than 0 wins, Points Against is more than 481, Losses of 8, and a Points For larger than 826?",5, +7516,24999,"What is the average number of Byes for the team that had 15 Losses, and less than 1 Win?",5, +7518,25008,What is the average number of House of Representatives seats had an abbreviation of d66?,5, +7520,25049,What is the average Tries with less than 0 goals?,5, +7527,25066,What is the average number of goals for players ranked above 9 and playing more than 205 matches?,5, +7528,25067,What is the average rank for players with under 205 matches and under 100 goals?,5, +7529,25089,What was the average round for john markham draft pick?,5, +7534,25098,How many Weeks have a Result of w 17–13?,5, +7538,25111,When was the average year that the number of floors was greater than 75?,5, +7539,25112,What is the average number of floors of the Venetian tower?,5, +7546,25123,What is the rank where the gold is 0?,5, +7550,25127,"What is the average number of not usable satellited when there are 0 retired, and the launch failures are less than 1?",5, +7552,25129,"What was the average number of members Nominated by the Taoiseach, when the Agricultural Panel had less than 1 member, and when the Administrative Panel had fewer than 0 members?",5, +7558,25154,How many average votes did producer carlos coelho have in a higher place than 6 and with a draw larger than 5?,5, +7562,25170,What year had a date of TBA where the Oakland raiders were the home team?,5, +7563,25175,"What was the average Jersey number of the player for the Calgary Flames, whose Weight (kg) was greater than 84?",5, +7564,25176,"What was the average Height (cm), for a player who had the Position, C, and whose 1995-96 team was the Buffalo Sabres, and whose Weight (kg) was less than 82?",5, +7567,25183,"What is the average Natural Change (Per 1000), when Crude Death Rate (Per 1000) is greater than 13.2, when Deaths is 4,142, and when Natural Change is less than 752?",5, +7573,25202,What is the Rank for Viktors Dobrecovs with less than 325 Matches?,5, +7574,25203,What is the number of Matches for Vits Rimkus with a Rank of less than 3?,5, +7578,25216,What is team ypiranga-sp's average position when they lost by less than 7?,5, +7589,25257,What is the average round of player Sammy Morris?,5, +7597,25292,What is the mean number of matches when the strike rate is 87.37 and the 100s is less than 0?,5, +7598,25293,How many average 100s were there for Tim Bresnan?,5, +7605,25317,"What is the average Total when the ship was lützow, with a 13.5-inch/1400lb smaller than 0?",5, +7607,25319,What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5?,5, +7611,25323,What is the average for the university of dublin when the industrial and commercial panel is greater than 4 and the total of the national university of ireland is larger than 3?,5, +7619,25349,"What is the average capacity for less than 8,261,355 passengers, and 126,06% in use?",5, +7626,25374,"Which Points has a Difference of 3, and a Played smaller than 10?",5, +7630,25382,What is the average 1st place with a Rank that is larger than 10?,5, +7632,25394,"Which average match has a lost greater than 0, points greater than 6, legia warszawa as the team, and a draw less than 0?",5, +7633,25396,Which average lost that has a match less than 14?,5, +7637,25415,"What is the average week of a game on November 12, 1989?",5, +7639,25422,"What is the average Year when the Competition was friendly, and a Club of everton?",5, +7641,25426,"What is the average Total when silver is less than 1, and the rank is 15?",5, +7647,25441,What is the average Byes that has Ballarat FL of Sunbury against more than 1167?,5, +7648,25442,"What is the average draws with more than 1 win, 14 losses, and against less than 1836?",5, +7655,25481,"Which Rank has a Country of costa rica, and a Losing Semi- finalist larger than 1?",5, +7659,25524,What is the average round number with wide receiver as position and Clark University as the college and the pick number is bigger than 166?,5, +7663,25543,Which Points has a Performer of rob burke band and a Draw larger than 1?,5, +7672,25567,"What is the average played that has a drawn greater than 1, with an against greater than 16?",5, +7677,25587,What is the average Year when Australia was the runner-up at victoria golf club?,5, +7679,25597,"What is the average draw for Desi Dobreva, was it less than 6?",5, +7685,25623,How many FA Trophy has a Player of mario walsh and a League larger than 17?,5, +7692,25643,What are the average play-offs that have an FA Cup greater than 3?,5, +7695,25653,"What is the height of the player born on June 24, 1964, with a weight over 84 kg?",5, +7699,25669,What average rank that has a silver less than 0?,5, +7702,25672,"What average total has a gold greater than 0, and a silver greater than 0, with a bronze greater than 2?",5, +7711,25692,"What is the population on average with a per capita of 1,158, and a 2011 GDP less than 6,199?",5, +7714,25710,"What is the average Lost when the difference is - 3, and a Played is less than 10?",5, +7716,25714,"What is the average Top-5, when Tournament is U.S. Open, and when Cuts Made is greater than 10?",5, +7719,25717,"What is the average Top-10, when Wins is less than 0?",5, +7721,25732,What is the Total for the Player who won after 1983 with less than 4 To par?,5, +7725,25744,"What was the average Jersey # of Steve Griffith, when his Weight (kg) was less than 84?",5, +7728,25756,What is the average number played of the team with 1 drawn and 24 against?,5, +7732,25761,What is the average number of drawn with a difference of 17 and 22 points?,5, +7743,25810,What is the average weight of the player with a height of 180 cm and plays the d position?,5, +7746,25820,"What is the average goals for Jimmy Greaves, and matches more than 516?",5, +7751,25846,"What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884?",5, +7754,25853,"What is the average rank of the airport in São Paulo with passengers totaling less than 18,795,596?",5, +7755,25854,What is the average rank of the airport with a 9.3% annual change?,5, +7758,25872,What is the average number of starts when the money list rank is 108 and the rank in the top 25 is greater than 4?,5, +7759,25874,What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4?,5, +7763,25888,What is the average 800 kwh/kw p y with a 1600 kwh/kw p y less than 6.3 and a 2000 kwh/kw p y less than 1?,5, +7764,25889,"What is the average 2400 kwh/kw p y with a 1400 kwh/kw p y greater than 12.9, a 1200 kwh/kw p y greater than 21.7, and a 1600 kwh/kw p y greater than 18.8?",5, +7769,25905,"How many average total matches have a swansea win less than 3, fa cup as the competition, with a draw less than 0?",5, +7771,25907,"How many average total matches have league cup as the competition, with a draw greater than 0?",5, +7773,25914,"What is the average Density when the area is more than 1,185.8 with a population of 63,029?",5, +7775,25919,"Which Wins has a Tournament of totals, and a Cuts made larger than 42?",5, +7777,25921,Which Wins has a Top-5 of 6?,5, +7781,25930,What was the average pick with Ed O'Bannon and a round smaller than 1?,5, +7784,25955,"What is the average number of events having 1 top-10, fewer than 4 cuts made, and 0 wins?",5, +7785,25956,What is the average number of wins for events larger than 28?,5, +7792,25985,How many sprints on average had 10 wins and less than 5 features?,5, +7794,25991,"What's the average bronze with a total number of medals being 1, with more than 0 silvers?",5, +7795,25992,"In the 2005 season, how many races did the 15th place team complete?",5, +7804,26015,"Which Matches have a Rank smaller than 5, a Years of 1995–2003, and a Goals smaller than 104?",5, +7806,26017,Which Rank has a Years of 1998–present?,5, +7822,26064,What is the mean rank number when goals are 230 and there are more than 535?,5, +7825,26070,What's the mean game number for the olympiacos team when there's less than 17 rebounds?,5, +7831,26085,"What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3?",5, +7832,26086,What is average Top 10 with 0 wins?,5, +7833,26087,"What is the average event for the Open Championship Tournament, and a Top-5 less than 1?",5, +7834,26088,What is the average wins has Top-25 less than 0?,5, +7837,26091,"Which Draws has a Wins of 10, and a Peel of south mandurah, and a Byes larger than 0?",5, +7841,26095,What is the average number of games of the player with a rank less than 1?,5, +7848,26118,"What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels?",5, +7851,26121,What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370?,5, +7852,26122,What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0?,5, +7862,26136,"What is the average Week, when Result is l 37–34?",5, +7871,26160,What is the average games Played with positions higher than 3 that have goals Against less than 27 and a Lost games smaller than 6?,5, +7873,26162,Which average Points has a Lost higher than 20?,5, +7875,26164,"What is the Top-25 with a Top-10 of 8, and an Events of 45?",5, +7876,26165,"What is the Top-25 with an Events of 20, and a Wins larger than 2?",5, +7880,26182,What is the average amount of gold medals for a country with more than 12 total medals?,5, +7899,26252,What is the average rank of the record on 2007-06-21 with a mark less than 91.29?,5, +7906,26279,"What is the average against that has a drawn less than 7, points greater than 22, and 19 for the played?",5, +7907,26282,Which Week has a Result of l 13-16 and an Opponent of at buffalo bills?,5, +7911,26297,What is the average area with valparaíso as the capital?,5, +7914,26306,"How many Points against has Tries for smaller than 14, and a Team of llanelli?",5, +7919,26326,"What is the average percentage of total area when the percentage of marine area is more than 39.3 and territorial waters area is less than 2,788,349?",5, +7933,26383,In what Season were then less than 3 Races with less than 1 Win?,5, +7934,26388,"What is the Goal number in Råsunda, Stockholm with a Result of 2–2?",5, +7937,26398,Team Estudantes Paulista with a position less than 4 has what average against?,5, +7940,26408,What's the average round the position of RB was drafted?,5, +7941,26409,What's the average round Red Bryant was drafted with a pick larger than 121?,5, +7954,26441,"What is the average FA Cup that has gary jones as the player, and an FA trophy greater than 5?",5, +7956,26444,"What year has a winner's share smaller than 14,000?",5, +7964,26477,How many Apps did Player Gilberto with more than 1 Goals have?,5, +7972,26492,"What is the average Year, when Competition is Oceania Youth Championships?",5, +7974,26502,What average week number had the Chicago bears as the opponent?,5, +7990,26569,What is the average Total with a Gold that is larger than 4?,5, +7991,26570,What is the average Total with a Bronze that is larger than 1?,5, +7996,26579,What is the mean number of games for pablo prigioni when there are more than 14 assists?,5, +8012,26655,"What is the average Tier when the postseason shows -, and the season is 2012–13?",5, +8013,26659,How many average wins have USA as the team?,5, +8014,26660,What are the average wins that have great britain as the team?,5, +8015,26661,What's the average draft pick number from Carson-Newman College before Round 7?,5, +8017,26672,"What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure?",5, +8020,26681,"Which Oilers points have a Record of 10–6, and Oilers first downs larger than 14?",5, +8039,26738,What is the average number of silver medals of the nation with 3 bronzes and more than 4 total medals?,5, +8041,26754,What's the average amount of ties had when a team wins 6 and it's past the 2004 season?,5, +8046,26785,What is the mean number of laps when the grid is less than 19 and time/retired is +21.3 secs?,5, +8055,26811,"How many Crude death rate (per 1,000) has a Migration (per 1,000) larger than -5.06, and a Natural change (per 1,000) larger than 7.06? Question 1",5, +8058,26815,"What is the average Goals/Games for Rummenigge, Karl-Heinz, with Goals less than 162?",5, +8061,26828,What is the average First Downs for december 4?,5, +8064,26839,What is the average Top-5 finishes with 2 as the Top-10 and a greater than 4 Top-25?,5, +8069,26848,What is the Points with an Against smaller than 16?,5, +8071,26851,"Which Played has a Points of 2, and a Position smaller than 8?",5, +8072,26852,"How many average plays have points greater than 14, with an against greater than 17?",5, +8073,26853,Which average against has a lost less than 1?,5, +8078,26879,What is the average number of ties for years with more than 19 wins?,5, +8104,26931,How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?,5, +8106,26933,"What is the average opened year of Mini Estadi stadium in Barcelona, Spain?",5, +8115,26987,"What is the highest Z (p) when the N (n) is less than 30, and scandium is the element?",5, +8125,27017,Which average S.R. has an Average of 39.13 and Balls Faced larger than 318?,5, +8131,27049,"What is the average Wins, when F/Laps is greater than 1, and when Points is 80?",5, +8133,27051,"What is the average Season, when F/Laps is 1, and when Poles is less than 0?",5, +8138,27060,What is the mean number of against when the position is less than 1?,5, +8139,27061,What is the mean number of played when there are less than 18 points and the position is less than 8?,5, +8142,27064,"For Stellenbosch, which has a population larger than 155,733, what is the average area?",5, +8147,27069,"What is the amount of snow where the sunshine is 1 633, and storms are lower than 29?",5, +8149,27073,"What is the average finish that has 24 as the start, with a year after 1987?",5, +8153,27081,"What is the average draw that has a lost less than 4, gwardia bydgoszcz as the team, with a match greater than 5?",5, +8157,27097,"Which Year has a Competition of olympic games, and a Venue of atlanta, united states?",5, +8158,27103,"What is the average share for episodes with over 7.82 viewers, ranks of 3 and a weekly rank of 54?",5, +8163,27110,What is the average 1940 value where 1929 values are 101.4 and 1933 values are over 68.3?,5, +8169,27148,What is the Win % in the Span of 2011–2013 with a Lost of less than 1?,5, +8173,27153,"How many Capacity has a Annual change of 53.4% and Total Passengers smaller than 7,822,848?",5, +8177,27159,What average played has an against less than 15?,5, +8197,27192,"What Year has a Result smaller than 20.31, and a World Rank of 5th?",5, +8200,27196,"What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?",5, +8202,27203,"What is the average number of goals scored in the FA Cup among players that have more than 20 total goals, less than 1 FA Trophy goals, and less than 25 league goals?",5, +8205,27240,What is the average Game with a Date that is june 14?,5, +8207,27250,What is the average number of Wins in a PGA Championship with a Top-5 less than 2?,5, +8213,27261,"What is the average Goals for team Kairat, in the 2002 season with more than 29 apps?",5, +8214,27263,What is the average Apps for the team Kairat with level larger than 1?,5, +8218,27283,How many Assists for the Player with a Rank greater than 3 in less than 25 Games?,5, +8223,27295,"What is the average Height for the Position of d, with a Birthplace of new hope, minnesota?",5, +8232,27344,Which League Cup that has a Total of 19 and a League smaller than 15?,5, +8240,27366,"What is the average FA Cup Goal value for players that have 0 Other goals, 0 FL Cup goals, and fewer than 39 League goals?",5, +8241,27375,What is the mean year when the women's doubles team was helena turcinková / buresová?,5, +8247,27423,Which average match has points less than 6?,5, +8248,27424,Which average draw has points greater than 12?,5, +8251,27449,"What is the average year that the USD exchange of ¥88.54 had a gross domestic product larger than 477,327,134?",5, +8256,27471,"What is the average game 3 attendance of the team with a total attendance less than 524,005, a game 4 attendance of 70,585, and a game 1 attendance less than 70,585?",5, +8268,27509,What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4?,5, +8271,27512,With the cultural and educational panel less than 0 what is the average industrial and commercial panel?,5, +8284,27562,What is the mean number in the top 5 when the top 25 is 1 and there's fewer than 0 wins?,5, +8285,27563,What is the mean number of events when top-5 is 1?,5, +8288,27566,What is the average Cuts that were made with a Top-10 that is larger than 9?,5, +8300,27595,"For the teams that had less than 1 loss, what was the average number of Wins?",5, +8307,27617,How many Silver medals did the Nation with a Rank of less than 1 receive?,5, +8308,27618,What is the average total with 1 FA cup and more than 0 FA trophies?,5, +8310,27626,"What is the average Goals, when Playoffs is Lost in Round 2, and when Games is less than 81?",5, +8312,27628,"What is the average Lost, when Games is less than 82, when Points is less than 95, and when Pct % is less than 0.506?",5, +8314,27653,What is the number of the episode titled 'Sugar Daddy'?,5, +8333,27750,"Which Bask has Soft of 18, and a Total larger than 35?",5, +8340,27789,Which Date has a 1946 Nos of 3156/7?,5, +8344,27794,"What is the number of wins when there are 14 matches, and the No Result was less than 0?",5, +8354,27866,What is the Week number with a Result of W 30-28?,5, +8356,27870,"what is the average domestic s tone when the foreign imports s tone is less than 225,281 and the year is later than 2003?",5, +8357,27871,"what is the average domestic s tone when the total s tone is 2,926,536 and the foreign imports s tone is less than 464,774?",5, +8358,27872,"what is the average foreign imports s tone when the total s tone is 3,157,247 and the foreign exports s ton is less than 358,493?",5, +8374,27920,"What is the average score of player lee trevino, who has a t8 place?",5, +8377,27928,"What is the rank of the largest attendance over 101,474 played against Rice?",5, +8378,27930,"What was the average lead maragin for the dates administered of october 6, 2008?",5, +8380,27939,"What is average frequency MHZ when is in portales, new mexico?",5, +8381,27947,What is the to par for Tom Weiskopf?,5, +8383,27951,How many goals when more than 10 games played?,5, +8384,27952,"How many losses when goals against are more than 17, goal difference is more than 2 and points are more than 5?",5, +8387,27955,"Which Draw has a Performer of jenny newman, and Points smaller than 77?",5, +8388,27956,Which Points have a Draw of 2?,5, +8395,27974,"What is the average Grid, when Time is +45.855?",5, +8402,28004,What's the slalom when the average time was greater than 99.25?,5, +8406,28013,"What is the average number lost for hyde united when they had a smaller position than 17, 8 draws, and more than 57 goals against?",5, +8408,28026,What was the attendance in week 9?,5, +8410,28028,"what is the gold when silver is 1, event is 2000 summer paralympics and bronze is more than 3?",5, +8416,28045,"Which Total has an FA Cup goals of 1, and a League goals of 4 + 7?",5, +8424,28088,What attendance is dated february 27?,5, +8428,28139,"What is the average market value in billions of the company with less than 1,705.35 billions in assets, sales of 175.05 billions, and is ranked less than 19?",5, +8430,28142,What is the average rank of the company with more than 146.56 billion in sales and profits of 11.68 billions?,5, +8438,28158,What is the average number of golds in athletics associated with over 42 silvers?,5, +8451,28185,"What is the average Largest Component, Fractional Share, when N, Laakso-Taagepera is 1.98, and when N, Golosov is greater than 1.82?",5, +8456,28194,"What is the mean on-site ATMS that have off-site ATMs of 1567, and the total number of ATMs less than 4772?",5, +8457,28195,"With foreign banks as the bank type, and on-site ATMS less than 218, what is the average off-site ATMs?",5, +8465,28237,"Which Round has a College of tulsa, and a Pick larger than 61?",5, +8466,28244,"Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw?",5, +8467,28245,"Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)?",5, +8470,28255,What was the average attendance when marathon was the away team?,5, +8471,28257,"How much are General Electric's profits who have assets (billion $) under 2,355.83 and a market value (billion $) larger than 169.65?",5, +8473,28274,What is the average crowd of the 13.9 (87) Home Team Score?,5, +8480,28294,"Which Games has a Season of 2003/2004, and a Red Cards smaller than 5?",5, +8482,28296,Which Yellow Cards has a Season of 1999/2000?,5, +8485,28311,What is the average attendance of the game with 38 opponent and less than 14 Falcons points?,5, +8489,28317,"What is the average number of students in East Lansing, MI?",5, +8491,28319,What is Joanne Carner's average score in Canadian Women's Open games that she has won?,5, +8492,28328,"Which Score has a Place of t1, and a Player of hubert green?",5, +8494,28342,"What is the average Industry, when Agriculture is greater than 11?",5, +8495,28343,"What is the average Services, when Year is greater than 2003, when Industry is greater than 1,465, and when Regional GVA is greater than 9,432?",5, +8499,28347,"When the points scored was over 110.25%, what's the average amount lost?",5, +8502,28351,"What is the average rank of the movie from Paramount Studios that grossed $200,512,643?",5, +8507,28371,"What is the average Poles, when Wins is 0, when Position is ""nc"", and when Season is before 2004?",5, +8529,28439,"What is the average Pick, when Player is ""Willie White"",and when Round is less than 2?",5, +8550,28480,WHAT IS THE AVERAGE POLES WITH POINTS N/A?,5, +8552,28493,what was the overall pick number for rich dobbert?,5, +8555,28503,What is the average Lost for Team Matlock Town when the Goals Against is higher than 66?,5, +8557,28508,What was the average year when shri. shambu nath khajuria won the padma shri awards?,5, +8561,28520,What is the mean game played on January 9?,5, +8562,28524,What is the attendance of the game against the New Orleans Saints before game 11?,5, +8572,28556,What is the pick of Texas-San Antonio?,5, +8581,28631,"If the area of a country is over 9,826,675 kilometers and a total of emissions per person less than 14.9, what's the average Population found?",5, +8582,28632,"What's the average population of Mexico if the area is 1,972,550 kilometers squared?",5, +8584,28638,What shows for miles [One Way] when the fans took 340?,5, +8587,28651,"What is the mean q > 1 with a q > 1.2 less than 3,028, and a q > 1.4 of 51, and a q > 1.05 greater than 18,233?",5, +8593,28665,What is the average value for events won by KCL in a year earlier than 2004?,5, +8596,28686,How many people on average attended the game in week 14?,5, +8609,28762,What was John Strohmeyer's average pick before round 12?,5, +8610,28763,what is the average points when position is more than 5 and played is less than 10?,5, +8611,28764,"what is the average points when drawn is 0, lost is 5 and played is more than 10?",5, +8612,28765,what is the average number lost when points is 14 and position is more than 1?,5, +8613,28766,"what is the average points when played is 9, name is ev pegnitz and position is larger than 1?",5, +8625,28871,What is average for Benito Lorenzi league when total is smaller than 143?,5, +8642,28945,"What is the average Points, when Played is greater than 126?",5, +8648,28970,What is the average last yr with an l plyf less than 0?,5, +8655,28996,"What is the average value of Overall, when Round is greater than 11, and when Pick is greater than 10?",5, +8656,28999,"What is average Overall, when Pick is 19?",5, +8657,29000,What is the average pick for Princeton after round 3?,5, +8659,29010,"What's the average year for the good things happening album's single ""lady lady lay""?",5, +8663,29048,In what Round was the Memphis Player drafted?,5, +8664,29072,"WHAT IS THE AVERAGE DATE FOR CBS LABEL, IN AUSTRALIA, AND SBP 241031 FOR CATALOG?",5, +8681,29128,What is the average year that the club located in enfield was founded with an unknown coach?,5, +8685,29142,what is the capacity when the home city is zagreb and the manager is zlatko kranjčar?,5, +8713,29239,What was the drawn amount for teams with points of 12 and played smaller than 10?,5, +8734,29284,What was the average number of fastest laps with less than 0 poles?,5, +8739,29305,What is the average money ($) that Tom Weiskopf made?,5, +8757,29360,"What is the average sales in billions of the company headquartered in France with more than 2,539.1 billion in assets?",5, +8758,29361,"What is the average sales in billions of walmart, which has more than 15.7 billion in profits?",5, +8759,29363,"What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?",5, +8767,29379,What is the average number of rounds that Lance Gibson fought when his record was 1-1?,5, +8773,29424,What is the average win with a top 5 greater than 2 and a top 10 less than 5?,5, +8780,29460,"What are the average goals for with a drawn higher than 7 and goals against less than 86, as well as more than 11 losses and more than 42 games played?",5, +8794,29505,what is the average tournaments played when cuts made is 14?,5, +8800,29511,What was the original air date of series number 10?,5, +8830,29576,"What is the average week number for games that had 28,800 fans in attendance?",5, +8834,29598,Name the average Top 5 which has a Position of 52nd with a Year smaller than 2000?,5, +8835,29599,Name the average Wins which has a Top 10 smaller than 0?,5, +8841,29625,What is the Height of the Canterbury House with 12 Floors and a Rank of 75=?,5, +8842,29626,What is the Height (m) of the 32= Rank Building with 18 Floors and Height (ft) greater than 171?,5, +8844,29629,Average total for jim furyk?,5, +8846,29635,What were the average laps on a grid of 11?,5, +8847,29637,Which game had a record of 45-16?,5, +8864,29719,What is the long with a loss lower than 133 and more than 0 gain with an avg/G of 29.8?,5, +8870,29764,"What is teh average rank of the city of mashhad, which had less than 667770 in 1976?",5, +8871,29765,"What is the average rank of the province alborz, which had more than 14526 in 1956?",5, +8875,29789,what is the goals against when the points is 43 and draws is more than 9?,5, +8885,29827,"Which Laps have a Time of +23.002, and a Grid smaller than 11?",5, +8886,29829,"Which Grid that has a Rider of mike di meglio, and Laps larger than 23?",5, +8893,29884,How many Laps did Bob Wollek have?,5, +8896,29893,Name the average Stolen Ends which has an Ends Lost smaller than 35?,5, +8897,29894,"Name the average Blank Ends which has a Shot % smaller than 78, and a Ends Won larger than 43?",5, +8904,29920,"What is the average December, when Game is ""36""?",5, +8908,29927,Can you tell me the average Total votes that has the # of seats won smaller than 0?,5, +8913,29937,What round of the draft was Stan Adams selected?,5, +8917,29949,"Which Attendance has a Result of w 23-21, and a Week smaller than 5?",5, +8918,29950,Which Week has a Result of w 20-13?,5, +8922,29974,What is the average number of goals with 21 games for a debut round less than 1?,5, +8925,29982,"What is the average PUBS 11 value in Mumbai, which has a 07-11 totals less than 1025?",5, +8930,30036,What was the average bronze when gold was larger than 1 and silver was larger than 2?,5, +8931,30060,"What was the Attendance on September 26, 1971?",5, +8936,30070,What is the average capacity that has foligno as the city?,5, +8941,30089,What is the average number for Black Milk?,5, +8944,30095,"What is the average Games, when Player is Robert Hock, and when Goals is less than 24?",5, +8945,30096,"What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44?",5, +8946,30097,"What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56?",5, +8950,30120,What was the attendance on 31 January 2009 when the opponent was Airdrie United?,5, +8951,30123,What is the average attendance for all events held at Palmerston Park venue?,5, +8956,30147,"What is the average Attendance, when Date is 1 October 1998?",5, +8958,30169,"What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1?",5, +8959,30170,"What is the average Total, when Nation is Soviet Union, and when Gold is greater than 9?",5, +8962,30173,"What is the average Total, when Silver is greater than 4, and when Gold is greater than 16?",5, +8969,30202,What is the average oveall pick for players from the college of Miami (FL)?,5, +8973,30214,What is the attendance when Pittsburgh is the home team?,5, +8974,30215,"What was the Attendance after Week 4 on October 10, 1971?",5, +8977,30236,What is the average number of draws that has a played entry of less than 30 and a goal difference greater than 2?,5, +8978,30237,"What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses?",5, +8988,30267,"What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17?",5, +8995,30275,"Which Gold has a Total larger than 3, a Rank of total, and a Silver larger than 8?",5, +8996,30295,What is the average game number that was on october 19?,5, +8999,30307,What's the rank average when the gold medals are less than 0?,5, +9004,30325,What is the land area of Switzerland with a population density fewer than 188 km²?,5, +9007,30335,"What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3?",5, +9008,30337,What is the grid average with a +1 lap time and more than 27 laps?,5, +9013,30391,Which Against has a Date of 28 january 1950?,5, +9015,30394,"What is the average year that anna thompson had an 8th place result in team competition at the world cross country championships in st etienne, france with",5, +9022,30408,"Which Loss has a Last 5 of 4-1, a Streak of w2, and a PA per game smaller than 88.43?",5, +9026,30416,"What is the average Population (2010), when Population (2007) is 4,875, and when Area (km²) is greater than 1.456?",5, +9031,30472,With a Season premiere of 23 july 2008 this show has what as the average episode?,5, +9037,30490,What was the pole for a race lower than 16 with a Flap higher than 8 and a podium higher than 11?,5, +9042,30497,"Which Total has a Country of united states, and a Player of andy north?",5, +9044,30499,What is the average laps completed by riders with times of +2:11.524?,5, +9045,30501,What is the average grid for vehicles manufactured by Aprilia and having run more than 16 laps?,5, +9048,30510,"What is the average 4th-Place, when Runners-Up is less than 1, when Club is ""Tanjong Pagar United FC"", and when 3rd-Place is greater than 0?",5, +9050,30512,"What is the average Runners-Up, when 4th-Place is greater than 1, and when Champions is ""2""?",5, +9053,30515,What is the total medals for nation with more than 0 silvers and more than 0 golds?,5, +9056,30518,"How many gold medals for a nation with rank less than 5, more than 0 silvers and a total of 2 medals?",5, +9062,30526,"What is the average 1st Throw, when Result is less than 728, when 3rd Throw is ""1"", when Equation is ""0 × 9² + 0 × 9 + 0"", and when 2nd Throw is greater than 1?",5, +9075,30567,Name the average Pick # of mike williams?,5, +9080,30594,What is the average round of the s position player from the college of Mississippi and has an overall less than 214?,5, +9083,30598,How many Gold medals did Australia receive?,5, +9086,30601,"What is the average Episode Number, when Original Airdate is March 21, 2010, and when Season is less than 3?",5, +9094,30615,"Which Home Wins have Neutral Wins of 1, and Neutral Losses smaller than 0?",5, +9099,30642,What's the average year for the name aida-wedo dorsa with a diameter less than 450?,5, +9101,30644,"what is the average 65 to 69 when the oblast\age is belgorod and 40 to 44 is more than 1,906?",5, +9102,30645,"what is the average 60 to 64 when 50 to 54 is less than 2,054, 35 to 39 is more than 1,704, 30 to 34 is less than 1,381 and oblast\age is evenkia?",5, +9104,30647,"what is the average c/w 15+ when 18 to 19 is 132 and 65 to 69 is more than 1,869?",5, +9108,30678,"Which Goals Against has a Drawn larger than 9, a Lost larger than 15, a Position of 24, and a Played smaller than 46?",5, +9116,30694,What are the average spectators from the Group H Round?,5, +9123,30718,What game was played at Philadelphia?,5, +9125,30720,"What is the average week rank with 1.2 ratings, less than 1.94 million viewers, and a night rank less than 11?",5, +9126,30721,what is the round when the college is syracuse and the pick is less than 3?,5, +9131,30731,Which Built has a Builder of brel crewe?,5, +9132,30743,"Which Overall has a Position of te, and a Round larger than 5?",5, +9141,30788,what is the total when the rank is 7 and gold is more than 0?,5, +9143,30794,What was the attendance of the match with motagua as the home team?,5, +9152,30831,What is the average round for the TKO (punches and elbows) method?,5, +9154,30849,What is the average attendance for matches where the home team was vida?,5, +9168,30901,"For a team with a goals against less than 58, a position of 10, and a points 2 more than 53, what is the average lost?",5, +9170,30910,What was the average rank for south africa when they had more than 8 silver medals?,5, +9171,30911,What is the average number of gold medals the netherlands got when they had more than 4 bronze medals?,5, +9178,30922,"What is the average Rebounds, when Minutes Played is ""113"", and when Games Played is greater than ""18""?",5, +9181,30929,What is the average number of laps that were made when the race took a time of +48.325?,5, +9196,30998,What is the average pick of school/club team kutztown state with a round 4?,5, +9197,31000,What is the average number of matches of leonardo in seasons after 1?,5, +9198,31001,What is the average membership with 3.33% LDS and less than 47 branches?,5, +9203,31023,What is Fonsi Nieto's average grid when he's riding a Suzuki GSX-R1000?,5, +9206,31035,What is the average start with wins larger than 0 and 32nd position?,5, +9207,31036,"What is the average SFC in lb/(lbf·h) for engines with an Effective exhaust velocity (m/s) larger than 29,553, and a SFC in g/(kN·s) of 17.1?",5, +9208,31038,"what is the average specific impulse for engines that have a SFC in lb/(lbf·h) of 7.95, and a Effective exhaust velocity (m/s) larger than 4,423",5, +9210,31083,What is the position when lost is less than 7?,5, +9229,31148,What are grid 4's average points?,5, +9232,31163,What is the round for the ufc on fox: velasquez vs. dos santos event?,5, +9233,31171,"What is the average Bronze, when Nation is ""North Korea"", and when Total is greater than 5?",5, +9238,31192,What is the league goals when the league cup goals is less than 0 and 16 (1) league apps?,5, +9241,31197,"What is the average total of kenwyne jones, who has more than 10 premier leagues?",5, +9243,31203,"What is the average Area (in km²), when Markatal is less than 0?",5, +9251,31212,What Year had a Result of 34-25?,5, +9253,31217,"What is the average Position, when Speed is ""143.5km/h""?",5, +9254,31243,Average frequency with ERP W of 62?,5, +9260,31270,What is the game number when the record is 30-22?,5, +9267,31300,What is the average game that has December 6 as the date?,5, +9268,31301,What is the average game that has December 17 as the date?,5, +9269,31302,"Can you tell me the average Total that had the Silver of 0, and the Rank of 6, and the Gold smaller than 0?",5, +9272,31305,"What is the number of nurses in the region with an HO : Population Ratio of 1:16,791?",5, +9275,31328,What is the Points 2 average of teams that have played more than 46 games?,5, +9276,31334,"What is the average value for Pick #, when Position is Linebacker, when Player is Bob Bruenig, and when Round is less than 3?",5, +9278,31336,"What is the average Round, when Pick # is greater than 70, and when Position is Tackle?",5, +9297,31399,Which Round has a Player of sammy okpro?,5, +9309,31490,"What is the position when the points were less than 34, draws of 7, and a Club of sd eibar?",5, +9314,31502,what is the year when the location is yankee stadium and the result is 23-23,5, +9317,31505,"Which Total has a Name of alex mcleish category:articles with hcards, and a League smaller than 494?",5, +9329,31549,"How many Bangladeshis were admitted when 714 Nepalis and 13,575 Pakistanis were admitted?",5, +9331,31556,"WHAT IS THE OVERALL AVERAGE WITH A 22 PICK, FROM RICE COLLEGE, AND ROUND BIGGER THAN 10?",5, +9332,31558,"WHAT IS THE AVERAGE OVERALL WITH A ROUND LARGER THAN 9, AND RB POSITION?",5, +9342,31576,Which New council has an Election result larger than 24?,5, +9343,31577,"Which Staying councillors have a New council of 7, and a Previous council larger than 8?",5, +9357,31652,Which Laps has a Year of 2007?,5, +9360,31673,what is the average shot volume (cm 3) when the shot diameter (cm) is less than 6.04?,5, +9366,31704,Which Money ($) has a Score of 70-66-73-69=278?,5, +9367,31705,How many rounds did the match last with Sam Sotello as the opponent?,5, +9371,31731,How many goals on average are there for rank 3?,5, +9372,31732,What is the average goals against when there are more than 42 played?,5, +9382,31786,"What is the average total number of medals when there were 4 bronze, more than 2 silver, and less than 7 gold medals?",5, +9386,31803,How many points on average are there for less than 5 games played?,5, +9388,31822,What is the average rank for more than 12 points?,5, +9397,31884,"What is the average Attendance, when Visitor is Toronto?",5, +9398,31885,What's the average year with a rank less than 3?,5, +9399,31888,What's the average year for the accolade 100 greatest singles of all time?,5, +9402,31928,"Which Laps have a Time of +39.476, and a Grid larger than 11?",5, +9405,31933,"Which Gold has a Bronze of 1, and a Total smaller than 3?",5, +9406,31934,In what Week is the Opponent the New Orleans Saints?,5, +9415,31968,Which Game has a Score of 101-109 (ot)?,5, +9419,31976,What is the position when wins are fewer than 14 and draws are fewer than 3?,5, +9420,31997,On what Week was the Result W 34–24?,5, +9424,32015,What is the average rank for USA when the market value is 407.2 billion?,5, +9433,32041,"WHAT IS THE AVERAGE PICK FOR PURDUE, WITH A ROUND SMALLER THAN 5?",5, +9435,32043,"WHAT IS THE AVERAGE OVERALL, FOR MARK FISCHER?",5, +9440,32060,"What is the average To Par, when Place is ""T3"", and when Player is ""Ben Hogan""?",5, +9441,32061,"What is the average To Par, when Player is ""Julius Boros""?",5, +9446,32075,"What is the total average for McCain% of 55.0% and Obama# higher than 3,487?",5, +9447,32081,What is the average round for the record of 1-1?,5, +9452,32091,What is the average pick number for jerry hackenbruck who was overall pick less than 282?,5, +9462,32125,What is the average population vlue for an area smaller than 26.69 square km and has an official name of Rogersville?,5, +9466,32143,"What shows for 2000 at the Fort Peck Indian Reservation, Montana, when the 1979 is less than 26.8?",5, +9470,32148,"Can you tell me the average Laps that has the Time of +17.485, and the Grid smaller than 7?",5, +9476,32183,What is the rank of Bronco Billy?,5, +9482,32210,Which Game has a Score of l 102–114 (ot)?,5, +9484,32223,"What is the pick number later than round 1, for Reyshawn Terry?",5, +9485,32224,What round was the player Ty Lawson with a pick earlier than 18?,5, +9490,32234,Which week has a result L 56-3?,5, +9499,32290,What is the average Grid for the Rider Toni Elias with Laps more than 30?,5, +9503,32294,"Which Gold has a Nation of india, and a Bronze smaller than 0?",5, +9505,32304,"Which Silver has a Total of 7, and a Gold larger than 1?",5, +9506,32305,"Which Bronze has a Gold smaller than 16, a Rank of 10, and a Nation of italy?",5, +9507,32306,"Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13?",5, +9512,32312,"Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5?",5, +9514,32328,Which Round has an Opponent of jorge magalhaes?,5, +9515,32329,"Which Round has a Location of bahia, brazil?",5, +9517,32333,What is the average of the total when t11 is the finish?,5, +9520,32344,What was the average rank for the film directed by roland emmerich under the studio of 20th century fox?,5, +9521,32345,What is the average rank for the film directed by michael bay?,5, +9523,32356,Which January has an Opponent of @ detroit red wings?,5, +9530,32400,What is the average laps for the +50.653 time?,5, +9532,32402,What is the average points when the drawn is less than 0?,5, +9534,32404,"What is the average area in square miles for the division that is 9,630,960 square kilometers with a national share larger than 100%?",5, +9535,32405,What is the average area in square miles for the hunan administrative division with a national share less than 2.19%?,5, +9536,32406,"What is the average square kilometer area of the division that has a 2,448 square mile area and a national share larger than 0.065%?",5, +9537,32407,What is Central Michigan's average overall when the pick was 8?,5, +9544,32453,What is Ivan Ciernik's average points with less than 11 goals?,5, +9558,32501,Which Ratio has a Similar ISO A size of a3?,5, +9560,32507,"What is the average earnings ($) that has meg mallon as the player, with a rank less than 9?",5, +9561,32508,"What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC?",5, +9566,32542,"What is the average assets in billions of the company Bank of America, which has less than 49.01 billions in sales?",5, +9578,32607,WHAT IS THE AVERAGE DATE OF RELEASE FOR THICKSKIN?,5, +9582,32615,In 2011 with a less than 13.333 wind power what is the mean hydroelectricity?,5, +9586,32626,"What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39?",5, +9598,32657,"How many Crowd that has a Date on saturday, 29 january and an Away team of collingwood?",5, +9600,32682,How many rounds did the match at GCF: Strength and Honor last?,5, +9606,32690,What is the average game number when the record is 4-1?,5, +9610,32733,How many people on average attend round f?,5, +9612,32753,What is the average round of the match with kevin manderson as the opponent?,5, +9615,32761,Which average overall has a Pick smaller than 5?,5, +9621,32809,"What is the average Position, when Bike No is greater than 8, and when Points is less than 240?",5, +9624,32812,"What is the average Bike No, when Driver / Passenger is Joris Hendrickx / Kaspars Liepins, and when Position is greater than 4?",5, +9628,32829,"What is the average # Of National Votes, when the Election is before 1992, when the % Of Prefectural Vote is 39.5%, when Leader is Takeo Fukuda, and when # Of Seats Won is greater than 63?",5, +9629,32830,"What is the average Election, when % Of Prefectural Vote is 38.57%, and when # Of Prefectural Votes is greater than 21,114,727?",5, +9630,32831,"What is the average Election, when % Of Nation Vote is 45.23%, and when # Of Prefectural Votes is less than 14,961,199?",5, +9634,32854,"What Week falls on September 4, 1994?",5, +9635,32876,Notre-Dame-De-Lourdes has what average area km 2?,5, +9640,32900,What is Chepén's average UBIGEO?,5, +9644,32932,"What week had a game that was played on November 11, 1962?",5, +9655,32970,Which average Game has a High points of wilson chandler (16)?,5, +9662,32992,"What is the average Ties, when Played is greater than 5?",5, +9664,33003,"Can you tell me the average Points that has the Attendance of 3,806?",5, +9665,33018,"What is the average Season, when First Broadcast is January 23, 1981?",5, +9666,33021,What is the attendance when Cork City is the opponent?,5, +9671,33051,"How many played when lost is more than 17, drawn is 15 and goals against is less than 75?",5, +9673,33053,How many lost when goals for is 43 and the position number is higher than 15?,5, +9679,33069,"Which 2010 has a Rank of 1, and a 2009 larger than 17,233,000?",5, +9687,33106,"What is the number of clubs when the average is more than 18,571, there are fewer than 182 games and the total attendance is 3,140,280 in a year more recent than 1995?",5, +9690,33109,What is the average pick number for Washington State?,5, +9694,33120,What is Beyer Peacock's SR number with a SECR number of 769?,5, +9707,33164,"Which Week has a Date of december 8, 1991?",5, +9719,33220,"What is the average value for 1970, when the Region is East Europe (7 Economies), and when 2000 has a value greater than 2?",5, +9722,33223,What average drawn has a played greater than 42?,5, +9726,33227,"What is the average goals for that has +40 as the goals difference, with points 1 greater than 55?",5, +9727,33228,Can you tell me the average Total that has the To par of 15?,5, +9728,33233,"what is the average drawn when the points is more than 15, lost is 1 and played is less than 14?",5, +9730,33235,what is the average lost when played is more than 14?,5, +9740,33294,What is the ERP W for the station whose call sign is K248BJ and whose frequency MHz is higher than 97.5?,5, +9743,33300,"What are the average Laps for the time/retired of +16.874 secs, and a grid less than 5?",5, +9746,33304,What is the average new council number when the election result is smaller than 0?,5, +9748,33306,"How many staying councillors were there when the election result was larger than 0, the new council less than 27 and the party conservatives?",5, +9750,33311,"what is the average 2011 when 2012 is 65,000 and 2010 is more than 75,680?",5, +9754,33319,"What is the average Year, when Outcome is ""Winner""?",5, +9756,33326,"What is the average Bronze, when Rank is greater than 6, when Nation is Italy (ITA), and when Total is less than 1?",5, +9758,33328,"What is the average Gold, when Total is 2, when Silver is less than 1, and when Rank is greater than 5?",5, +9761,33332,"What is the average To Par, when Player is ""Billy Casper""?",5, +9764,33337,What is the average yards for Jimmie Giles in a game larger than 15 and reception larger than 2?,5, +9768,33350,what is the average crowd when the away team is new zealand breakers and the venue is cairns convention centre?,5, +9780,33419,What is the average number of points with less than 1 draw and more than 11 losses for Ev Aich?,5, +9783,33425,What is the average number of casualties for the convoy with a number of U-844?,5, +9787,33442,"Before 2007, what was the avg start that had a pole of 0 and in 65th position?",5, +9793,33463,What is the Kilometer of the Berendries asphalt course with an Average climb less than 7 and Length (m) longer than 645?,5, +9796,33477,"What is the average Round, when Player is ""Gurnest Brown"", and when Pick # is greater than 180?",5, +9800,33503,"Name the average Lead Margin on november 13-november 19, 2007?",5, +9805,33542,"Which Played has a Team of cerro corá, and Losses larger than 4?",5, +9806,33543,"Which Losses has Scored of 9, and Points larger than 8?",5, +9808,33547,"What is the average Week, when Opponent is Minnesota Vikings?",5, +9811,33581,"Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12?",5, +9814,33606,"What is the average Laps, when Grid is 15?",5, +9820,33632,What series number was directed by milan cheylov and written by will dixon?,5, +9823,33654,What day in November has a record of 15-6-1?,5, +9826,33665,What is the average of someone with more than 19 wickets and less than 16 matches?,5, +9828,33677,What was the percentage in 2006 that had less than 9% in 1970?,5, +9837,33699,What is the average of laps ridden by Toni Elias?,5, +9842,33750,What was the average amount of losses for teams with played less than 14?,5, +9844,33752,What was the average losses for team with points larger than 3 and played larger thna 14?,5, +9846,33779,"If the manufacturer is Yamaha, and the laps driven were under 32, what's the average of all grid sizes with that criteria?",5, +9848,33786,What is the average games that were drawn with ERSC Amberg as name and less than 14 points?,5, +9851,33806,What is the average attendance of the match with arlesey town as the home team?,5, +9859,33848,"WHAT IS THE AVERAGE SQUAD NUMBER WITH MARTIN SMITH, AND LEAGUE GOALS LESS THAN 17?",5, +9860,33865,What was the draw of Maggie Toal?,5, +9864,33881,"How many votes did Kerry get in the county that gave Bush 189,605 votes?",5, +9868,33885,"Name the average In/de-creased by which has a Governorate of al anbar governorate, and Seats 2005 smaller than 9?",5, +9872,33900,"Count the average Wins which has a Class of 250cc, and a Year of 1972?",5, +9881,33924,"What is the average Year, when Position is 9th, when Event is 100 m, and when Venue is Munich, Germany?",5, +9882,33927,"What is the average Total, when Bronze is greater than 0, when Silver is greater than 0, when Gold is greater than 2, and when Nation is Soviet Union?",5, +9883,33928,"What is the average Gold, when Nation is Yugoslavia, and when Silver is greater than 0?",5, +9884,33929,"What is the average Bronze, when Total is 4, and when Silver is less than 2?",5, +9886,33944,How many rounds is the fight against Michael Chavez?,5, +9887,33951,What was the average points for someone who has played more than 10?,5, +9900,34037,"How many South Asians on average were in Alberta in 2001 and in 2011 had 159,055?",5, +9914,34099,What was Donald Bradman's average runs?,5, +9918,34115,Can you tell me the average December rhat has the Opponent of @ toronto maple leafs?,5, +9920,34130,What subject has a plural of am(ô)ra (we)?,5, +9925,34158,"What is the average density with a land area of 123.02, and a Code larger than 2356?",5, +9926,34159,"What is the average land area with a density of 815.48, and a Population larger than 411?",5, +9936,34228,"What is the average Place, when Song is ""Dis Oui""?",5, +9938,34233,"What is the average position of pilot petr krejcirik, who has less than 11 points?",5, +9960,34334,"What is the 2009 average if 2008 is less than 0,11 and 2007 is less than 0,08?",5, +9961,34335,"What is the 2009 average when the 2007 average is more than 0,18?",5, +9969,34370,Which Attendance has a Week of 8?,5, +9970,34373,"Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610?",5, +9973,34379,COunt the average Diameter (km) which has ketian (yenisey r.) main evil goddess.?,5, +9977,34420,WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129?,5, +9994,34491,What is the average Enrollment of Dickinson College?,5, +9997,34499,"Which money has a Country of united states, and a Place of t6?",5, +9998,34509,What is the average match when the singapore armed forces played away against perak fa (malaysia)?,5, +10003,34544,"What is the average Bronze, when Silver is 0, when Rank is 19, and when Total is greater than 2?",5, +10005,34547,What is the average number of pieces for boards that started in 1941 and were released after 2001?,5, +10016,34576,What is the average day in December with a Record of 16-3-4 and a Game smaller than 23?,5, +10021,34615,"What is the average number of goals of park sung-ho at the k-league competition, which has the pohang steelers team and less than 46 total Gs?",5, +10025,34623,What is the average pick with 85 overall in a round lower than 3?,5, +10028,34644,"WHAT IS THE AVG AST FOR GAMES LARGER THAN 101, RANK 5, TOTAL ASSISTS SMALLER THAN 331?",5, +10039,34693,Average round for 22 pick that is overall smaller than 229?,5, +10040,34694,"What is the normal 2002 that has a Country of Peru, and 2007 bigger than 1,200?",5, +10047,34701,How many Total medals did the Nation the got 0 Bronze medals receive?,5, +10051,34709,How many Inhabitants were there after 2009 in the Municipality with a Party of union for trentino?,5, +10070,34798,What number pick was the player drafted in round 3 at #28 overall?,5, +10076,34840,What is the average losses for 22 goals?,5, +10081,34867,What was the average crowd size for a home team score of 11.11 (77)?,5, +10084,34889,What game was played on December 8?,5, +10095,34927,"What is the average attendance at week earlier than 6 on October 14, 2001?",5, +10096,34929,How many average points did svg burgkirchen have with a loss smaller than 6?,5, +10101,34956,"What is the average bronze when the total is 2, silver is less than 1 and gold is more than 1?",5, +10102,34957,what is the average silver when the total is more than 20?,5, +10104,34959,"what is the average total when bronze is more than 0, gold is 0, the nation is united states (usa) and silver is 0?",5, +10115,35007,"What is the average Wins, when Points is less than ""19""?",5, +10128,35038,"What was the draw for ""Feel The Pain"" which placed in 2nd and had more than 79 points?",5, +10130,35042,WHAT IS THE AVERAGE WEEK WITH A DATE OF JULY 25?,5, +10131,35050,"What is the average February that has 18-26-10 as the record, with a game less than 54?",5, +10143,35132,"What is the average Founded, when Enrollment is 4,000?",5, +10145,35139,What is the average Margin that has a Round of 13. (h)?,5, +10149,35177,Mean of played with smaller than 7 conceded?,5, +10153,35184,Which Took Office has a District of 29?,5, +10154,35185,What are the average Laps on Grid 15?,5, +10159,35191,"What is the average Podiums, when Wins is greater than 1, when Races is 2, and when Points is greater than 150?",5, +10164,35211,What is the average number of laps with 16 grids?,5, +10167,35219,What is indiana college's average pick?,5, +10168,35227,What average game has January 30 as the date?,5, +10176,35255,"WHAT IS THE AVERAGE VOTE FOR DUBLIN SOUTH, AND SPOILT SMALLER THAN 3,387?",5, +10177,35256,"WHAT IS AN AVERAGE ELECTORATE WITH VOTES OF 28,475 AND SPOILT SMALLER THAN 5,779?",5, +10182,35300,What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition?,5, +10190,35348,"Count the Grid which has a Manufacturer of aprilia, and a Rider of bradley smith?",5, +10195,35355,"Name the Silver that has a Total smaller than 2, and a Nation of south korea?",5, +10198,35367,"Which Lost has a Position of 4, and a Drawn smaller than 3?",5, +10199,35368,"Which Position has a Lost larger than 4, and a Played larger than 14?",5, +10233,35489,"When the total winners was smaller than 2 and 2 woman won, what's the average of the men's half marathon winners?",5, +10247,35543,"When the laps are over 53, what's the average grid?",5, +10248,35544,What's the average laps driven by david coulthard?,5, +10249,35551,What's melbourne's average year?,5, +10252,35565,What is the average rating of viewers 18 to 49 where the total viewer count is 3.93 million and share less than 4?,5, +10256,35575,Which crowd had an Away team score of 7.12 (54)?,5, +10270,35631,What was the average clean and jerk of all weightlifters who had a bodyweight smaller than 87.5 and a snatch of less than 95?,5, +10280,35664,What is the average number of points scored by Joe Vagana when making fewer than 2 tries?,5, +10282,35688,"What is the average Pick with a Position of pg, and a Round less than 1?",5, +10284,35690,What is the average for the top five having a number of 42 cuts made.,5, +10302,35765,How many spectators had a home team score of 15.14 (104)?,5, +10304,35772,What is the average Apr 2013 with a Jun 2011 less than 14?,5, +10305,35773,"What is the average Feb 2013 with a Feb 2010 with 37, and a Nov 2012 less than 32?",5, +10317,35826,What was the attendance at the game against Ottawa?,5, +10319,35829,What was the attendance of the Florida vs. Montreal game?,5, +10321,35860,what is the debut year for player terry fulton with games less than 51?,5, +10322,35861,How people attended Victoria Park?,5, +10325,35878,Tell me the average Grid for driver of Luca Badoer and Laps more than 69,5, +10326,35883,What is the average Year for the Finish of lost 2001 alcs and the Percentage is over 0.716?,5, +10329,35890,Tell me the average silver for total more than 1 with bronze of 2 for france and gold more than 0,5, +10331,35892,Tell me the average gold for moldova and bronze less than 1,5, +10338,35912,What is the Year of Christie Paquet with Issue Price of $34.95?,5, +10340,35919,"What is the average rank of someone who earned smaller than 3,069,633?",5, +10341,35920,"What has the average wins in Australia who earned smaller than 3,133,913?",5, +10346,35942,What year had an issue price of $94.95 and theme of Amethyst crystal?,5, +10348,35948,What is the average for the gymnast with a 9.9 start value and a total of 9.612?,5, +10349,35952,In what week was the Result L 15-13?,5, +10352,35964,What is the average point total for arrows racing team before 1983?,5, +10357,36010,What was the attendance at Moorabbin Oval?,5, +10359,36017,What is the average attendance when Brewers are the opponent with a score of 6–3?,5, +10360,36021,"What is the avarage Attendance for the Date of october 26, 1947?",5, +10365,36030,What is the average top-25 value for majors that have more than 0 wins?,5, +10367,36032,"For top-25 values under 2, what is the average number of cuts made?",5, +10374,36058,"What is the average SP rank for skaters with a Rank in FS larger than 2, and a Final Rank larger than 5?",5, +10377,36074,What year was the Competition of World Junior Championships with a 20th (qf) position?,5, +10383,36091,"What is the average grid that has a Constructor of brm, tony maggs, and a Laps larger than 102?",5, +10384,36098,What is the average crowd size for princes park?,5, +10385,36100,"When the home team scored 12.21 (93), what was the average crowd size?",5, +10392,36133,Which average Crowd has a Home team of essendon?,5, +10393,36134,When was terry cook picked?,5, +10394,36137,How many people attended the North Melbourne game?,5, +10396,36146,"For R. Magjistari scores under 6, D. Tukiqi scores of 6, and ranks under 5, what is the average A. Krajka score?",5, +10401,36170,"What is the average area that has a Capital of camagüey, with a Population (%) larger than 7.02?",5, +10402,36172,What was the average attendance for a Kings game when they had a record of 1–5–0?,5, +10403,36174,What is the total on average for teams with 3 tournaments?,5, +10411,36189,"What was the WJC rank in San Francisco metro area with the ASARB Jews less than 261,100 and WJC Jews of more than 210,000?",5, +10420,36232,What is the average total medals of the team with 2 gold and less than 1 silver?,5, +10424,36236,"What is the average amount of silver medals Montenegro, who has less than 15 bronze and more than 11 total medals, has?",5, +10434,36268,"What is the average opening at Stadyum Samsun with a capacity smaller than 34,658?",5, +10438,36294,How many people attended the game where the home team scored 10.13 (73)?,5, +10450,36340,What is the average round for Georgia Tech with a pick greater than 103?,5, +10453,36347,"Tell me the week for result of l 31-27, and an Attendance smaller than 85,865",5, +10455,36361,What is the average lap total for grids under 19 and a Time/Retired of +4 laps?,5, +10456,36385,What is the average height with the Highest mountain of hochgall?,5, +10459,36400,What is the average rank for antun salman?,5, +10461,36410,"What is the average FA Cup value with a total greater than 2, a League Cup of 1, a league less than 3, and Paul Ince scoring?",5, +10462,36411,What is the average total value in a League less than 1 with more than 1 League Cup?,5, +10465,36424,What game number was played on March 4?,5, +10469,36430,What is the average attendance for a game against Phoenix?,5, +10477,36449,Tell me the average rank for dharma productions before 2013,5, +10478,36450,Name the average year for 4 rank,5, +10486,36468,I want the average events for top 10 less than 4,5, +10498,36553,"What is the average frequency MHz for license of eastville, virginia?",5, +10499,36554,What is the average ERP W when the call sign is whre?,5, +10502,36569,What was the average attendance of a team with a 38–31–8 record?,5, +10504,36575,What is the average number of years associated with 51 games tied and over 1184 total games?,5, +10506,36586,what is the grid when the time/retired is oil pressure and the laps are more than 50?,5, +10511,36604,What year did was the Inside Soap Awards won?,5, +10518,36637,"What is the average rank of the movie with an opening week net gross more than 81,77,00,000 after 2012?",5, +10528,36657,"What is the average of goals against, where overall goals are more than 35 and the goal difference is 20?",5, +10533,36669,What is the average year founded for schools in claremont?,5, +10534,36674,What is the lowest attendance for a stadium that has an average smaller than 307?,5, +10535,36677,"What is the average rank of a country with less than 13 bronze medals, a total of 11 medals, and more than 4 gold?",5, +10551,36829,What is the average crowd size for the home team essendon?,5, +10552,36831,What is the average grid with brm and under 63 laps?,5, +10554,36854,"What was the average year for a coin that had a mintage smaller than 10,000?",5, +10556,36871,What is the average crowd size when the home team score was 8.11 (59)?,5, +10567,36903,What is the average interview score of a contestant from Louisiana with an evening gown smaller than 8.82?,5, +10574,36920,What is the average Start term with a 1912 end term?,5, +10577,36924,"What is the average FL Cup Apps, with a FL Cup Goals greater than 0, but a Other Apps less than 0?",5, +10579,36926,"What is Division One's average Other Apps, with a League Goal less than 1?",5, +10580,36929,What is the average grid for piers courage?,5, +10593,36965,"On average, how many Starts have Wins that are smaller than 0?",5, +10598,36973,Which Bronze has a Gold smaller than 0?,5, +10600,36976,"How many Points have Drivers of adrián vallés, and a Year larger than 2006?",5, +10604,37002,How many Laps with a Grid smaller than 11 did John Watson have?,5, +10605,37003,How many Laps with a Grid smaller than 3 did Driver NIki Lauda have?,5, +10607,37005,What is the average laps that had a time/retired of +5 laps?,5, +10623,37085,What is the average number of laps for mika salo's arrows car with a grid over 13?,5, +10625,37091,What is the average number in attendance on September 16?,5, +10629,37106,What Year has a Rank of 12.0 12?,5, +10631,37112,"What was the Comp average, having Gino Guidugli as a player and a rating of more than 92.2?",5, +10634,37122,What was the grid associated with under 26 laps and a Time/Retired of +6.077?,5, +10636,37128,What is the average grid for johnny dumfries with less than 8 laps?,5, +10640,37133,What is Pennsylvania's average where the swimsuit is smaller than 9.109 and the evening gown is smaller than 9.163?,5, +10641,37134,"What is the preliminaries score where the swimsuit is smaller than 9.297, the evening gown is 9.617, and the interview is larger than 9.143?",5, +10643,37137,"What is the average 10K wins the United States, which had 0 5K wins, have?",5, +10660,37213,How big was the average crowd when the opposing team scored 19.16 (130)?,5, +10662,37216,"For players with fewer than 41 goals for CA Osasuna and averages under 1.06, what is the average number of matches?",5, +10663,37217,"For averages of 1.58 and matches under 38, what is the average number of goals?",5, +10671,37252,What is the average crowd at victoria park?,5, +10679,37285,What is the mean pick when the play is Marc Lewis (lhp) and the round is less than 20?,5, +10682,37295,Name the average reported isn for july 2007 for kuwait release of no,5, +10685,37300,What is the size of the crowd at the game where the home team scored 10.8 (68)?,5, +10693,37341,What is the average crowd when footscray is at home?,5, +10695,37364,What pick was Dominic Uy?,5, +10696,37387,What was the attendance when the Braves were the opponent and the record was 56-53?,5, +10699,37392,What is the average lap time for retired time of +23.707 and a Grid greater than 21?,5, +10703,37398,Name the average TD's for andy mccullough with yards less than 434,5, +10717,37447,How many wins were there in the 2000 season in the central division with less than 81 losses?,5, +10719,37449,How many losses did the 1943 MLB have?,5, +10728,37468,"What is the average gold medals Uzbekistan, which has less than 24 total medals, has?",5, +10729,37470,Which year had playoffs of champion?,5, +10735,37513,What is the total for the person with 73.28 bodyweight and fewer snatches than 75?,5, +10736,37515,What is the total for the player with more snatches than 87.5 and bodyweight more than 74.8?,5, +10753,37628,What is the average amount of points when the time (s) is 81.78?,5, +10757,37645,What's the average area for the xinluo district?,5, +10758,37646,What was the attendance on July 30?,5, +10759,37647,How many Goals have a Result of 0 – 4?,5, +10764,37663,what is the average losses when the wins is 9 and ties more than 0?,5, +10773,37676,What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals?,5, +10776,37686,Name the year that Birds of a feather category for most popular actress was nominated,5, +10786,37727,"What is the snatch for the Clean & jerk of 145.0, and a Bodyweight larger than 76.22?",5, +10789,37734,What is the average pick after Round 2?,5, +10793,37752,"Which average rank has an Earning amount that is less than $224,589?",5, +10802,37773,Which mean number of losses had a played number that was bigger than 34?,5, +10815,37839,What was the average figure score of the skater with a free score under 56.35?,5, +10818,37850,What is the average attendance on april 24?,5, +10820,37855,what was the attendance for a home venue and a w 3-0 result?,5, +10827,37883,"Of 2010 est. with less than 171,750 and 2000 less than 131,714, what is the 1970 population average?",5, +10828,37884,"With 1990 growth greater than 19,988 and 1970 growth less than 10,522, what is the 1980 average?",5, +10834,37897,What is the average number of goals of the player with 234 apps and a rank above 8?,5, +10835,37898,What is the average avg/game of the player with 97 goals and a rank above 7?,5, +10837,37900,"What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws?",5, +10839,37917,What is the number of bronze that silver is smaller than 1 and gold bigger than 0?,5, +10840,37920,what is the average points when the nation is wales and the pts/game is more than 5?,5, +10842,37922,"What is the average year they finished 5th in santiago, chile?",5, +10845,37927,What is the average Gold where the Nation is Russia (rus) and the number of silver is less than 2?,5, +10850,37937,"What is the average amount of goals that has a points smaller of 882, less than 5 field goals, and less than 85 tries all by Ty Williams.",5, +10851,37940,What is the average crowd size for Richmond home games?,5, +10855,37957,What was the Average crowd when the away team was north melbourne?,5, +10859,37974,Tell me the average bronze for total less than 4 and silver more than 0,5, +10862,37977,How many average carries for the player with 3 as a long?,5, +10869,38027,"What is the average attendnace for seasons before 1986, a margin of 6, and a Score of 13.16 (94) – 13.10 (88)?",5, +10876,38045,What's the average of shows that had a timeslot rank greater that 3 but still had a smaller viewership less than 4.87?,5, +10880,38053,How many attended the game against the sharks with over 86 points?,5, +10882,38064,What is the average number of caps for Meralomas with positions of centre?,5, +10884,38067,What is the average area for code 98030 with population over 312?,5, +10897,38123,What is the average number of silvers for nations with over 1 bronze medal?,5, +10913,38209,What is the average NGC number of everything with a Right ascension (J2000) of 05h33m30s?,5, +10914,38212,How is the crowd of the team Geelong?,5, +10916,38220,"What is the average feet that has a Latitude (N) of 35°48′35″, and under 8,047m?",5, +10919,38227,What is the size of the crowd for the game where the away team South Melbourne played?,5, +10922,38250,What is the average rebounds for the player who started in 1986 and who plays SG?,5, +10931,38284,What is the average weeks of a song with a larger than 3 position after 1977?,5, +10935,38305,Tell me the average week for result of l 34–24,5, +10937,38310,What was the size of the crowd at the game played at Junction Oval?,5, +10938,38315,What is the average round of the number 16 pick?,5, +10943,38337,"What's the average attendance on january 6, 2008?",5, +10948,38353,"For End of Fiscal Years past 1980 that also have as % of GDP Low-High of 83.4-84.4, and a Debt Held By Public ($Billions) smaller than 7,552 what would be the average Gross Debt in $Billions undeflated Treas. in said years?",5, +10965,38382,How many yards were averaged by the player that had a higher than 13 average with less than 18 long?,5, +10972,38395,"What was the mintage having an issue price of $1,099.99, artist being Pamela Stagg?",5, +10973,38396,"What was the year that had an issue price of $1,295.95?",5, +10974,38398,"What was the average mintage for that of artist Celia Godkin, before the year 2010?",5, +10976,38415,What pick # has a team from Rimouski Océanic?,5, +10980,38433,What was the average crowd size at a game when the away team scored 17.12 (114)?,5, +10988,38465,What is the average number for a final episode featuring maxine valera?,5, +10998,38510,What is the average crowd size of Fitzroy's home team?,5, +11001,38528,What is the mean Year when the IWCR number was 5 and the Year withdrawn was bigger than 1926?,5, +11008,38545,What is the Pick # of the player from Simon Fraser College?,5, +11021,38584,I want to know the average crowd for away team of melbourne,5, +11024,38588,What is the average point count for tristan gommendy?,5, +11028,38608,"How much in average Loans Received has Contributions less than 34,986,088, Disbursements more than 251,093,944 for Dennis Kucinich † with Operating Expenditures more than 3,638,219?",5, +11036,38621,What was the attendance on 10 november 2004?,5, +11047,38694,"What is the average laps for a grid larger than 2, for a ferrari that got in an accident?",5, +11048,38695,Name the average goal difference for draw of 7 and played more than 18,5, +11051,38700,What is Mark Joseph Kong's pick?,5, +11053,38704,what is the rank (night) when the rating is more than 4.3 and the viewers (millions) is more than 10.72?,5, +11058,38712,What is the average reception of the player with 4 touchdowns and less than 171 yards?,5, +11064,38729,Which track has the original album turbulent indigo?,5, +11068,38755,What are the average laps for jackie stewart?,5, +11069,38760,What was the attendance when Fitzroy played as the away team?,5, +11074,38769,What is the average number of base pairs with 784 genes?,5, +11078,38777,What Grid had 14 laps completed?,5, +11085,38803,What is the average PI GP when the pick is smaller tha 70 and the reg GP is 97?,5, +11089,38817,What is the average round for players from california?,5, +11091,38831,"What is the average number of ties for the Detroit Lions team when they have fewer than 5 wins, fewer than 3 losses, and a win percentage of 0.800?",5, +11104,38864,What are toranosuke takagi's average laps?,5, +11111,38885,Name the average round for jacksonville,5, +11122,38917,"What is the average win total associated with under 4 draws, and under 15 goals?",5, +11126,38925,"On April 28, what was the average number of people attending?",5, +11132,38941,"What is the average of the swimsuit smaller than 9.545 , of Iowa, with an evening gown larger than 9.625?",5, +11146,39010,What is the draw number that has 59 points?,5, +11153,39026,What is the average NGC number that has a Apparent magnitude greater than 14.2?,5, +11155,39029,"For clubs that have 0 gold and less than 5 points, what is the average amount of bronze medals?",5, +11156,39030,"Club aik had over 9 small silver medals and more than 8 bronze medals, how many total points did they have?",5, +11166,39060,What is the mean number of laps where Time/retired was a water leak and the grid number was bigger than 12?,5, +11167,39061,What is the mean number of laps when time/retired was spun off and the driver was Nick Heidfeld?,5, +11169,39069,What is the point average for the game that has FGM-FGA of 11-28 and a number smaller than 7?,5, +11176,39095,Name the win % average from 22 april 2000 for drawn more than 1,5, +11177,39096,Name the average lost for matches of 6,5, +11180,39113,"How many bronze's on average for nations with over 1 total, less than 2 golds, ranked 2nd?",5, +11181,39114,"How many silvers on average for nations with less than 3 total, ranked 6, and over 1 bronze?",5, +11187,39152,Which Crowd has a Home team score of 11.13 (79)?,5, +11189,39159,"When Steve Hazlett is the Player, and the PI GP is under 0, what is the average Rd #?",5, +11192,39163,Tell me the average top 25 with events of 5 and cuts madde less than 3,5, +11201,39194,What is the average Year for the Royal Canadian Mint Engravers Artist when the Mintage is under 200?,5, +11213,39216,What is the average attendance when the Forest Green Rovers is the away team?,5, +11217,39224,What is the average crowd for the home team of North Melbourne?,5, +11219,39229,What is the mean number of totals with no silvers and a bronze number less than 0?,5, +11221,39231,Which mean rank had a silver number smaller than 0?,5, +11226,39244,What is the average high position for the album unwritten?,5, +11231,39274,"What is the average height for hewitt class, with prom less than 86, and a Peak of gragareth?",5, +11240,39308,What is the average amount of attenders when away team score is 12.10 (82)?,5, +11245,39326,what is the ngc number when the constellation is leo and the declination (j2000) is °42′13″?,5, +11246,39334,Name the average DDR3 speed for model e-350,5, +11247,39338,What is the average laps for lorenzo bandini with a grid under 3?,5, +11254,39370,What is the average episode # located in Tanzania and whose # in season is larger than 5?,5, +11255,39371,What is the average episode # with a name of the origin of Donnie (part 1)?,5, +11257,39398,What is the average crowd size for an away team with a score of 14.19 (103)?,5, +11276,39491,What is the average year to begin making autos for a brand that joined GM in 1917?,5, +11283,39526,"What is the km2 area with more than 8,328 people with a total of 121.14 km2?",5, +11288,39552,What is the average crowd when the home team is north melbourne?,5, +11290,39554,"How many Red Breasted Nuthatch coins created before 2007 were minted, on average?",5, +11295,39581,What is the average drop zone time in the N drop zone for the 1st Pathfinder Prov.?,5, +11298,39600,"When the driver peter gethin has a grid less than 25, what is the average number of laps?",5, +11299,39601,"When the driver mike hailwood has a grid greater than 12 and a Time/Retired of + 2 laps, what is the average number of laps?",5, +11301,39606,What is the average round for Club team of garmisch-partenkirchen riessersee sc (germany 2)?,5, +11302,39622,What is the average long that Ramon Richardson played and an average greater than 5.5?,5, +11304,39624,What is the average rec that is greater than 10 and has 40 yards?,5, +11307,39630,What is the football Bronze with more than 1 Silver?,5, +11308,39631,"With 1 Gold, more than 2 Bronze and Total greater than 1, what is the Silver?",5, +11309,39632,"With more than 1 Gold and Silver and Total Sport, what is the Total?",5, +11313,39648,Luxembourg received how many gold medals?,5, +11328,39685,What is the average Attendance at Venue A on 16 October 2004?,5, +11331,39690,What is the average amount of spectators when Essendon played as the home team?,5, +11333,39696,What is the latitude for a crater with a diameter of 12.8 km and a longitude of 208?,5, +11339,39721,What is the average number of years for the Houston Rockets 2004-05?,5, +11341,39724,How many wins for bruce fleisher with over 31 events?,5, +11342,39725,What is the average rank for players with under 26 events and less than 2 wins?,5, +11349,39750,Tell me the average gross tonnage for april 1919 entered service,5, +11352,39753,what is the rank when the total is 39 in the county of dublin and the matches is less than 4?,5, +11370,39790,What is the average of the top-25 of those with less than 35 events in the Open Championship?,5, +11376,39804,"What is the average sinclair coefficient with a Sinclair Total of 477.2772023, and a Weight Class (kg) larger than 105?",5, +11386,39857,What is the average wins of a team with more than 0 ples and less than 3 podiums?,5, +11388,39869,What is the average year for releases on Friday and weeks larger than 2 days?,5, +11391,39874,What's the average crowd size when the venue is western oval?,5, +11392,39876,What is the average of the team who has Jacobo as a goalkeeper and has played more than 32 matches?,5, +11400,39900,what is the average td's for the player jacques rumph with yards more than 214?,5, +11401,39903,What is the average laps for ralph firman with a grid of over 19?,5, +11403,39906,What's the average rebs before 1972?,5, +11419,39965,How many average laps did brm complete in grids larger than 12?,5, +11424,39982,Name the average SP+FS with places less tha 94 for renata baierova,5, +11432,40003,What is the average number of laps when Gerhard Berger is the driver?,5, +11442,40052,Tell me the average year with a record of 33-33,5, +11455,40101,What is the average Laps for andrea de cesaris?,5, +11457,40103,"What is the average Grid that has a Time/Retired of +2 laps, and under 51 laps?",5, +11478,40196,"What year was The Horn Blows at Midnight, directed by Raoul Walsh?",5, +11479,40207,What was the average amount of spectators when the away team scored 14.7 (91)?,5, +11481,40219,"Which Bronze has a Silver smaller than 1, and a Total larger than 3?",5, +11483,40221,"Which Bronze has a Nation of argentina, and a Silver smaller than 0?",5, +11484,40222,"Which Bronze has a Silver of 2, and a Total smaller than 5?",5, +11487,40235,"What is the average attendance on October 9, 1983?",5, +11491,40252,What round was Corey Cowick picked?,5, +11498,40277,What's the average Rd number for dane jackson with a pick number over 44?,5, +11503,40291,"What is the average total medals Egypt, who has less than 2 gold, has?",5, +11506,40295,"What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03?",5, +11507,40296,"What is the average relative annual growth of the country ranked 3 with an average absolute annual growth larger than 1,051,000?",5, +11509,40303,What's the average year a Rangam movie came out?,5, +11510,40307,What was the average year that Thuppakki movies came out?,5, +11515,40316,What is the average number of floors for buildings in mecca ranked above 12?,5, +11517,40322,What is the average crowd size when the away team scores 7.13 (55)?,5, +11519,40326,What is the average round of a player with an overall of 138?,5, +11533,40380,What was the average crowd size at a home game that had a score of 14.15 (99)?,5, +11534,40381,What is the average number of yards on a red tee that has a hole of 1 and a par above 4?,5, +11536,40403,"What is the average number lost with a difference of -16, 19 points, and more than 24 against?",5, +11542,40410,What average Reg GP has a pick # larger than 210?,5, +11551,40458,I want to know the average attendance for n venue and f round,5, +11553,40463,When did the tom smith built train enter service with a number under 7007?,5, +11560,40536,What is the average of the Series #s that were directed by Matthew Penn?,5, +11567,40584,What is the average number of ties when goals against is less than 56 for Ottawa Hockey Club and the goals for is more than 47?,5, +11577,40623,before 1995 waht is the aveage pts for a mclaren mp4/10b chassis,5, +11588,40695,What is the average rank of the Reliance Entertainment movie with an opening day on Wednesday before 2012?,5, +11609,40759,What is the average number of points for clubs that have played more than 42 times?,5, +11630,40845,what average grid has laps larger than 52 and contains the driver of andrea de adamich?,5, +11632,40847,what's the average grid that has a time/retired piston and laps smaller than 15?,5, +11635,40853,What are the average apps for the Major League Soccer team club for the Seattle Sounders FC that has goals less than 0?,5, +11637,40874,"When the percent is larger than 0.685, what is the average number of points scored?",5, +11644,40931,what is the amount of silver when gold is 2 and the rank is more than 1?,5, +11646,40951,what is the debut when the play er is radoslava topalova and the years played is less than 2?,5, +11655,41006,"In the Western Oval venue, what is the average crowd?",5, +11656,41009,What is the round for Arizona with a pick over 100?,5, +11663,41043,"How many games for keith j. miller, who debuted after 1974 with less than 1 goal?",5, +11670,41055,What is the %2006 when the %2001 was more than 62.5?,5, +11677,41085,What place has a draw smaller than 2?,5, +11678,41094,What was the attendance at Kardinia Park?,5, +11685,41137,What is the mean number of laps for the constructor Ferrari when the time/retired was fuel pressure?,5, +11692,41167,Name the average 2008 for beijing and 2005 more than 2,5, +11701,41178,what is the average number of gold when the rank is more than 5?,5, +11703,41182,What is the average speed for ships before 1974 with over 1.73 passengers?,5, +11707,41189,"What is the average Viewers (m) for ""aka"", with a Rating larger than 3.3?",5, +11719,41226,What is the average pick of Florida State?,5, +11720,41227,What is the average pick of San Diego State?,5, +11722,41229,What is the average points value for a rank less than 12 for David Santee?,5, +11728,41251,"what is the average rating when the air date is november 23, 2007?",5, +11732,41263,Which rank has a total smaller than 1?,5, +11734,41280,What is the release date by Editions EG in the Netherlands?,5, +11735,41282,What is the release date by Virgin?,5, +11736,41286,"For the gte northwest classic with the score of 207 (-9), what is the average 1st prize ($)",5, +11743,41328,"On average, what is the number of silver medals for nations ranking higher than 7, with a total of 6 medals and fewer than 2 bronze medals?",5, +11750,41353,What position is associated with a Time of 20:39.171?,5, +11751,41354,How many points associated with a Best time of 01:46.367?,5, +11756,41359,What is the average PI GP of the player from round 5 with a pick # larger than 151?,5, +11760,41373,What is the average grid when the laps are smaller than 14 and Reine Wisell is the driver?,5, +11763,41385,"How many communes associated with over 10 cantons and an area (Square km) of 1,589?",5, +11769,41407,What year was Aaron Tveit nominated in the Favorite Male Replacement category?,5, +11776,41433,What is the average grid for damon hill with over 74 laps?,5, +11781,41459,What is the average total of Italy and has a bronze larger than 1?,5, +11786,41478,"What is the rank for points less than 166.96, and a Places of 166?",5, +11789,41481,"What is the average SP+FS for Denise Biellmann, and a Rank larger than 5?",5, +11793,41500,What was the average amount of spectators when the home team scored 11.14 (80)?,5, +11798,41527,"When the Away team scored 12.9 (81), what was the average Crowd size?",5, +11803,41543,Which year has a total of 0 points and a chassis of Toleman tg181?,5, +11811,41561,What is the Average of Men in Pain with a Finale of less than 33?,5, +11812,41564,What is the average crowd size for corio oval?,5, +11813,41565,What is the average crowd size for Brunswick street oval?,5, +11814,41570,"When the country is austria germany and the rank is kept under 5, what's the average number of matches played?",5, +11818,41577,"Can you tell me the average Figures that has the Placings of 34, and the Total larger than 1247.51?",5, +11819,41592,"What are the average byes that are greater than 1479, wins greater than 5 and 0 draws?",5, +11820,41593,Tell me the average year for rank more than 3 and 28 floors,5, +11821,41595,What is the average rank of Great Britain when their total is over 4?,5, +11827,41628,What is the average attendance against the expos?,5, +11832,41651,What is the silver for Germany and less than 2?,5, +11836,41680,What's the average Grid with Laps of 88?,5, +11840,41702,what is the average bodyweight when snatch is 80?,5, +11842,41706,Tell me the average 1st prize for tennessee,5, +11855,41763,What is the average number of laps for the driver Piero Taruffi?,5, +11857,41776,What is the average losses for the team(s) that played more than 8 games?,5, +11858,41779,What is the average fleet size for the Shunter type introduced in 1959?,5, +11867,41810,Name the average zone for waddon marsh tram stop,5, +11869,41813,Name the average zone for waddon railway station and has more than 2 platforms,5, +11889,41948,What's hale irwin's average rank?,5, +11890,41949,"What is the average wins with a rank over 3 and more earnings than $9,735,814?",5, +11895,41968,"Which mean pick number had a Reg GP of 0, and a Pl GP that was bigger than 0?",5, +11898,41975,WHAT IS THE NUMBER OF Attendance WITH A RECORD 94–36,5, +11902,41992,"How many points when under 17,197 attended against the wild?",5, +11906,42022,What's the average number of people in the Crowd that attend essendon games as the Home team?,5, +11912,42048,What was the average crowd attendance for the Junction Oval venue?,5, +11924,42087,What is the average crowd where the home team scored 8.15 (63)?,5, +11931,42143,How many league cup goals on average for players with over 0 FA cup and 5 league goals?,5, +11934,42156,What was Attendance/G with Tms more than 18?,5, +11939,42182,What is the rating for the episode with the night rank of 11 and timeslot rank is larger than 4?,5, +11942,42185,What is the rank of the episode with a share of 6 and timeslot rank smaller than 4?,5, +11946,42203,On the match where the away team scored 16.16 (112) what was the crowd attendance?,5, +11950,42207,What's the average Grid for those who spun off after Lap 64?,5, +11955,42212,What was the average points in the quarterfinals domestic cup?,5, +11956,42225,"What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5?",5, +11959,42228,What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4?,5, +11972,42294,What is the average position for tb2l teams promoted champion?,5, +11983,42351,What is the average year for scatman winning?,5, +11991,42395,What is the mean number of caps for Ryota Asano?,5, +11992,42396,What is the mean number of caps for Ryota Asano?,5, +11994,42414,Name the average events for miller barber,5, +11996,42416,"Name the average wins for earnings more than 120,367 and events less than 13",5, +11997,42417,"Name the average rank for earnings less than 231,008 and wins less than 1",5, +12004,42483,What is average year for ayan mukerji?,5, +12006,42492,What's the average of the amount of laps for the driver patrick tambay?,5, +12010,42497,"what is the average points when the goal difference is less than 17, the club is getafe cf and the goals for is more than 30?",5, +12013,42510,What was the average crowd size at Victoria Park?,5, +12017,42520,What is masten gregory's average lap?,5, +12019,42535,What is the crowd with a Home team score of 8.17 (65)?,5, +12026,42549,What's the rank for a team that has a percentage of 56% and a loss smaller than 4?,5, +12027,42550,Name the average avg for TD's less than 3 for devin wyman and long more than 3,5, +12036,42596,What is the average grid for johnny herbert with a Time/Retired of +1 lap?,5, +12054,42685,What is the average of seasons for 10th place finishes?,5, +12063,42738,What is the average grid for Clay Regazzoni?,5, +12064,42739,What is the average laps for the grid smaller than 21 for Renzo Zorzi?,5, +12065,42740,What is the average laps for Grid 9?,5, +12067,42746,How many bronzes are there for the total nation with 112 silver and a total of 72?,5, +12070,42749,What was Montenegro's average bronze with less than 7 silver and more than 4 golds?,5, +12079,42776,What is the average number of laps associated with a Time/Retired of +1:14.801?,5, +12090,42814,What was the bronze medal count of the team that finished with 47 total medals?,5, +12093,42819,What is the average crowd size for the home team hawthorn?,5, +12100,42844,What is the computation for 5 or less TD's?,5, +12101,42849,Whats teo fabi average lap time while having less than 9 grids?,5, +12106,42866,"What's the average of all years tournaments were hosted in Doha, Qatar?",5, +12110,42870,Name the average rank for west germany when gold is more than 1,5, +12111,42871,Name the average rank for when bronze is more than 1,5, +12113,42873,"Which 2011–12 has a 2010–11 smaller than 26.016, and a Rank 2013 larger than 20, and a Club of rubin kazan?",5, +12114,42874,Which Rank 2014 has a 2009–10 of 21.233?,5, +12115,42875,"Which 2013–14 has a Rank 2014 smaller than 23, and a 2011–12 larger than 19.1, and a Rank 2013 of 14?",5, +12116,42887,What Poles have Races smaller than 4?,5, +12127,42917,How many draws have less than 35 losses with 136 matches and less than 146 against?,5, +12129,42919,"Which Byes have Losses larger than 0, and an Against larger than 3049?",5, +12133,42931,What is the average number of points of the team with more than 17 pg won?,5, +12152,42996,What is the year of the Lotus 25 chassis?,5, +12161,43024,"What is the average money for a to par of 15, and is from the United States?",5, +12168,43038,"What was the average Lost entry for Newton, for games with a drawn less than 5?",5, +12175,43048,"What is the average Tournaments, when Highest Rank is ""Maegashira 1""?",5, +12183,43086,What year had a title of Die Shaolin Affen EP and EP as the type?,5, +12185,43089,What is the average number of gold medals won by Brazil for entries with more than 1 bronze medal but a total smaller than 4?,5, +12195,43110,"What is the average Mean, when Drug is ""Alcohol"", and when Psychological Dependence is greater than 1.9?",5, +12202,43130,What is the average down (up to kbit/s) when the provider is willy.tel and the up (kbit/s) is more than 1984?,5, +12215,43183,"With 8 as the rank, and a total of more than 2 medals what is the average bronze medals?",5, +12218,43186,"When the number of gold medals is greater than 59, and the rank is total, what is the average bronze medals?",5, +12226,43205,"What is the average hexadecimal with a decimal less than 53, an octal less than 61, and a glyph greater than 0?",5, +12228,43207,What is the average hexadecimal with a decimal greater than 57?,5, +12229,43208,What is the average decimal with a 110010 binary and a glyph greater than 2?,5, +12257,43342,What is the total blocks when there are less than 210 digs and the total attempts are more than 1116?,5, +12258,43350,"Can you tell me the average Total that has the To par smaller than 10, and the Country of south korea?",5, +12265,43375,What are the average byes of Bonnie Doon having more than 16 wins?,5, +12266,43412,"What's the to Iran with fewer than 9 survivors, more than 3 damaged, and an ussr an-26 aircraft?",5, +12267,43413,"What's the average destroyed with a 1990 over 12, more than 1 damaged, 6 survivors, and a to Iran less than 4?",5, +12268,43414,"What's the average survived with a to Iran less than 1, more than 1 destroyed, and a brazil tucano aircraft?",5, +12271,43448,"What is the average money (£) that has +8 as the to par, with 73-72-72-71=288 as the score?",5, +12272,43451,What year weas John McEnroe the champion?,5, +12284,43493,"What is the average First Elected, when District is ""Massachusetts 3""?",5, +12286,43501,"Which Fighting Spirit has a Name of tsurugamine, and a Technique smaller than 10?",5, +12291,43525,"What is the average number of goals for entries with more than 12 losses, more than 10 wins, more than 3 draws, and fewer than 29 points?",5, +12299,43559,What week did Cleveland Browns played?,5, +12301,43563,"what is the average % coal when the % natural gas is more than 11.6, electricity production (kw/h, billion) is less than 1,053 and % hydropower is 32?",5, +12306,43569,"What average deaths have 15,0 as the IMR, with a CDR greater than 4,0?",5, +12309,43574,What is the average entry in the against column with draws smaller than 0?,5, +12315,43621,"What is the average Attendance, when Venue is ""Candlestick Park"", and when Date is ""December 27""?",5, +12316,43623,"What is the average Attendance, when Venue is ""Candlestick Park"", and when Date is ""November 25""?",5, +12320,43657,"What is the average Frequency, when Type is ""Norteño"", and when Brand is ""La Cotorra""?",5, +12322,43682,What's the average against of Leopold with more than 11 wins?,5, +12332,43752,"What is the League Goals when the FA Cup Goals are 0, position is mf, League Cup Apps of 0, and name is Ben Thornley?",5, +12334,43762,What's the average attendance when the opponents are dundalk?,5, +12339,43769,What is the average year founded that is located in Broken Hill and has school years of k-6?,5, +12340,43777,"What is the average against of Murrayfield, Edinburgh?",5, +12341,43785,"What is the average rank of the city of el paso, which has a population greater than 672,538?",5, +12344,43793,"What is the average Against, when Status is ""2007 Rugby World Cup"", and when Opposing Teams is ""U.S.A.""?",5, +12346,43802,What was the 2006 population for the local government area of alexandrina council whose rank was smaller than 19?,5, +12347,43813,"What is the average Grid, when Laps is less than 24, when Bike is ""Honda CBR1000RR"", and when Rider is ""Jason Pridmore""?",5, +12357,43833,"Which Byes has an Against smaller than 1297, and a Club of avoca, and Wins larger than 12?",5, +12360,43889,"What is the average wickets that have overs greater than 44, danish kaneria as the player, with an average greater than 13.8?",5, +12374,43916,"Which Wins have Years of 1881, and a Pct larger than 0.75?",5, +12377,43951,What was the average money for United States when Lanny Wadkins played?,5, +12379,43965,What is the average final with an all around larger than 19.4 and total more than 39.9?,5, +12383,43997,What is the against for the opposing team of Wales with the status of Five Nations?,5, +12384,43998,"Can you tell me the average Average that has the Rank larger than 4, and the Player of dean minors?",5, +12387,44039,What is the average total for Dave Stockton?,5, +12391,44056,What's the average year lebanon won?,5, +12393,44065,"What is the rank when bronze was more than 0, gold more than 1, Nation is japan, and silver less than 0?",5, +12406,44106,"What is the average Money ( $ ), when Country is ""United States"", and when To par is ""+3""?",5, +12407,44109,What was the tonnage on 30 march 1943?,5, +12414,44141,"Which Position has Goals against smaller than 59, and Goals for larger than 32, and Draws larger than 9, and Points larger than 35?",5, +12422,44182,How many points for Newman/Haas Racing with fewer than 40 laps?,5, +12436,44241,"How many played are there with a 3-dart average of more than 90.8, an LWAT higher than 5 and fewer than 17 legs lost?",5, +12438,44246,"How many people on average attended when Eastwood Town was the away team, and the tie number was less than 8?",5, +12448,44315,"Which Draft has a Round of 1, a Nationality of canada, a Pick of 1, and a Player of vincent lecavalier?",5, +12453,44325,What is the number played by the team in place greater than 16?,5, +12458,44358,What is John Shadegg's First Elected date?,5, +12461,44371,"What is the average Points, when Date is ""February 2"", and when Attendance is less than 16,874?",5, +12477,44467,"What is the average value for Draws, when Against is ""2177"", and when Byes is less than 4?",5, +12483,44483,What was the average money when the score was 74-72-75-71=292?,5, +12484,44486,What is the average Barrow Island Australia when Draugen north sea is 17 and Mutineer-Exeter Australia is smaller than 6?,5, +12506,44558,"What is the average last cf of the st. louis blues, who has less than 4 cf appearances and less than 1 cf wins?",5, +12512,44589,"What is the average number of wins for entries with more than 32 points, a goal difference smaller than 23, and a Goals against of 36, and a Played smaller than 30?",5, +12517,44600,What is the average number of points of the club with more than 23 goals conceded and a position larger than 12?,5, +12525,44645,What is Robert Allenby's average to par score?,5, +12526,44649,What is the to par for the player with total of 155?,5, +12539,44728,How many losses did the Golden rivers of hay have?,5, +12541,44730,What is th average dras when wins are less than 12 and the against is 989?,5, +12555,44795,Can you tell me the average Conference Finals that has Finals smaller than 5?,5, +12562,44833,What is the average pjehun measured by female enrollment?,5, +12566,44841,"Which MLS Cup has another larger than 9, and a Total smaller than 72?",5, +12567,44858,What is the average total for 0 bronze?,5, +12592,44968,"What is the average Wins, when Played is less than 30?",5, +12598,44979,What is the average bronze for less than 0 gold?,5, +12601,44988,What is the average hoop when the all around is less than 9.7?,5, +12611,45072,What is the average first elected for the district South Carolina 2?,5, +12612,45080,In which year is Nerida Gregory listed as the loser?,5, +12614,45082,Which Polish Cup has a Puchat Ligi larger than 0?,5, +12623,45094,When was the aircraft introduced that could seat 115 people?,5, +12630,45117,"Can you tell me the average Wins that has the Goal Difference larger than -24, and the Draws larger than 7?",5, +12633,45120,What rank was the country with no bronze but at least 1 silver medals?,5, +12645,45138,Can you tell me the average Against thaylt has the Date of 23/03/2002?,5, +12648,45162,What is the average age at appointment of those attached to security?,5, +12651,45207,What is the average final with an all around greater than 19.35 and a total over 40?,5, +12657,45252,"What is the average Played, when Goals Against is less than 63, when Team is ""Nelson"", and when Lost is greater than 16?",5, +12663,45271,"WHAT ARE THE GOALS WITH DRAWS SMALLER THAN 6, AND LOSSES SMALLER THAN 7?",5, +12670,45296,Which average money has a To par larger than 12?,5, +12671,45298,"Which average money has a Place of t10, and a Player of denny shute, and a To par larger than 12?",5, +12675,45305,What year was The Saber nominated for best action?,5, +12676,45322,What is the number for the international with 669 domestic earlier than 2005?,5, +12677,45323,"What year was the international lower than 17,517 and domestic was less than 545?",5, +12681,45333,What is the electorates in 2009 for Modi Nagar?,5, +12697,45379,How many byes when the draws are fewer than 0?,5, +12699,45381,How many wins when there are 4 losses and against are fewer than 1281?,5, +12700,45382,How many against when losses are 11 and wins are fewer than 5?,5, +12706,45406,In what year did Morgan Brian win?,5, +12718,45447,What is the average end year of the player from swe and a summer transfer window?,5, +12720,45458,WHTA IS THE SNATCH WITH A TOTAL OF LARGER THAN 318 KG AND BODY WEIGHT OF 84.15?,5, +12727,45518,Name the average Played with a Points of 0*?,5, +12729,45520,Name the Goals Conceded which has a Draw of 0 and a Played larger than 0?,5, +12731,45523,What is the average number of bronze medals when the team's silver are more than 1 but the total medals are less than 9?,5, +12732,45530,"What is the average Total, when Finish is ""T47""?",5, +12736,45536,"Which Goals against have a Club of cd castellón, and Points smaller than 24?",5, +12738,45538,"Which Played has a Position smaller than 4, and Wins larger than 16, and Points of 38, and Goals against larger than 35?",5, +12743,45561,What average bronze has a total less than 1?,5, +12744,45562,What average gold has China (chn) as the nation with a bronze greater than 1?,5, +12746,45565,What is the average against for a test match?,5, +12751,45574,What is the Average Qualifying Goals for Jack Froggatt where the Final Goals is greater than 0?,5, +12753,45577,What is the Average Finals Goals if the Total Goals is less than 1?,5, +12756,45585,What Viewers (m) has an Episode of school council?,5, +12759,45599,What's the Serie A when the coppa italia was 5?,5, +12776,45648,"What is the rank with a higher than 2 total, 21 gold and more than 12 bronze?",5, +12787,45663,What is the average number of military deaths when there are fewer than 38 civilian deaths (including foreigners) and 33 military and/or civilian wounded?,5, +12791,45702,"What is the average draft with a pick larger than 42, and player Grant Eakin after round 8?",5, +12801,45782,What is the position with a neutral H/A/N and more than 2 innings?,5, +12802,45785,What is the average goals scored when less than 34 were played and there were more than 2 draws?,5, +12803,45786,What is the average goals scored of the team who scored 44 points and placed higher than 5?,5, +12805,45789,what is the average wins when percent is more than 0.4 and teams is chargers~?,5, +12806,45790,What is the average wins when teams is lions and the percent is more than 0?,5, +12813,45802,What is the average year with 7th (heats) position?,5, +12815,45812,count the the average Total of ian baker-finch?,5, +12823,45893,What is the average grid for Marco Andretti with a finishing position higher than 19?,5, +12826,45896,What is the average Qiangshu lower than rank 4 and less than 9.22 Jianshu?,5, +12827,45897,"What is the average Jianshu higher than rank 2, with a Qiangshu smaller than 9.85?",5, +12829,45931,What pick number was player Greg McKegg?,5, +12830,45941,"What is the average Finish, when Team is ""Buck Baker"", and when Start is less than 13?",5, +12831,45942,"What is the average Year, when Start is ""11""?",5, +12834,45952,"What was the attendance on September 19, 1971, after week 1?",5, +12835,45959,"What Goals has a Team of zamora, and Average larger than 0.89?",5, +12840,45964,Which To par has a Score of 78-74-71-75=298?,5, +12845,45979,What's the average Played for a draw of 5 and more than 43 points?,5, +12856,46031,"On average, when were vineyard schools founded?",5, +12863,46068,"What is the average 2003 with 2,154,170 in 2010 and a 2008 less than 2,266,716?",5, +12864,46069,"What is the average 2009 with a 2003 greater than 3,791, 107,982 in 2007, and a 2006 less than 98,264?",5, +12875,46120,What is the average Density of 53 No. munic.?,5, +12882,46164,Which Year has a Date of 5–6 february?,5, +12891,46234,What's the average number of wins for those with less than 2 byes?,5, +12897,46246,What is the population of the town with an area larger than 3.09?,5, +12898,46247,"What is the area of the community with a census ranking of 636 of 5,008?",5, +12908,46289,"What is the total for year average that less than 7,742 is the WNBA game average, and 7,625 (10th) is the average, and before the year 1999?",5, +12921,46317,What is the round for the Norisring circuit?,5, +12924,46331,"How many losses for the team with less than 4 wins, more than 0 byes and 2510 against?",5, +12947,46442,What was the pic for Canada for player Yvon Bouillon earlier than 1974?,5, +12949,46446,"What is the pick number average for the player who was drafted before round 7, and went to college at Tennessee?",5, +12951,46451,What is the average total for less than 1 championship?,5, +12959,46484,"Which Pop/Area (1/km²) has a No P. larger than 1, and a Name of albergaria-a-velha?",5, +12962,46493,what is the round for jake gardiner?,5, +12966,46500,What is the wins average when 17 games were lost?,5, +12974,46557,"What is the total (kg) when the snatch was 84, and bodyweight was less than 57.35?",5, +12975,46558,"What is the clean & jerk when the total (kg) is more than 204, and snatch is more than 98?",5, +12978,46564,How many cuts made when the top-5 is greater than 1?,5, +12980,46566,"What is the number of cuts made when the top-5 is 0, top-10 is 1 and events are fewer than 12?",5, +12988,46580,What pick did the Minnesota Twins have?,5, +12989,46581,"What is the average Draws, when Losses is less than 2?",5, +12990,46582,"What is the average Wins, when Against is less than 1786, when Losses is less than 4, and when Byes is less than 2?",5, +12995,46606,"What is the average Silver, when Gold is less than 0?",5, +12997,46611,"What is the average number of people killed with a Perpetrator of wirjo, 42?",5, +12999,46630,"What is the average total for the Men's Open of 7, and the men's wheelchair more than 0?",5, +13002,46648,"What was the attendance on September 11, 1988?",5, +13010,46677,What is the average amount of money of players in t8 place with a 68-71-69-72=280 score?,5, +13014,46695,"How many floors are in the building built after 2007, and ranked #10=?",5, +13019,46739,What's the average year that sara orlesky and farhan lalji are the sideline reporters?,5, +13021,46741,What was the attendance on september 8?,5, +13022,46742,"Which Week has a Result of l 10–30, and an Attendance larger than 57,312?",5, +13034,46814,What was the average money when the score was 68-69-68-72=277?,5, +13037,46825,What year had cargo tonnes of 13 585?,5, +13038,46835,"Which Year Built has a Parish (Prestegjeld) of bremanger parish, and a Location of the Church of bremanger?",5, +13041,46870,"What is the average Money ( $ ), when Score is ""69-69-76-69=283""?",5, +13046,46885,"What is the average Against, when Status is ""Five Nations"", and when Date is ""16/03/1996""?",5, +13050,46895,"What is the average Year, when Country is ""U.S."", and when Location is ""Edmond , OK""?",5, +13057,46923,What's the average annual interchange for a rank over 26 in liverpool with an annual entry/exit less than 14.209 and more than 10 platforms?,5, +13061,46928,"Which Number of households has Per capita income of $21,571, and a Population smaller than 9,783?",5, +13062,46929,"Which Number of households has a County of cook, and Population smaller than 5,176?",5, +13066,46940,What position was the team who had less then 63 goals against and less than 6 losses?,5, +13070,46954,What is the seat number when Series 3 shows Dana Bérová?,5, +13075,46962,When less than 30 games have been played what is the average goals scored?,5, +13078,46969,What is the number of clubs before 2003 with a 4th place winner of Shenzhen Jianlibao?,5, +13079,46970,What is the number of clubs when Dalian Shide won and Sichuan Quanxing won 4th?,5, +13087,46990,Which FA Cup has a Total smaller than 1?,5, +13102,47048,What is the start of the Team of Andretti Green Racing with a finish higher than 3 in a year before 2007?,5, +13113,47067,"Which Car # has a Team of hendrick motorsports, and a Driver of mark martin, and a Position larger than 4?",5, +13114,47076,What was the rank for the finish time of 1:42.054?,5, +13121,47112,Which Prominence (m) has a Col (m) of 350?,5, +13138,47211,What's the average number of silver medals when bronze is less than 0?,5, +13139,47212,What's the average number of silver medals for germany (GER) having more than 3 bronze?,5, +13140,47217,"Which Tries for has Points against larger than 87, and Tries against smaller than 28, and Points diff of +63?",5, +13145,47224,What is the Place of Draw 1 by Artist Monika Kirovska?,5, +13147,47226,How many wins did South Warrambool have?,5, +13148,47227,How many byes when there are more than 16 wins?,5, +13150,47229,How many wins when the draws are less than 1 and more than 4 losses?,5, +13153,47232,What is the average ANSI code for the town of Sherman and the smaller of the water area in square miles than 0.005?,5, +13154,47233,What is the average longitude for the water area of 0.093 and has a GEO ID tag larger than 3808174460?,5, +13159,47242,"What's the average Top-25, that has an Events that's smaller than 12, and has a Top-5 that is larger than 0?",5, +13160,47243,"What's the listed average of Cuts made that has a Top-5 of 3, and a Top-10 that's smaller than 5?",5, +13165,47254,What is the average year with a 1:42.85 time?,5, +13169,47274,What is the average heat ranked at 30?,5, +13170,47275,What is the average time in a rank of 61?,5, +13176,47294,"What is the average silver that has a gold greater than 3, with soviet union (urs) as the nation, and a bronze greater than 26?",5, +13179,47298,"Which Prominence (m) has a Peak of nakanai mountains high point, and an Elevation (m) smaller than 2,316?",5, +13181,47303,Which player was from Fermanagh and had an average score of 22?,5, +13186,47309,What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3?,5, +13188,47311,What is the Average for Silver medals that have more than 17 Golds?,5, +13193,47321,"What is the average react of athlete muna lee, who is ranked greater than 3?",5, +13194,47322,What is the average lane of the athlete from cuba who has a time greater than 22.57 and react less than 0.245?,5, +13195,47323,What is the average react of the athlete with a time less than 22.29 and a rank greater than 1?,5, +13200,47331,What is the average played for less than 8 points?,5, +13203,47343,what is the average rank when the lane is more than 4 and the name is dominik meichtry?,5, +13213,47368,What is the bronze number when the total is 54/,5, +13217,47372,"Which Time has a Lane smaller than 4, and a Rank larger than 6?",5, +13218,47373,"Which Rank has a Nationality of france, and a Name of alain bernard, and a Lane smaller than 6?",5, +13220,47382,"Which Level has a League Contested of northern premier league premier division, and a Season of 2011–12?",5, +13223,47385,How many wins of average has cuts made less than 0?,5, +13225,47387,"In the Open Championship with more than 3 cuts made, what is the average wins?",5, +13226,47390,What is the average population for an area less than 433.7km and a 23013 code?,5, +13230,47398,"What is the population where the median family income is $48,446 and there are more than 35,343 households?",5, +13231,47399,"What is the population where the median household income is $87,832 and there are fewer than 64,886 households?",5, +13242,47447,What is the average latitude for townships in Dickey county with water under 2.106 sqmi and population under 95?,5, +13246,47470,"What total has a position smaller than 4, a B score higher than 9.125, and an A score less than 6.6?",5, +13249,47495,"Which year won has a Finish of t24, and a Country of england?",5, +13251,47498,What is the average year joined of the 277 county?,5, +13254,47511,What is the average year that the medical school in dominican republic was established?,5, +13259,47519,What is the average rank of a player with fewer than 3 matches?,5, +13281,47566,"What is the average black value (Hispanic/Non-Hispanic) having a white (Hispanic/Non-Hispanic) under 61.9, Multiracial (Hispanic/Non-Hispanic) under 12.5 and Hispanic under 99.4?",5, +13284,47577,What is the enrollment at the school of Hamilton community?,5, +13286,47584,What's the average Round of Pete Laframboise?,5, +13292,47625,What is the average rank for 57.05 time?,5, +13297,47642,How many average gold medals for provinces higher than rank 9 with 25 bronzes?,5, +13303,47664,What the round with the time 1:15?,5, +13305,47668,What is the B score for the person with a total of 16.325 and an A score of more than 7.3?,5, +13314,47686,What's the draw that's played less than 36 and has 42 points?,5, +13335,47754,What is the average number of bronze medals won by Poland?,5, +13336,47755,What is the average number of gold medals Switzerland received when they ranked larger than 1st and received fewer than 10 bronze medals and more than 1 silver medal?,5, +13339,47758,"What is the elevation of Vanuatu, when the rank is smaller than 3?",5, +13340,47760,"What is the average number of losses when there are more than 4 wins, and the against matches is more than 1728?",5, +13344,47764,"What is the average number of wins for the Terang Club, when there are less than 0 draws?",5, +13348,47772,"What average city has a total less than 2, with a borough greater than 0?",5, +13356,47800,What are the draws of Cobden when there are more than 3 losses?,5, +13357,47801,"What average bronze has 0 as the silver, 17 as the rank, and a gold less than 1?",5, +13368,47839,How many bronze medals for Romania when the silver count is more than 1?,5, +13375,47881,What is the average expenditures on R&D for Croatia after 2007?,5, +13388,47935,What year did the team from City of Aurora join?,5, +13390,47938,What is the rank of the team with a time of 1:00.61?,5, +13391,47939,What's the lane with a time of 1:00.66?,5, +13392,47951,"What is the average goals when the last appearance was before 1984, there were more than 17 appearances, the first appearance was before 1961 and the position was mf?",5, +13395,47958,"What is the average react of bryan barnett, who has a lane less than 2?",5, +13396,47965,What is the place when less than 1 point is scored?,5, +13405,47994,"Japan (JPN) with a total of less than 5, has what average gold medals?",5, +13406,47995,"What is the average bronze medal when gold is greater than 0, and there is less than 0 silver medals?",5, +13408,47997,"With a greater than 4 rank, and the silver medal greater than 0, and the bronze medal less than 1, what is the average total?",5, +13426,48051,What is the long figure when gain is less than 0?,5, +13427,48052,"What is the loss when the average/gain is less than 16.7, gain is 104 and long is larger than 4?",5, +13443,48093,Which Lane has a Time larger than 47.83?,5, +13444,48094,"Which Reaction has a Rank smaller than 4, and a Nationality of trinidad and tobago, and a Time larger than 45.13?",5, +13447,48097,"Name the Year with a Rank-Final smaller than 2, an Apparatus of team, and a Score-Qualifying smaller than 248.275?",5, +13449,48107,What is the average year in which the finish position was 13th?,5, +13450,48108,What is the average year for the Olympic Games?,5, +13459,48131,What is the average year having a rank among provinces over 5 and ten-year percentage change of 67.3?,5, +13470,48168,What is the average year for a Saar of FK Pirmasens and Hessen of Wormatia Worms?,5, +13476,48188,what is the average wins when draws is less than 0?,5, +13477,48189,what is the average losses when the club is warrnambool and wins is less than 12?,5, +13482,48208,What is the rank for the person with time 11.14?,5, +13489,48223,"What is the average number of against with less than 10 losses, more than 0 draws, and more than 7 wins?",5, +13494,48228,"What is the average win as a percentage of German racer Rudi Altig, who has ridden in over 79 races?",5, +13505,48268,"Which Against has Wins of 11, and Losses smaller than 7?",5, +13506,48270,Which Byes have Losses smaller than 4?,5, +13519,48287,"What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2?",5, +13521,48295,"What is the average quantity for coaches manufactured in 1921/23, and had 40 seats?",5, +13530,48310,What is the average number of electorates (2003) reserved for sc with a constituency number of 50?,5, +13535,48321,"What is the average number of partners for the firm with a rank under 71, other over 77, and largest city of Philadelphia?",5, +13545,48336,What is the average number of League Goals for palyers with 0 FA Cup Goals?,5, +13549,48351,What is the average attendance for games against the Pittsburgh Steelers when the opponents scored more than 0 points?,5, +13551,48367,What is the average amount of points larger than 154 laps?,5, +13554,48384,"In week 7, what was the average attendance?",5, +13556,48397,"What is the silver when the Total is 1, and Gold is 1?",5, +13559,48400,What is the number of bronze when the total is smaller than 1?,5, +13566,48408,What are the losses of Warrnambool with a draw less than 19?,5, +13572,48426,What average year has international meeting & national championships as the tournament?,5, +13576,48441,What year was the developer(s) Bioware?,5, +13577,48446,"What is the total for Danny Pinheiro Rodrigues ( fra ), in a Position smaller than 7?",5, +13582,48454,What is the average rank for Denmark?,5, +13588,48469,What is the average election result for the province of Grosseto from 1766 and prior?,5, +13594,48484,With a parallel bars score of 14.625 what is the average total?,5, +13598,48494,What is the average population in 2006 that has more than 5 people in 2011 and an area 5.84km?,5, +13608,48509,what is the latitude when water (sqmi) is 0.058 and the ansi code is less than 1759683?,5, +13616,48561,"What is the year average when not free was the status, and less than 7 was the civil liberties, and less than 6 political rights?",5, +13621,48575,What is the year that has a character named Wu Ji Wei (無極威)?,5, +13626,48581,Club warrnambool has less than 9 wins and what average of draws?,5, +13627,48582,What is the average number of draws for Mortlake club when they have less than 0 wins?,5, +13628,48583,Which Foreign population has a Population (2004) larger than 234733?,5, +13629,48584,Which Population (2004) has a Moroccan population larger than 234506?,5, +13643,48619,what is the average points when goals conceded is 14 and goals scored is less than 32?,5, +13645,48626,What was the average pick made by the Texas Rangers?,5, +13662,48662,What is the average number of losses for teams with under 4 losses and under 21 points?,5, +13669,48701,"What is the average upper index MJ/Nm 3 for the upper index Kcal/Nm 3 entry of 19,376?",5, +13671,48703,"What is the Lower index Kcal/ Nm 3 entry, for the row with entries of an Upper index Kcal/ Nm 3 smaller than 19,376, and a Lower index MJ/ Nm 3 of 74.54?",5, +13674,48706,"What is the entry for Lower index MJ/ Nm 3 for the row that has an Upper index Kcal/ Nm 3 larger than 19,376, for lpg, and an Upper index MJ/ Nm 3 smaller than 86.84?",5, +13675,48707,What match number has a ground of H and the opponent Chelsea under 18s?,5, +13676,48715,"What is the average 2006 metropolitan population of Lima with a GDP per capita over $13,100?",5, +13685,48733,What is the Rank of the Swimmer in Lane 5?,5, +13688,48743,"How many people attended the September 21, 1980 game?",5, +13692,48747,"Which Greater Doubles have Doubles, II Class smaller than 17?",5, +13697,48755,What is the average size (cents) with an interval of major third and size (steps) more than 5,5, +13698,48756,What is the average number of points for places over 7 and having a draw order of 4?,5, +13702,48761,"When the average ratings is 10.3%, what is the average episodes?",5, +13705,48769,"Of all the schools that left before 2003, what is the average year joined?",5, +13709,48784,What is the average enrollment of the IHSAA A class in wolcott?,5, +13716,48791,What is the average number of games drawn among teams that played over 14 games?,5, +13719,48794,What is the average number of games drawn among the teams that lost over 13 games?,5, +13723,48816,What average game was played on October 16?,5, +13724,48818,"What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrivals and more than 1,449 tourism receipts in 2011 US dollars per arrival?",5, +13738,48874,What is the average rank for Hungary?,5, +13739,48878,"What is the average Laps that have gregorio lavilla as the rider, with a grid greater than 13?",5, +13745,48896,What is the average draw for 186 games?,5, +13750,48907,"What's the LWAT having more than 43 for 180s, 194 for 100+, and more than 128 for 140+?",5, +13757,48924,"What rank has a status of proposed, with 80 floors for Celestia Spaces 4?",5, +13759,48930,What is the total for Austria when there is less than 1 bronze?,5, +13766,48962,"What is the average duration in 2007/08 with more than 3.8 in 2002/03, more than 8.9 in 2003/04, and less than 34.4 in 2001/02?",5, +13768,48965,"Which Laps have a Time/Retired of + 4 laps, and a Grid larger than 18?",5, +13773,48991,"Which Catalog has a Date of july 15, 2011?",5, +13777,49003,"Cass county has 0.008 Water (sqmi), less than 35.874 Land (sqmi), more than 35 Pop. (2010), and what average latitude?",5, +13778,49008,"Which Year has a Venue of bydgoszcz, poland, and an Event of junior team?",5, +13779,49010,Which Year has a Competition of commonwealth youth games?,5, +13786,49025,"What lane had a heat after 12, a rank of 38 and a time larger than 22.67?",5, +13792,49037,"what is the average total when silver is more than 2, bronze is 12 and gold is less than 12?",5, +13799,49057,What was the average rank for the team that had more than 5 medals and more than 6 gold medals?,5, +13802,49064,What is the Week of the game against Green Bay Packers?,5, +13809,49079,"What is average quantity, when DRG number is 99 011?",5, +13810,49085,"When against is more than 1244 with less than 8 losses, what is the average of wins?",5, +13818,49108,What Year has an ISBN OF ISBN 4-06-182042-7?,5, +13821,49122,what is the average starts when the chassis is focus rs wrc 08 and finishes is more than 27?,5, +13823,49124,"what is the average starts when the podiums is more than 0, stage wins is more than 39 and points is more than 456?",5, +13824,49129,"With a Total of more than 149, what is Davis Love III's To par?",5, +13828,49142,How many bronze medals for the United Kingdom when the silver was less than 0?,5, +13831,49152,"What is the average GEO ID with a latitude less than 46.57958, a latitude of -102.109898 and more than 35.99 square miles of land?",5, +13833,49155,What is the average lane for Australia?,5, +13838,49171,What are the average league goals that have 2 (1) as the total apps?,5, +13844,49191,what is the average races when points is 9 and poles is less than 0?,5, +13857,49233,"With a 1st run of 53.300 (7), and greater than 21 total, what is the average rank?",5, +13864,49257,What's the total goals for Alan Sweeney having 0 FA Cup goals and fewer than 0 League Cup apps?,5, +13870,49274,"What is the FIPS code for the municipality that has an area of 114.76 sq mi (297.23 sq km) and had a 2010 population of less than 166,327?",5, +13872,49276,"In what year was Yauco, which had over 42,043 people in 2010, founded?",5, +13886,49300,What is the average rating for a Flyde that has a Burnley less than 0?,5, +13888,49302,What was the average Chorley for the Labour party that had a Rossendale greater than 0 and a Pendle less than 1?,5, +13889,49320,What is the average capacity for the vehicle having a navigator of Macneall?,5, +13890,49324,What is the bronze with more than 2 gold and less than 14 total and 4 silver?,5, +13893,49327,What is the average reaction for brigitte foster-hylton after heat 1?,5, +13900,49358,Count the Prominence (m) of Col (m) smaller than 0?,5, +13903,49389,"In what week was the December 21, 1969 game?",5, +13905,49399,What's Bulgaria's lane?,5, +13906,49400,What's Great Britain's lane with a heat less than 3?,5, +13907,49401,What's Spain's lane with a heat less than 4?,5, +13908,49402,What's the heat in the lane less than 3 with a time of 14:48.39?,5, +13911,49417,COunt the average Enrollment in hope?,5, +13916,49431,What's the CR number that has an LMS number less than 14761 and works of Hawthorn Leslie 3100?,5, +13918,49447,"Which Episodes have a TV Station of ntv, and a Japanese Title of あいのうた?",5, +13920,49459,Which Quantity has an Axle arrangement of 2′c h2?,5, +13922,49464,"Which 2011 has a 2004 smaller than 271,691, and a Country or territory of vietnam, and a 2009 larger than 265,414?",5, +13928,49471,What is the Rank of the Rider with a Speed of 111.072mph in Team 250CC Honda?,5, +13936,49510,What was the average capacity for vélez sársfield?,5, +13940,49520,"Name the average Against that has a Venue of twickenham , london on 25 november 1978?",5, +13949,49552,"what is the average ga cup goals when the league cup apps is 2, the fa cup apps is 3 and the league goals is 3?",5, +13957,49566,What is the average react for a rank more than 8?,5, +13960,49579,"Which Points have a Club of london wasps, and a Drop larger than 1?",5, +13963,49582,What is the pick number for New Mexico?,5, +13971,49610,What is the average draw number of an entrant with a time of 22:29?,5, +13975,49624,what is the average draw when the place is 5 and points more than 15?,5, +13995,49716,What rank has an average of 6.33?,5, +13996,49717,What is the average number of laps with a dnf pos.?,5, +13998,49719,What is the Rank of the Guam Player?,5, +14002,49724,Name the average React of the Time smaller than 20.05 in jamaica with a Lane larger than 5?,5, +14007,49751,what is the average score for søren kjeldsen?,5, +14011,49755,"What's the against when there were more than 2 losses, more than 3 wins, and draws more than 0?",5, +14016,49765,"what is the average league cup goals when the league cup apps is 4, league goals is less than 4, fa cup apps is 1 and total apps is 35?",5, +14017,49766,what is the average league cup goals when the position is df and total goals is more than 4?,5, +14018,49767,"what is the average fa cup goals when the fa cup apps is 0, total goals is less than 1 and position is df?",5, +14027,49817,"What is the average total when the silver is larger than 2, and a gold larger than 1, and a nation of total?",5, +14029,49819,"What was the A Score when the B Score was 9.05, and position was larger than 6?",5, +14030,49820,What is the total when the B Score was 9.15 for Cheng Fei ( chn )?,5, +14031,49821,"What was their position when the score of B was less than 9.05, a total was 15.275, and A Score larger than 6.4?",5, +14032,49823,What year had Third-Person Shooter?,5, +14035,49840,"What's the Dolphin Points when the attendance was less than 69,313 and had an opponent of the Buffalo Bills?",5, +14046,49884,"Which Losses have an Against smaller than 1018, and Wins smaller than 14?",5, +14048,49886,Which Losses have a Wimmera FL of minyip murtoa?,5, +14049,49887,"Which Against has Losses smaller than 5, and a Wimmera FL of warrack eagles, and Draws smaller than 0?",5, +14059,49925,"Can you tell me the average Wins that has the Against of 1132, and the Losses smaller than 7?",5, +14063,49938,"What is the average long that has 1581 as a gain, with a loss less than 308?",5, +14072,49958,"What was the pick # of the player who has a hometown/school of Atlanta, GA?",5, +14078,49974,"What is the number of wins when the against is larger than 1155, for Warrnambool, with more than 0 draws?",5, +14082,49986,What is the average number of silver medals won among nations that won 9 medals total?,5, +14086,50000,How many picks on average did Jay Bruchak have before round 6?,5, +14098,50020,"What is the losses when Sunrayia FL is Red Cliffs, and the against is more than 2294?",5, +14100,50025,"what is the average dynamo when draw is more than 0, played is less than 15 and spartak is more than 1?",5, +14105,50033,What is Anna Rogowska's average result?,5, +14108,50038,what is the average rank when the day 1 is less than 71 and the country is romania?,5, +14112,50048,Which Bronze has a Total smaller than 1?,5, +14123,50081,Emilya Valenti has what draw average?,5, +14127,50091,Which Body Length/mm has a Lead Pitch/mm smaller than 0.5?,5, +14132,50097,"Which Bronze has a Gold larger than 1, and a Total larger than 11, and a Silver larger than 5?",5, +14134,50107,How many Gold medals for the Nations with 6 or more Bronze medals and 18 or more Silver?,5, +14135,50108,How many Gold medals did the Soviet Union receive?,5, +14138,50117,"What is the number of points for the song ""viva rock 'n' roll"", with more than 3 Draws?",5, +14141,50134,What is the average total of the 0-8 tally?,5, +14144,50137,What is the average rank of the match where offaly was the opposition and the total was greater than 9?,5, +14155,50179,How many gold medals did Brazil win with a total of more than 55 medals?,5, +14160,50184,"Which React has a Lane smaller than 4, and a Rank larger than 4, and a Time larger than 23.22?",5, +14161,50185,"What shows for against when draws are 0, and losses are 16?",5, +14164,50189,Which Rank has a Total of 12?,5, +14167,50193,Which Rank has a Tally of 4-0?,5, +14175,50216,"What is the average prominence in m of pietrosul rodnei peak, which has an elevation less than 2,303?",5, +14184,50239,"Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels?",5, +14196,50262,"Which Total has a Rank of 5, and a Bronze smaller than 0?",5, +14201,50271,What is the average lane for Kenya with react larger than 0.212?,5, +14205,50279,"What is the average total medals of the soviet union, which has more than 2 bronze and more than 0 silver medals?",5, +14206,50280,"What year did the ship Europa, have the dates of 14 – 23 October?",5, +14221,50365,"Which Floors have a Pinnacle height ft (m) of 1,136 (346), and a Pinn Rank larger than 4?",5, +14224,50368,What is the average time with a rank lower than 2 for Andy Turner?,5, +14227,50383,What episode has average ratings of 7.4%?,5, +14235,50427,What's the total when A Score was less than 6.9?,5, +14243,50442,What is the average v-band for Ka-band values under 33 and Q-bands of 1?,5, +14244,50445,"What year has a Nominee of —, and a Result of nominated?",5, +14248,50459,"What is the average enrollment 08=09, for the team that had a previous conference of lake and IHSAA class of 3A?",5, +14252,50493,what is the round when the pick # is less than 236 and the position is offensive guard?,5, +14258,50515,"Which Games have Years at club of 1974–1975, and Goals of 4?",5, +14259,50517,"Which Games have Years at club of 1977, and Goals of 17, and a Debut year smaller than 1977?",5, +14267,50534,"What is the average rank of west germany (frg), which has more than 1 silver, less than 11 gold, and 2 bronze medals?",5, +14287,50639,"What is the average number for the song ""O Sudha""?",5, +14292,50650,"What is the attendance in a week earlier than 4, and result is w 31-20?",5, +14295,50657,Which Gross Domestic Product has an Inflation Index (2000=100) smaller than 9.3?,5, +14308,50700,What is the Rank of the Swimmer with a Time of 2:25.65 in a Lane larger than 3?,5, +14313,50706,What is the average rank of Elise Matthysen in lanes under 8?,5, +14317,50724,"What is the aveage Egypt Cup value for players with 0 CAF Champions League goals, 6 Egyptian Premier League goals, and totals under 6?",5, +14326,50736,What is the average number of golds for teams in rank 17 with more than 4 silver?,5, +14327,50737,"What is the average total for teams with under 34 bronzes, 0 silver, and under 14 gold?",5, +14330,50746,"What average rank of the premier has NSW as the state, Liberalism as the party, and 22 March 1877 was the assumed office?",5, +14333,50766,"Can you tell me the average Total that has the Silver larger than 1, and the Bronze smaller than 8?",5, +14342,50778,"Which Debut year has Goals of 0, and Years at club of 1963, and Games larger than 5?",5, +14343,50779,"Which Debut year has a Player of bob hayton, and Games smaller than 2?",5, +14351,50820,"What's the average L/km combines when the L/100km Urban is 13.9, the mpg-UK combined is more than 28.5 and the mpg-UK extra urban is less than 38.7?",5, +14372,50902,"Which Lost has Points smaller than 15, and a Name of sc forst, and Drawn smaller than 0?",5, +14377,50909,"What is the average draws for the song ""Europe is My Home!""?",5, +14378,50911,What is the average pick of the kansas city chiefs?,5, +14382,50927,"The swimmer from the United States in a lane less than 5, had what as the average time?",5, +14396,50976,"What is the average birth rate that has a total fertility rate of na, and a natural growth smaller than 2.5?",5, +14397,50978,What is the average births that had a death rate of 0.4,5, +14399,50983,"What is the average value for 2005, when the value for 2008 is greater than 0, when the value for 2007 is greater than 310, when the Average annual is 767, and when the Total is greater than 4,597?",5, +14400,50984,"What is the average value for 2005, when the value for Average annual is 767?",5, +14419,51096,"Name the average ERP W when it has a city of license of pound, virginia and frequency mhz more than 91.3",5, +14422,51131,What is the average year with an award of platinum?,5, +14428,51162,"What is the average silver for a rank less than 8, were there were no more than 4 bronze and 12 in total?",5, +14431,51176,what is the average year for 0 points and ferrari v8?,5, +14436,51226,"What was the average year that the Nashville Metros did not qualify for the Playoffs, did not qualify for the Open Cup, and had the Regular Season 7th, Southeast?",5, +14437,51248,What is Oriol Servia's average Grid on races with more than 43 laps?,5, +14441,51283,What's the average payout of toney penna with a +2 par?,5, +14443,51285,What was the average pick of northwestern state college under round 3?,5, +14460,51370,What is the average goals against average for those playing more than 78 games?,5, +14463,51388,"What is the average for the year 2008 of the team that in 2010 had an average of 240,735 with rank lower than 5?",5, +14485,51484,What is the average attendance for the date of april 4?,5, +14490,51514,What is the average year of an entrant that had fewer than 6 points and a Maserati Straight-6 engine?,5, +14494,51594,How many games lost for the team that drew 5 times and had over 41 points?,5, +14499,51614,Which grid has a time/retired of +3.9 secs in less than 96 laps?,5, +14515,51652,How many Antonov An-2 Colt aircraft are in service?,5, +14517,51673,What First game has a Lost greater than 16?,5, +14530,51723,What was average attendance during week 15?,5, +14533,51749,"What's the average amount of Runs that has 40 innings, and Not outs larger than 6?",5, +14539,51777,How many average Cars Entered have a Third Driver of manny ayulo?,5, +14544,51783,How many years has Sasol Jordan Yamaha as an Entrant?,5, +14545,51802,"What is the average capacity of stadiums in the City of London that belong to schools with an enrollment less than 30,000?",5, +14546,51805,What is the heat number of the athlete who finished in 2:23.95?,5, +14547,51808,"What is the average for 2009 when 2001 is more than 0, 1996 is less than 1 and 2004 is more than 2",5, +14549,51810,"what is the average for 2005 when 1995 is more than 3, 1996 is less than 4, and 2011 is more than 5?",5, +14554,51828,What was Mark Brooks total score when he finished more than 2 above par?,5, +14556,51839,"Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average?",5, +14560,51868,What is the average PCT when it has a PTS smaller than 9 a wins larger than 1?,5, +14578,51899,What are the average points with a Chassis of zakspeed 881?,5, +14579,51906,"What is the average decile with Years of 1–8, and an Area of waipara?",5, +14581,51919,Name the average year for janaprakal chandruang,5, +14589,51948,"Which average purse was earned by Erika Wicoff and has a winner's share greater than $9,750?",5, +14591,51950,"What are the average wins with a Points of 42-2, and Goals against of 67, and Played smaller than 44?",5, +14592,51951,"Which average wins have a Club of barcelona atlètic, and Goals for larger than 56?",5, +14599,51971,Visitor of minnesota has what average attendance?,5, +14603,51980,How many losses did Notre Dame have in 1904?,5, +14608,51997,what is the average place when lost is more than 12?,5, +14611,52001,What is the average Isolation in the municipality of Sunndal at an elevation of more than 1850?,5, +14614,52006,What is the average of the top-25 with 16 cuts and less than 23 events?,5, +14616,52008,"What's the Overall average that has brad scioli, and a Pick # larger than 5?",5, +14619,52011,"What's the overall average that has a round less than 7, and a Pick # of 4?",5, +14626,52047,What is the usual attendance for july 2?,5, +14632,52087,Name the average yeara for engine of renault v10 with points more than 4,5, +14638,52108,How many attended the game on 4 February 2003?,5, +14641,52117,How many runs allowed did the team ranked 2 with more than 2 losses have?,5, +14644,52120,What is the average number of losses the team with less than 25 runs allowed and 5 wins have?,5, +14658,52169,What average Total has a Rank of 3 and a Bronze award larger than 3?,5, +14659,52170,What average Total has a Gold award of 13 and a Bronze award less than 13?,5, +14660,52171,"What is the average Gold award that has a Silver award greater than 2, and a Bronze award less than 13, and a Total greater than 24?",5, +14662,52174,What is the average gold that has a total of 2 and more than 1 bronze.,5, +14666,52196,What is the average MHz Frequency of radio rezonans?,5, +14668,52204,What is the average number of draws that have a total of 1 and a goal difference of 2:0?,5, +2000,43,What time was the highest for 2nd finishers?,1,2001.0 +2001,94,What is the highest Indian population?,1,2002.0 +2002,157,"what's the maximum position with winnings  $50,000",1,2003.0 +2003,175,What is the highest value of Total Goals?,1,2004.0 +2004,184,Whatis the number of total goals maximum?,1,2005.0 +2005,224,The record of 7-3 had the largest attendance of what?,1,2006.0 +2006,233,What is the greatest round of overall 83?,1,2007.0 +2007,239,What is the highest choice?,1,2008.0 +2008,278,"what being the maximum year where regular season is 4th, northwest",1,2009.0 +2009,280,what is the maximum division,1,2010.0 +2010,293,What is the largest # for an episode that was written by Allison Lea Bingeman?,1,2011.0 +2011,321,What is the most cup goals for seasson 1911-12?,1,2012.0 +2012,393,what is the maximum pick # where player is anthony blaylock,1,2013.0 +2013,403,What is the highest no. in season?,1,2014.0 +2014,430,What's the highest season number of an episode in the series?,1,2015.0 +2015,459,what is the greatest number of wins by japanese formula three?,1,2016.0 +2016,560,What is the highest selection number for the saskatchewan roughriders team?,1,2017.0 +2017,634,League apps (sub) maximum?,1,2018.0 +2018,694,what is the maximum year with registration of a minor child being 281,1,2019.0 +2019,714,"what is the most # that aired on september 29, 2008?",1,2020.0 +2020,1016,What is the largest jersey number for the player from maryland,1,2021.0 +2021,1093,what's the maximum purse( $ ) with score value of 204 (-9),1,2022.0 +2022,1107,what is the maximum 1st prize( $ ) where score is 193 (-17),1,2023.0 +2023,1160,what is the maximum season where leading goalkicker is scott simister (54),1,2024.0 +2024,1186,what is the maximum tonnage where date entered service is 25 march 1986 ,1,2025.0 +2025,1339,What is the maximum fc matches?,1,2026.0 +2026,1340,What is the maximum fc matches at the racecourse?,1,2027.0 +2027,1341,What is the maximum t20 on green lane?,1,2028.0 +2028,1379,Barry University had the highest enrollment of what number?,1,2029.0 +2029,1382,"If the enrollment is 3584, what's the largest founded?",1,2030.0 +2030,1383,Barry University had a maximum enrollment of what?,1,2031.0 +2031,1391,what is the maximum norwegian americans (2000) where norwegian americans (1990) is 9170,1,2032.0 +2032,1572,Name the max for prohibition.,1,2033.0 +2033,1588,What is the highest number listed?,1,2034.0 +2034,1716,what is the maximum number of hull numbers?,1,2035.0 +2035,1718,what is the maximum number of hull nunbers where ship name is kri yos sudarso?,1,2036.0 +2036,1767,how many maximum winners,1,2037.0 +2037,1770,What is the max week where kate and anton are eliminated?,1,2038.0 +2038,1865,What is the highest population for the ,1,2039.0 +2039,1866,What is the biggended for 1947?,1,2040.0 +2040,1873,What is the highest value under the column goals against?,1,2041.0 +2041,1881,what is the maximum total region with fitzroy being 8047,1,2042.0 +2042,1884,What is the maximum population size in the town of Stanthorpe?,1,2043.0 +2043,1885,What is the maximum population size in the town of Glengallen?,1,2044.0 +2044,1901,What is the biggest number of the team who's owned by Jeff Gordon?,1,2045.0 +2045,1974,What is the most number?,1,2046.0 +2046,2126,What is the most silver medals?,1,2047.0 +2047,2130,What is the highest number of gold medals Naugatuck HS won?,1,2048.0 +2048,2131,what is the maximum round for gt3 winner hector lester tim mullen and pole position of jonny cocker paul drayson,1,2049.0 +2049,2145,What is Austria's maximum area (km2)?,1,2050.0 +2050,2158,"what is the highest qualifying rank where the competition is olympic trials, the final-rank is 4 and qualifying score is 15.100?",1,2051.0 +2051,2166,What is the most recent year?,1,2052.0 +2052,2215,What is the highest reset points where the events is 23?,1,2053.0 +2053,2236,what is the maximum completed for delta bessborough,1,2054.0 +2054,2419,what is the maximum first elected with incumbent being gus yatron,1,2055.0 +2055,2548,What is the highest year that a candidate was first elected?,1,2056.0 +2056,2620,What is the most first elected for james c. davis?,1,2057.0 +2057,2637,What is the latest year listed with the Alabama 4 voting district?,1,2058.0 +2058,2784,what was the maxiumum for the first elected?,1,2059.0 +2059,2790,what is the maximum first elected with district being alabama 5,1,2060.0 +2060,2793,What is the latest year any of the incumbents were first elected? ,1,2061.0 +2061,2847,What is the last year that someone is first elected?,1,2062.0 +2062,2873,What was the last year that incumbent joseph t. deal was first elected?,1,2063.0 +2063,2933,"what is the maximum rank with per capita income being $17,013",1,2064.0 +2064,2971,what is the highest number where people got done at 31.1,1,2065.0 +2065,3028,what is the maximum bush# with others% being 1.57%,1,2066.0 +2066,3183,what being the maximum total passengers 2008 with change 2008/09 being 6.5%,1,2067.0 +2067,3185,what is the maximum aircraft movements 2009 with change 2008/09 being 18.2%,1,2068.0 +2068,3172,What is the maximum number of trnsit passeners when the total number of international passengers is 4870184?,1,2069.0 +2069,3190,what is the maximum aircraft movements with international passengers being 21002260,1,2070.0 +2070,3191,what is the maximum freight (metric tonnes) with airport being liverpool,1,2071.0 +2071,3193,what is the maximum aircraft movements with airport being liverpool,1,2072.0 +2072,3221,"what is the maximum # with original airdate being march 14, 2001",1,2073.0 +2073,3231,what is the maximum lowest with average being 734,1,2074.0 +2074,3252,what the highest number for the opposite of offense for the green bay packers,1,2075.0 +2075,3333,What is the highest number of students with a teacher:student ratio of 20.8?,1,2076.0 +2076,3372,Name the maximum clock rate mhz,1,2077.0 +2077,3394,What is the largest number of students?,1,2078.0 +2078,3406,What's the maximum crowd when scg is the ground?,1,2079.0 +2079,3425,What is the highest total number?,1,2080.0 +2080,3433,Who scored the most points?,1,2081.0 +2081,3442,Name the most field goals,1,2082.0 +2082,3481,Name the maximum height for yury berezhko,1,2083.0 +2083,3522,what is the maximum value for afc cup,1,2084.0 +2084,3542,what is the maximum number of matches played by a team?,1,2085.0 +2085,3562,Name the most of 2500-3000ft,1,2086.0 +2086,3574,Name the maximum discs,1,2087.0 +2087,3575,"Name the most epiosdes when region 4 is march 13, 2008",1,2088.0 +2088,3663,What is the highest pick number?,1,2089.0 +2089,3683,What is the largest number of DVDs?,1,2090.0 +2090,3684,What is the highest number of episodes?,1,2091.0 +2091,3685,What is the most recent release date?,1,2092.0 +2092,3706,What is the largest numbered?,1,2093.0 +2093,3768,What was the highest number on money list rank for Angela Stanford's career?,1,2094.0 +2094,3774,What is the highest number of cuts made when her best finish is t4?,1,2095.0 +2095,3786,Name the most 1 credit for three of a kind,1,2096.0 +2096,3803,What is the largest loss for the Tacuary team?,1,2097.0 +2097,3821,Name the most conceded when draws is 5 and position is 1,1,2098.0 +2098,3829,"When a team wins 4, how much is the Maximum amount of points?",1,2099.0 +2099,3881,What was the highest attendance?,1,2100.0 +2100,3941,Name the most attendance for game site for los angeles memorial coliseum,1,2101.0 +2101,3996,What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?,1,2102.0 +2102,4000,What is the highest value of PF when Ends Lost is 51?,1,2103.0 +2103,4122,Name the most derby county,1,2104.0 +2104,4178,What is the maximum purse prize of the Northeast Delta Dental International Championship?,1,2105.0 +2105,4191,What is the most recent census year?,1,2106.0 +2106,4193,Name the most pa for ontario ,1,2107.0 +2107,4195,Name the most w when ends lost is 49,1,2108.0 +2108,4210,What is the highest number won with a difference of 1?,1,2109.0 +2109,4211,What the highest position when there is 28 against?,1,2110.0 +2110,4212,What is the highest number won when the number of points is 31?,1,2111.0 +2111,4238,What is the maximum number for the Saffir-Simpson category in the Carvill Hurricane Index?,1,2112.0 +2112,4239,What is the maximum miles per hour recorded when the CHI (Carvill Hurricane Index) is equal to 13.5,1,2113.0 +2113,4241,What is the maximum number of miles reached in a Texas landfall when the Saffir-Simpson category is smaller than 3.0?,1,2114.0 +2114,4261,What was the top ends lost where the ends won 47?,1,2115.0 +2115,4332,What is the largest mass(kg)?,1,2116.0 +2116,4358,Name the most number of pyewipe,1,2117.0 +2117,4384,What is the highest season for a bowl game of the 1993 Independence Bowl?,1,2118.0 +2118,4447,Name the most runs conceded,1,2119.0 +2119,4449,Name the most maidens when e.r. 5.11,1,2120.0 +2120,4499,Name the maximum wins for 68.75%,1,2121.0 +2121,4506,What is the maximum number of points against when the attendance was 47678?,1,2122.0 +2122,4508,Name the most series number for giula sandler,1,2123.0 +2123,4573,What is the highest number of maidens when the bowling best was 1/13?,1,2124.0 +2124,4575,What is the highest number of 5w when there was a 21.33 average?,1,2125.0 +2125,4586,Name the most number when tournament is madrid masters,1,2126.0 +2126,4591,Name the most episode numbers of 6 january 2006,1,2127.0 +2127,4612,What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?,1,2128.0 +2128,4625,Name the most number for 74 runs margins,1,2129.0 +2129,4637,What is the maximum total in which the average is 28.5?,1,2130.0 +2130,4673,Name the most goals scored for position 4,1,2131.0 +2131,4678,What is the largest population in regions where the average family size is 2.8 people?,1,2132.0 +2132,4681,What is the most number of families in regions where average family size is 2.7?,1,2133.0 +2133,4683,What is the most number of families among regions where the population is made up of 5.8% deportees?,1,2134.0 +2134,4760,Name the maximum founded for blue hose,1,2135.0 +2135,4761,Name the maximum enrollment for st. andrews university,1,2136.0 +2136,4803,Name the most number for new england blazers,1,2137.0 +2137,4804,Name the most attendance,1,2138.0 +2138,4805,Name the most attendance for number 4,1,2139.0 +2139,4862,What is the maximum number of top 10s when he finished in 63rd?,1,2140.0 +2140,4867,What is the maximum number of wins in the season with 22 starts?,1,2141.0 +2141,4877,Name the maximum enrollment for niagara university,1,2142.0 +2142,4913,What was the maximum crowd size against St Kilda?,1,2143.0 +2143,4924,Name the most crowd for essendon,1,2144.0 +2144,4939,What is the largest crowd when essendon is the home team?,1,2145.0 +2145,4956,what is the latest episode in season 2 directed by jamie babbit?,1,2146.0 +2146,4961,What is the maximum pages per minute for the Xerox Travel Scanner 100?,1,2147.0 +2147,5018,what is the maximum 18 to 19 and 30-34 is 1203?,1,2148.0 +2148,5019,what is the maximum 65-69 and 35-39 is 1606?,1,2149.0 +2149,5022,What is the maximum administrative population of the city with Chinese translation 昆明?,1,2150.0 +2150,5046,Name the most losses for leslie mann,1,2151.0 +2151,5078,Name the most pick number for cfl team being edmonton eskimos,1,2152.0 +2152,5096,What is the highest poplulation in July 2012 in the country with an area of 2149690 square kilometers?,1,2153.0 +2153,5124,When 12743 is the spelthorne what is the largest gore hundred?,1,2154.0 +2154,5129,When 272966 is the tower division what is the highest holborn division?,1,2155.0 +2155,5131,What is the maximum number of stolen ends against for Japan? ,1,2156.0 +2156,5133,Name the most glucolse where cl is 154,1,2157.0 +2157,5149,Name the max game for attendance being 54774,1,2158.0 +2158,5164,Name the max top 5 for 5.0 avg finish,1,2159.0 +2159,5206,Name the most enrollment when nickname is hawks,1,2160.0 +2160,5238,What is the maximum points against when team's points are 10?,1,2161.0 +2161,5256,What is the highest year named for the name Tie Fluctus?,1,2162.0 +2162,5273,What was the highest score for round 2?,1,2163.0 +2163,5305,What is the largest number of seats won?,1,2164.0 +2164,5395,What is the highest number of ends lost?,1,2165.0 +2165,5399,What is the top Points Allowed?,1,2166.0 +2166,5459,What is the maximum population of the land with an area of 276.84 km2?,1,2167.0 +2167,5588,Name the max bike number of position for 30,1,2168.0 +2168,5633,"At what game number was the attendance at Conseco Fieldhouse 14,486?",1,2169.0 +2169,5681,What is the highest number of laps led with 16 points?,1,2170.0 +2170,5685,What is the highest number of laps for Darren Manning?,1,2171.0 +2171,5754,Name the maximum kerry # for where others is 47,1,2172.0 +2172,5796,What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes?,1,2173.0 +2173,5797,"If Arthur Albert is the director, what is the maximum series number?",1,2174.0 +2174,5940,The Keutenberg race had what race length?,1,2175.0 +2175,5979,What was the highest vote for others?,1,2176.0 +2176,5982,What was the highest vote number for Bush?,1,2177.0 +2177,6044,"If the laps is 191, what is the maximum laps led?",1,2178.0 +2178,6046,"If the time/retired is +1 lap, what is the amount of maximum laps?",1,2179.0 +2179,6076,What was the latest year that Colin Berry was the spokesperson? ,1,2180.0 +2180,6079,What is the latest year that the final television commentator was David Jacobs? ,1,2181.0 +2181,6136,What is the latest year a division was established?,1,2182.0 +2182,6146,Name the maximum year built for holmedal kyrkje,1,2183.0 +2183,6139,What is the latest year established that had 5 powiats?,1,2184.0 +2184,6244,What is the highest number of games played?,1,2185.0 +2185,6256,What was the highest number of wins for any team?,1,2186.0 +2186,6365,What was the population of Minneapolis in 2012?,1,2187.0 +2187,6431,What is the longest length of mandatory secondary school?,1,2188.0 +2188,6440,what is the maximum number of pinorinol in wheat bran?,1,2189.0 +2189,6449,Name the most played for 140 plus is 13,1,2190.0 +2190,6488,What is the maximum number of episodes in the series listed?,1,2191.0 +2191,6628,What is Inaba's maximum score?,1,2192.0 +2192,6679,Name the maximum points for libertad,1,2193.0 +2193,6681,Name the most draws,1,2194.0 +2194,6720,When 3 is the rank what is the highest combo?,1,2195.0 +2195,6722,When 155 is the jersey what is the highest amount of different holders?,1,2196.0 +2196,6741,Name the most wins for sport colombia,1,2197.0 +2197,6762,What is the maximum starts that result in an average finish of 16.5?,1,2198.0 +2198,6799,What is the highest pos for a driver with 1 podium?,1,2199.0 +2199,6818,What is the greatest number of bills sponsored in any year?,1,2200.0 +2200,6823,What is the highest cr number?,1,2201.0 +2201,6825,How many opponents are at Minnesota Vikings?,1,2202.0 +2202,6836,What is the highest GA when GF is 39?,1,2203.0 +2203,6873,When mount kobowre is the peak what is the highest elevation in meters?,1,2204.0 +2204,6874,When mount gauttier is the peak what is the highest prominence in meters?,1,2205.0 +2205,6892,What is the highest value for col(m) when prominence(m) is 3755?,1,2206.0 +2206,6893,What is the highest value for col(m) at North Island?,1,2207.0 +2207,7021,"If -750 is 45.505, what is the maximum rank?",1,2208.0 +2208,7034,What is the most members Europe had when Australia had 94615?,1,2209.0 +2209,7065,What was the maximum average of the episode with a Chinese title 古靈精探b?,1,2210.0 +2210,7092,Name the most 3 car sets,1,2211.0 +2211,7105,What was the max character (per page row) of the encoding with a bit rate of 6.203?,1,2212.0 +2212,7228,What is the largest series number? ,1,2213.0 +2213,7229,What is the latest episode number with the title of Jerusalem? ,1,2214.0 +2214,7241,What is the maximum number of AFC championships?,1,2215.0 +2215,7244,What is the highest draw represented?,1,2216.0 +2216,7251,What was the maximum number in written when the standard was 2? ,1,2217.0 +2217,7284,What was the highest season number?,1,2218.0 +2218,7318,Name the most joined for molloy college,1,2219.0 +2219,7335,What is the maximum 2006 census population of LGA name Opobo/Nkoro?,1,2220.0 +2220,7337,When was the school whose students are nicknamed Rams founded?,1,2221.0 +2221,7354,what is the highest number of goals did the player with 27 asists score,1,2222.0 +2222,7359,What's the highest enrollment among the schools?,1,2223.0 +2223,7373,What is the maximum number of blocks where rebounds equal 35?,1,2224.0 +2224,7382,Name the most founded for sea gulls,1,2225.0 +2225,7386,"Name the most points for champion, won in the final against amélie mauresmo",1,2226.0 +2226,7424,"If the total is 17, what was the maximum rank amount?",1,2227.0 +2227,7501,"If the till aligarh is 150, what the mac till mathura?",1,2228.0 +2228,7502,"If the till agra is 1050, what is the max round trip?",1,2229.0 +2229,7545,"What is top ep number for ""missile bound cat""?",1,2230.0 +2230,7649,"For language Aymara Simi, what was the maximum San Javier municipality percentage?",1,2231.0 +2231,7665,Name the most applications for 1986,1,2232.0 +2232,7668,What was the latest season with 20 contestants?,1,2233.0 +2233,7680,Name the most round for michael goulian,1,2234.0 +2234,7786,What is the most divisional titles won by a school with an enrollment of 30049?,1,2235.0 +2235,7787,What is the maximum enrollment of the Sooners?,1,2236.0 +2236,7870,Name the most withdrawn for 37 lstr no.,1,2237.0 +2237,7877,what is the highest mccain # where obama got 33.7%,1,2238.0 +2238,7892,What's the highest number a couple has ranked at?,1,2239.0 +2239,7894,"What is the panchayat when the public property damage was 1,03,049.60",1,2240.0 +2240,7895,What is the largest village that had 103279 houses affected? ,1,2241.0 +2241,7919,Name the most obama number for mccain being 38.86%,1,2242.0 +2242,7920,Name the most abama number for mccain being 29266,1,2243.0 +2243,7954,Name the most weight,1,2244.0 +2244,7971,What is the most years that tournaments held in Rome have lasted?,1,2245.0 +2245,8042,what i the maximum number in the series where the production code is 3wab07?,1,2246.0 +2246,8043,what is the maximum number in the season wher the us viewers is 2.59?,1,2247.0 +2247,8094,What was the largest founded year for schools having enrollment of exactly 696?,1,2248.0 +2248,8103,Name the most previous br number,1,2249.0 +2249,8226,Name the most number for air date 2009/12/29,1,2250.0 +2250,8231,What is the greatest number of valves?,1,2251.0 +2251,8297,Name the most game,1,2252.0 +2252,8338,Name the most top 10s for 2 best finish,1,2253.0 +2253,8405,What is the largest micro when the big is 1080? ,1,2254.0 +2254,8410,Name the max javelin for 200m for 5,1,2255.0 +2255,8445,What is the latest episode in the season directed by Chris Long?,1,2256.0 +2256,8463,What is the highest number any of the players were picked at? ,1,2257.0 +2257,8487,What is the largest population count in any of the census divisions in 2006?,1,2258.0 +2258,8521,What is the last season? ,1,2259.0 +2259,8533,What is the maximal number of people that attended any of these games?,1,2260.0 +2260,8539,what is the highest attendance for a total attendance-regular season record,1,2261.0 +2261,8571,Name the most races,1,2262.0 +2262,8572,Name the most races,1,2263.0 +2263,8573,Name the most rr 1 pts,1,2264.0 +2264,8594,Name the most runs scored,1,2265.0 +2265,8814,Name the max top 5 for avg finish being 27.6,1,2266.0 +2266,8873,What is the maximum number of points scored against?,1,2267.0 +2267,8880,Name the most points agst,1,2268.0 +2268,8883,what is the biggest series episode number whose production code is 2t7211?,1,2269.0 +2269,8886,how many maximum series number have 2apx05 prod. code.,1,2270.0 +2270,8896,"If the average is 1.2803, what is the total points maximum?",1,2271.0 +2271,8978,What is the highest number of fai space flights when max mach is 5.65?,1,2272.0 +2272,8985,Name the most municipalities for alto alentejo province (partly ribatejo),1,2273.0 +2273,9031,What is the latest season number that Eric Tuchman directed? ,1,2274.0 +2274,9097,What is the biggest number for county population 18 years+?,1,2275.0 +2275,9132,What is the maximum number of golds?,1,2276.0 +2276,9140,What is the maximum rank of the nation that won 4 gold medals?,1,2277.0 +2277,9141,Name the most rank,1,2278.0 +2278,9142,Name the most rank for 2 gold,1,2279.0 +2279,9143,Name the most total ,1,2280.0 +2280,9146,Name the most tier 1 capital for irish nationwide,1,2281.0 +2281,9441,Name the most stage for alejandro valverde and astana greg henderson,1,2282.0 +2282,9457,What is the total membership for the metropolitan area in the city of Manchester?,1,2283.0 +2283,9460,When 19th is the position what is the highest amount of poles?,1,2284.0 +2284,9462,Name the most margin for nco party and p. ramachandran won,1,2285.0 +2285,9541,What is the population maximum?,1,2286.0 +2286,9545,Name the most share for 2.76 million viewers ,1,2287.0 +2287,9572,Name the most rebounds for larry smith,1,2288.0 +2288,9583,What is the most number of blocks kendall gill had?,1,2289.0 +2289,9589,What was the highest amount of episodes for the season with 5.74 million viewers?,1,2290.0 +2290,9597,What is the last year that Andre Agassi was the final opponent?,1,2291.0 +2291,9601,What is the latest year that data is available for?,1,2292.0 +2292,9607,How many atp wins did he have when his money list rank was 4? ,1,2293.0 +2293,9608,What is the maximum total wins he had for any year? ,1,2294.0 +2294,9616,"What is the most recent year where the final score is 4–6, 3–6, 6–4, 5–7?",1,2295.0 +2295,9619,What is the possible maximum money list rank?,1,2296.0 +2296,9626,Name the most population 2002,1,2297.0 +2297,9659,What is the most assists for points 129-3.9?,1,2298.0 +2298,9664,Name the max irish points for eastern michigan,1,2299.0 +2299,9689,What is the highest game number where the team was Cleveland? ,1,2300.0 +2300,9690,What is the highest numbered nightly rank for any episode? ,1,2301.0 +2301,9759,What is the maximum possible Copa Del Rey?,1,2302.0 +2302,9777,"If the winner is Bernhard Eisel, what is the stage maximum?",1,2303.0 +2303,9850,"which is the biggest number of episode in the season, where the number of the episode in series is 20?",1,2304.0 +2304,9853,"which is the biggest number of episode in the season, when the director of the episode was Constantine Makris?",1,2305.0 +2305,9860,What was the most races he had in a season?,1,2306.0 +2306,9880,Name the most three pointers for dewanna bonner,1,2307.0 +2307,9882,Name the most minutes for morgan jennings,1,2308.0 +2308,9883,Name the most free throws for 4 steals,1,2309.0 +2309,9905,What is the highest number in 10 3 m 3 /day (2011) where 10 3 bbl/day (2006) is equivalent to 787?,1,2310.0 +2310,9906,Name the most 10 3 bbl/d (2008) for present share being 1.7%,1,2311.0 +2311,9934,What is the maximum season number for the episode written by Jonathan Greene?,1,2312.0 +2312,10036,Name the most game for w 113–96 (ot),1,2313.0 +2313,10084,"What is the highest series number of the episode ""The New Day""?",1,2314.0 +2314,10120,What is the highest episode number?,1,2315.0 +2315,10132,What is the highest value for SF round for the country of England?,1,2316.0 +2316,10161,"If the runs is 5028, what is the matches maximum?",1,2317.0 +2317,10173,"If the amount of rebounds is 0, what is the maximum minutes?",1,2318.0 +2318,10187,What is the highest score for candidate Mohsen Rezaee when candidate mir-hossein mousavi scored 837858 votes?,1,2319.0 +2319,10189,"What was the highest score of candidate mir-hossein mousavi in the location known as azarbaijan, west?",1,2320.0 +2320,10191,What was the highest number of votes for mir-hossein mousavi when the number of invalid votes is 5683,1,2321.0 +2321,10199,What is the finishes maximum number?,1,2322.0 +2322,10316,"If seed number is 2, what is the maximum amount of points?",1,2323.0 +2323,10319,"If the speaker is Munu Adhi (2) K. Rajaram, what is the election year maximum?",1,2324.0 +2324,10320,"If the speaker is R. Muthiah, what is the election year maximum?",1,2325.0 +2325,10322,"If the assembly is the sixth assembly, what is the maximum election year?",1,2326.0 +2326,10383,Name the most year for conference finals,1,2327.0 +2327,10438,What is the latest year born when the current club is Barons LMT?,1,2328.0 +2328,10468,What is the high 10 profile number when the high profile is 80?,1,2329.0 +2329,10572,what are the maximum wins where the poles are 2?,1,2330.0 +2330,10600,How many teams participated (maximum) when Cornish All Blacks Pertemps Bees were relegated to the league?,1,2331.0 +2331,10713,What is the highest total for evm votes,1,2332.0 +2332,10783,Name the most number for steve stricker,1,2333.0 +2333,10814,What is the biggest number of basses suggested in either one of the references?,1,2334.0 +2334,10912,Name the most season for old hoss radbourn,1,2335.0 +2335,10947,"What is the latest amount of won legs in the payoffs when the prize money was £2,350?",1,2336.0 +2336,10949,"What is the highest amount of group legs won when the prize money was £21,850?",1,2337.0 +2337,10955,What episode number in the series had 2.77 million U.S. viewers?,1,2338.0 +2338,10956,Name the most times contested for montgomeryshire,1,2339.0 +2339,11042,Name the most total governorate seats for hewler,1,2340.0 +2340,11153,What is the highest number of goals scored,1,2341.0 +2341,11196,Name the most released for the in crowd,1,2342.0 +2342,11197,Name the most released for apologize,1,2343.0 +2343,11198,"Name the most released for right here, right now",1,2344.0 +2344,11218,what is the maximum number that entered when the eliminator was Triple H? ,1,2345.0 +2345,11233,What is the most recent episode number written by Matthew Pitts?,1,2346.0 +2346,11295,When 3 is the number what is the highest total?,1,2347.0 +2347,11323,What was the largest attendance at the Rheinstadion?,1,2348.0 +2348,11333,How many assists did the player who had 121 rebounds have? ,1,2349.0 +2349,11343,What was the maximum round where Marc Lieb Richard Lietz was on the GT2 Winning Team?,1,2350.0 +2350,11347,What is the highest number of steals for a player with 324 minutes?,1,2351.0 +2351,11356,What is the highest tie that had 19129 attendance?,1,2352.0 +2352,11397,What is the maximum number of rebounds for players having exactly 35 steals?,1,2353.0 +2353,11406,Name the most number,1,2354.0 +2354,11408,Name the most number,1,2355.0 +2355,11427,What was the maximum week that had attendance of 10738?,1,2356.0 +2356,11445,What was the maximum 09-10 i/o best?,1,2357.0 +2357,11446,"If 09-10 i/o best is 972, what is the 09-10 gp/jgp 2nd maximum?",1,2358.0 +2358,11531,Name the most 2012/13 for university of cambridge,1,2359.0 +2359,11561,Name the most pick number for guard and kansas city chiefs,1,2360.0 +2360,11564,Name the most pick number for illinois,1,2361.0 +2361,11584,Name the most padilla municipality for quechua,1,2362.0 +2362,11603,Name the most number for notre dame prep,1,2363.0 +2363,11664,What is the maximum number of seasons for any team? ,1,2364.0 +2364,11690,What was the largest number of aggravated assaults when there were 3811 robberies? ,1,2365.0 +2365,11742,What was the highest share?,1,2366.0 +2366,11791,Name the most number for charvez davis,1,2367.0 +2367,11792,Name the most height,1,2368.0 +2368,11799,What's the largest number of abandoned games by any of the teams?,1,2369.0 +2369,12127,What is the highest measure number?,1,2370.0 +2370,12156,What was the highest number of touchdowns by a player?,1,2371.0 +2371,12226,How many maximum points did Curtis scored?,1,2372.0 +2372,12248,What is the highest number of dave viewers of an episode with 119000 dave ja vu viewers?,1,2373.0 +2373,12260,What are the most points listed?,1,2374.0 +2374,12305,"What is largest series number for the episode that aired February 16, 1957?",1,2375.0 +2375,12479,What was the maximum burglary statistics if the property crimes is 168630?,1,2376.0 +2376,12567,What is the highest ff when solo is 56?,1,2377.0 +2377,12570,what are the maximum f/laps?,1,2378.0 +2378,12591,What is the highest enrollment schools that joined the mac in 1997?,1,2379.0 +2379,12592,What is the enrollment at delaware valley college?,1,2380.0 +2380,12643,What is the maximum number of wins?,1,2381.0 +2381,12898,What is the highest production code?,1,2382.0 +2382,12967,What was the latest season with a nick production number of 942?,1,2383.0 +2383,13033,WHat is the highest difference?,1,2384.0 +2384,13035,What is the highest lost?,1,2385.0 +2385,13057,What was the maximum rank-final score on the floor exercise?,1,2386.0 +2386,13058,What was the maximum rank-final value for a score of 14.975?,1,2387.0 +2387,13103,Name the most first elected,1,2388.0 +2388,13174,What is the latest episode written by John Shiban & Thomas Schnauz?,1,2389.0 +2389,13454,Name the most female life expectancy for djibouti,1,2390.0 +2390,13455,Name the most female life expectancy for overall rank of 61,1,2391.0 +2391,13456,Name the most male life expectancy for pakistan,1,2392.0 +2392,13506,What was the highest home total?,1,2393.0 +2393,13512,what is the greatest stage number in which suhardi hassan is the stage winner?,1,2394.0 +2394,13542,What was the maximum total USD collected by Pebble Technology?,1,2395.0 +2395,13558,What was the maximum vertical measurement if the horizon measurement is 640?,1,2396.0 +2396,13572,What is the highest series number with 9.17 million US viewers?,1,2397.0 +2397,13577,Name the most starts for 6 wins,1,2398.0 +2398,13680,"What was the maximum finish position of the car whose constructor was Joe Gibbs Racing, driven by Denny Hamlin?",1,2399.0 +2399,13682,What's the highest season number with a series number of 47?,1,2400.0 +2400,13809,Name the most points for 1-3-1 record,1,2401.0 +2401,13916,what is the most time where exhibitions is 1701,1,2402.0 +2402,13991,What is the last episode in the series written by Gregory S. Malins?,1,2403.0 +2403,13994,What is the maximum production code of an episode written by Patty Lin?,1,2404.0 +2404,14013,What's the maximum game in the javale mcgee (5) high rebounds?,1,2405.0 +2405,14124,What is the highest game number?,1,2406.0 +2406,14167,What is the most amount of stumpings any player had? ,1,2407.0 +2407,14241,What is the highest channel number?,1,2408.0 +2408,14584,Name the most points for when tries against is 8,1,2409.0 +2409,14585,What is the most recent year shown for Betty Stove?,1,2410.0 +2410,14620,What's the most amount of point finishes for v8supercar?,1,2411.0 +2411,14717,What is the most number of assists for players with exactly 25 games played?,1,2412.0 +2412,14718,What is the largest number of passes for players starting exactly 34 games?,1,2413.0 +2413,14749,what is the most number where the person is luke donald,1,2414.0 +2414,14799,What was the latest episode number that Meredith Averill wrote?,1,2415.0 +2415,14800,What is the latest episode number that was directed by Tom Dicillo?,1,2416.0 +2416,14804,What is the maximum number of matches in a game?,1,2417.0 +2417,14821,What is the largest number of consecutive starts for jason gildon?,1,2418.0 +2418,14870,What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8?,1,2419.0 +2419,14875,What is the largest number for karianne gulliksen?,1,2420.0 +2420,14909,What is the highest value for multi lane if category wise is major district roads?,1,2421.0 +2421,14932,What is the most amount of games played this season?,1,2422.0 +2422,14938,What is the maximum number of 2nd places for Tajikistan?,1,2423.0 +2423,14939,What is the maximum number of 1st places for the country with exactly 1 third place?,1,2424.0 +2424,14958,What is the highest production code of the episodes having a US viewership of exactly 2.3?,1,2425.0 +2425,14985,What is the innings when the highest score is 72?,1,2426.0 +2426,14986,What is the highest number listed for matches?,1,2427.0 +2427,15008,"What is the highest series number for ""The Devil Made Me Do It""?",1,2428.0 +2428,15092,Name the most serial number for feb 1994,1,2429.0 +2429,15134,"What is the highest numbered episode where the title is ""The Ruff Ruff Bunch""?",1,2430.0 +2430,15309,"When sweden is the country what is the highest production in 2010 (1,000 ton)?",1,2431.0 +2431,15314,What is the maximum number of 2006 subscribers for Glo Mobile?,1,2432.0 +2432,15315,What is the maximum number of 2006 subscribers for Mobilis?,1,2433.0 +2433,15375,What is the maximum start record for player of Jeff Brehaut?,1,2434.0 +2434,15400,What is the highest L of the tournament?,1,2435.0 +2435,15401,What is the highest W of the 0 L?,1,2436.0 +2436,15405,What is the most amount of stolen ends for a skip with 1 W?,1,2437.0 +2437,15501,what is the maximum round and fabien foret had the pole position?,1,2438.0 +2438,15507,What is the most stolen ends?,1,2439.0 +2439,15514,How many is the high assist total for players from panama?,1,2440.0 +2440,15545,Name the most other apps for league goals being 1,1,2441.0 +2441,15546,Name the most fa cup apps for league apps being 27,1,2442.0 +2442,15577,What is the highest value for population when area is 9104?,1,2443.0 +2443,15610,What is the highest total for any country/territory? ,1,2444.0 +2444,15613,What is the most Miss Fires any country has had?,1,2445.0 +2445,15673,What is the highest numbered event?,1,2446.0 +2446,15815,What was the highest number of yards in years where there were fewer than 51 rushes and more than 12 games?,1,2447.0 +2447,15842,Tell me the highest bosniaks for year more than 2002,1,2448.0 +2448,15876,What is the largest caps value for Glen Moss?,1,2449.0 +2449,15929,What is the highest rank of a rider whose time was 1:19.02.8?,1,2450.0 +2450,15959,Which country has the highest bronze amount and a silver amount bigger than 41?,1,2451.0 +2451,16088,What was the latest round with a running back from a California college?,1,2452.0 +2452,16107,"In less than 58 laps, what is the highest grid for Alexander Wurz?",1,2453.0 +2453,16155,What was the latest week that the Tampa Bay Buccaneers were an opponent?,1,2454.0 +2454,16159,Name the most attendance for tamworth with home venue,1,2455.0 +2455,16172,What is the greatest lane with an overall rank of 79 and a time larger than 26.1?,1,2456.0 +2456,16173,"Tell me the highest week for metropolitan stadium for attendance more than 47,644",1,2457.0 +2457,16181,Tell me the highest Laps for grid less than 22 and riderS of ruben xaus,1,2458.0 +2458,16236,I want the highest Grid for Toyota and jarno trulli,1,2459.0 +2459,16279,"Tell me the highest series # for september 22, 1976",1,2460.0 +2460,16322,Tell me the most year for 3 points,1,2461.0 +2461,16407,What was the highest order amount in weeks prier to 15 and a major less than 1?,1,2462.0 +2462,16409,What is the most recent year from Creighton?,1,2463.0 +2463,16410,What is the most recent year with a United States nationality and the school Hamline?,1,2464.0 +2464,16449,What was the largest crowd to see the away team score 10.6 (66)?,1,2465.0 +2465,16469,What is the biggest crowd when carlton is the away squad?,1,2466.0 +2466,16483,What was the highest percentage of internet users a nation with a 1622% growth in 2000-2008 had?,1,2467.0 +2467,16635,What was the highest attendance of the matches that took place at Windy Hill?,1,2468.0 +2468,16638,What was the crowd population for Footscray as an away team?,1,2469.0 +2469,16751,What were the highest points for less than 78 laps and on grid 5?,1,2470.0 +2470,16785,What is the largest overall rank for a center drafted before round 10?,1,2471.0 +2471,16817,What is the highest rank for championships with christy heffernan with over 4 matches?,1,2472.0 +2472,16833,What is the highest number of goals for robbie findley ranked above 10?,1,2473.0 +2473,16855,What is the largest crowd when the home team scores 14.12 (96)?,1,2474.0 +2474,16932,What is the largest crowd when the home team scores 16.16 (112)?,1,2475.0 +2475,16938,What is the largest crowd when st kilda was the away team?,1,2476.0 +2476,16972,What was the largest crowd for an away Carlton game?,1,2477.0 +2477,17003,Which model has a maximum memory of 512 mb?,1,2478.0 +2478,17005,What is the largest crowd for a Melbourne away team?,1,2479.0 +2479,17034,"What is the latest week with the date of november 5, 1995?",1,2480.0 +2480,17065,What is the largest crowd for any game where Footscray is the home team?,1,2481.0 +2481,17066,"What is the maximum number of draws when the diff is smaller than 186, points are fewer than 12 and games played fewer than 6?",1,2482.0 +2482,17068,What is the highest draws when more than 6 are played and the points against are 54?,1,2483.0 +2483,17069,What is the maximum number of points against when the team has more than 0 losses and plays fewer than 6 games?,1,2484.0 +2484,17093,What is the largest crowd at arden street oval?,1,2485.0 +2485,17235,What is the largest crowd size that had a home team score of 17.18 (120)?,1,2486.0 +2486,17241,What is the largest crowd for an away team score of 8.7 (55)?,1,2487.0 +2487,17325,Which week with Green Bay Packers as an opponent is the highest?,1,2488.0 +2488,17331,What is the largest crowd when melbourne plays at home?,1,2489.0 +2489,17342,What is the top goal for the result of 2–3?,1,2490.0 +2490,17396,What is the highest loss before game 14?,1,2491.0 +2491,17399,Which was the highest crowd drawn by an Away team in Richmond?,1,2492.0 +2492,17449,"Which population is the greatest, has a density of 20.3, and an area (km²) larger than 50,350?",1,2493.0 +2493,17489,What was the largest crowd when the home team scored 14.7 (91)?,1,2494.0 +2494,17494,How big was the largest crowd recorded at the Arden Street Oval venue?,1,2495.0 +2495,17499,"What is the larges week for the date august 9, 1968 and less than 64,020 in attendance?",1,2496.0 +2496,17603,What was the largest crowd at Arden Street Oval?,1,2497.0 +2497,17612,What was the most recent year when a g-force chassis started in 1st?,1,2498.0 +2498,17709,What is the latest year featuring candace parker?,1,2499.0 +2499,17710,What is the largest crowd when north melbourne is the home side?,1,2500.0 +2500,84,what is the minimum population canada 2011 census with seat of rcm being cowansville,2,2501.0 +2501,125,"What is the smallest pick for the player, brett lindros?",2,2502.0 +2502,176,When FA Cup Apps is 9 what is the smallest number of FA Cup Goals?,2,2503.0 +2503,177,What is the smallest number of Total Goals?,2,2504.0 +2504,179,"what is the minimum production code with title ""foreign exchange problem / turn about""",2,2505.0 +2505,324,what's the minimum attendance with score  10.16 (76) – 9.22 (76),2,2506.0 +2506,327,what is the minimum attendance with score 8.16 (64) – 8.12 (60),2,2507.0 +2507,332,What is the minimum amount for wool for 2001-02?,2,2508.0 +2508,374,What is the least number of candidates running were there when 80 seats were won?,2,2509.0 +2509,383,"What was the minimum attendance on December 7, 1969?",2,2510.0 +2510,396,what is the minimum pick # where position is defensive tackle,2,2511.0 +2511,407,What is the least amount of season epidsodes?,2,2512.0 +2512,421,What is the lowest sex ratio in rural areas?,2,2513.0 +2513,422,What is the lowest child sex ratio in groups where employment is 31.3%?,2,2514.0 +2514,484,What is the minimum introduced value for the Departmental region?,2,2515.0 +2515,485,What is the smallest introduced value?,2,2516.0 +2516,500,What is the lowest ru?,2,2517.0 +2517,504,What's the minimum total attendance of the Premier League association football?,2,2518.0 +2518,545,give the least number of times an episode was shown from 1997-1998,2,2519.0 +2519,653,"What is the lowest weekly rank with an air date of november 26, 2007?",2,2520.0 +2520,659,What is the minimum capacity where airdrie united is?,2,2521.0 +2521,679,What is the lowest attendance that East End Park has ever had?,2,2522.0 +2522,681,What is the lowest attandance recorded at Cappielow?,2,2523.0 +2523,735,What is the least top division titles?,2,2524.0 +2524,736,What is the least number of seasons in top division?,2,2525.0 +2525,1113,What was the minimal amount ($) of the 1st prize in the tournaments in New Mexico?,2,2526.0 +2526,1149,What is the minimum enrollment at barton college,2,2527.0 +2527,1320,What is the lowest date settled for chifley?,2,2528.0 +2528,1321,What is the lowest density in Garran?,2,2529.0 +2529,1336,What is the minimum of t20 matches?,2,2530.0 +2530,1392,what is the minimum norwegian americans (1980) where state is rhode island,2,2531.0 +2531,1394,What is the smallest track number?,2,2532.0 +2532,1420,"What is the earliest year where the mintage (proof) is 25,000?",2,2533.0 +2533,1522,Name the minimum game,2,2534.0 +2534,1570,Name the minimum for prohibition?,2,2535.0 +2535,1704,what's the minimum production code written by jay sommers & dick chevillat and al schwartz,2,2536.0 +2536,1791,"If the number of police officers is 94, what is the lowest population number?",2,2537.0 +2537,1829,"What is the lowest year that regular season is 4th, Rocky Mountain?",2,2538.0 +2538,1882,what is the minimum rockhampton,2,2539.0 +2539,1927,what is the least amount in the tournament?,2,2540.0 +2540,2026,List the smallest possible spoilt vote with the sør-trøndelag constituency.,2,2541.0 +2541,2129,What was the smallest total number of medals?,2,2542.0 +2542,2231,What's the smallest episode number of an episode whose number in the series is 22?,2,2543.0 +2543,2271,What is the lowest first elected?,2,2544.0 +2544,2703,what is the minimum number first elected to district louisiana 5?,2,2545.0 +2545,2874,What year was someone first elected?,2,2546.0 +2546,2889,Name the lowest first elected for chester w. taylor,2,2547.0 +2547,2963,what's the minimum 180s value,2,2548.0 +2548,3009,What is the lowest numbered hydroelectric power when the renewable electricity demand is 21.5%?,2,2549.0 +2549,3147,What is the lowest numbered game on the list?,2,2550.0 +2550,3171,what is the minimum points with highest position being 1,2,2551.0 +2551,3325,What is the lowest enrollment value out of the enrollment values I'd the schools with a 3A WIAA clarification? ,2,2552.0 +2552,3368,what is smallest number in fleet for chassis manufacturer Scania and fleet numbers is 3230?,2,2553.0 +2553,3370,Chassis model Scania K360ua has what minimum number in fleet?,2,2554.0 +2554,3374,Name the least clock rate mhz,2,2555.0 +2555,3375,Name the least clock rate mhz when designation is rimm 4200,2,2556.0 +2556,3388,"For teams that played 5 games, what was the smallest number of wins?",2,2557.0 +2557,3438,What is the least amount of field goals made by a player?,2,2558.0 +2558,3482,Name the least points where 1989-90 is 31,2,2559.0 +2559,3561,Name the minimum for 2500-3000 ft for scotland,2,2560.0 +2560,3563,Name the minimum total for ireland,2,2561.0 +2561,3577,what is the value for minimum total wins,2,2562.0 +2562,3711,Lorne Henning has the lowest pick# of?,2,2563.0 +2563,3778,What is the lowest number of wins?,2,2564.0 +2564,3782,Name the least 3 credits,2,2565.0 +2565,3783,Name the least 2 credits for straight hand,2,2566.0 +2566,3784,Name the least 2 credits for flush,2,2567.0 +2567,3801,What is the smallest conceded value for the team 12 De Octubre?,2,2568.0 +2568,3802,What is the smallest draws value with 21 points?,2,2569.0 +2569,3859,Name the least wins,2,2570.0 +2570,3970,What is the lowest rank for puerto rico?,2,2571.0 +2571,3997,What is the lowest number of students from a state during the Fall 06 semester?,2,2572.0 +2572,4029,What is the minimum stage where Sergei Smetanine won?,2,2573.0 +2573,4030,what is the minimum stage where mountains classification is aitor osa and aitor gonzález won?,2,2574.0 +2574,4090,Name the least episode for fibre cement siding,2,2575.0 +2575,4349,What was the earliest season recorded for any team,2,2576.0 +2576,4356,Name the least purse for 2011,2,2577.0 +2577,4385,"What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?",2,2578.0 +2578,4456,What is the lowest number of wickets for farveez maharoof?,2,2579.0 +2579,4501,Name the least tied,2,2580.0 +2580,4502,Name the least wins of 56.25%,2,2581.0 +2581,4510,Name the minimum enrollment for montana tech of the university of montana,2,2582.0 +2582,4659,What was the minimum attendance against the New Orleans Saints?,2,2583.0 +2583,4662,"What was the minimum crowd on January 24, 1987?",2,2584.0 +2584,4668,What is the minimum number of points given up to the Baltimore Colts,2,2585.0 +2585,4672,Name the least position,2,2586.0 +2586,4729,What was the lowest no. of attendance on record?,2,2587.0 +2587,4734,What was the minimum population in 2011 of the district of Prakasam?,2,2588.0 +2588,4827,Name the least area for vas,2,2589.0 +2589,4889,What's the earliest year anybody joined the hockey league? ,2,2590.0 +2590,4891,"For the flyers, what's the minimum capacity? ",2,2591.0 +2591,4947,Private/Catholic school's minimum enrollment is?,2,2592.0 +2592,4991,Who was the lowest picked LB,2,2593.0 +2593,5007,What is the fewest number of losses?,2,2594.0 +2594,5009,What is the lowest number of losses for teams that lost 52 ends?,2,2595.0 +2595,5015,When voronezh is the oblast\age what is the lowest result of 65 to 69?,2,2596.0 +2596,5017,what is the minimum of 60 -64?,2,2597.0 +2597,5095,"What was the minimum area in square kilometers that produced 3,200,000 (12th) bbl/day?",2,2598.0 +2598,5126,What is the lowest overall year?,2,2599.0 +2599,5128,When within the walls is larger than 56174.0 what is the lowest amount without the walls?,2,2600.0 +2600,5158,What is the lowest number of poles?,2,2601.0 +2601,5159,Name the least top 5,2,2602.0 +2602,5180,Name the least points for daniël willemsen / kenny van gaalen,2,2603.0 +2603,5240,What is the smallest number of tries for in a game?,2,2604.0 +2604,5326,Name the least amount of races for 2 poles,2,2605.0 +2605,5343,Name the least age 30-39 where age 20-29 is 593,2,2606.0 +2606,5344,Name the least age 40-49,2,2607.0 +2607,5348,what was Casey Martin's minimum yearly earnings?,2,2608.0 +2608,5397,"When the skip is Glenn Howard, what the minimum PF?",2,2609.0 +2609,5467,"Name the least game for arco arena 13,330",2,2610.0 +2610,5746,"If grid is 2, what is the minimum fin. pos number?",2,2611.0 +2611,5811,What is the fewest number of games lost?,2,2612.0 +2612,5819,What is the minimum attendance on games of record 0-2-1,2,2613.0 +2613,5859,What is the fewest number of occ championships for the team that last won an outright occ championship in 2006?,2,2614.0 +2614,5941,"In the Champions league, what is the Minimum",2,2615.0 +2615,5943,when the total is 8 and copa del rey is 0 what is the minimum league,2,2616.0 +2616,5958,What is the fewest number of shuttles where the shuttle time is 6.55 seconds?,2,2617.0 +2617,5967,What is the least number of miss united continents? ,2,2618.0 +2618,6035,Name the least transfers out when transfers is 21,2,2619.0 +2619,6036,Name the least total transfers for romania,2,2620.0 +2620,6037,Name the least internal transfers,2,2621.0 +2621,6111,Name the least capacity for persons hour for 1983,2,2622.0 +2622,6243,Name the least ai %,2,2623.0 +2623,6251,What is the least amount of games played with 21 losses?,2,2624.0 +2624,6291,What year was Tim Holden first elected?,2,2625.0 +2625,6411,What's the minimal number of population served?,2,2626.0 +2626,6503,What is the smallest number?,2,2627.0 +2627,6507,What is the smallest city area?,2,2628.0 +2628,6626,What is the least number of poins for San Lorenzo? ,2,2629.0 +2629,6631,"When austin, texas is the hometown what is the lowest age?",2,2630.0 +2630,6653,What is the smallest ansi code?,2,2631.0 +2631,6682,Name the least played,2,2632.0 +2632,6686,"When baoruco is the province, community what is the lowest age?",2,2633.0 +2633,6759,What is the lowest number of top 10 finishes,2,2634.0 +2634,6819,What is the lowest cr number?,2,2635.0 +2635,6835,What is the lowest SOL?,2,2636.0 +2636,6884,What is the smallest amount sampled of product 蒙牛牌嬰幼兒配方乳粉 ?,2,2637.0 +2637,6894,What is the lowest elevation(m) for the peak Mount Taylor?,2,2638.0 +2638,6911,What is the least obesity rank for the state of Utah?,2,2639.0 +2639,6919,What is the lowest population(2011)?,2,2640.0 +2640,6920,What is the lowest population(2006) when there is a 1.06% in 2011?,2,2641.0 +2641,6934,Name the minimum wins,2,2642.0 +2642,6951,what is the worlds smallest population?,2,2643.0 +2643,6952,What is the first year in the competition?,2,2644.0 +2644,6954,What is the first year that she competed?,2,2645.0 +2645,6988,When zachary sanders is the performer what is the lowerst first aired?,2,2646.0 +2646,7032,What is the minimum number of members Europe had at the time Africa had 7375139?,2,2647.0 +2647,7033,What is the minimum number of members Africa had in 2001?,2,2648.0 +2648,7122,what is the least current,2,2649.0 +2649,7181,What is the earliest year a house opened?,2,2650.0 +2650,7186,What is the minimum losses for the Kansas City Chiefs?,2,2651.0 +2651,7222,What was the minimum number of episodes in any of the series? ,2,2652.0 +2652,7273,What is the least value for total population in 2001 with a growth rate in 1991-01 of 33.08?,2,2653.0 +2653,7308,What's the smallest pick number of a player playing in Minnesota North Stars?,2,2654.0 +2654,7323,what is the least total in gila,2,2655.0 +2655,7351,what is the lowest number of blocks,2,2656.0 +2656,7352,what is the lowest points scored by a player who blocked 21 times,2,2657.0 +2657,7336,What's the minimal enrollment of any of the schools?,2,2658.0 +2658,7406,What is the lowest number of wins of a team?,2,2659.0 +2659,7407,What's the minimal number of wins of a team?,2,2660.0 +2660,7423,"If the vote percentage is 2.111%, what was the minimum rank?",2,2661.0 +2661,7474,What is the least total votes?,2,2662.0 +2662,7504,What's the lowest number of a game where S. Johnson (3) did the most high assists?,2,2663.0 +2663,7561,what is the least number of stumps in a game with 13 dismissals,2,2664.0 +2664,7593,Name the least number in series,2,2665.0 +2665,7727,What is the lowest production code,2,2666.0 +2666,7788,What is the minimum enrollment of the cyclones?,2,2667.0 +2667,7863,state the earliest year li xuerui won womens singles,2,2668.0 +2668,7864,state the earliest year li xuerui won womens singles,2,2669.0 +2669,7882,Name the least podiums for 49 points,2,2670.0 +2670,7883,Name the least f/laps,2,2671.0 +2671,7885,Name the least podiums for 0 wins and 2005 season for 321 points,2,2672.0 +2672,7891,What's the minimal number of dances a couple has danced?,2,2673.0 +2673,7896,What is the smallest district that had 33.25 in animals,2,2674.0 +2674,7900,What's the number of McCain votes in the county where Obama got 35.7% and others got 1.9% of the votes?,2,2675.0 +2675,7917,Lowest number of drop goals?,2,2676.0 +2676,8073,What is the minimum enrollment for Plainfield?,2,2677.0 +2677,8215,"Name the least episode for november 29, 1985",2,2678.0 +2678,8318,What was the smallest numbered rank for Michael Bevan?,2,2679.0 +2679,8342,What is the smallest number of episodes in a season?,2,2680.0 +2680,8409,Name the least total for 1500m for 2,2,2681.0 +2681,8422,"If there are 18 villages, what is the minimum area ?",2,2682.0 +2682,8429,What is the earliest year?,2,2683.0 +2683,8453,What is the smallest pick number for McGill?,2,2684.0 +2684,8484,Name the least age for cibao central and santo domingo,2,2685.0 +2685,8510,What is the minimum number of seasons?,2,2686.0 +2686,8578,What is the smallest third place finish?,2,2687.0 +2687,8588,When 20 is the rr4 points what is the lowest rr3 points?,2,2688.0 +2688,8633,What is the fewest shots a glazing can handle?,2,2689.0 +2689,8728,what is the minimum student population where the research grants is 2.203?,2,2690.0 +2690,8800,When 2008 t is the original number what is the lowest year?,2,2691.0 +2691,8868,The Maserati 4cl's minimum no was?,2,2692.0 +2692,8884,what is the smallest series episode number whose production code is 2t7211?,2,2693.0 +2693,8893,What is the 07 points minimum if the 08 points is 50?,2,2694.0 +2694,9128,Who has the minimum number of silver?,2,2695.0 +2695,9105,What is the minimum possible for the NJCAA championships?,2,2696.0 +2696,9108,What is the minimum possible NJCAA championships?,2,2697.0 +2697,9136,What's the minimal rank of a athlete shown in the chart?,2,2698.0 +2698,9137,which is the minimun amount of gold medals?,2,2699.0 +2699,9138,which is the minimun amount of silver medals?,2,2700.0 +2700,9139,What is the lowest overall number for total(min. 2 medals)?,2,2701.0 +2701,9133,What is the smallest amount of silver?,2,2702.0 +2702,9236,Name the least rank subcontinent for bangladesh,2,2703.0 +2703,9244,Name the least world rank for south american rank 3,2,2704.0 +2704,9296,Name the least total apaps for txema,2,2705.0 +2705,9523,"What is the lowest population in a county with market income per capita of $24,383?",2,2706.0 +2706,9548,Name the least europa league,2,2707.0 +2707,9560,"Of the players with 50 free throws, what is the lowest number of three pointers?",2,2708.0 +2708,9584,What is the lowest number of three pointers in games where the number of rebounds was 178?,2,2709.0 +2709,9586,What is the lowest number of three pointers in games that kendall gill played?,2,2710.0 +2710,9630,What is the year where the runner-up outcome was at its basic minimum?,2,2711.0 +2711,9751,Name the least total for sergio ramos,2,2712.0 +2712,9752,Name the least copa del rey,2,2713.0 +2713,9755,"If the player is Marcelo, what is the minimum R?",2,2714.0 +2714,9770,"Name the least 10,000+ places for louisville",2,2715.0 +2715,9881,Name the least field goals for chantel hilliard,2,2716.0 +2716,9924,"If the points is 1, what is the total points minimum?",2,2717.0 +2717,10041,What was the minimum population in 2011?,2,2718.0 +2718,10141,What's the minimal number of points scored in any game?,2,2719.0 +2719,10176,"If the player is Jasmine Wynne, what is the minimum number of steals?",2,2720.0 +2720,10186,Display the lowest score for candidate Mir-Hossein Mousavi when candidate Mohsen Rezaee scored 44809 votes,2,2721.0 +2721,10198,"If finishes is 10, what is the POS minimum?",2,2722.0 +2722,10346,What is the lowest numbered division Cleveland played in? ,2,2723.0 +2723,10466,What is the smallest amount of WSOP bracelets anyone had?,2,2724.0 +2724,10599,How many were the minimum team that participated in the league?,2,2725.0 +2725,10611,What is the least 08-09 gp/jgp 2nd was when the 07-08 gp/jgp best is 223?,2,2726.0 +2726,10612,What is the least 08-09 i/o best?,2,2727.0 +2727,10621,What is the lowest number of carriers?,2,2728.0 +2728,10671,Name the least finish for larry dickson,2,2729.0 +2729,10698,What is the minimum capacity for Sangre Grande Ground?,2,2730.0 +2730,10711,"What was the earliest year where USL PDL played in 3rd, Southeast season?",2,2731.0 +2731,10772,What's the smallest number for cores of any of the processor models?,2,2732.0 +2732,10776,What is the earliest number in before?,2,2733.0 +2733,10779,Name the least events for number 7,2,2734.0 +2734,10782,Name the least points for number 6,2,2735.0 +2735,10792,Name the least attendance for l 36–1,2,2736.0 +2736,10810,What is he smallest numbered week?,2,2737.0 +2737,10886,What is the lowest amount of L in any season? ,2,2738.0 +2738,10943,What is the lowest overall amount of times they've been in 3rd?,2,2739.0 +2739,10944,When 2011 is the year what is the lowest money list rank?,2,2740.0 +2740,10945,What is the lowest overall money list rank?,2,2741.0 +2741,10946,When t3 is the best finish what is the lowest amount of tournaments played?,2,2742.0 +2742,10951,What is the least amount of playoff legs won?,2,2743.0 +2743,10975,What is the minimum 2007 USD in Kabardino-Balkaria?,2,2744.0 +2744,11012,What are the lowest points when poles were 0 and races were 10?,2,2745.0 +2745,11041,Name the least total kurdistan list,2,2746.0 +2746,11050,Name the least flaps,2,2747.0 +2747,11087,Name the least listed owner for pete raymer,2,2748.0 +2748,11094,What is the lowest score of all games for match 2?,2,2749.0 +2749,11126,What was the minimum number for opponents?,2,2750.0 +2750,11127,What is the minimum number of opponents' points for the game at Michigan State?,2,2751.0 +2751,11144,What was the lowest score.,2,2752.0 +2752,11145,List the minimum impressions for sammy traoré,2,2753.0 +2753,11167,Name the least area ,2,2754.0 +2754,11187,Name the least races for carlin,2,2755.0 +2755,11190,Name the least number of believers,2,2756.0 +2756,11289,When 6.66 is the amount of viewers what is the lowest production code?,2,2757.0 +2757,11290,When 7.55 is the amount of viewers what is the lowest number?,2,2758.0 +2758,11302,What was the lowest goals ever achieved?,2,2759.0 +2759,11364,What is the minimum number of field goals associated with exactly 84 assists?,2,2760.0 +2760,11443,What is the lowest overall number of 09-10 oi 2nd?,2,2761.0 +2761,11444,What is the lowest overall number for 09-10 oi 2nd?,2,2762.0 +2762,11467,Name the least pick number for steven turner,2,2763.0 +2763,11556,Name the least pick number for the denver broncos,2,2764.0 +2764,11580,What is the Sipe Sipe Municipality minimum if the language is Quechua?,2,2765.0 +2765,11581,"If the language is Native and Spanish, what is the Vinto Municipality minimum?",2,2766.0 +2766,11582,"If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum?",2,2767.0 +2767,11587,Name the least tomina for el villar being 4,2,2768.0 +2768,11606,Name the least ends won for pf being 78,2,2769.0 +2769,11647,What was the minimum points against if the opponent is Port Adelaide?,2,2770.0 +2770,11631,"If the registered voters is 66.8%, what is the minimum population?",2,2771.0 +2771,11672,How much was the minimum renewable electricity (GW-h) that is ranked 36?,2,2772.0 +2772,11682,Name the least rank,2,2773.0 +2773,11732,What is the lowest amount of races?,2,2774.0 +2774,11742,What was the least share?,2,2775.0 +2775,11744,What is the lowest attendance?,2,2776.0 +2776,11824,Name the least f/laps,2,2777.0 +2777,11825,Name the least podiums for 9th position,2,2778.0 +2778,11848,What is the smallest rank by average for a team averaging 22.8?,2,2779.0 +2779,11863,What is the fewest amount of races in any season? ,2,2780.0 +2780,11882,What is the smallest height associated with Honduras?,2,2781.0 +2781,11964,What is the minimum number of barangays where the type is component city?,2,2782.0 +2782,11970,What was his minimum number wins in a single year?,2,2783.0 +2783,12146,What was the lowest measure number? ,2,2784.0 +2784,12172,What is the minimum ITV1 ranking for the episode having viewership of 5.42 million?,2,2785.0 +2785,12204,What was the minimum number of the episode that first aired August 11?,2,2786.0 +2786,12229,What was the minimum touchdowns of the Fullback player?,2,2787.0 +2787,12230,How many touchdowns did the fullback score?,2,2788.0 +2788,12258,What was the least amount of points scored?,2,2789.0 +2789,12269,Name the least extra points,2,2790.0 +2790,12270,Name the least extra marks,2,2791.0 +2791,12263,What were the least amount of field goals when Frederick L. Conklin played?,2,2792.0 +2792,12285,What is the lowest rank of an episode with a rating/share (18-49) of 1.3/4?,2,2793.0 +2793,12296,Name the least episode number for anne brooksbank and vicki madden,2,2794.0 +2794,12388,What is the lowest jews and others 1 for the localities 11?,2,2795.0 +2795,12471,What is the smallest number of runs?,2,2796.0 +2796,12483,What was the minimum property crimes stats if the burglary committed was 45350?,2,2797.0 +2797,12487,What is the lowest number of matches for a record holder?,2,2798.0 +2798,12506,What was the earliest year?,2,2799.0 +2799,12565,What is the lowest brup when long is 94?,2,2800.0 +2800,12566,What is the lowest gp?,2,2801.0 +2801,12572,what are the minimum poles?,2,2802.0 +2802,12602,When was the earliest founded university?,2,2803.0 +2803,12641,What is the minimum number of f/laps?,2,2804.0 +2804,12813,List the lowest number of assists.,2,2805.0 +2805,12821,What was the lowest judge rank for danny and frankie?,2,2806.0 +2806,12837,What is the least place when the couple is Keiron & Brianne?,2,2807.0 +2807,12880,What is the lowest dye absoprtion in nm?,2,2808.0 +2808,12965, What is the lowest Nick production number? ,2,2809.0 +2809,13139,When was the earliest person elected?,2,2810.0 +2810,13162,What is the smallest number listed in the from category? ,2,2811.0 +2811,13298,"What was the first numbered episode in the series titled ""the wind beneath our wings""?",2,2812.0 +2812,13309,Name the leaast points for standing 5th,2,2813.0 +2813,13546,What is the lowest number of total goals for a player with 6 league goals?,2,2814.0 +2814,13547,What is the lowest number of fa cup goals by a player?,2,2815.0 +2815,13557,What was the minimum vertical measurement if the aspect ratio is 16:9 and scanning is interlaced?,2,2816.0 +2816,13575,Name the least podiums for 2009,2,2817.0 +2817,13579,What is the lowest wickets?,2,2818.0 +2818,13618,What is the lowest league cup?,2,2819.0 +2819,13711,what was the lowest elevation in april 2006?,2,2820.0 +2820,13758,What is the smallest año?,2,2821.0 +2821,13959,what is the minimum overall attendance where the goals scored were 19?,2,2822.0 +2822,14181,For player is jamal mayers mention the minimum pick,2,2823.0 +2823,14190,What was the minimum pick by the Florida Panthers?,2,2824.0 +2824,14207,Name the least games played for 6 points,2,2825.0 +2825,14305,What is the minimum number of 50s scored?,2,2826.0 +2826,14307,What is the fewest number of wickets recorded?,2,2827.0 +2827,14309,What is the least amount of wickets?,2,2828.0 +2828,14310,What is the least amount of matches?,2,2829.0 +2829,14314,What is the lowest episode number that had 4.03 million viewers?,2,2830.0 +2830,14353,What is the lowest numbered episode in the series?,2,2831.0 +2831,14367,What is the lowest number of fixtures?,2,2832.0 +2832,14382,Name the least production code for bryan moore & chris peterson,2,2833.0 +2833,14478,List the lowest super league for a 0 champion league.,2,2834.0 +2834,14479,What is the minimum sum?,2,2835.0 +2835,14487,"Name the least births for conversion being 26,333",2,2836.0 +2836,14488,Name the least amount of new adherents per year,2,2837.0 +2837,14587,What is the lowest number of drawn games by a team?,2,2838.0 +2838,14714,What is the minimum pick of a centre from the Czech Republic?,2,2839.0 +2839,14716,What is the fewest minutes played for the player with exactly 638 good passes?,2,2840.0 +2840,14724,what was the lowest number that auburn triumphed where the activities took part was 92,2,2841.0 +2841,14728,What is the earliest round where the gt winning car is max angelelli?,2,2842.0 +2842,14740,What is the lowest after when the player is adam scott?,2,2843.0 +2843,14796,What's the smallest season number?,2,2844.0 +2844,14820,Name the least number for nello pagani,2,2845.0 +2845,14839,What is the minimum number of points for teams averaging 1.412?,2,2846.0 +2846,15021,What is the minimum MotoGP/500cc ranking?,2,2847.0 +2847,15109,What is the earliest round where collingswood lost by 36 points?,2,2848.0 +2848,15115,What is the lowest listed number for a player?,2,2849.0 +2849,15190,What is the earliest year in which the result is championship US Open (2)?,2,2850.0 +2850,15241,What is the least amount in each season? ,2,2851.0 +2851,15242,What is the least number in a season?,2,2852.0 +2852,15284,What is the lowest overall number of hurricanes?,2,2853.0 +2853,15361,"When ""speed metal"" is the episode title what is the lowest number?",2,2854.0 +2854,15571,When the number is 2 what is the lowest amount of al-wedhat wins?,2,2855.0 +2855,15602,What is the lowest value in the miss international column?,2,2856.0 +2856,15603,"What is the smallest quantity displayed under the title ""first runner-up""?",2,2857.0 +2857,15614,What is the least amount of Miss Airs any country has had?,2,2858.0 +2858,15632,What is the minimum sum?,2,2859.0 +2859,15633,What is the minimum manhunt beauty contest?,2,2860.0 +2860,15614,What is the least amount of Miss Airs any country has had?,2,2861.0 +2861,15888,What were the fewest amount of guns possessed by a frigate that served in 1815?,2,2862.0 +2862,15941,What is the lowest number of silver owned by a nation that is not ranked number 1?,2,2863.0 +2863,15960,What is the lowest amount of medals Russia has if they have more than 2 silver medals and less than 4 gold medals?,2,2864.0 +2864,15965,Name the fewest points of 5 place,2,2865.0 +2865,15995,What is the lowest value for bronze with a total of 3 and a value for silver greater than 1 while the value of gold is smaller than 1?,2,2866.0 +2866,16037,Tell me the least time for apostolos tsagkarakis for lane less than 6,2,2867.0 +2867,16039,Tell me the lowest round for total combat 15,2,2868.0 +2868,16117,Damani Ralph is associated with which lowest pick #?,2,2869.0 +2869,16156,Name the fewest tries for leicester tigers with points less than 207,2,2870.0 +2870,16160,Name the least attendance for 10 october 2006,2,2871.0 +2871,16191,Tell me the lowest silver for rank of 9 and bronze less than 2,2,2872.0 +2872,16216,"Tell me the lowest week for attedance less thaan 32,738",2,2873.0 +2873,16247,Tell me the lowest ties played with a debut of 1936,2,2874.0 +2874,16283,"What is the lowest number for all children when the child labour percentage is greater than 15.5 and the number of children in hazardous work is 170,500 while the number of economically active children is more than 351,700?",2,2875.0 +2875,16284,"What is the lowest total number of children when there are more than 15.2% in child labour, less than 23.4% economically active, and the number economically active is 210,800?",2,2876.0 +2876,16286,Name the lowest total for rank of 13 with bronze less than 1,2,2877.0 +2877,16327,What is the smallest number of wins for the Totals Tournament with a Top-25 value greater than 3?,2,2878.0 +2878,16329,What is the smallest value for Wins when the number of cuts is greater than 4 and the Top-5 value is less than 1?,2,2879.0 +2879,16335,Tell me the lowest bronze for panama and total larger than 8,2,2880.0 +2880,16365,I want the lowest date for catalog of 6561910008-1,2,2881.0 +2881,16368,What was the lowest Crowd total from a game in which Essendon was the Away team?,2,2882.0 +2882,16354,Who was the lowest division in the 7th season?,2,2883.0 +2883,16396,What was the lowest crowd seen at a game that Richmond was the Away team in?,2,2884.0 +2884,16425,What's the lowest round with the opponent John Howard that had a method of Decision (unanimous)?,2,2885.0 +2885,16431,What was the lowest round number that had an overall pick up 92?,2,2886.0 +2886,16498,What was the smallest crowd for a Carlton away game?,2,2887.0 +2887,16589,What is the smallest crowd for a game when Melbourne is the home team?,2,2888.0 +2888,16695,"What is the lowest total metals of a team with more than 6 silver, 6 bronze, and fewer than 16 gold medals?",2,2889.0 +2889,16807,What is the lowest crowd at corio oval?,2,2890.0 +2890,16831,"What is the smallest number of goals for the player from 2008-present named tony beltran, ranked lower than 7?",2,2891.0 +2891,16832,What is the smallest number of goals for andy williams?,2,2892.0 +2892,16903,"What is the lowest score in the Highest score column when Master P was the Worst dancer(s), Drew Lachey was the Best dancer(s), and the Lowest score was under 8?",2,2893.0 +2893,16906,What is the lowest of the Highest score for the Quickstep Dance and the Lowest score under 16?,2,2894.0 +2894,16984,What is the car with the lowest extinct year that has a NBR class of 32?,2,2895.0 +2895,16977,What is the lowest Euro for a ticket with a price per valid day of & 34?,2,2896.0 +2896,17012,What was the smallest crowd size at a home game for Footscray?,2,2897.0 +2897,17076,"What is the lowest number of monasteries with over 20 parishes, 210,864 regular attendeeds, and over 799,776 adherents?",2,2898.0 +2898,17091,What is the smallest crowd at the Victoria Park Venue?,2,2899.0 +2899,17119,For the player fero lasagavibau who has the lowest start?,2,2900.0 +2900,17174,"What is the earliest Date on a Surface of clay in a Championship in Linz, Austria?",2,2901.0 +2901,17203,"What is the lowest number of laps for ryan newman with over 96 points, a cur number under 24,",2,2902.0 +2902,17183,What was the lowest rank by average of a couple who had an average of 23 and a total of 115?,2,2903.0 +2903,17221,"What is the lowest attendance for a game before 10 weeks on November 12, 1967",2,2904.0 +2904,17222,"What is the smallest number of injured in mayurbhanj, odisha and less than 1 killed?",2,2905.0 +2905,17297,What was the smallest crowd for a game where the home team scored 11.18 (84)?,2,2906.0 +2906,17298,What was the smallest crowd size for a home game for Richmond?,2,2907.0 +2907,17350,What was the smallest crowd when Footscray played at home?,2,2908.0 +2908,17379,In 1990-2005 what is the lowest Start with Convs smaller than 2?,2,2909.0 +2909,17431,What was the smallest crowd that Melbourne played for at home?,2,2910.0 +2910,17478,What is the lowest number of dances with a rank larger than 4 and a place of 8?,2,2911.0 +2911,17479,What is the lowest number of dances with a less than 2 place and an average smaller than 27.5?,2,2912.0 +2912,17498,What is the smallest attendance in week 1?,2,2913.0 +2913,17500,"What is the smallest attendance number for august 9, 1968?",2,2914.0 +2914,17503,What is the lowest ERP W of the 67829 Facility ID?,2,2915.0 +2915,17516,What was the smallest crowd for a Melbourne away game?,2,2916.0 +2916,17575,"What's the earliest year that Al Michaels was the play-by-play commentator, in which Lesley Visser and Dan Fouts were also sideline reporters?",2,2917.0 +2917,17581,What is the lowest total of medals that has a gold of 3 and a silver less than 3?,2,2918.0 +2918,17620,"Which lowest rank(player) has a rebound average larger than 9, out of 920 rebounds, and who played more than 79 games?",2,2919.0 +2919,17623,What is the lowest round Trinity school was drafted with an overall higher than 21?,2,2920.0 +2920,17693,What was the smallest crowd size for the match played at Junction Oval?,2,2921.0 +2921,17731,Who had the lowest Best time that also had a Qual 2 of 49.887?,2,2922.0 +2922,17746,"What was the lowest rank of an area with a 2011 Census population larger than 3,645,257, a House of Commons seat percentage of 11.7% and a July 2013 population estimate over 4,581,978?",2,2923.0 +2923,17772,What is the smallest crowd at princes park?,2,2924.0 +2924,17785,What is the smallest crowd when richmond is away?,2,2925.0 +2925,17803,What was the least number of heats with more than 8 lanes for the Nationality of Germany?,2,2926.0 +2926,17811,What was the smallest crowd for the Richmond home team?,2,2927.0 +2927,17855,What was the lowest attendance at a Fitzroy match?,2,2928.0 +2928,18127,What's the lowest DCSF number in Aycliffe Drive but an Ofsted number smaller than 117335?,2,2929.0 +2929,18127,What's the lowest DCSF number in Aycliffe Drive but an Ofsted number smaller than 117335?,2,2930.0 +2930,18178,"Which Wins is the lowest one that has a Season smaller than 1920, and Losses smaller than 14?",2,2931.0 +2931,18215,What is the fewest ties the team had with fewer than 7 games?,2,2932.0 +2932,18229,What is the lowest density of alessandria where the area is bigger than 16.02 and altitude is less than 116?,2,2933.0 +2933,18230,What is the lowest density of serravalle scrivia?,2,2934.0 +2934,18231,What is the lowest population of alessandria where the altitude is less than 197 and density is less than 461.8?,2,2935.0 +2935,18239,"What's the lowest Points for the Team of San Martín De Tucumán, and a Played that's smaller than 38?",2,2936.0 +2936,18318,What is the lowest number of bronze medals received by a nation with fewer than 0 gold medals?,2,2937.0 +2937,18319,What is the lowest number of silver medals for a nation with fewer than 1 total medals?,2,2938.0 +2938,18324,"Which Silver is the lowest one that has a Bronze smaller than 1, and a Gold larger than 0?",2,2939.0 +2939,18336,"Which Year is the lowest one that has a Regular Season of 5th, atlantic, and a Division larger than 4?",2,2940.0 +2940,18427,What is the lowest number of wins for ben crenshaw?,2,2941.0 +2941,18451,Which Draw is the lowest one that has Champs smaller than 0?,2,2942.0 +2942,18510,What is the lowest round of the player from UCLA?,2,2943.0 +2943,18549,"What is the lowest year that has chester-le-street as the city, with 345 runs as the score?",2,2944.0 +2944,18597,What is the lowest value in April with New York Rangers as opponent for a game less than 82?,2,2945.0 +2945,18712,What is the lowest rank of Citigroup?,2,2946.0 +2946,18784,Name the least place for draw more than 3 and points of 8,2,2947.0 +2947,18799,"What is the smallest lost when position is larger than 6, drawn is 7, and the points stat is less than 15?",2,2948.0 +2948,18809,"Which Place is the lowest one that has a Total smaller than 24, and a Draw larger than 7?",2,2949.0 +2949,18851,"Which US Cham Rank is the lowest one that has a Next Highest Spender of national assn of realtors, and a Year smaller than 2012?",2,2950.0 +2950,18852,Which Year is the lowest one that has a US Cham Rank smaller than 1?,2,2951.0 +2951,18866,"Class of 125cc, and a Year smaller than 1966 had what lowest wins?",2,2952.0 +2952,18884,"What is the lowest number for the University of Dublin, having and administrative panel of 3, and a Cultural and Educational panel less than 2?",2,2953.0 +2953,18912,What is the lowest first prize of the Mercedes Championships tournament in California?,2,2954.0 +2954,18942,"Lowest larger than 288, and a Team of east stirlingshire has what lowest average?",2,2955.0 +2955,18946,Which December is the lowest one that has Points of 52?,2,2956.0 +2956,18954,What is the lowest round for a player selected from a college of New Hampshire?,2,2957.0 +2957,18959,"What is the lowest rank of Deutsche Telekom with a market value over 209,628?",2,2958.0 +2958,18961,What is the lowest earnings of Vijay Singh who had more than 24 wins?,2,2959.0 +2959,19042,What is the lowest score that has alastair forsyth as the player?,2,2960.0 +2960,19084,What is the lowest game number that has a Record of 3–33?,2,2961.0 +2961,19087,What is the lowest round of the Kitchener Rangers (OHA)?,2,2962.0 +2962,19115,What is the lowest value for apps in 2009 season in a division less than 1?,2,2963.0 +2963,19221,What's the lowest Drawn that has a Lost that's less than 0?,2,2964.0 +2964,19330,What is the smallest ERP W with a frequency MHz of 94.9?,2,2965.0 +2965,19334,"What is the lowest total medals the team with more than 0 bronze, 6 silver, and a rank higher than 3 has?",2,2966.0 +2966,19335,"What is the lowest rank of Venezuela, which has more than 9 bronze medals?",2,2967.0 +2967,19336,"What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold?",2,2968.0 +2968,19389,What is the earliest year of Wallace & Gromit: The Curse of the Were-Rabbit?,2,2969.0 +2969,19391,March of 26 has what lowest game?,2,2970.0 +2970,19407,What is the earliest year with fewer than 5 wins and 89 points?,2,2971.0 +2971,19427,Name the least valid poll for munster,2,2972.0 +2972,19617,"What is the lowest year that has a druze greater than 2,534, with a total less than 121,333?",2,2973.0 +2973,19618,"What is the lowest jewish that has a druze less than 2,517, and a year prior to 2007?",2,2974.0 +2974,19621,"What is the smallest electorate with 78,076 quota and less than 13 candidates?",2,2975.0 +2975,19624,What is the lowest rank for an album after 1999 and an Accolade of the 100 greatest indie rock albums of all time?,2,2976.0 +2976,19643,What is the lowest pick # of John Ayres?,2,2977.0 +2977,19670,What is the smallest point amount for years prior to 1958 when the class is 350cc?,2,2978.0 +2978,19696,What is the lowest number played with a position of 6 and less than 1 draw?,2,2979.0 +2979,19752,What is the lowest overall for a quarterback with fewer than 7 rounds?,2,2980.0 +2980,19772,What is the earliest date of the game with a score of 2-2?,2,2981.0 +2981,19789,"What is the lowest number of Golds that has Participants smaller than 14, and Rank of 1, and Total larger than 1?",2,2982.0 +2982,19831,What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926?,2,2983.0 +2983,19835,"What is the lowest Game where Inning is 6th, and the Opposing Pitcher is cliff curtis?",2,2984.0 +2984,19837,"What's the lowest Votes (SW Eng) with a % (SW Eng) that's larger than 2.1, Votes (Gib) of 1,127, and a Change (SW Eng) that's larger than -3.6?",2,2985.0 +2985,19838,"Which Gold is the lowest one that has a Bronze of 14, and a Total larger than 42?",2,2986.0 +2986,19839,"Which Bronze is the lowest one that has a Nation of total, and a Gold smaller than 14?",2,2987.0 +2987,19849,"Which 1996-00 is the lowest one that has a State of maharashtra, and a 2006–10 smaller than 0.26?",2,2988.0 +2988,19863,What game is the lowest with 1 draw and less than 7 points?,2,2989.0 +2989,19864,Manager of art griggs had what lowest year?,2,2990.0 +2990,19868,"Manager of marty berghammer, and a Finish of 1st involved what lowest year?",2,2991.0 +2991,19930,What is the least amount of failures with 1 launch and 0 partial failures?,2,2992.0 +2992,19936,"Which Round is the lowest one that has a College/Junior/Club Team (League) of oshawa generals (oha), and a Player of bob kelly?",2,2993.0 +2993,20002,"What is the lowest week number that there was a game on October 23, 1977 with less than 68,977 people attending?",2,2994.0 +2994,20006,"What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?",2,2995.0 +2995,20022,What is the smallest number of points for a 1981 team?,2,2996.0 +2996,20023,What is the fewest number of wins for a team ranked 8th with fewer than 32 points in the 350cc class?,2,2997.0 +2997,20066,What is the earliest season with a Giant Slalom of 5?,2,2998.0 +2998,20172,"What is the lowest number of wins of the team with less than 24 scored, 27 conceded, and more than 18 played?",2,2999.0 +2999,20173,What is the lowest number of points of the team with 2 losses and a lower than 1 position?,2,3000.0