answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT college_or_campus_name FROM table_name_79 WHERE weblink = "http://www.aucev.edu.in/"
Which College or campus has a website of http://www.aucev.edu.in/?
CREATE TABLE table_name_79 (college_or_campus_name VARCHAR, weblink VARCHAR)
SELECT season FROM table_22998777_1 WHERE points = "41"
If the points is 41, what is the season?
CREATE TABLE table_22998777_1 (season VARCHAR, points VARCHAR)
SELECT distance FROM table_name_66 WHERE course = "chieti to macerata"
What's the distance for the chieti to macerata course?
CREATE TABLE table_name_66 (distance VARCHAR, course VARCHAR)
SELECT position FROM table_name_61 WHERE pick__number < 26 AND player = "jack campbell"
Which Position has a Pick # smaller than 26 and a Player of jack campbell?
CREATE TABLE table_name_61 (position VARCHAR, pick__number VARCHAR, player VARCHAR)
SELECT home_ground FROM table_2522473_1 WHERE seasons = 27 AND home_city = "Trondheim"
What is the home ground for the team whose home city is Trondheim with 27 seasons?
CREATE TABLE table_2522473_1 (home_ground VARCHAR, seasons VARCHAR, home_city VARCHAR)
SELECT 2010 FROM table_name_50 WHERE 2009 = "q1"
What is the 2010 when the 2009 shows Q1?
CREATE TABLE table_name_50 (Id VARCHAR)
SELECT MAX(crowd) FROM table_name_67 WHERE away_team = "collingwood"
What was the largest crowd when Collingwood was the away team?
CREATE TABLE table_name_67 (crowd INTEGER, away_team VARCHAR)
SELECT result FROM table_name_98 WHERE attendance = "68,436"
What is the result of the game with 68,436 attending?
CREATE TABLE table_name_98 (result VARCHAR, attendance VARCHAR)
SELECT event FROM table_name_52 WHERE method = "tko (punches)"
Which event has a method of TKO (punches)?
CREATE TABLE table_name_52 (event VARCHAR, method VARCHAR)
SELECT 1996 FROM table_name_45 WHERE 1987 = "nme" AND tournament = "monte carlo"
What Tournament of monte carlo had 1996 and a 1987 of nme?
CREATE TABLE table_name_45 (tournament VARCHAR)
SELECT MAX(rank) FROM table_19744915_18 WHERE result = "Safe" AND public = 8
When 8 is the public and the result is safe what is the highest rank?
CREATE TABLE table_19744915_18 (rank INTEGER, result VARCHAR, public VARCHAR)
SELECT AVG(year) FROM table_name_13 WHERE opponent = "manly-warringah sea eagles"
Name the average year for manly-warringah sea eagles
CREATE TABLE table_name_13 (year INTEGER, opponent VARCHAR)
SELECT others__percentage FROM table_23014476_1 WHERE bush__number = 1372
Name the others % for bush number 1372
CREATE TABLE table_23014476_1 (others__percentage VARCHAR, bush__number VARCHAR)
SELECT frequency FROM table_name_10 WHERE power__kw_ = "25kw"
What is the frequency where the power is 25kw?
CREATE TABLE table_name_10 (frequency VARCHAR, power__kw_ VARCHAR)
SELECT COUNT(division_three) FROM table_24575253_4 WHERE division_two = "Westcott 1935"
When westcott 1935 is in division two how many leagues are in division three?
CREATE TABLE table_24575253_4 (division_three VARCHAR, division_two VARCHAR)
SELECT incumbent FROM table_name_96 WHERE first_elected = "1892" AND result = "retired to run for the senate democratic hold"
Who was the incumbent that was first elected in 1892 and retired to run for the senate democratic hold?
CREATE TABLE table_name_96 (incumbent VARCHAR, first_elected VARCHAR, result VARCHAR)
SELECT event FROM table_name_22 WHERE record = "4–2"
What event has a Record of 4–2?
CREATE TABLE table_name_22 (event VARCHAR, record VARCHAR)
SELECT professional_partner FROM table_name_52 WHERE season < 7 AND average > 34.66 AND rank < 10 AND celebrity = "małgorzata foremniak"
Who is the professional partner of celebrity małgorzata foremniak with a season less than 7, an average greater than 34.66, and a rank less than 10?
CREATE TABLE table_name_52 (professional_partner VARCHAR, celebrity VARCHAR, rank VARCHAR, season VARCHAR, average VARCHAR)
SELECT score FROM table_name_30 WHERE home = "chicago black hawks" AND visitor = "vancouver canucks" AND date = "november 17"
What is the Score of the Chicago Black Hawks Home game with the Visiting Vancouver Canucks on November 17?
CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT frequency FROM table_name_99 WHERE model_number = "c3 850"
What is the Frequency for Model Number c3 850?
CREATE TABLE table_name_99 (frequency VARCHAR, model_number VARCHAR)
SELECT score FROM table_name_72 WHERE home_team = "scarborough"
What is the Score of the Scarborough Home game?
CREATE TABLE table_name_72 (score VARCHAR, home_team VARCHAR)
SELECT round FROM table_name_32 WHERE home_team = "pohang steelers"
What round did the home team Pohang Steelers play?
CREATE TABLE table_name_32 (round VARCHAR, home_team VARCHAR)
SELECT mcintosh FROM table_name_88 WHERE whitten = "drums" AND stuart = "bass" AND paul_mccartney = "electric guitar"
Which McIntosh has a Whitten of drums, and a Stuart of bass, and a Paul McCartney of electric guitar?
CREATE TABLE table_name_88 (mcintosh VARCHAR, paul_mccartney VARCHAR, whitten VARCHAR, stuart VARCHAR)
SELECT MAX(total) FROM table_name_92 WHERE bronze = 1 AND silver > 1
What is the largest total for a nation with 1 bronze and more than 1 silver?
CREATE TABLE table_name_92 (total INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT result FROM table_1342270_42 WHERE district = "Tennessee 6"
What was the result in the Tennessee 6 district election?
CREATE TABLE table_1342270_42 (result VARCHAR, district VARCHAR)
SELECT mixed_doubles FROM table_14904221_1 WHERE mens_doubles = "no competition"
What is the result of men's doubles when there was no competition?
CREATE TABLE table_14904221_1 (mixed_doubles VARCHAR, mens_doubles VARCHAR)
SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Continent = "Asia" GROUP BY T2.Language ORDER BY COUNT(*) DESC LIMIT 1
Which language is the most popular on the Asian continent?
CREATE TABLE country (Code VARCHAR, Continent VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR)
SELECT COUNT(points_margin) FROM table_27987767_2 WHERE winners = "Brive"
how many total number of points margin when brive is the winners
CREATE TABLE table_27987767_2 (points_margin VARCHAR, winners VARCHAR)
SELECT first_elected FROM table_1342249_35 WHERE district = "Ohio 18"
What is the first electedfor district ohio 18
CREATE TABLE table_1342249_35 (first_elected VARCHAR, district VARCHAR)
SELECT party FROM table_19753079_41 WHERE candidates = "Mark Critz (D) 50.8% Tim Burns (R) 49.2%"
When mark critz (d) 50.8% tim burns (r) 49.2% are the candidates what is the party?
CREATE TABLE table_19753079_41 (party VARCHAR, candidates VARCHAR)
SELECT pick FROM table_name_17 WHERE nationality = "united states" AND player = "elaine powell (g)"
When was Elaine Powell (g) of the United states picked?
CREATE TABLE table_name_17 (pick VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = "semi hepa" AND class = "h12"
Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12?
CREATE TABLE table_name_47 (particulate_size_approaching_100_percentage_retention VARCHAR, usage VARCHAR, class VARCHAR)
SELECT try_bonus FROM table_name_16 WHERE tries_for = "67"
What is the try bonus for the team with 67 tries for?
CREATE TABLE table_name_16 (try_bonus VARCHAR, tries_for VARCHAR)
SELECT AVG(position) FROM table_name_69 WHERE points < 54 AND equipment = "husaberg-bsu"
What is the average position for a driver with less than 54 points and husaberg-bsu as equipment?
CREATE TABLE table_name_69 (position INTEGER, points VARCHAR, equipment VARCHAR)
SELECT SUM(attendance) FROM table_name_54 WHERE game > 2 AND time = "2:37"
How many people went to the game that lasted 2:37 after game 2?
CREATE TABLE table_name_54 (attendance INTEGER, game VARCHAR, time VARCHAR)
SELECT 2013 AS _index_of_economic_freedom FROM table_name_22 WHERE country = "slovenia"
What is the 2013 index of economic freedom of Slovenia?
CREATE TABLE table_name_22 (country VARCHAR)
SELECT constructor FROM table_name_20 WHERE country = "ita" AND rank < 13
Which constructor is from ITA with a rank less than 13?
CREATE TABLE table_name_20 (constructor VARCHAR, country VARCHAR, rank VARCHAR)
SELECT COUNT(circuit) FROM table_1140105_6 WHERE date = "22 April"
What is the total amount of circuts dated 22 april?
CREATE TABLE table_1140105_6 (circuit VARCHAR, date VARCHAR)
SELECT event_4 FROM table_name_10 WHERE event_1 = "gauntlet" AND event_2 = "duel" AND event_3 = "pendulum"
What is event 4 when event one was gauntlet, event 2 was duel, and event 3 was pendulum?
CREATE TABLE table_name_10 (event_4 VARCHAR, event_3 VARCHAR, event_1 VARCHAR, event_2 VARCHAR)
SELECT laps FROM table_name_79 WHERE grid > 16 AND time = "+1:35.890"
How many laps had a grid over 16 and a Time of +1:35.890?
CREATE TABLE table_name_79 (laps VARCHAR, grid VARCHAR, time VARCHAR)
SELECT date FROM table_name_5 WHERE label = "village records" AND catalog = "vrcl-2205"
On what date was a record from Village Records with catalog VRCL-2205 released?
CREATE TABLE table_name_5 (date VARCHAR, label VARCHAR, catalog VARCHAR)
SELECT club FROM table_name_27 WHERE position_in_2012_13 = "4th, second division"
When the position in 2012-23 is 4th, second division what is the club?
CREATE TABLE table_name_27 (club VARCHAR, position_in_2012_13 VARCHAR)
SELECT team FROM table_name_92 WHERE time = "+1'25.337"
what team has +1'25.337 for the time?
CREATE TABLE table_name_92 (team VARCHAR, time VARCHAR)
SELECT original_air_date FROM table_22904780_1 WHERE rank__week_ = 5
List the original air date for week 5.
CREATE TABLE table_22904780_1 (original_air_date VARCHAR, rank__week_ VARCHAR)
SELECT attendance FROM table_name_47 WHERE date = "august 8"
What was the attendance on August 8?
CREATE TABLE table_name_47 (attendance VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_79 WHERE home = "detroit red wings" AND date = "march 30"
What visitor has detroit red wings as the home, and march 30 as the date?
CREATE TABLE table_name_79 (visitor VARCHAR, home VARCHAR, date VARCHAR)
SELECT COUNT(silver) FROM table_name_43 WHERE gold > 2 AND bronze < 35 AND nation = "china" AND total > 26
How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26?
CREATE TABLE table_name_43 (silver VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT COUNT(round) FROM table_name_66 WHERE nationality = "canada" AND college_junior_club_team__league_ = "fort mcmurray oil barons (ajhl)"
How many Rounds have a Nationality of canada, and a College/Junior/Club Team (League) of fort mcmurray oil barons (ajhl)?
CREATE TABLE table_name_66 (round VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT COUNT(rank_07_11) FROM table_167354_2 WHERE world_ranking = "4"
How many figures are there for Rank 07-11 when the world ranking is 4?
CREATE TABLE table_167354_2 (rank_07_11 VARCHAR, world_ranking VARCHAR)
SELECT score FROM table_name_97 WHERE player = "peter lonard"
What was the score for Peter Lonard?
CREATE TABLE table_name_97 (score VARCHAR, player VARCHAR)
SELECT company FROM table_250309_1 WHERE plant = "Burnaston"
what is the name ofhte company where the plant is in burnaston?
CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR)
SELECT COUNT(outgoing_manager) FROM table_27225944_3 WHERE team = "Rijeka"
Name the number of outgoing manager for rijeka
CREATE TABLE table_27225944_3 (outgoing_manager VARCHAR, team VARCHAR)
SELECT date FROM table_name_14 WHERE album = "l'un n'empêche pas l'autre"
When has an Album of l'un n'empêche pas l'autre?
CREATE TABLE table_name_14 (date VARCHAR, album VARCHAR)
SELECT top_mc FROM table_29160596_1 WHERE year_inducted = 2007 AND peak_ranking = 6
List all the MCs with peak ranking of 6 who were inducted in 2007.
CREATE TABLE table_29160596_1 (top_mc VARCHAR, year_inducted VARCHAR, peak_ranking VARCHAR)
SELECT score FROM table_22669044_10 WHERE record = "31-29"
What's the score of the game with 31-29 record?
CREATE TABLE table_22669044_10 (score VARCHAR, record VARCHAR)
SELECT club FROM table_name_93 WHERE city = "colón"
WHich Club has a City of colón?
CREATE TABLE table_name_93 (club VARCHAR, city VARCHAR)
SELECT MAX(pujehun) FROM table_name_9 WHERE kenema > 559 AND kambia = "45,653" AND tonkolili > 113 OFFSET 926
What is the highest pjuehun with a kenema greater than 559, a kambia of 45,653, and a tonkolili greater than 113,926?
CREATE TABLE table_name_9 (pujehun INTEGER, tonkolili VARCHAR, kenema VARCHAR, kambia VARCHAR)
SELECT score FROM table_name_69 WHERE tie_no = "13"
The game with 13 as the tie no had what as the score?
CREATE TABLE table_name_69 (score VARCHAR, tie_no VARCHAR)
SELECT result FROM table_name_87 WHERE recipients_and_nominees = "outstanding achievement in drama" AND year = 1995
Which result has a recipients and nominees of outstanding achievement in drama with 1995 as the year?
CREATE TABLE table_name_87 (result VARCHAR, recipients_and_nominees VARCHAR, year VARCHAR)
SELECT COUNT(bronze) FROM table_name_8 WHERE total > 1 AND silver < 1
What is the total number of bronze medals with more than 1 medal total and fewer than 1 silver medal?
CREATE TABLE table_name_8 (bronze VARCHAR, total VARCHAR, silver VARCHAR)
SELECT circuit FROM table_name_15 WHERE team = "volvo cars australia"
What circuit has volvo cars australia as the team?
CREATE TABLE table_name_15 (circuit VARCHAR, team VARCHAR)
SELECT opponent FROM table_name_23 WHERE record = "15-21-6"
Who was the opponent with the record of 15-21-6?
CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(line) FROM table_1569516_1 WHERE destination = "London Bridge"
When London Bridge is the destination, how many lines are there?
CREATE TABLE table_1569516_1 (line VARCHAR, destination VARCHAR)
SELECT opponent FROM table_25380472_2 WHERE game_site = "AOL Arena"
In game site AOL Arena, who are all the opponents?
CREATE TABLE table_25380472_2 (opponent VARCHAR, game_site VARCHAR)
SELECT 2006 FROM table_name_59 WHERE 2013 = "4–4"
2013 of 4–4 is involved in what 2006?
CREATE TABLE table_name_59 (Id VARCHAR)
SELECT MAX(frequency_mhz) FROM table_name_52 WHERE erp_w > 205 AND call_sign = "k230ap"
Which Frequency MHz that has a ERP W larger than 205, and a Call sign of k230ap?
CREATE TABLE table_name_52 (frequency_mhz INTEGER, erp_w VARCHAR, call_sign VARCHAR)
SELECT MIN(silver) FROM table_name_83 WHERE nation = "italy" AND total < 5
What is the least amount of silver for Italy with a total less than 5?
CREATE TABLE table_name_83 (silver INTEGER, nation VARCHAR, total VARCHAR)
SELECT written_by FROM table_27504682_1 WHERE directed_by = "Lawrence Trilling"
Name who wrote the episode by lawrence trilling
CREATE TABLE table_27504682_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT MAX(standard_order) FROM table_1805919_1 WHERE english_translation = "A Lament for Ying"
What is the place of "A Lament for Ying"?
CREATE TABLE table_1805919_1 (standard_order INTEGER, english_translation VARCHAR)
SELECT rank_2010 FROM table_293465_1 WHERE country = "Indonesia"
When indonesia is the country what is the rank of 2010?
CREATE TABLE table_293465_1 (rank_2010 VARCHAR, country VARCHAR)
SELECT psip_short_name FROM table_name_19 WHERE video = "720p" AND programming = "main kstc-tv programming"
What is the short name having video of 720p and programming of Main KSTC-TV programming?
CREATE TABLE table_name_19 (psip_short_name VARCHAR, video VARCHAR, programming VARCHAR)
SELECT T1.resident_id, T1.other_details, COUNT(*) FROM Residents AS T1 JOIN Residents_Services AS T2 ON T1.resident_id = T2.resident_id GROUP BY T1.resident_id ORDER BY COUNT(*) DESC
How many services has each resident requested? List the resident id, details, and the count in descending order of the count.
CREATE TABLE Residents_Services (resident_id VARCHAR); CREATE TABLE Residents (resident_id VARCHAR, other_details VARCHAR)
SELECT time FROM table_name_55 WHERE grid < 6 AND rider = "noriyuki haga"
What was the time for a grid less than 6 for Noriyuki Haga?
CREATE TABLE table_name_55 (time VARCHAR, grid VARCHAR, rider VARCHAR)
SELECT COUNT(attendance) FROM table_name_89 WHERE home = "bulls"
How many people were in attendance when the home shows as Bulls?
CREATE TABLE table_name_89 (attendance VARCHAR, home VARCHAR)
SELECT MAX(attendance) FROM table_name_30 WHERE week < 1
what is the highest attendance when the week is smaller than 1?
CREATE TABLE table_name_30 (attendance INTEGER, week INTEGER)
SELECT ihsaa_class FROM table_name_69 WHERE enrollment = 395
What is the IHSAA class with 395 in enrollment?
CREATE TABLE table_name_69 (ihsaa_class VARCHAR, enrollment VARCHAR)
SELECT ecclesiastical_province FROM table_name_21 WHERE type = "diocese" AND latin_name = "alexiensis"
What Ecclesiastical Province has a type diocese and a latin name alexiensis?
CREATE TABLE table_name_21 (ecclesiastical_province VARCHAR, type VARCHAR, latin_name VARCHAR)
SELECT finish FROM table_name_42 WHERE start = "5"
What is the finish of the year with start 5?
CREATE TABLE table_name_42 (finish VARCHAR, start VARCHAR)
SELECT segment_a FROM table_name_70 WHERE segment_c = "poster restoration"
Which Segment A has a Segment C of poster restoration?
CREATE TABLE table_name_70 (segment_a VARCHAR, segment_c VARCHAR)
SELECT first_uk_tour_cast FROM table_name_54 WHERE character = "sister mary robert"
What is the name of the person in the First UK Tour Cast for the Character of Sister Mary Robert?
CREATE TABLE table_name_54 (first_uk_tour_cast VARCHAR, character VARCHAR)
SELECT 2011 FROM table_name_67 WHERE 2007 = "a" AND 2008 = "3r"
WHAT IS THE 2011 WITH 2007 AT A AND2 008 AT 3R?
CREATE TABLE table_name_67 (Id VARCHAR)
SELECT Player_name, residence FROM player WHERE Occupation <> "Researcher"
List the name and residence for players whose occupation is not "Researcher".
CREATE TABLE player (Player_name VARCHAR, residence VARCHAR, Occupation VARCHAR)
SELECT 2 AS nd_leg FROM table_name_61 WHERE team_2 = "defence force"
Name the 2nd leg for defence force
CREATE TABLE table_name_61 (team_2 VARCHAR)
SELECT SUM(scored) FROM table_name_41 WHERE played < 18
How many points are in the scored category for the team that played less than 18 games?
CREATE TABLE table_name_41 (scored INTEGER, played INTEGER)
SELECT 1 AS st_leg FROM table_name_58 WHERE team__number1 = "san lorenzo"
What is 1st Leg, when Team #1 is "San Lorenzo"?
CREATE TABLE table_name_58 (team__number1 VARCHAR)
SELECT trim FROM table_1373768_1 WHERE engine = "3.5L LZ4 V6"
what's the trim with engine being 3.5l lz4 v6
CREATE TABLE table_1373768_1 (trim VARCHAR, engine VARCHAR)
SELECT COUNT(grid) FROM table_name_18 WHERE time_retired = "+9 laps" AND laps > 91
what is the grid when the time/retired is +9 laps and the laps is larger than 91?
CREATE TABLE table_name_18 (grid VARCHAR, time_retired VARCHAR, laps VARCHAR)
SELECT competition FROM table_name_50 WHERE result = "draw"
What Competition has a Result of Draw?
CREATE TABLE table_name_50 (competition VARCHAR, result VARCHAR)
SELECT address_line_1 FROM Course_Authors_and_Tutors
List the addresses of all the course authors or tutors.
CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR)
SELECT game_site FROM table_name_40 WHERE date = "october 4, 1992"
Name the game site for october 4, 1992
CREATE TABLE table_name_40 (game_site VARCHAR, date VARCHAR)
SELECT lema_sublema FROM table_name_22 WHERE votes < 218656 AND ch_of_deputies = "0"
Which LEMA/SUBLEMA that has Votes smaller than 218656, and a Ch of Deputies of 0?
CREATE TABLE table_name_22 (lema_sublema VARCHAR, votes VARCHAR, ch_of_deputies VARCHAR)
SELECT score FROM table_name_25 WHERE loss = "coates (0–2)"
What was the score of the game that had a loss of Coates (0–2)?
CREATE TABLE table_name_25 (score VARCHAR, loss VARCHAR)
SELECT MAX(year) FROM table_22834834_12
What is the latest year that data is available for?
CREATE TABLE table_22834834_12 (year INTEGER)
SELECT skip FROM table_name_80 WHERE lead = "lisa weagle"
Who has the lead on Lisa Weagle?
CREATE TABLE table_name_80 (skip VARCHAR, lead VARCHAR)
SELECT entered_senate FROM table_24415627_2 WHERE senator = "Joseph Tydings"
On what date did congressman joseph tydings enter take his seat?
CREATE TABLE table_24415627_2 (entered_senate VARCHAR, senator VARCHAR)
SELECT MAX(bronze) FROM table_name_81 WHERE silver > 2 AND nation = "germany" AND gold > 8
What is the most bronze can be when silver is larger than 2, and the nation is germany, and gold is more than 8?
CREATE TABLE table_name_81 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT iata FROM table_name_52 WHERE icao = "wipp"
What is the IATA when the ICAO is wipp?
CREATE TABLE table_name_52 (iata VARCHAR, icao VARCHAR)
SELECT _percentage_2006 FROM table_name_12 WHERE seats_2001 < 23 AND seats_2006 > 4 AND _percentage_2001 = 25.4
What is the %2006 that has fewer seats than 23 in Seats 2001, more seats than 4 in 2006 Seats, and a % in 2001 of 25.4?
CREATE TABLE table_name_12 (_percentage_2006 VARCHAR, _percentage_2001 VARCHAR, seats_2001 VARCHAR, seats_2006 VARCHAR)
SELECT sitalsasthi_carnival FROM table_name_92 WHERE sambalpuri_saree = "hirakud"
What is the sitalsasthi carnival with hirakud as sambalpuri saree?
CREATE TABLE table_name_92 (sitalsasthi_carnival VARCHAR, sambalpuri_saree VARCHAR)
SELECT wheel_arrangement FROM table_name_78 WHERE year_made = "1881"
what is the wheel arrangement when the year made is 1881?
CREATE TABLE table_name_78 (wheel_arrangement VARCHAR, year_made VARCHAR)