question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the score for 04 september 2006?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_21
SELECT score FROM table_name_21 WHERE date = "04 september 2006"
What school has rebels as their mascot?
columns: - name: school type: VARCHAR - name: mascot type: VARCHAR table: table_name_8
SELECT school FROM table_name_8 WHERE mascot = "rebels"
What's the report about townsville crocodiles as an away team?
columns: - name: report type: VARCHAR - name: away_team type: VARCHAR table: table_name_35
SELECT report FROM table_name_35 WHERE away_team = "townsville crocodiles"
What is Date, when Round is "2"?
columns: - name: date type: VARCHAR - name: round type: VARCHAR table: table_name_38
SELECT date FROM table_name_38 WHERE round = 2
What is the title of the person who started their reign in 1999?
columns: - name: title type: VARCHAR - name: start_of_reign type: VARCHAR table: table_name_63
SELECT title FROM table_name_63 WHERE start_of_reign = 1999
What was the nominated work, nominated for the drama league award before 2007?
columns: - name: nominated_work type: VARCHAR - name: year type: VARCHAR - name: result type: VARCHAR - name: award type: VARCHAR table: table_name_29
SELECT nominated_work FROM table_name_29 WHERE result = "nominated" AND award = "drama league award" AND year < 2007
what is the person there the numbers is 2343
columns: - name: player type: VARCHAR - name: points type: VARCHAR table: table_28498999_6
SELECT player FROM table_28498999_6 WHERE points = 2343
What is the total of electors when the share of votes was 11,0%?
columns: - name: electors type: INTEGER - name: share_of_votes type: VARCHAR table: table_name_70
SELECT SUM(electors) FROM table_name_70 WHERE share_of_votes = "11,0%"
How many episodes were broadcast in 2010?
columns: - name: episode type: VARCHAR - name: broadcast_date type: VARCHAR table: table_24212608_1
SELECT COUNT(episode) FROM table_24212608_1 WHERE broadcast_date = 2010
What is the Venue of the Competition with a Score of 2–0?
columns: - name: venue type: VARCHAR - name: score type: VARCHAR table: table_name_89
SELECT venue FROM table_name_89 WHERE score = "2–0"
In what place did the player with a score of 66-67=133 come in?
columns: - name: place type: VARCHAR - name: score type: VARCHAR table: table_name_98
SELECT place FROM table_name_98 WHERE score = 66 - 67 = 133
What is the original air date of the episode "Another Happy Day"?
columns: - name: original_air_date__uk_ type: VARCHAR - name: episode_title type: VARCHAR table: table_2570269_3
SELECT original_air_date__uk_ FROM table_2570269_3 WHERE episode_title = "Another Happy Day"
What was the venue when the home team was Fitzroy?
columns: - name: venue type: VARCHAR - name: home_team type: VARCHAR table: table_name_76
SELECT venue FROM table_name_76 WHERE home_team = "fitzroy"
What round was Bob Randall selected in?
columns: - name: round type: INTEGER - name: name type: VARCHAR table: table_name_16
SELECT MAX(round) FROM table_name_16 WHERE name = "bob randall"
Who is the incumbent in the Washington 1 district?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1805191_48
SELECT incumbent FROM table_1805191_48 WHERE district = "Washington 1"
What was the score when the total was 75–53?
columns: - name: score type: VARCHAR - name: total type: VARCHAR table: table_name_89
SELECT score FROM table_name_89 WHERE total = "75–53"
What was the attendance during the week 1 match?
columns: - name: attendance type: VARCHAR - name: week type: VARCHAR table: table_name_2
SELECT attendance FROM table_name_2 WHERE week = 1
Who is the winning drive of iv grand prix de caen?
columns: - name: winning_driver type: VARCHAR - name: race_name type: VARCHAR table: table_name_51
SELECT winning_driver FROM table_name_51 WHERE race_name = "iv grand prix de caen"
Tell me the sum of longitude for diameter being 22.6 and latitude less than -12.4
columns: - name: longitude type: INTEGER - name: diameter__km_ type: VARCHAR - name: latitude type: VARCHAR table: table_name_65
SELECT SUM(longitude) FROM table_name_65 WHERE diameter__km_ = 22.6 AND latitude < -12.4
What is the weight with the shape of scalloped, and that is a size of 20mm (across scallops)?
columns: - name: weight type: VARCHAR - name: shape type: VARCHAR - name: size type: VARCHAR table: table_name_92
SELECT weight FROM table_name_92 WHERE shape = "scalloped" AND size = "20mm (across scallops)"
What is the total number of Jersey #, when the Position is W, and when the Birthdate is 17 October 1932?
columns: - name: jersey__number type: VARCHAR - name: position type: VARCHAR - name: birthdate type: VARCHAR table: table_name_56
SELECT COUNT(jersey__number) FROM table_name_56 WHERE position = "w" AND birthdate = "17 october 1932"
What is the pick number for the player playing tackle position, and a round less than 15?
columns: - name: pick type: INTEGER - name: position type: VARCHAR - name: round type: VARCHAR table: table_name_97
SELECT SUM(pick) FROM table_name_97 WHERE position = "tackle" AND round < 15
when notes are prima italica:raised for aborted caucasus war, when was that founded?
columns: - name: date_founded__founder type: VARCHAR - name: notes type: VARCHAR table: table_242785_1
SELECT date_founded__founder FROM table_242785_1 WHERE notes = "prima Italica:raised for aborted Caucasus war"
Who won best amiga demo when tribes ( pulse & melon dezign) won best pc demo?
columns: - name: amiga_demo type: VARCHAR - name: pc_demo type: VARCHAR table: table_2490289_1
SELECT amiga_demo FROM table_2490289_1 WHERE pc_demo = "Tribes ( Pulse & Melon Dezign)"
What is Score, when To Par is "E"?
columns: - name: score type: VARCHAR - name: to_par type: VARCHAR table: table_name_8
SELECT score FROM table_name_8 WHERE to_par = "e"
what is the surface of the final which had score 6-2, 6-3
columns: - name: surface type: VARCHAR - name: score_in_the_final type: VARCHAR table: table_1918850_2
SELECT surface FROM table_1918850_2 WHERE score_in_the_final = "6-2, 6-3"
What's the HDR output of Photovista Panorama?
columns: - name: hdr_output___exr_ type: VARCHAR - name: _hdr type: VARCHAR - name: _logluv_ type: VARCHAR - name: _etc_ type: VARCHAR - name: name type: VARCHAR table: table_name_35
SELECT hdr_output___exr_, _hdr, _logluv_, _etc_ FROM table_name_35 WHERE name = "photovista panorama"
How many marriages between women have % same-sex marriages of 1.06?
columns: - name: marriages_between_women type: VARCHAR - name: _percentage_same_sex_marriages type: VARCHAR table: table_19614212_1
SELECT marriages_between_women FROM table_19614212_1 WHERE _percentage_same_sex_marriages = "1.06"
What is the highest age (years) that the 1st place had a performance of 62.20m?
columns: - name: age__years_ type: INTEGER - name: place type: VARCHAR - name: performance type: VARCHAR table: table_name_45
SELECT MAX(age__years_) FROM table_name_45 WHERE place = "1st" AND performance = "62.20m"
What is the score of champion masahiro kawamura?
columns: - name: score type: VARCHAR - name: champion type: VARCHAR table: table_name_32
SELECT score FROM table_name_32 WHERE champion = "masahiro kawamura"
What is the Clean & jerk for the bodyweight less than 76.55, and the Total (kg) of –?
columns: - name: clean_ type: VARCHAR - name: _jerk type: VARCHAR - name: bodyweight type: VARCHAR - name: total__kg_ type: VARCHAR table: table_name_36
SELECT clean_ & _jerk FROM table_name_36 WHERE bodyweight < 76.55 AND total__kg_ = "–"
How many overall in the year 2010-2011?
columns: - name: overall type: VARCHAR - name: year type: VARCHAR table: table_21756039_1
SELECT COUNT(overall) FROM table_21756039_1 WHERE year = "2010-2011"
Which Points have a Game smaller than 8, and a Record of 1–0–0?
columns: - name: points type: INTEGER - name: game type: VARCHAR - name: record type: VARCHAR table: table_name_73
SELECT SUM(points) FROM table_name_73 WHERE game < 8 AND record = "1–0–0"
What date was the opponent VFL Sindelfingen?
columns: - name: date type: VARCHAR - name: opponent type: VARCHAR table: table_name_98
SELECT date FROM table_name_98 WHERE opponent = "vfl sindelfingen"
Corey Maggette from the United States plays what position?
columns: - name: position type: VARCHAR - name: nationality type: VARCHAR - name: player type: VARCHAR table: table_name_70
SELECT position FROM table_name_70 WHERE nationality = "united states" AND player = "corey maggette"
How many mountains classifications when Rui Costa is the winner?
columns: - name: mountains_classification type: VARCHAR - name: winner type: VARCHAR table: table_25999087_2
SELECT COUNT(mountains_classification) FROM table_25999087_2 WHERE winner = "Rui Costa"
What was the SPA FEA when the LMS FEA was 5?
columns: - name: spa_fea type: VARCHAR - name: lms_fea type: VARCHAR table: table_name_60
SELECT spa_fea FROM table_name_60 WHERE lms_fea = "5"
Which airport has an IATA Code of ORD?
columns: - name: airport_name type: VARCHAR - name: iata_code type: VARCHAR table: table_18047346_5
SELECT airport_name FROM table_18047346_5 WHERE iata_code = "ORD"
Who was the successor for the state of Maine (2) ?
columns: - name: successor type: VARCHAR - name: state__class_ type: VARCHAR table: table_225099_3
SELECT successor FROM table_225099_3 WHERE state__class_ = "Maine (2)"
Which school has a hometown of winter park, FL?
columns: - name: school type: VARCHAR - name: hometown type: VARCHAR table: table_name_68
SELECT school FROM table_name_68 WHERE hometown = "winter park, fl"
Name the highest game for west (8) high assists
columns: - name: game type: INTEGER - name: high_assists type: VARCHAR table: table_name_35
SELECT MAX(game) FROM table_name_35 WHERE high_assists = "west (8)"
WHAT IS THE SAKA ERA OF VIRGO?
columns: - name: saka_era type: VARCHAR - name: sign_of_zodiac type: VARCHAR table: table_name_31
SELECT saka_era FROM table_name_31 WHERE sign_of_zodiac = "virgo"
Name the IHSAA Class of 55 morgan and a School of mooresville?
columns: - name: ihsaa_class type: VARCHAR - name: county type: VARCHAR - name: school type: VARCHAR table: table_name_8
SELECT ihsaa_class FROM table_name_8 WHERE county = "55 morgan" AND school = "mooresville"
Who plays halfback?
columns: - name: player type: VARCHAR - name: position type: VARCHAR table: table_name_54
SELECT player FROM table_name_54 WHERE position = "halfback"
What Team has the Engine of Chevrolet 6.0 V8, the Manufacturer of Opel, and the Driver Chris Jackson?
columns: - name: team type: VARCHAR - name: driver type: VARCHAR - name: engine type: VARCHAR - name: manufacturer type: VARCHAR table: table_name_51
SELECT team FROM table_name_51 WHERE engine = "chevrolet 6.0 v8" AND manufacturer = "opel" AND driver = "chris jackson"
What is the manner of departure for the team racing santander?
columns: - name: manner_of_departure type: VARCHAR - name: team type: VARCHAR table: table_24231638_3
SELECT manner_of_departure FROM table_24231638_3 WHERE team = "Racing Santander"
Which Runner-up has a Last win smaller than 1998, and Wins of 1, and a Rank larger than 13?
columns: - name: runner_up type: VARCHAR - name: rank type: VARCHAR - name: last_win type: VARCHAR - name: wins type: VARCHAR table: table_name_71
SELECT COUNT(runner_up) FROM table_name_71 WHERE last_win < 1998 AND wins = 1 AND rank > 13
What is the length when the propulsion is controllable pitch propeller?
columns: - name: length type: VARCHAR - name: propulsion type: VARCHAR table: table_28132970_5
SELECT length FROM table_28132970_5 WHERE propulsion = "Controllable pitch propeller"
How many games does the player with 1 (0) finals and a w-league of 28 (1) have?
columns: - name: games type: VARCHAR - name: finals type: VARCHAR - name: w_league type: VARCHAR table: table_name_12
SELECT games FROM table_name_12 WHERE finals = "1 (0)" AND w_league = "28 (1)"
What was the film title nominated from the Sweden?
columns: - name: film_title_used_in_nomination type: VARCHAR - name: country type: VARCHAR table: table_name_16
SELECT film_title_used_in_nomination FROM table_name_16 WHERE country = "sweden"
What is the score for the game in which Arsenal was the away team?
columns: - name: score type: VARCHAR - name: away_team type: VARCHAR table: table_name_42
SELECT score FROM table_name_42 WHERE away_team = "arsenal"
What artist has more than 6 draws, and in a place higher than 14?
columns: - name: artist type: VARCHAR - name: draw type: VARCHAR - name: place type: VARCHAR table: table_name_28
SELECT artist FROM table_name_28 WHERE draw > 6 AND place > 14
What episode had 1.42 million viewers?
columns: - name: series__number type: VARCHAR - name: us_viewers__in_millions_ type: VARCHAR table: table_23399481_3
SELECT series__number FROM table_23399481_3 WHERE us_viewers__in_millions_ = "1.42"
what is the average draw when the place is 5 and points more than 15?
columns: - name: draw type: INTEGER - name: place type: VARCHAR - name: points type: VARCHAR table: table_name_62
SELECT AVG(draw) FROM table_name_62 WHERE place = 5 AND points > 15
What is the win percentage when 2010 was 98?
columns: - name: win__percentage type: VARCHAR table: table_name_74
SELECT win__percentage FROM table_name_74 WHERE 2010 = "98"
What was the launcher vehicle for Apollo-Soyuz?
columns: - name: launcher type: VARCHAR - name: spacecraft type: VARCHAR table: table_name_80
SELECT launcher FROM table_name_80 WHERE spacecraft = "apollo-soyuz"
What was the score for series 2–3?
columns: - name: score type: VARCHAR - name: series type: VARCHAR table: table_27715173_12
SELECT score FROM table_27715173_12 WHERE series = "2–3"
Which Skip has a Third of sara carlsson?
columns: - name: skip type: VARCHAR - name: third type: VARCHAR table: table_name_39
SELECT skip FROM table_name_39 WHERE third = "sara carlsson"
What is the sum of the losses by the Montreal Hockey Club, who have more than 15 Goals Against?
columns: - name: losses type: INTEGER - name: team type: VARCHAR - name: goals_against type: VARCHAR table: table_name_56
SELECT SUM(losses) FROM table_name_56 WHERE team = "montreal hockey club" AND goals_against > 15
What is team 2 if Team 1 is Numancia?
columns: - name: team_2 type: VARCHAR - name: team_1 type: VARCHAR table: table_name_61
SELECT team_2 FROM table_name_61 WHERE team_1 = "numancia"
What is Constellation, when Date Sent is "September 4, 2001", and when Distance ( ly ) is less than 57.4?
columns: - name: constellation type: VARCHAR - name: date_sent type: VARCHAR - name: distance___ly__ type: VARCHAR table: table_name_71
SELECT constellation FROM table_name_71 WHERE date_sent = "september 4, 2001" AND distance___ly__ < 57.4
Which Comp is on 2004-10-17?
columns: - name: comp type: VARCHAR - name: date type: VARCHAR table: table_name_84
SELECT comp FROM table_name_84 WHERE date = "2004-10-17"
Which On demandhas a Free or pay of free and a Provider of freesat?
columns: - name: on_demand type: VARCHAR - name: free_or_pay type: VARCHAR - name: provider type: VARCHAR table: table_name_24
SELECT on_demand FROM table_name_24 WHERE free_or_pay = "free" AND provider = "freesat"
where was the game site when the opponent was san diego chargers?
columns: - name: game_site type: VARCHAR - name: opponent type: VARCHAR table: table_name_52
SELECT game_site FROM table_name_52 WHERE opponent = "san diego chargers"
Which opponent has a Time of 1:34?
columns: - name: opponent type: VARCHAR - name: time type: VARCHAR table: table_name_46
SELECT opponent FROM table_name_46 WHERE time = "1:34"
who directed the episode james clavell wrote?
columns: - name: directed_by type: VARCHAR - name: written_by type: VARCHAR table: table_2626495_1
SELECT directed_by FROM table_2626495_1 WHERE written_by = "James Clavell"
Where has a cause of gas explosion, a Death toll larger than 38 on 10 june?
columns: - name: location type: VARCHAR - name: date type: VARCHAR - name: cause type: VARCHAR - name: death_toll type: VARCHAR table: table_name_97
SELECT location FROM table_name_97 WHERE cause = "gas explosion" AND death_toll > 38 AND date = "10 june"
What was the venue when the home team was footscray?
columns: - name: venue type: VARCHAR - name: home_team type: VARCHAR table: table_name_81
SELECT venue FROM table_name_81 WHERE home_team = "footscray"
What is the Visitor on March 31?
columns: - name: visitor type: VARCHAR - name: date type: VARCHAR table: table_name_56
SELECT visitor FROM table_name_56 WHERE date = "march 31"
Name the high rebounds for td garden 18,624
columns: - name: high_rebounds type: VARCHAR - name: arena_attendance type: VARCHAR table: table_22871239_9
SELECT high_rebounds FROM table_22871239_9 WHERE arena_attendance = "TD Garden 18,624"
What class was the 2nd - portillo?
columns: - name: class type: VARCHAR - name: winner_2nd type: VARCHAR table: table_20626467_1
SELECT class FROM table_20626467_1 WHERE winner_2nd = "2nd - Portillo"
What was the result when the attendance was 78,793?
columns: - name: result type: VARCHAR - name: attendance type: VARCHAR table: table_name_53
SELECT result FROM table_name_53 WHERE attendance = "78,793"
What is the average react of bryan barnett, who has a lane less than 2?
columns: - name: react type: INTEGER - name: name type: VARCHAR - name: lane type: VARCHAR table: table_name_59
SELECT AVG(react) FROM table_name_59 WHERE name = "bryan barnett" AND lane < 2
On what date was the venue of Glenferrie Oval?
columns: - name: date type: VARCHAR - name: venue type: VARCHAR table: table_name_12
SELECT date FROM table_name_12 WHERE venue = "glenferrie oval"
What is the smallest numbered episode in the series listed?
columns: - name: _number type: INTEGER table: table_27547668_3
SELECT MIN(_number) FROM table_27547668_3
How many values of first elected are for district 16?
columns: - name: first_elected type: VARCHAR - name: district type: VARCHAR table: table_name_91
SELECT COUNT(first_elected) FROM table_name_91 WHERE district = "16"
What year was Jennifer Tilly's Film of Bullets Over Broadway up in the best supporting actress category?
columns: - name: year type: VARCHAR - name: actor type: VARCHAR - name: film type: VARCHAR - name: category type: VARCHAR table: table_name_80
SELECT year FROM table_name_80 WHERE film = "bullets over broadway" AND category = "best supporting actress" AND actor = "jennifer tilly"
When 8.9% is the electricity reduction percentage how many sets of tonnes of co2 saved is there?
columns: - name: tonnes_of_co2_saved type: VARCHAR - name: _percentage_electricity_reduction type: VARCHAR table: table_29538735_1
SELECT COUNT(tonnes_of_co2_saved) FROM table_29538735_1 WHERE _percentage_electricity_reduction = "8.9%"
What is the order year of obi builder and 05.505 model that is 30 feet long?
columns: - name: order_year type: VARCHAR - name: model type: VARCHAR - name: builder type: VARCHAR - name: length__ft_ type: VARCHAR table: table_name_89
SELECT order_year FROM table_name_89 WHERE builder = "obi" AND length__ft_ = "30" AND model = "05.505"
Where is the location for the home rink Triangle sports plex/Greensboro ice house?
columns: - name: location type: VARCHAR - name: home_rink type: VARCHAR table: table_name_36
SELECT location FROM table_name_36 WHERE home_rink = "triangle sports plex/greensboro ice house"
What venue has more than 50,715 attending?
columns: - name: venue type: VARCHAR - name: attendance type: INTEGER table: table_name_45
SELECT venue FROM table_name_45 WHERE attendance > 50 OFFSET 715
what is he name of the county where the 2nd division and the 41st regiment was
columns: - name: county type: VARCHAR - name: division type: VARCHAR - name: regiment type: VARCHAR table: table_29458735_5
SELECT county FROM table_29458735_5 WHERE division = "2nd division" AND regiment = "41st regiment"
Which album had Jay Bentley on bass and Bobby Schayer on drums?
columns: - name: album type: VARCHAR - name: bass type: VARCHAR - name: drums type: VARCHAR table: table_name_32
SELECT album FROM table_name_32 WHERE bass = "jay bentley" AND drums = "bobby schayer"
If the team in the New England Patriots, what is the super bowl championship minimum number?
columns: - name: super_bowl_championships type: INTEGER - name: team type: VARCHAR table: table_1952057_5
SELECT MIN(super_bowl_championships) FROM table_1952057_5 WHERE team = "New England Patriots"
Name the record that has a stream of l1 and score of l 95–111
columns: - name: record type: VARCHAR - name: streak type: VARCHAR - name: score type: VARCHAR table: table_name_45
SELECT record FROM table_name_45 WHERE streak = "l1" AND score = "l 95–111"
Which address has 44 floors?
columns: - name: street_address type: VARCHAR - name: floors type: VARCHAR table: table_name_70
SELECT street_address FROM table_name_70 WHERE floors = 44
What is the S Registered User, when Userpics Free is 6 [free] or 15 [plus]?
columns: - name: s_registered_user type: VARCHAR - name: userpics_free type: VARCHAR table: table_name_98
SELECT s_registered_user FROM table_name_98 WHERE userpics_free = "6 [free] or 15 [plus]"
What is Tommy Nobis' position that has fewer than 16 picks?
columns: - name: position type: VARCHAR - name: pick__number type: VARCHAR - name: name type: VARCHAR table: table_name_80
SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = "tommy nobis"
Who had the decision when the visitor was Detroit and the home team was Ottawa?
columns: - name: decision type: VARCHAR - name: visitor type: VARCHAR - name: home type: VARCHAR table: table_name_71
SELECT decision FROM table_name_71 WHERE visitor = "detroit" AND home = "ottawa"
What did the home team score against the away team Hawthorn?
columns: - name: home_team type: VARCHAR - name: away_team type: VARCHAR table: table_name_30
SELECT home_team AS score FROM table_name_30 WHERE away_team = "hawthorn"
When did the Rochester Rhinos begin to play?
columns: - name: began_play type: VARCHAR - name: club type: VARCHAR table: table_name_48
SELECT began_play FROM table_name_48 WHERE club = "rochester rhinos"
What was Austria's lowest total when the gold was more than 3?
columns: - name: total type: INTEGER - name: nation type: VARCHAR - name: gold type: VARCHAR table: table_name_84
SELECT MIN(total) FROM table_name_84 WHERE nation = "austria" AND gold > 3
what type was joined in 1902 5?
columns: - name: type type: VARCHAR - name: joined type: VARCHAR table: table_262527_1
SELECT type FROM table_262527_1 WHERE joined = "1902 5"
What is the smallest overall for Oregon State?
columns: - name: overall type: INTEGER - name: college type: VARCHAR table: table_name_7
SELECT MIN(overall) FROM table_name_7 WHERE college = "oregon state"
Which event had the record of 18–5 (1)?
columns: - name: event type: VARCHAR - name: record type: VARCHAR table: table_name_18
SELECT event FROM table_name_18 WHERE record = "18–5 (1)"
What was the highest game number when the opponent was the Miami Heat?
columns: - name: game type: INTEGER - name: opponent type: VARCHAR table: table_name_5
SELECT MAX(game) FROM table_name_5 WHERE opponent = "miami heat"
What is the highest overall prior to 1996 with a slalom of 39?
columns: - name: overall type: INTEGER - name: slalom type: VARCHAR - name: season type: VARCHAR table: table_name_33
SELECT MAX(overall) FROM table_name_33 WHERE slalom = "39" AND season < 1996
What is the name of the college that is from a round greater than 3 with Gillis Wilson playing?
columns: - name: college type: VARCHAR - name: round type: VARCHAR - name: player type: VARCHAR table: table_name_85
SELECT college FROM table_name_85 WHERE round > 3 AND player = "gillis wilson"
What institution(s) are located in wilkes-barre, pennsylvania?
columns: - name: institution type: VARCHAR - name: location type: VARCHAR table: table_261906_2
SELECT institution FROM table_261906_2 WHERE location = "Wilkes-Barre, Pennsylvania"
What format is catalogue 148615 in?
columns: - name: format type: VARCHAR - name: catalogue type: VARCHAR table: table_name_78
SELECT format FROM table_name_78 WHERE catalogue = "148615"