sql
stringlengths
9
2.37k
table
stringclasses
9 values
query
stringlengths
51
503
SELECT season FROM table_name_9 WHERE name = "omar sneed"
CREATE TABLE INST, Here is a database schema( table schema);
What years did Omar Sneed play?It is not neccessary to use all the tables.
SELECT Name FROM table WHERE Country = Georgia
CREATE TABLE INST, Here is a database schema( table schema);
Who was the player from georgia?.It is not neccessary to use all the tables.
SELECT MIN Cycle FROM table WHERE Number of contestants = 11 AND International Destinations = paris gran canaria
CREATE TABLE INST, Here is a database schema( table schema);
What is the lowest Cycle, when Number Of Contestants is 11, and when International Destinations is Paris Gran Canaria?.It is not neccessary to use all the tables.
SELECT position FROM table_name_23 WHERE competition = "tokyo marathon"
CREATE TABLE INST, Here is a database schema( table schema);
In what position did Salina Kosgei finish in the Tokyo Marathon?It is not neccessary to use all the tables.
SELECT Constructor FROM table WHERE Tyre = d AND Engine = talbot 23cv 4.5 l6 AND Chassis = talbot-lago t26c AND Entrant = ecurie belge
CREATE TABLE INST, Here is a database schema( table schema);
who is the constructor when the tyre is d, the engine is talbot 23cv 4.5 l6, the chassis is talbot-lago t26c and the entrant is ecurie belge?.It is not neccessary to use all the tables.
SELECT COUNT Silver FROM table WHERE Rank = 7
CREATE TABLE INST, Here is a database schema( table schema);
How much Silver has a Rank of 7?.It is not neccessary to use all the tables.
SELECT top_speed FROM table_1857216_1 WHERE production = "2006-2009" AND transmission = "5-speed manual"
CREATE TABLE INST, Here is a database schema( table schema);
What is the top speed of a 5-speed manual transmission produced in 2006-2009?It is not neccessary to use all the tables.
SELECT MAX Gold FROM table WHERE Silver < 0
CREATE TABLE INST, Here is a database schema( table schema);
What is the most gold where silver is 0?.It is not neccessary to use all the tables.
SELECT COUNT("Wins") FROM table_22932 WHERE "Winnings" = '$2,089,556'
CREATE TABLE INST, Here is a database schema( table schema);
How many teams won $2,089,556?It is not neccessary to use all the tables.
SELECT Original air date FROM table WHERE Production code = 1115
CREATE TABLE INST, Here is a database schema( table schema);
What is the original air date of the episode with the production code 1115? .It is not neccessary to use all the tables.
SELECT winning_score FROM table_name_92 WHERE date = "aug 21, 1977"
CREATE TABLE INST, Here is a database schema( table schema);
What was the winning score on Aug 21 1977?It is not neccessary to use all the tables.
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy" OR t1.policy_type_code = "Uniform"
CREATE TABLE INST, Here is a database schema( table schema);
Find the names of customers who either have an deputy policy or uniformed policy.It is not neccessary to use all the tables.
SELECT AVG 2nd pl. FROM table WHERE Years active = 2000 AND Titles. > 0
CREATE TABLE INST, Here is a database schema( table schema);
What is the average number of 2nd place finishes for racers active in the year 2000 and more than 0 titles?.It is not neccessary to use all the tables.
SELECT SUM Europe FROM table WHERE Others = 0 AND League < 328 AND Position = mf
CREATE TABLE INST, Here is a database schema( table schema);
What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF?.It is not neccessary to use all the tables.
SELECT to_par FROM table_name_5 WHERE player = "tiger woods"
CREATE TABLE INST, Here is a database schema( table schema);
What is Tiger Woods' to par?It is not neccessary to use all the tables.
SELECT MAX(pakistanis_admitted) FROM table_1717824_3 WHERE nepalis_admitted = 627
CREATE TABLE INST, Here is a database schema( table schema);
What is the greatest number of Pakistanis admitted to Canada during those times when the number of Nepalis admitted was 627?It is not neccessary to use all the tables.
SELECT Missing FROM table WHERE Killed = 0 off 0 men AND Wounded = 0 off 0 men AND Unit = royal waggon train
CREATE TABLE INST, Here is a database schema( table schema);
How many of the Royal Waggon Train Unit were Missing while having a Killed of 0 off 0 men and a Wounded of 0 off 0 men?.It is not neccessary to use all the tables.
SELECT Villages FROM table WHERE State/Region = Magway Region
CREATE TABLE INST, Here is a database schema( table schema);
How many villages are there in the Magway region?.It is not neccessary to use all the tables.
SELECT format, _special_notes FROM table_name_23 WHERE title = "the pact: ...of the gods"
CREATE TABLE INST, Here is a database schema( table schema);
What is the Format and Special Notes for of the pact: ...of the gods?It is not neccessary to use all the tables.
SELECT winning_driver FROM table_name_12 WHERE pole_position = "jackie stewart" AND fastest_lap = "carlos pace"
CREATE TABLE INST, Here is a database schema( table schema);
When the fastest lap was carlos pace and jackie stewart was the pole position who was the winning driver?It is not neccessary to use all the tables.
SELECT Place FROM table WHERE Country = new zealand
CREATE TABLE INST, Here is a database schema( table schema);
What is the Place of the Player from New Zealand?.It is not neccessary to use all the tables.
SELECT date FROM table_name_71 WHERE home = "detroit falcons" AND score = "63–66"
CREATE TABLE INST, Here is a database schema( table schema);
On what Date is the Detroit Falcons the Home team in a game with a Score of 63–66?It is not neccessary to use all the tables.
SELECT score FROM table_name_13 WHERE country = "australia"
CREATE TABLE INST, Here is a database schema( table schema);
What did the golfer from Australia score?It is not neccessary to use all the tables.
SELECT t1.treatmentname FROM (SELECT treatment.treatmentname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM treatment WHERE STRFTIME('%y', treatment.treatmenttime) >= '2101' GROUP BY treatment.treatmentname) AS t1 WHERE t1.c1 <= 3
CREATE TABLE INST, Here is a database schema( table schema);
what are the procedures that are the top three most commonly received since 2101?It is not neccessary to use all the tables.
SELECT COUNT(*), T1.blockcode FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockcode
CREATE TABLE INST, Here is a database schema( table schema);
Find the number of rooms for different block code?It is not neccessary to use all the tables.
SELECT AVG # of candidates FROM table WHERE Result = liberal majority AND # of seats won = 51 AND General election > 2008
CREATE TABLE INST, Here is a database schema( table schema);
What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections?.It is not neccessary to use all the tables.
SELECT score FROM table_name_2 WHERE date = "august 20, 2007"
CREATE TABLE INST, Here is a database schema( table schema);
What was the score in the August 20 2007 match?It is not neccessary to use all the tables.
SELECT COUNT Number in series FROM table WHERE Broadcast Order = S04 E07
CREATE TABLE INST, Here is a database schema( table schema);
What's the number of episodes with a broadcast order s04 e07?.It is not neccessary to use all the tables.
SELECT name FROM table_name_86 WHERE age_as_of_1_february_2014 = "111years, 358days"
CREATE TABLE INST, Here is a database schema( table schema);
Who is 111years 358days Age as of 1 February 2014?It is not neccessary to use all the tables.
SELECT College FROM table WHERE Round < 4
CREATE TABLE INST, Here is a database schema( table schema);
The draft pick that was taken before round 4 went to what college?.It is not neccessary to use all the tables.
SELECT country FROM table_name_96 WHERE to_par = "e"
CREATE TABLE INST, Here is a database schema( table schema);
Which Country has a To par of e?It is not neccessary to use all the tables.
SELECT Score FROM table WHERE High points = Monta Ellis (29)
CREATE TABLE INST, Here is a database schema( table schema);
What is the score when the hight points is Monta Ellis (29)?.It is not neccessary to use all the tables.
SELECT MAX(earnings___) AS $__ FROM table_name_16 WHERE wins > 19
CREATE TABLE INST, Here is a database schema( table schema);
What is the highest earnings of a player with more than 19 wins?It is not neccessary to use all the tables.
SELECT date FROM table_name_60 WHERE label = "sony music direct"
CREATE TABLE INST, Here is a database schema( table schema);
When did sony music direct a label?It is not neccessary to use all the tables.
SELECT Style FROM table WHERE Total = 27
CREATE TABLE INST, Here is a database schema( table schema);
Name the style for 27.It is not neccessary to use all the tables.
SELECT SUM Points FROM table WHERE Wins = 0 AND Year = 1989
CREATE TABLE INST, Here is a database schema( table schema);
What are the sum of points in 1989 with 0 wins?.It is not neccessary to use all the tables.
SELECT COUNT Launched FROM table WHERE Original channel = CBS (2002)
CREATE TABLE INST, Here is a database schema( table schema);
How many shows were launched on CBS (2002)?.It is not neccessary to use all the tables.
SELECT COUNT Week FROM table WHERE Attendance < 57,966 AND Opponent = green bay packers
CREATE TABLE INST, Here is a database schema( table schema);
What's the week when the Green Bay Packers were the opponent and less than 57,966 were in attendance?.It is not neccessary to use all the tables.
SELECT Score FROM table WHERE High rebounds = Tim Duncan (12)
CREATE TABLE INST, Here is a database schema( table schema);
What was the team score when Tim Duncan (12) got the high rebounds?.It is not neccessary to use all the tables.
SELECT Site/Stadium FROM table WHERE Date = march 23
CREATE TABLE INST, Here is a database schema( table schema);
On March 23, what is the site/stadium?.It is not neccessary to use all the tables.
SELECT 2011 FROM table WHERE 2008 = 4r
CREATE TABLE INST, Here is a database schema( table schema);
What 2011 has 4r as the 2008?.It is not neccessary to use all the tables.
SELECT Winner FROM table WHERE 1st Runner Up = Rashmi Desai
CREATE TABLE INST, Here is a database schema( table schema);
What is the winner of rashmi desai?.It is not neccessary to use all the tables.
SELECT source FROM table_name_88 WHERE country = "eng" AND transfer_fee = "£1.5m"
CREATE TABLE INST, Here is a database schema( table schema);
What was the source of an ENG transfer that paid a £1.5m transfer fee?It is not neccessary to use all the tables.
SELECT winning_score FROM table_name_51 WHERE year = 1980
CREATE TABLE INST, Here is a database schema( table schema);
What was the winning score in 1980?It is not neccessary to use all the tables.
SELECT Losses FROM table WHERE Team = japan
CREATE TABLE INST, Here is a database schema( table schema);
What losses consist of the team of japan?.It is not neccessary to use all the tables.
SELECT official_name FROM table_171361_1 WHERE area_km_2 = "30.75"
CREATE TABLE INST, Here is a database schema( table schema);
What is the name of the community with an area of 30.75 sq. km.?It is not neccessary to use all the tables.
SELECT home_team FROM table_name_13 WHERE away_team = "bolton wanderers"
CREATE TABLE INST, Here is a database schema( table schema);
Who was the home team against the Bolton Wanderers?It is not neccessary to use all the tables.
SELECT Position FROM table WHERE Pick # < 16 AND Name = tommy nobis
CREATE TABLE INST, Here is a database schema( table schema);
What is Tommy Nobis' position that has fewer than 16 picks?.It is not neccessary to use all the tables.
SELECT championship FROM table_22839669_1 WHERE score_in_the_final = "6–4, 6–2, 6–2"
CREATE TABLE INST, Here is a database schema( table schema);
What championship had a final score of 6–4 6–2 6–2?It is not neccessary to use all the tables.
SELECT position FROM table_name_64 WHERE first_election = "1988 as vice mayor 2009"
CREATE TABLE INST, Here is a database schema( table schema);
What is the Position of the person with a First Election of 1988 as Vice Mayor 2009?It is not neccessary to use all the tables.
SELECT Original Artist FROM table WHERE Track no. = 6
CREATE TABLE INST, Here is a database schema( table schema);
Who were the original artist(s) for track number 6?.It is not neccessary to use all the tables.
SELECT COUNT("rider") FROM table_204_352
CREATE TABLE INST, Here is a database schema( table schema);
what is the total number of rider ?It is not neccessary to use all the tables.
SELECT player FROM table_name_74 WHERE round = 7
CREATE TABLE INST, Here is a database schema( table schema);
Tell me the player for 7 roundIt is not neccessary to use all the tables.
SELECT MIN("Score") FROM table_59836 WHERE "Country" = 'united states' AND "Player" = 'craig stadler'
CREATE TABLE INST, Here is a database schema( table schema);
What was Craig Stadler's lowest score for United states?It is not neccessary to use all the tables.
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRANCISCO' AND flight.departure_time > 1200 AND flight.to_airport = AIRPORT_SERVICE_...
CREATE TABLE INST, Here is a database schema( table schema);
is there a flight from DENVER to SAN FRANCISCO on CO leaving after 1200 o'clock in the afternoonIt is not neccessary to use all the tables.
SELECT MIN(entries) FROM table_26455614_1 WHERE winner = "Paris Saint-Germain"
CREATE TABLE INST, Here is a database schema( table schema);
What is the fewest recorded entrants against paris saint-germain?It is not neccessary to use all the tables.
SELECT Run time FROM table WHERE Viewers (in millions) = 7.9
CREATE TABLE INST, Here is a database schema( table schema);
What is the run time for the episode with 7.9 million viewers?.It is not neccessary to use all the tables.
SELECT MAX(perigee__km_) FROM table_12141496_1 WHERE decay_date = "1969-01-09"
CREATE TABLE INST, Here is a database schema( table schema);
What was the maximum perigee on 1969-01-09?It is not neccessary to use all the tables.
SELECT T1.Name, T1.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN Visits AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID ORDER BY T1.Tourist_Attraction_ID DESC
CREATE TABLE INST, Here is a database schema( table schema);
Show the names and ids of tourist attractions that are visited at most once, I want to order by the y-axis from high to low.It is not neccessary to use all the tables.
SELECT date FROM table_name_13 WHERE away_team = "minehead"
CREATE TABLE INST, Here is a database schema( table schema);
What is Date when Away Team is "Minehead"?It is not neccessary to use all the tables.
SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = "env, export, set, setenv"
CREATE TABLE INST, Here is a database schema( table schema);
How many values of powershell (cmdlet) are valid when unix shell is env export set setenv?It is not neccessary to use all the tables.
SELECT tournament FROM table_name_54 WHERE score = "4–6, 6–3, 7–6(10)"
CREATE TABLE INST, Here is a database schema( table schema);
what game had a score of 4–6 6–3 7–6(10)?It is not neccessary to use all the tables.
SELECT Player FROM table WHERE Place = t2
CREATE TABLE INST, Here is a database schema( table schema);
Who are the players that placed t2?.It is not neccessary to use all the tables.
SELECT years FROM table_name_11 WHERE pct < 0.389 AND lost < 12 AND name = "dwane morrison"
CREATE TABLE INST, Here is a database schema( table schema);
What years did Dwane Morrison had a pct less than 0.389 and losses less than 12?It is not neccessary to use all the tables.
SELECT Leader FROM table WHERE Leader since = 2007
CREATE TABLE INST, Here is a database schema( table schema);
Which leader has been a leader since 2007?.It is not neccessary to use all the tables.
SELECT division FROM table_name_24 WHERE coach = "todd gordon"
CREATE TABLE INST, Here is a database schema( table schema);
In which division were the IceGators when coached by Todd Gordon?It is not neccessary to use all the tables.
SELECT MAX(crowd) FROM table_name_85 WHERE away_team = "essendon"
CREATE TABLE INST, Here is a database schema( table schema);
WHAT WAS ESSENDON'S HIGHEST CROWD NUMBER WHEN PLAYING AS THE AWAY TEAM?It is not neccessary to use all the tables.
SELECT record FROM table_name_85 WHERE year = 2008
CREATE TABLE INST, Here is a database schema( table schema);
What is the record of the champion in 2008?It is not neccessary to use all the tables.
SELECT name FROM table_name_39 WHERE round > 4 AND overall < 338 AND pick < 11 AND college = "virginia tech"
CREATE TABLE INST, Here is a database schema( table schema);
Which Name has a Round larger than 4 an Overall smaller than 338 a Pick smaller than 11 and a College of virginia tech?It is not neccessary to use all the tables.
SELECT MAX(contestants) FROM table_25214321_1 WHERE runner_up = "Sérgio Abreu"
CREATE TABLE INST, Here is a database schema( table schema);
How many contestants were there when the runner-up was Sérgio Abreu?It is not neccessary to use all the tables.
SELECT Points FROM table WHERE Division = ebl div1 AND Played = 22
CREATE TABLE INST, Here is a database schema( table schema);
What's the points when the division is ebl div1 with 22 played?.It is not neccessary to use all the tables.
SELECT completed FROM table_name_91 WHERE builder = "chatham" AND name = "hmsmedusa"
CREATE TABLE INST, Here is a database schema( table schema);
When did chatham complete the Hmsmedusa?It is not neccessary to use all the tables.
SELECT MAX(tie_no) FROM table_name_45 WHERE home_team = "bolton wanderers" AND date = "middlesbrough"
CREATE TABLE INST, Here is a database schema( table schema);
What was the highest Tie no when the home team was the Bolton Wanderers and the date was Middlesbrough?It is not neccessary to use all the tables.
SELECT Date FROM table WHERE Opponent = carlos moyà
CREATE TABLE INST, Here is a database schema( table schema);
What is the date of the tournament with carlos moyà as the opponent?.It is not neccessary to use all the tables.
SELECT 1990 FROM table WHERE 1992 = 3r
CREATE TABLE INST, Here is a database schema( table schema);
Which 1990s 1992 was 3r?.It is not neccessary to use all the tables.
SELECT Runners-up FROM table WHERE Semifinalists = guillermo pérez-roldán andrea gaudenzi
CREATE TABLE INST, Here is a database schema( table schema);
Whose Runner-up has a Semifinalist of guillermo pérez-roldán andrea gaudenzi?.It is not neccessary to use all the tables.
SELECT COUNT(total) FROM table_name_90 WHERE player = "oisin mcconville" AND matches < 5
CREATE TABLE INST, Here is a database schema( table schema);
How many total points did Oisin McConville have from his 5 matches?It is not neccessary to use all the tables.
SELECT original_title FROM table_14631909_1 WHERE english_title = "Europe for Dummies"
CREATE TABLE INST, Here is a database schema( table schema);
What is the original title of europe for dummies?It is not neccessary to use all the tables.
SELECT COUNT Last 5 Meetings FROM table WHERE Overall Record = MU, 21-19
CREATE TABLE INST, Here is a database schema( table schema);
How many times did the team achieve an overrall record of mu, 21-19?.It is not neccessary to use all the tables.
SELECT venue FROM table_name_14 WHERE opposing_team = "hawke's bay"
CREATE TABLE INST, Here is a database schema( table schema);
Venue for Hawke's bay?It is not neccessary to use all the tables.
SELECT Semimajor axis ( AU ) FROM table WHERE Companion (in order from star) = g
CREATE TABLE INST, Here is a database schema( table schema);
What Semimajor axis (AU) has a Companion (in order from star) of g?.It is not neccessary to use all the tables.
SELECT home_team AS score FROM table_name_88 WHERE home_team = "melbourne"
CREATE TABLE INST, Here is a database schema( table schema);
What did Melbourne score as the home team?It is not neccessary to use all the tables.
SELECT Character FROM table WHERE Version = 5.1 AND Name = greek capital letter archaic sampi
CREATE TABLE INST, Here is a database schema( table schema);
What character was the version 5.1 and had a Greek capital letter Archaic Sampi?.It is not neccessary to use all the tables.
SELECT SUM Poles FROM table WHERE Team = la filière AND Points < 162
CREATE TABLE INST, Here is a database schema( table schema);
What is the sum of the poles of Team la filière, which has less than 162 points?.It is not neccessary to use all the tables.
SELECT under_president FROM table_2861364_1 WHERE executed_person = "Gunther Volz"
CREATE TABLE INST, Here is a database schema( table schema);
under which president was gunther volz executed?It is not neccessary to use all the tables.
SELECT us_ac FROM table_name_13 WHERE year = 1974
CREATE TABLE INST, Here is a database schema( table schema);
What is the US A.C. in 1974?It is not neccessary to use all the tables.
SELECT U.S. viewers (million) FROM table WHERE Written by = Shana Goldberg-Meehan & Greg Malins
CREATE TABLE INST, Here is a database schema( table schema);
How many viewers watched the episode written by shana goldberg-meehan & greg malins? .It is not neccessary to use all the tables.
SELECT manager FROM table_name_53 WHERE club = "st. johnstone"
CREATE TABLE INST, Here is a database schema( table schema);
Who is the manager of the St. Johnstone club?It is not neccessary to use all the tables.
SELECT COUNT(qiangshu) FROM table_name_73 WHERE rank < 10 AND total = 18.97 AND jianshu > 9.51
CREATE TABLE INST, Here is a database schema( table schema);
What is the number of Qiangshu when rank is less than 10 with a total of 18.97 and Jianshu is larger than 9.51?It is not neccessary to use all the tables.
SELECT round_2 FROM table_name_56 WHERE round_4 = "double" AND round_3 = "single"
CREATE TABLE INST, Here is a database schema( table schema);
What is Round 2 when Round 4 is Double and Round 3 is Single?It is not neccessary to use all the tables.
SELECT venue FROM table_name_18 WHERE silver = "united states" AND year = 2010
CREATE TABLE INST, Here is a database schema( table schema);
Where was 2010 tournament where the United States received the silver?It is not neccessary to use all the tables.
SELECT nationality FROM table_name_19 WHERE player = "rob nicholson"
CREATE TABLE INST, Here is a database schema( table schema);
What nationality is Rob Nicholson?It is not neccessary to use all the tables.
SELECT * FROM table_train_271 WHERE coronary_artery_disease_cad = 1 OR myocardial_infarction = 1
CREATE TABLE INST, Here is a database schema( table schema);
coronary artery disease ( cad ) : documented by history of myocardial infarctionIt is not neccessary to use all the tables.
SELECT Nickname FROM table WHERE Founded = 1933
CREATE TABLE INST, Here is a database schema( table schema);
What's the nickname of the students of the school founded in 1933?.It is not neccessary to use all the tables.
SELECT Pct. FROM table WHERE Total Games < 944
CREATE TABLE INST, Here is a database schema( table schema);
What is the PCT when the total number of games is less than 944?.It is not neccessary to use all the tables.
SELECT gtc_winning_team FROM table_24037660_2 WHERE lmp_winning_team = "#8 Drayson Racing"
CREATE TABLE INST, Here is a database schema( table schema);
What was the gtc winning team when lmp winning team was #8 drayson racing?It is not neccessary to use all the tables.
SELECT EMAIL, DEPARTMENT_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200)
CREATE TABLE INST, Here is a database schema( table schema);
For those employees who do not work in departments with managers that have ids between 100 and 200, find email and department_id , and visualize them by a bar chart.It is not neccessary to use all the tables.
SELECT margin FROM table_name_86 WHERE match_date = "oct 17, 2007"
CREATE TABLE INST, Here is a database schema( table schema);
What is Margin, when Match Date is Oct 17, 2007?It is not neccessary to use all the tables.
SELECT date FROM table_name_54 WHERE score = "0 - 0"
CREATE TABLE INST, Here is a database schema( table schema);
On which date was the score 0 - 0?It is not neccessary to use all the tables.
SELECT MAX Percent For FROM table WHERE Against Prohibition < 2,978 AND Percent Against < 31.2 AND For Prohibition < 9,461
CREATE TABLE INST, Here is a database schema( table schema);
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?.It is not neccessary to use all the tables.