question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Which event won by KCLMS in 2008 has KCLMS as the winner and less than 10 wins by KCL?
CREATE TABLE table_name_74 (events_won_by_kcl VARCHAR, year VARCHAR, winner VARCHAR, events_won_by_kclMS VARCHAR)
SELECT events_won_by_kcl FROM table_name_74 WHERE winner = "kclms" AND events_won_by_kclMS < 10 AND year = 2008
Which Name (pinyin) is named fu-ching?
CREATE TABLE table_name_64 (name__pinyin_ VARCHAR, name__wade_giles_ VARCHAR)
SELECT name__pinyin_ FROM table_name_64 WHERE name__wade_giles_ = "fu-ching"
What Episode has a Rating of 1.8, and Viewers (m) smaller than 2.73?
CREATE TABLE table_name_35 (episode VARCHAR, rating VARCHAR, viewers__m_ VARCHAR)
SELECT episode FROM table_name_35 WHERE rating = "1.8" AND viewers__m_ < 2.73
What is Opponent, when Tournament is "Phuket , Thailand"?
CREATE TABLE table_name_8 (opponent VARCHAR, tournament VARCHAR)
SELECT opponent FROM table_name_8 WHERE tournament = "phuket , thailand"
What year was a movie with the original title La Leggenda del Santo Bevitore submitted?
CREATE TABLE table_10321805_1 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT year__ceremony_ FROM table_10321805_1 WHERE original_title = "La leggenda del santo bevitore"
What is the average amount due for all the payments?
CREATE TABLE payments (amount_due INTEGER)
SELECT AVG(amount_due) FROM payments
What are the highest losses when byes are larger than 0?
CREATE TABLE table_name_95 (losses INTEGER, byes INTEGER)
SELECT MAX(losses) FROM table_name_95 WHERE byes > 0
Who was the original Japanese cast if Sean Barrett acted on the English (Manga UK) version?
CREATE TABLE table_2160215_1 (original_japanese VARCHAR, english___manga_uk__ VARCHAR)
SELECT original_japanese FROM table_2160215_1 WHERE english___manga_uk__ = "Sean Barrett"
Name the drawn for llandaff rfc
CREATE TABLE table_13741576_4 (drawn VARCHAR, club VARCHAR)
SELECT drawn FROM table_13741576_4 WHERE club = "Llandaff RFC"
Which position ranked 10th overall?
CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR)
SELECT position FROM table_name_7 WHERE pick = "10th overall"
What was the attendance when they had a ranking of #4?
CREATE TABLE table_name_42 (attendance VARCHAR, rank__number VARCHAR)
SELECT attendance FROM table_name_42 WHERE rank__number = "4"
Name total number of won for tries for 92
CREATE TABLE table_13564702_3 (won VARCHAR, tries_for VARCHAR)
SELECT COUNT(won) FROM table_13564702_3 WHERE tries_for = "92"
Which Manufacturer has a Quantity of 1, and has the LMMR name Great Mountain?
CREATE TABLE table_name_85 (manufacturer VARCHAR, quantity VARCHAR, lmmr_name VARCHAR)
SELECT manufacturer FROM table_name_85 WHERE quantity = 1 AND lmmr_name = "great mountain"
Which event led to a loss against Josh Diekman?
CREATE TABLE table_name_37 (event VARCHAR, res VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_37 WHERE res = "loss" AND opponent = "josh diekman"
What is the station with a number greater than 9 and a distance of 16.4 km?
CREATE TABLE table_name_10 (station VARCHAR, number VARCHAR, distance__km_ VARCHAR)
SELECT station FROM table_name_10 WHERE number > 9 AND distance__km_ = 16.4
Name the total number of since for belletti
CREATE TABLE table_name_24 (since VARCHAR, name VARCHAR)
SELECT COUNT(since) FROM table_name_24 WHERE name = "belletti"
Which Surface has an Opponent of rafael nadal, and an Event of 2?
CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR)
SELECT surface FROM table_name_59 WHERE opponent = "rafael nadal" AND NOT event = 2
What date did the show with a series larger than 40, production code smaller than 213, and a season number larger than 11 air?
CREATE TABLE table_name_14 (original_air_date VARCHAR, season_no VARCHAR, series_no VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_name_14 WHERE series_no > 40 AND production_code < 213 AND season_no > 11
Who was the home team when Manchester City was the away team?
CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_89 WHERE away_team = "manchester city"
What branch of government was the term that ended on January 3, 2001?
CREATE TABLE table_224672_2 (type VARCHAR, term_ended VARCHAR)
SELECT type FROM table_224672_2 WHERE term_ended = "January 3, 2001"
What was the high assists on April 7?
CREATE TABLE table_17288825_10 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17288825_10 WHERE date = "April 7"
Which draws have an average of 14 wins?
CREATE TABLE table_name_89 (draws INTEGER, wins VARCHAR)
SELECT AVG(draws) FROM table_name_89 WHERE wins = 14
What is the party of the district incumbent Jim Saxton?
CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341453_32 WHERE incumbent = "Jim Saxton"
How many fans attended the game at Bye?
CREATE TABLE table_name_53 (attendance VARCHAR, game_site VARCHAR)
SELECT attendance FROM table_name_53 WHERE game_site = "bye"
Which rank is the lowest with 37 games and more than 613 points?
CREATE TABLE table_name_44 (rank INTEGER, games VARCHAR, points VARCHAR)
SELECT MIN(rank) FROM table_name_44 WHERE games = 37 AND points > 613
What census ranking has an area greater than 578.28 km2?
CREATE TABLE table_name_17 (census_ranking VARCHAR, area_km_2 INTEGER)
SELECT census_ranking FROM table_name_17 WHERE area_km_2 > 578.28
What was the Seahawks record on September 18, 1983?
CREATE TABLE table_13258876_2 (record VARCHAR, date VARCHAR)
SELECT record FROM table_13258876_2 WHERE date = "September 18, 1983"
What is Winner, when City / State is "Mallala , South Australia", and when Team is "Elfin Sports Cars"?
CREATE TABLE table_name_92 (winner VARCHAR, city___state VARCHAR, team VARCHAR)
SELECT winner FROM table_name_92 WHERE city___state = "mallala , south australia" AND team = "elfin sports cars"
How many races had 10.5 points?
CREATE TABLE table_name_99 (races VARCHAR, points VARCHAR)
SELECT races FROM table_name_99 WHERE points = "10.5"
How many different series numbers are there for the episode seen by 7.84 million people in the US?
CREATE TABLE table_23242933_2 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR)
SELECT COUNT(no_in_series) FROM table_23242933_2 WHERE us_viewers__millions_ = "7.84"
For games on December 20, how many points did the scoring leaders get?
CREATE TABLE table_10812293_4 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_10812293_4 WHERE date = "December 20"
Which Height (m) has a Name of plessur alps, and a AVE-No larger than 63?
CREATE TABLE table_name_97 (height__m_ INTEGER, name VARCHAR, ave__no VARCHAR)
SELECT MIN(height__m_) FROM table_name_97 WHERE name = "plessur alps" AND ave__no > 63
What are the total points that had 68 match points, 9 bonus points and 30 games?
CREATE TABLE table_name_29 (total_points VARCHAR, match_points VARCHAR, games VARCHAR, bonus_points VARCHAR)
SELECT total_points FROM table_name_29 WHERE games = "30" AND bonus_points = "9" AND match_points = "68"
How many tries for does the team with 263 points against have?
CREATE TABLE table_name_13 (tries_for VARCHAR, points_against VARCHAR)
SELECT tries_for FROM table_name_13 WHERE points_against = "263"
What was the surface on march 2, 1997?
CREATE TABLE table_name_91 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_91 WHERE date = "march 2, 1997"
What was the title of the episode with 5.04 million viewers?
CREATE TABLE table_17641206_4 (original_title VARCHAR, viewership VARCHAR)
SELECT original_title FROM table_17641206_4 WHERE viewership = "5.04 million"
Which athletics nickname was founded in 1872?
CREATE TABLE table_name_86 (athletics_nickname VARCHAR, founded VARCHAR)
SELECT athletics_nickname FROM table_name_86 WHERE founded = "1872"
Is the count rectified for single opponents, either positional or automatic, and no material or non-material?
CREATE TABLE table_name_78 (count_rectified VARCHAR, material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR)
SELECT count_rectified FROM table_name_78 WHERE opponents = "single" AND positional_or_automatic = "either" AND material_or_non_material = "no"
Which Result has a Year larger than 2003, and an Award of best supporting actress?
CREATE TABLE table_name_32 (result VARCHAR, year VARCHAR, award VARCHAR)
SELECT result FROM table_name_32 WHERE year > 2003 AND award = "best supporting actress"
Which name had more than 5 rounds and was a defensive end?
CREATE TABLE table_name_51 (name VARCHAR, round VARCHAR, position VARCHAR)
SELECT name FROM table_name_51 WHERE round > 5 AND position = "defensive end"
WHAT IS THE SAKA ERA WITH MONTHS IN MEDAM?
CREATE TABLE table_name_77 (saka_era VARCHAR, months_in_malayalam_era VARCHAR)
SELECT saka_era FROM table_name_77 WHERE months_in_malayalam_era = "medam"
How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4?
CREATE TABLE table_name_12 (samples_taken INTEGER, melamine_content_mg_kg_ VARCHAR, producer VARCHAR)
SELECT SUM(samples_taken) FROM table_name_12 WHERE melamine_content_mg_kg_ < 53.4 AND producer = "qingdao suncare nutritional technology"
What is the ceremony year when Ganito Kami Noon, Paano Kayo Ngayon was the original title?
CREATE TABLE table_name_62 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT year__ceremony_ FROM table_name_62 WHERE original_title = "ganito kami noon, paano kayo ngayon"
In what year was the NFL team in chicago illinois established?
CREATE TABLE table_name_96 (est VARCHAR, league VARCHAR, state_province VARCHAR, city VARCHAR)
SELECT est FROM table_name_96 WHERE state_province = "illinois" AND city = "chicago" AND league = "nfl"
Which Opponent has an Attendance of 375?
CREATE TABLE table_name_65 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_65 WHERE attendance = 375
What was the method of resolution for the fight against dale hartt?
CREATE TABLE table_name_83 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_83 WHERE opponent = "dale hartt"
Which country earned place T3 with a score of 70-68=138?
CREATE TABLE table_name_18 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT country FROM table_name_18 WHERE place = "t3" AND score = 70 - 68 = 138
Who was the Cover model when the Centerfold Model was Marketa Janska?
CREATE TABLE table_name_43 (cover_model VARCHAR, centerfold_model VARCHAR)
SELECT cover_model FROM table_name_43 WHERE centerfold_model = "marketa janska"
What's the version of AutoCAD Architectural Desktop 3?
CREATE TABLE table_19329117_1 (version VARCHAR, official_name VARCHAR)
SELECT version FROM table_19329117_1 WHERE official_name = "AutoCAD Architectural Desktop 3"
Show all role codes with at least 3 employees.
CREATE TABLE Employees (role_code VARCHAR)
SELECT role_code FROM Employees GROUP BY role_code HAVING COUNT(*) >= 3
What is the alternate of the nation with hubert gründhammer as the second?
CREATE TABLE table_name_97 (alternate VARCHAR, second VARCHAR)
SELECT alternate FROM table_name_97 WHERE second = "hubert gründhammer"
What is the estimated function % when the measurement is 8/8?
CREATE TABLE table_name_43 (estimated_function__percentage VARCHAR, measurement VARCHAR)
SELECT estimated_function__percentage FROM table_name_43 WHERE measurement = "8/8"
What is the name of the player from Cod?
CREATE TABLE table_name_2 (name VARCHAR, country VARCHAR)
SELECT name FROM table_name_2 WHERE country = "cod"
What was the score for the away team at Glenferrie Oval?
CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_53 WHERE venue = "glenferrie oval"
What is the highest score with 0 wins and more than 2 Byes?
CREATE TABLE table_name_4 (against INTEGER, wins VARCHAR, byes VARCHAR)
SELECT MAX(against) FROM table_name_4 WHERE wins = 0 AND byes > 2
What was the record when the attendance was 22,713?
CREATE TABLE table_name_9 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_9 WHERE attendance = "22,713"
Show publishers that have more than one publication.
CREATE TABLE publication (Publisher VARCHAR)
SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1
What was the high assists for game 31?
CREATE TABLE table_name_52 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_name_52 WHERE game = 31
What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected?
CREATE TABLE table_1555308_1 (bleeding_time VARCHAR, prothrombin_time VARCHAR, platelet_count VARCHAR)
SELECT bleeding_time FROM table_1555308_1 WHERE prothrombin_time = "Unaffected" AND platelet_count = "Unaffected"
What air date has a red winner and an emergency braking challenge?
CREATE TABLE table_name_39 (air_date VARCHAR, winner VARCHAR, challenge VARCHAR)
SELECT air_date FROM table_name_39 WHERE winner = "red" AND challenge = "emergency braking"
Tell me the total number of ties for name of totals and lost more than 30
CREATE TABLE table_name_27 (ties VARCHAR, name VARCHAR, lost VARCHAR)
SELECT COUNT(ties) FROM table_name_27 WHERE name = "totals" AND lost > 30
What is the number of goals when the position is DF, the nationality is England, and the Crewe Alexandra career is 1948–1951?
CREATE TABLE table_name_76 (goals VARCHAR, crewe_alexandra_career VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT COUNT(goals) FROM table_name_76 WHERE position = "df" AND nationality = "england" AND crewe_alexandra_career = "1948–1951"
If the intranet entry is Yes, what is the extranet entry for Microsoft Exchange server?
CREATE TABLE table_name_72 (extranet VARCHAR, intranet VARCHAR, name VARCHAR)
SELECT extranet FROM table_name_72 WHERE intranet = "yes" AND name = "microsoft exchange server"
What is the Uyghur Latin with a population of 69,361?
CREATE TABLE table_name_14 (uyghur_latin___uly__ VARCHAR, population__2010_census_ VARCHAR)
SELECT uyghur_latin___uly__ FROM table_name_14 WHERE population__2010_census_ = "69,361"
What is the total grid number with laps that are larger than 27?
CREATE TABLE table_name_17 (grid VARCHAR, laps INTEGER)
SELECT COUNT(grid) FROM table_name_17 WHERE laps > 27
What are the interview scores for contestants whose average is 9.090?
CREATE TABLE table_16390001_2 (interview VARCHAR, average VARCHAR)
SELECT interview FROM table_16390001_2 WHERE average = "9.090"
For the teams that had less than 1 loss, what was the average number of Wins?
CREATE TABLE table_name_51 (wins INTEGER, losses INTEGER)
SELECT AVG(wins) FROM table_name_51 WHERE losses < 1
Name the top-25 with wins less than 1 and events of 12
CREATE TABLE table_name_65 (top_25 INTEGER, wins VARCHAR, events VARCHAR)
SELECT SUM(top_25) FROM table_name_65 WHERE wins < 1 AND events = 12
how many times was the catalog number cal04 / 0091037553546?
CREATE TABLE table_27303975_3 (copyright_information VARCHAR, catalog_number VARCHAR)
SELECT COUNT(copyright_information) FROM table_27303975_3 WHERE catalog_number = "CAL04 / 0091037553546"
What is the capital of the province with 漢州 in Hanja?
CREATE TABLE table_name_88 (capital VARCHAR, hanja VARCHAR)
SELECT capital FROM table_name_88 WHERE hanja = "漢州"
What place in the United States has a To par of e?
CREATE TABLE table_name_39 (place VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT place FROM table_name_39 WHERE country = "united states" AND to_par = "e"
How many Games has Points larger than 0 and a Lost smaller than 4?
CREATE TABLE table_name_44 (games VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR)
SELECT COUNT(games) FROM table_name_44 WHERE points > 0 AND lost < 4 AND drawn < 0
What is the sum of Poles, when Season is before 2005, when Position is "2nd", and when Wins is less than 6?
CREATE TABLE table_name_1 (poles INTEGER, wins VARCHAR, season VARCHAR, position VARCHAR)
SELECT SUM(poles) FROM table_name_1 WHERE season < 2005 AND position = "2nd" AND wins < 6
Name the least draw for elena dermidjean
CREATE TABLE table_14977252_2 (draw INTEGER, artist VARCHAR)
SELECT MIN(draw) FROM table_14977252_2 WHERE artist = "Elena Dermidjean"
What were the assists on April 8 in game less than 78?
CREATE TABLE table_name_75 (high_assists VARCHAR, game VARCHAR, date VARCHAR)
SELECT high_assists FROM table_name_75 WHERE game < 78 AND date = "april 8"
Name the fsi 2012 for 42.7 cpi
CREATE TABLE table_26313243_1 (fsi_2012 VARCHAR, cpi_2012 VARCHAR)
SELECT fsi_2012 FROM table_26313243_1 WHERE cpi_2012 = "42.7"
What is the most points 1 when the goal difference is +28 and lost is larger than 12?
CREATE TABLE table_name_39 (points_1 INTEGER, goal_difference VARCHAR, lost VARCHAR)
SELECT MAX(points_1) FROM table_name_39 WHERE goal_difference = "+28" AND lost > 12
Which single was on the Charts for 23 weeks ?
CREATE TABLE table_name_50 (title VARCHAR, weeks_on_chart__uk_ VARCHAR)
SELECT title FROM table_name_50 WHERE weeks_on_chart__uk_ = 23
Show first name and last name for all the students advised by Michael Goodrich.
CREATE TABLE Faculty (FacID VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE Student (fname VARCHAR, lname VARCHAR, advisor VARCHAR)
SELECT T2.fname, T2.lname FROM Faculty AS T1 JOIN Student AS T2 ON T1.FacID = T2.advisor WHERE T1.fname = "Michael" AND T1.lname = "Goodrich"
What is the score of the game on December 22?
CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_81 WHERE date = "december 22"
what is а а [a] when ҕь ҕь [ʁʲ/ɣʲ] is ш ш [ʂʃ]?
CREATE TABLE table_202365_2 (а_а_ VARCHAR, a VARCHAR, ҕь_ҕь_ VARCHAR, ʁʲ_ɣʲ VARCHAR)
SELECT а_а_[a] FROM table_202365_2 WHERE ҕь_ҕь_[ʁʲ_ɣʲ] = "Ш ш [ʂʃ]"
Find the total number of players.
CREATE TABLE players (Id VARCHAR)
SELECT COUNT(*) FROM players
What is the average, minimum, and maximum age of all singers from France?
CREATE TABLE singer (age INTEGER, country VARCHAR)
SELECT AVG(age), MIN(age), MAX(age) FROM singer WHERE country = 'France'
What is the result of the game at Odsal Stadium?
CREATE TABLE table_name_41 (result VARCHAR, stadium VARCHAR)
SELECT result FROM table_name_41 WHERE stadium = "odsal stadium"
for the robot black nickname, what framed size is used
CREATE TABLE table_15070195_1 (framed_size VARCHAR, nickname VARCHAR)
SELECT framed_size FROM table_15070195_1 WHERE nickname = "Robot Black"
When hayden roulston is the winner what is the stage?
CREATE TABLE table_28298471_14 (stage VARCHAR, winner VARCHAR)
SELECT stage FROM table_28298471_14 WHERE winner = "Hayden Roulston"
How much Grid has a Time/Retired of +1 lap, and a Driver of sébastien bourdais, and Laps larger than 70?
CREATE TABLE table_name_89 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)
SELECT COUNT(grid) FROM table_name_89 WHERE time_retired = "+1 lap" AND driver = "sébastien bourdais" AND laps > 70
What's the production code of the episode seen by 7.49 million people in the US?
CREATE TABLE table_23242950_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
SELECT production_code FROM table_23242950_1 WHERE us_viewers__millions_ = "7.49"
Find the id and local authority of the station with has the highest average high temperature.
CREATE TABLE weekly_weather (station_id VARCHAR); CREATE TABLE station (id VARCHAR, local_authority VARCHAR)
SELECT t2.id, t2.local_authority FROM weekly_weather AS t1 JOIN station AS t2 ON t1.station_id = t2.id GROUP BY t1.station_id ORDER BY AVG(high_temperature) DESC LIMIT 1
Tell me singles W-L that has years larger than 1 and highest singles ranking of 1346
CREATE TABLE table_name_7 (singles_w_l VARCHAR, years_played VARCHAR, highest_singles_ranking VARCHAR)
SELECT singles_w_l FROM table_name_7 WHERE years_played > 1 AND highest_singles_ranking = "1346"
What is the area of Austria's territory in square kilometers?
CREATE TABLE table_24066938_1 (area_km_2 VARCHAR, member_state VARCHAR)
SELECT area_km_2 FROM table_24066938_1 WHERE member_state = "Austria"
What is 1993, when 1992 is "SF", and when Tournament is "Paris"?
CREATE TABLE table_name_7 (tournament VARCHAR)
SELECT 1993 FROM table_name_7 WHERE 1992 = "sf" AND tournament = "paris"
What is Rhiannon Leier's lane?
CREATE TABLE table_name_22 (lane VARCHAR, name VARCHAR)
SELECT lane FROM table_name_22 WHERE name = "rhiannon leier"
What was the date when Chris Amon won?
CREATE TABLE table_1140090_6 (date VARCHAR, winning_driver VARCHAR)
SELECT date FROM table_1140090_6 WHERE winning_driver = "Chris Amon"
what nationality is the player who played from 1997-98
CREATE TABLE table_10015132_7 (nationality VARCHAR, years_in_toronto VARCHAR)
SELECT nationality FROM table_10015132_7 WHERE years_in_toronto = "1997-98"
display the emails of the employees who have no commission percentage and salary within the range 7000 to 12000 and works in that department which number is 50.
CREATE TABLE employees (email VARCHAR, department_id VARCHAR, commission_pct VARCHAR, salary VARCHAR)
SELECT email FROM employees WHERE commission_pct = "null" AND salary BETWEEN 7000 AND 12000 AND department_id = 50
Which Away team plays at the Venue vfl park?
CREATE TABLE table_name_91 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_91 WHERE venue = "vfl park"
What episode did John Rogers direct?
CREATE TABLE table_20704243_6 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_20704243_6 WHERE directed_by = "John Rogers"
Which area 2006 km² has an area 1996 km² of 26.39, and a pop 2006 smaller than 18,610?
CREATE TABLE table_name_94 (area_2006_km² INTEGER, area_1996_km² VARCHAR, pop_2006 VARCHAR)
SELECT MIN(area_2006_km²) FROM table_name_94 WHERE area_1996_km² = 26.39 AND pop_2006 < 18 OFFSET 610
What is Combined, when Super G is less than 10, and when Overall is less than 4?
CREATE TABLE table_name_46 (combined VARCHAR, super_g VARCHAR, overall VARCHAR)
SELECT combined FROM table_name_46 WHERE super_g < 10 AND overall < 4