answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT MIN(code) FROM table_1404456_1 WHERE area__km_2__ = "12,245.9"
CREATE TABLE table_1404456_1 (code INTEGER, area__km_2__ VARCHAR)
what is the minimum code with area (km 2 ) being 12,245.9
SELECT county FROM table_1404456_1 WHERE code = 2
CREATE TABLE table_1404456_1 (county VARCHAR, code VARCHAR)
what's the county with code being 2
SELECT season FROM table_1405704_1 WHERE winning_driver = "Tom Sneva"
CREATE TABLE table_1405704_1 (season VARCHAR, winning_driver VARCHAR)
In what year did Tom Sneva win a race?
SELECT chassis FROM table_1405704_1 WHERE season = 1979 AND engine = "Foyt"
CREATE TABLE table_1405704_1 (chassis VARCHAR, season VARCHAR, engine VARCHAR)
What kind of chassis did a winning car with a Foyt engine have in 1979?
SELECT team FROM table_1405704_1 WHERE winning_driver = "Al Unser"
CREATE TABLE table_1405704_1 (team VARCHAR, winning_driver VARCHAR)
What team does Al Unser drive for?
SELECT team FROM table_1405704_1 WHERE chassis = "McLaren" AND engine = "Offenhauser"
CREATE TABLE table_1405704_1 (team VARCHAR, chassis VARCHAR, engine VARCHAR)
What team has a vehicle with an Offenhauser engine and a McLaren chassis?
SELECT team FROM table_1405704_1 WHERE race_name = "Texas Grand Prix" AND engine = "Foyt"
CREATE TABLE table_1405704_1 (team VARCHAR, race_name VARCHAR, engine VARCHAR)
What team raced with a Foyt engine in the Texas Grand Prix?
SELECT network FROM table_1404984_1 WHERE virtual_channel = "9.1"
CREATE TABLE table_1404984_1 (network VARCHAR, virtual_channel VARCHAR)
What network is virtual channel 9.1 linked to?
SELECT station_ownership FROM table_1404984_1 WHERE virtual_channel = "33.3"
CREATE TABLE table_1404984_1 (station_ownership VARCHAR, virtual_channel VARCHAR)
Who owns the station on channel 33.3?
SELECT digital_channel FROM table_1404984_1 WHERE network = "JCTV"
CREATE TABLE table_1404984_1 (digital_channel VARCHAR, network VARCHAR)
What is JCTV's digital channel?
SELECT call_sign FROM table_1404984_1 WHERE virtual_channel = "33.7"
CREATE TABLE table_1404984_1 (call_sign VARCHAR, virtual_channel VARCHAR)
What is channel 33.7's official call sign?
SELECT virtual_channel FROM table_1404984_1 WHERE network = "HSN"
CREATE TABLE table_1404984_1 (virtual_channel VARCHAR, network VARCHAR)
What is HSN's official virtual channel in Minneapolis-St. Paul?
SELECT COUNT(station_ownership) FROM table_1404984_1 WHERE network = "Bounce TV"
CREATE TABLE table_1404984_1 (station_ownership VARCHAR, network VARCHAR)
How many stations own Bounce TV?
SELECT points FROM table_14058433_3 WHERE tries_for = "83"
CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR)
How many points were made when the tries for was 83?
SELECT points_for FROM table_14058433_3 WHERE lost = "7"
CREATE TABLE table_14058433_3 (points_for VARCHAR, lost VARCHAR)
How many points are there when the lost is 7?
SELECT losing_bonus FROM table_14058433_3 WHERE points = "24"
CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, points VARCHAR)
What is the losing bonus when the points are 24?
SELECT losing_bonus FROM table_14058433_3 WHERE club = "Llandudno RFC"
CREATE TABLE table_14058433_3 (losing_bonus VARCHAR, club VARCHAR)
How many losing points does Llandudno RFC have?
SELECT try_bonus FROM table_14058433_3 WHERE club = "Ruthin RFC"
CREATE TABLE table_14058433_3 (try_bonus VARCHAR, club VARCHAR)
What is the try bonus for Ruthin RFC?
SELECT COUNT(tries_against) FROM table_14058433_4 WHERE lost = "11"
CREATE TABLE table_14058433_4 (tries_against VARCHAR, lost VARCHAR)
how many tries against with lost being 11
SELECT won FROM table_14058433_4 WHERE try_bonus = "12"
CREATE TABLE table_14058433_4 (won VARCHAR, try_bonus VARCHAR)
what's the won with try bonus being 12
SELECT drawn FROM table_14058433_4 WHERE lost = "4"
CREATE TABLE table_14058433_4 (drawn VARCHAR, lost VARCHAR)
what's the drawn with lost being 4
SELECT points_against FROM table_14058433_4 WHERE lost = "13"
CREATE TABLE table_14058433_4 (points_against VARCHAR, lost VARCHAR)
what's the points against with lost being 13
SELECT points_against FROM table_14058433_4 WHERE won = "11"
CREATE TABLE table_14058433_4 (points_against VARCHAR, won VARCHAR)
what's the points against with won being 11
SELECT drawn FROM table_14058433_4 WHERE points_for = "350"
CREATE TABLE table_14058433_4 (drawn VARCHAR, points_for VARCHAR)
what's the drawn with points for being 350
SELECT COUNT(points_for) FROM table_14058433_5 WHERE points_against = "177"
CREATE TABLE table_14058433_5 (points_for VARCHAR, points_against VARCHAR)
how many points for with points against being 177
SELECT lost FROM table_14058433_5 WHERE club = "Colwyn Bay RFC"
CREATE TABLE table_14058433_5 (lost VARCHAR, club VARCHAR)
what's the lost with club being colwyn bay rfc
SELECT won FROM table_14058433_5 WHERE tries_for = "84"
CREATE TABLE table_14058433_5 (won VARCHAR, tries_for VARCHAR)
what's the won with tries for being 84
SELECT won FROM table_14058433_5 WHERE points_for = "596"
CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)
what's the won with points for being 596
SELECT points_for FROM table_14058433_5 WHERE lost = "4"
CREATE TABLE table_14058433_5 (points_for VARCHAR, lost VARCHAR)
what's the points for with lost being 4
SELECT won FROM table_14058433_5 WHERE points_for = "643"
CREATE TABLE table_14058433_5 (won VARCHAR, points_for VARCHAR)
what's the won with points for being 643
SELECT telugu_తెలుగు FROM table_1408397_3 WHERE mongolian = "Хонгорцог"
CREATE TABLE table_1408397_3 (telugu_తెలుగు VARCHAR, mongolian VARCHAR)
What is the Telugu word for хонгорцог in Mongolian?
SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE kannada_ಕನ್ನಡ = "Punarvasu ಪುನರ್ವಸು"
CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, kannada_ಕನ್ನಡ VARCHAR)
What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada?
SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE _number = 10
CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, _number VARCHAR)
What is the Malayalam word that is listed as #10 in the table?
SELECT points_against FROM table_14070062_4 WHERE tries_against = "75"
CREATE TABLE table_14070062_4 (points_against VARCHAR, tries_against VARCHAR)
tell the score when the times gone was 75
SELECT points_against FROM table_14070062_4 WHERE points_for = "743"
CREATE TABLE table_14070062_4 (points_against VARCHAR, points_for VARCHAR)
was the the score when the tries was 743
SELECT COUNT(won) FROM table_14070062_4 WHERE points_for = "490"
CREATE TABLE table_14070062_4 (won VARCHAR, points_for VARCHAR)
tell how many wins there was when the score was 490
SELECT try_bonus FROM table_14070062_4 WHERE points = "48"
CREATE TABLE table_14070062_4 (try_bonus VARCHAR, points VARCHAR)
how many extra points were there when the score was 48
SELECT losing_bonus FROM table_14070062_4 WHERE tries_for = "52"
CREATE TABLE table_14070062_4 (losing_bonus VARCHAR, tries_for VARCHAR)
what was the extra score when the overall score was 52
SELECT points FROM table_14070062_4 WHERE try_bonus = "6"
CREATE TABLE table_14070062_4 (points VARCHAR, try_bonus VARCHAR)
what was the score when the extras were 6
SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Buenos Aires"
CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)
What country's capital is buenos aires?
SELECT area__km²___per_sqmi_ FROM table_14098_1 WHERE country_or_territory_with_flag = "Uruguay"
CREATE TABLE table_14098_1 (area__km²___per_sqmi_ VARCHAR, country_or_territory_with_flag VARCHAR)
What unit of measurement for uruguay?
SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Santiago"
CREATE TABLE table_14098_1 (country_or_territory_with_flag VARCHAR, capital VARCHAR)
What country'c capital is santiago?
SELECT voice_actor__english_1998___pioneer_ FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = "Alec Willows" AND voice_actor__english_2006___funimation_ = "Andy McAvin"
CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__english_1997___saban_ VARCHAR, voice_actor__english_2006___funimation_ VARCHAR)
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
SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1997___saban_ = "Ian James Corlett"
CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1997___saban_ VARCHAR)
what's the character name with voice actor (englbeingh 1997 / saban) being ian james corlett
SELECT character_name FROM table_1410384_1 WHERE voice_actor__english_1998___pioneer_ = "Paul Dobson"
CREATE TABLE table_1410384_1 (character_name VARCHAR, voice_actor__english_1998___pioneer_ VARCHAR)
what's the character name with voice actor (englbeingh 1998 / pioneer) being paul dobson
SELECT COUNT(voice_actor__english_1998___pioneer_) FROM table_1410384_1 WHERE voice_actor__japanese_ = "Shinobu Satouchi"
CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__japanese_ VARCHAR)
how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi
SELECT voice_actor__japanese_ FROM table_1410384_1 WHERE character_name = "Goku"
CREATE TABLE table_1410384_1 (voice_actor__japanese_ VARCHAR, character_name VARCHAR)
who is the the voice actor (japanese) with character name being goku
SELECT COUNT(national_titles) FROM table_14115168_4 WHERE school = "Peru State College"
CREATE TABLE table_14115168_4 (national_titles VARCHAR, school VARCHAR)
how many big wins does peru state college have
SELECT school FROM table_14115168_4 WHERE national_titles = 14
CREATE TABLE table_14115168_4 (school VARCHAR, national_titles VARCHAR)
which school has 14 large championships
SELECT MIN(national_titles) FROM table_14115168_4 WHERE school = "Concordia University"
CREATE TABLE table_14115168_4 (national_titles INTEGER, school VARCHAR)
how many overall championships does concordia university have
SELECT duration FROM table_14118521_1 WHERE mission = "STS-87"
CREATE TABLE table_14118521_1 (duration VARCHAR, mission VARCHAR)
what's the duration with mission being sts-87
SELECT edo_flight FROM table_14118521_1 WHERE duration = "17 days, 15 hours, 53 minutes, 18 seconds"
CREATE TABLE table_14118521_1 (edo_flight VARCHAR, duration VARCHAR)
what's the edo flight with duration being 17 days, 15 hours, 53 minutes, 18 seconds
SELECT primary_payload_s_ FROM table_14118521_1 WHERE launch_date = "July 8, 1994"
CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, launch_date VARCHAR)
what's the primary payload(s) with launch date being july 8, 1994
SELECT mission FROM table_14118521_1 WHERE primary_payload_s_ = "Spacelab Life Sciences-2"
CREATE TABLE table_14118521_1 (mission VARCHAR, primary_payload_s_ VARCHAR)
what's the mission with primary payload(s) being spacelab life sciences-2
SELECT shuttle FROM table_14118521_1 WHERE primary_payload_s_ = "United States Microgravity Laboratory-1"
CREATE TABLE table_14118521_1 (shuttle VARCHAR, primary_payload_s_ VARCHAR)
what's the shuttle with primary payload(s) being united states microgravity laboratory-1
SELECT COUNT(primary_payload_s_) FROM table_14118521_1 WHERE shuttle = "Columbia" AND duration = "13 days, 19 hours, 30 minutes, 4 seconds"
CREATE TABLE table_14118521_1 (primary_payload_s_ VARCHAR, shuttle VARCHAR, duration VARCHAR)
how many primary payload(s) with shuttle being columbia and duration being 13 days, 19 hours, 30 minutes, 4 seconds
SELECT pts FROM table_14139408_1 WHERE team = "Kopron team Scot"
CREATE TABLE table_14139408_1 (pts VARCHAR, team VARCHAR)
what's the pts with team being kopron team scot
SELECT pts FROM table_14139408_1 WHERE position = "NC"
CREATE TABLE table_14139408_1 (pts VARCHAR, position VARCHAR)
what's the pts with position being nc
SELECT pts FROM table_14139408_1 WHERE poles < 1.0 AND motorcycle = "Aprilia" AND class = "250cc"
CREATE TABLE table_14139408_1 (pts VARCHAR, class VARCHAR, poles VARCHAR, motorcycle VARCHAR)
what's the pts with poles being smaller than 1.0 and motorcycle being aprilia and class being 250cc
SELECT poles FROM table_14139408_1 WHERE pts = "81"
CREATE TABLE table_14139408_1 (poles VARCHAR, pts VARCHAR)
what's the poles with pts being 81
SELECT COUNT(class) FROM table_14139408_1 WHERE poles > 1.0
CREATE TABLE table_14139408_1 (class VARCHAR, poles INTEGER)
how many class with poles being bigger than 1.0
SELECT position FROM table_14139408_1 WHERE team = "Skilled Racing team"
CREATE TABLE table_14139408_1 (position VARCHAR, team VARCHAR)
what's the position with team being skilled racing team
SELECT defensive FROM table_14132239_3 WHERE month = "February" AND rookie = "Rhys Duch"
CREATE TABLE table_14132239_3 (defensive VARCHAR, month VARCHAR, rookie VARCHAR)
Who was the defensive award winner in February when the rookie award was given to Rhys Duch?
SELECT offensive FROM table_14132239_3 WHERE overall = "Bob Watson"
CREATE TABLE table_14132239_3 (offensive VARCHAR, overall VARCHAR)
Who was the offensive award winner the week when Bob Watson was given the overall award?
SELECT defensive FROM table_14132239_3 WHERE rookie = "Daryl Veltman" AND offensive = "Mark Steenhuis"
CREATE TABLE table_14132239_3 (defensive VARCHAR, rookie VARCHAR, offensive VARCHAR)
Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis?
SELECT rookie FROM table_14132239_3 WHERE transition = "Brodie Merrill" AND offensive = "Pat Maddalena"
CREATE TABLE table_14132239_3 (rookie VARCHAR, transition VARCHAR, offensive VARCHAR)
Who won the rookie award the week the transition award was given to Brodie Merrill and the offensive award was given to Pat Maddalena?
SELECT MIN(enrollment) FROM table_1414702_3 WHERE wiaa_classification = "3A"
CREATE TABLE table_1414702_3 (enrollment INTEGER, wiaa_classification VARCHAR)
What is the lowest enrollment value out of the enrollment values I'd the schools with a 3A WIAA clarification?
SELECT wiaa_classification FROM table_1414702_3 WHERE high_school = "Oakland Alternative"
CREATE TABLE table_1414702_3 (wiaa_classification VARCHAR, high_school VARCHAR)
What is the WIAA classification of Oakland Alternative High School?
SELECT MAX(established) FROM table_1414702_3 WHERE high_school = "Mount Tahoma"
CREATE TABLE table_1414702_3 (established INTEGER, high_school VARCHAR)
When was Mount Tahoma established?
SELECT notes FROM table_1414702_3 WHERE established = 1973
CREATE TABLE table_1414702_3 (notes VARCHAR, established VARCHAR)
What's the note about the school established in the year of 1973?
SELECT 4 AS th_district FROM table_14123513_5 WHERE year = 1924
CREATE TABLE table_14123513_5 (year VARCHAR)
Who was in the 4th district in 1924?
SELECT fte_teachers FROM table_1414743_1 WHERE school_level = "Middle" AND city = "Sunnyvale"
CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, school_level VARCHAR, city VARCHAR)
List all FTE middle school teachers in Sunnyvale.
SELECT MAX(students) FROM table_1414743_1 WHERE pupil_teacher_ratio = "20.8"
CREATE TABLE table_1414743_1 (students INTEGER, pupil_teacher_ratio VARCHAR)
What is the highest number of students with a teacher:student ratio of 20.8?
SELECT fte_teachers FROM table_1414743_1 WHERE pupil_teacher_ratio = "19"
CREATE TABLE table_1414743_1 (fte_teachers VARCHAR, pupil_teacher_ratio VARCHAR)
How many FTE teachers are there when the student:teacher ration is 19?
SELECT congress FROM table_14158567_1 WHERE member_elect = "Richard P. Giles"
CREATE TABLE table_14158567_1 (congress VARCHAR, member_elect VARCHAR)
What edition of congress for member-elect richard p. giles?
SELECT COUNT(mean_elevation) FROM table_1416612_1 WHERE lowest_point = "Gulf of Mexico" AND state = "Texas"
CREATE TABLE table_1416612_1 (mean_elevation VARCHAR, lowest_point VARCHAR, state VARCHAR)
how many mean elevation with lowest point being gulf of mexico and state being texas
SELECT highest_point FROM table_1416612_1 WHERE lowest_point = "Belle Fourche River at South Dakota border"
CREATE TABLE table_1416612_1 (highest_point VARCHAR, lowest_point VARCHAR)
what's the highest point with lowest point being belle fourche river at south dakota border
SELECT lowest_elevation FROM table_1416612_1 WHERE highest_point = "Charles Mound"
CREATE TABLE table_1416612_1 (lowest_elevation VARCHAR, highest_point VARCHAR)
what's the lowest elevation with highest point being charles mound
SELECT lowest_point FROM table_1416612_1 WHERE highest_point = "Mount Greylock"
CREATE TABLE table_1416612_1 (lowest_point VARCHAR, highest_point VARCHAR)
what's the lowest point with highest point being mount greylock
SELECT state FROM table_1416612_1 WHERE highest_point = "Mount Katahdin"
CREATE TABLE table_1416612_1 (state VARCHAR, highest_point VARCHAR)
what's the state with highest point being mount katahdin
SELECT language FROM table_14160327_4 WHERE genre = "Glam"
CREATE TABLE table_14160327_4 (language VARCHAR, genre VARCHAR)
What language for the glam genre?
SELECT exportable FROM table_14160327_4 WHERE decade = "1980s"
CREATE TABLE table_14160327_4 (exportable VARCHAR, decade VARCHAR)
What game allow the 1980s to be exportable?
SELECT COUNT(family_friendly) FROM table_14160327_4 WHERE decade = "1990s"
CREATE TABLE table_14160327_4 (family_friendly VARCHAR, decade VARCHAR)
How many family friendly games are in the 1990s?
SELECT home__1st_leg_ FROM table_14219514_2 WHERE aggregate = "0-1"
CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, aggregate VARCHAR)
When 0-1 is the aggregate what are the home (1st leg)?
SELECT home__2nd_leg_ FROM table_14219514_2 WHERE home__1st_leg_ = "Belgrano"
CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR, home__1st_leg_ VARCHAR)
When belgrano is the home (1st leg) what is the home (2nd leg)?
SELECT 2 AS nd_leg FROM table_14219514_2 WHERE home__2nd_leg_ = "Platense"
CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR)
When platense is the home (2nd leg) what is the 2nd leg?
SELECT COUNT(1 AS st_leg) FROM table_14219514_2 WHERE home__1st_leg_ = "Altos Hornos Zapla"
CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR)
When altos hornos zapla is the home (1st leg) what is overall amount of 1st leg?
SELECT home__1st_leg_ FROM table_14219514_2 WHERE home__2nd_leg_ = "Temperley"
CREATE TABLE table_14219514_2 (home__1st_leg_ VARCHAR, home__2nd_leg_ VARCHAR)
When temperley is the home (2nd leg) what is the home (1st leg)?
SELECT COUNT(2 AS nd_leg) FROM table_14219514_1 WHERE aggregate = "2-4"
CREATE TABLE table_14219514_1 (aggregate VARCHAR)
How many 2nd legs had an aggregate of 2-4?
SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ = "Independiente"
CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR)
How many 2nd legs are there where home (1st leg) is Independiente?
SELECT home__2nd_leg_ FROM table_14219514_1 WHERE home__1st_leg_ = "Talleres"
CREATE TABLE table_14219514_1 (home__2nd_leg_ VARCHAR, home__1st_leg_ VARCHAR)
Who was in home (2nd leg) when Talleres was in home (1st leg)
SELECT 2 AS nd_leg FROM table_14219514_1 WHERE home__1st_leg_ = "Boca Juniors"
CREATE TABLE table_14219514_1 (home__1st_leg_ VARCHAR)
Who was in 2nd leg when Boca Juniors was in home (1st leg)?
SELECT playoffs FROM table_14240688_1 WHERE open_cup = "2nd Round"
CREATE TABLE table_14240688_1 (playoffs VARCHAR, open_cup VARCHAR)
Name the playoffs for 2nd round open cup
SELECT reg_season FROM table_14225409_1 WHERE playoffs = "Conference Semifinals" AND us_open_cup = "Did not qualify"
CREATE TABLE table_14225409_1 (reg_season VARCHAR, playoffs VARCHAR, us_open_cup VARCHAR)
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?
SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE voivodeship_or_city = "lubelskie"
CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, voivodeship_or_city VARCHAR)
Name the population in 1931 for lubelskie
SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE capital = "Tarnopol"
CREATE TABLE table_14245_3 (population__1931__in_1 VARCHAR, capital VARCHAR)
Name the population when the capital is tarnopol
SELECT MIN(bits_14_12) FROM table_14249278_1 WHERE description = "Output from accumulator to character bus"
CREATE TABLE table_14249278_1 (bits_14_12 INTEGER, description VARCHAR)
Name the most bits 14-12 for output from accumulator to character bus
SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_manufacturer = "Scania" AND fleet_numbers = "3230"
CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_manufacturer VARCHAR, fleet_numbers VARCHAR)
what is smallest number in fleet for chassis manufacturer Scania and fleet numbers is 3230?
SELECT chassis_manufacturer FROM table_1425948_1 WHERE fleet_numbers = "2530-2558"
CREATE TABLE table_1425948_1 (chassis_manufacturer VARCHAR, fleet_numbers VARCHAR)
Which chassis manufacturer is for fleet numbers range 2530-2558
SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_model = "Scania K360UA"
CREATE TABLE table_1425948_1 (number_in_fleet INTEGER, chassis_model VARCHAR)
Chassis model Scania K360ua has what minimum number in fleet?