question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What position is played by farmar, jordan jordan farmar?
CREATE TABLE table_name_29 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_29 WHERE player = "farmar, jordan jordan farmar"
What year is the player whose number is 31?
CREATE TABLE table_29418619_1 (year VARCHAR, _number VARCHAR)
SELECT year FROM table_29418619_1 WHERE _number = 31
What is the mean number of laps where Time/retired was a water leak and the grid number was bigger than 12?
CREATE TABLE table_name_53 (laps INTEGER, time_retired VARCHAR, grid VARCHAR)
SELECT AVG(laps) FROM table_name_53 WHERE time_retired = "water leak" AND grid > 12
Which call sign, broadcast at less than 103.5MHz, has an ERP W of 50?
CREATE TABLE table_name_43 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR)
SELECT call_sign FROM table_name_43 WHERE erp_w = 50 AND frequency_mhz < 103.5
Can you tell me what is FCC info for harmony township, new jersey?
CREATE TABLE table_name_39 (fcc_info VARCHAR, city_of_license VARCHAR)
SELECT fcc_info FROM table_name_39 WHERE city_of_license = "harmony township, new jersey"
What is the name when the local board is albert–eden, and a Decile of 9?
CREATE TABLE table_name_36 (name VARCHAR, local_board VARCHAR, decile VARCHAR)
SELECT name FROM table_name_36 WHERE local_board = "albert–eden" AND decile = "9"
What is the overall sum of the game with a pick less than 8 from the college of western michigan?
CREATE TABLE table_name_23 (overall INTEGER, pick VARCHAR, college VARCHAR)
SELECT SUM(overall) FROM table_name_23 WHERE pick < 8 AND college = "western michigan"
The game that has a save of lynch (4) ended with what score?
CREATE TABLE table_name_41 (score VARCHAR, save VARCHAR)
SELECT score FROM table_name_41 WHERE save = "lynch (4)"
Who was the opponent in the WMMA 1: McCorkle vs. Heden event that went more than 1 round?
CREATE TABLE table_name_12 (opponent VARCHAR, round VARCHAR, event VARCHAR)
SELECT opponent FROM table_name_12 WHERE round > 1 AND event = "wmma 1: mccorkle vs. heden"
What is the sum of the number of wins for teams with more than 0 draws?
CREATE TABLE table_name_51 (wins INTEGER, draws INTEGER)
SELECT SUM(wins) FROM table_name_51 WHERE draws > 0
Name the total number of population 2000 census for mesquita
CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, administrative_division VARCHAR)
SELECT COUNT(population_2000_census) FROM table_14986292_1 WHERE administrative_division = "Mesquita"
Name the birth date for shirt number 7
CREATE TABLE table_14363116_1 (birth_date VARCHAR, shirt_no VARCHAR)
SELECT birth_date FROM table_14363116_1 WHERE shirt_no = 7
Find the famous titles of artists that do not have any volume.
CREATE TABLE volume (Famous_Title VARCHAR, Artist_ID VARCHAR); CREATE TABLE artist (Famous_Title VARCHAR, Artist_ID VARCHAR)
SELECT Famous_Title FROM artist WHERE NOT Artist_ID IN (SELECT Artist_ID FROM volume)
What was the outcome when Jing-Jing Lu was the opponent?
CREATE TABLE table_name_81 (outcome VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_81 WHERE opponent = "jing-jing lu"
Who did he fight in Rumble of the Kings 6?
CREATE TABLE table_name_87 (opponent VARCHAR, event VARCHAR)
SELECT opponent FROM table_name_87 WHERE event = "rumble of the kings 6"
What is the Rating/Share (18-49) that also has a Share greater than 10 and 12.42 million Viewers?
CREATE TABLE table_name_69 (rating VARCHAR, share VARCHAR, viewers__millions_ VARCHAR)
SELECT rating / SHARE(18 - 49) FROM table_name_69 WHERE share > 10 AND viewers__millions_ = 12.42
What Round has the Method of Submission (Single Wing Choke)?
CREATE TABLE table_name_55 (round VARCHAR, method VARCHAR)
SELECT round FROM table_name_55 WHERE method = "submission (single wing choke)"
Who is the vacator when south carolina 4th is the district?
CREATE TABLE table_225100_4 (vacator VARCHAR, district VARCHAR)
SELECT vacator FROM table_225100_4 WHERE district = "South Carolina 4th"
what is the maximum 1st prize( $ ) where score is 193 (-17)
CREATE TABLE table_11622255_1 (score VARCHAR)
SELECT MAX(1 AS st_prize__) AS $__ FROM table_11622255_1 WHERE score = "193 (-17)"
what date were they playing in hawthorn
CREATE TABLE table_name_17 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_17 WHERE away_team = "hawthorn"
What language has a publication range from 1955–1999?
CREATE TABLE table_name_85 (language VARCHAR, publication_range VARCHAR)
SELECT language FROM table_name_85 WHERE publication_range = "1955–1999"
What was the score of the game when the high rebounds Jeff Foster (10)?
CREATE TABLE table_17326036_6 (score VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_17326036_6 WHERE high_rebounds = "Jeff Foster (10)"
What Location Attendance has a Game of 14?
CREATE TABLE table_name_91 (location_attendance VARCHAR, game VARCHAR)
SELECT location_attendance FROM table_name_91 WHERE game = "14"
What kind of Mission has a Apogee of 707 km?
CREATE TABLE table_name_47 (mission VARCHAR, apogee VARCHAR)
SELECT mission FROM table_name_47 WHERE apogee = "707 km"
What was the average round score of the player who won in 1978?
CREATE TABLE table_name_72 (total INTEGER, year_s__won VARCHAR)
SELECT AVG(total) FROM table_name_72 WHERE year_s__won = "1978"
Which school has a roll larger than 26 and is located in Fairfield?
CREATE TABLE table_name_5 (name VARCHAR, roll VARCHAR, area VARCHAR)
SELECT name FROM table_name_5 WHERE roll > 26 AND area = "fairfield"
List all tracks bought by customer Daan Peeters.
CREATE TABLE invoices (id VARCHAR, customer_id VARCHAR); CREATE TABLE invoice_lines (track_id VARCHAR, invoice_id VARCHAR); CREATE TABLE tracks (name VARCHAR, id VARCHAR); CREATE TABLE customers (id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT T1.name FROM tracks AS T1 JOIN invoice_lines AS T2 ON T1.id = T2.track_id JOIN invoices AS T3 ON T3.id = T2.invoice_id JOIN customers AS T4 ON T4.id = T3.customer_id WHERE T4.first_name = "Daan" AND T4.last_name = "Peeters"
How many different items appear in the enrollment column that joined in 1931, 1949 1?
CREATE TABLE table_261941_1 (enrollment VARCHAR, joined VARCHAR)
SELECT COUNT(enrollment) FROM table_261941_1 WHERE joined = "1931, 1949 1"
What are the official languages of the countries of players from Maryland or Duke college?
CREATE TABLE country (Official_native_language VARCHAR, Country_id VARCHAR); CREATE TABLE match_season (Country VARCHAR, College VARCHAR)
SELECT T1.Official_native_language FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.College = "Maryland" OR T2.College = "Duke"
How many years had a Venue of eindhoven?
CREATE TABLE table_name_88 (year VARCHAR, venue VARCHAR)
SELECT COUNT(year) FROM table_name_88 WHERE venue = "eindhoven"
Who was the Opponent in Week 7?
CREATE TABLE table_name_37 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_37 WHERE week = 7
Which years did the player from Providence play for the Grizzlies as small forward?
CREATE TABLE table_name_96 (years_for_grizzlies VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT years_for_grizzlies FROM table_name_96 WHERE position = "small forward" AND school_club_team = "providence"
Where was home with a record of 7–5–2?
CREATE TABLE table_name_77 (home VARCHAR, record VARCHAR)
SELECT home FROM table_name_77 WHERE record = "7–5–2"
What is Oklahoma vs. when Current Streak is l 1, and Neutral Site is osu, 7-6?
CREATE TABLE table_name_15 (oklahoma_vs VARCHAR, current_streak VARCHAR, at_neutral_site VARCHAR)
SELECT oklahoma_vs FROM table_name_15 WHERE current_streak = "l 1" AND at_neutral_site = "osu, 7-6"
How many rounds did João Victor Horto achieved the fastest lap?
CREATE TABLE table_25459168_2 (round VARCHAR, fastest_lap VARCHAR)
SELECT COUNT(round) FROM table_25459168_2 WHERE fastest_lap = "João Victor Horto"
What is the country/region for the releases from Beat Records?
CREATE TABLE table_name_9 (country_region VARCHAR, label VARCHAR)
SELECT country_region FROM table_name_9 WHERE label = "beat records"
Which year has a 2003 of lq?
CREATE TABLE table_name_82 (Id VARCHAR)
SELECT 2009 FROM table_name_82 WHERE 2003 = "lq"
What is the percentage of Tukunga when La Crescenta-Montrose is 28%?
CREATE TABLE table_name_33 (tujunga VARCHAR, la_crescenta__montrose VARCHAR)
SELECT tujunga FROM table_name_33 WHERE la_crescenta__montrose = "28%"
What is the average capacity for the vehicle having a navigator of Macneall?
CREATE TABLE table_name_89 (capacity INTEGER, navigator VARCHAR)
SELECT AVG(capacity) FROM table_name_89 WHERE navigator = "macneall"
What is the most number of families among regions where the population is made up of 5.8% deportees?
CREATE TABLE table_16048129_5 (number_of_families INTEGER, _percentage_of_total_deportees VARCHAR)
SELECT MAX(number_of_families) FROM table_16048129_5 WHERE _percentage_of_total_deportees = "5.8"
What is the Season of the game with a Score of 0–2 (a), 3–1 (h)?
CREATE TABLE table_name_24 (season VARCHAR, score VARCHAR)
SELECT season FROM table_name_24 WHERE score = "0–2 (a), 3–1 (h)"
What is the greatest number of caps for Bruce Djite?
CREATE TABLE table_name_54 (caps INTEGER, player VARCHAR)
SELECT MAX(caps) FROM table_name_54 WHERE player = "bruce djite"
What pick number was the player that was picked by Edmonton?
CREATE TABLE table_28059992_5 (pick__number VARCHAR, cfl_team VARCHAR)
SELECT pick__number FROM table_28059992_5 WHERE cfl_team = "Edmonton"
How many styles had a total score of exactly 33?
CREATE TABLE table_28677723_9 (style VARCHAR, total VARCHAR)
SELECT COUNT(style) FROM table_28677723_9 WHERE total = 33
What is the average total for teams with over 3 bronzes and over 8 golds?
CREATE TABLE table_name_33 (total INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT AVG(total) FROM table_name_33 WHERE bronze > 3 AND gold > 8
what is the sum of wins when events is 13 and top-5 is less than 1?
CREATE TABLE table_name_15 (wins INTEGER, events VARCHAR, top_5 VARCHAR)
SELECT SUM(wins) FROM table_name_15 WHERE events = 13 AND top_5 < 1
Which Opponent has a Result of w 19–10?
CREATE TABLE table_name_40 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_40 WHERE result = "w 19–10"
For the Player playing for the College of Kentucky and a Height of 6-7 what was their corresponding School?
CREATE TABLE table_name_72 (school VARCHAR, college VARCHAR, height VARCHAR)
SELECT school FROM table_name_72 WHERE college = "kentucky" AND height = "6-7"
Name the least clubs remaining
CREATE TABLE table_19089486_1 (clubs_remaining INTEGER)
SELECT MIN(clubs_remaining) FROM table_19089486_1
What are the years won when the to par is +5?
CREATE TABLE table_name_76 (year_s__won VARCHAR, to_par VARCHAR)
SELECT year_s__won FROM table_name_76 WHERE to_par = "+5"
What's the highest draw with over 60 points for paul duffy?
CREATE TABLE table_name_40 (draw INTEGER, points VARCHAR, artist VARCHAR)
SELECT MAX(draw) FROM table_name_40 WHERE points > 60 AND artist = "paul duffy"
Which OF-5 is in Ghana?
CREATE TABLE table_name_48 (of_5 VARCHAR, country VARCHAR)
SELECT of_5 FROM table_name_48 WHERE country = "ghana"
Name the event with pursuit of 18th and sprint of 20th
CREATE TABLE table_name_25 (event VARCHAR, pursuit VARCHAR, sprint VARCHAR)
SELECT event FROM table_name_25 WHERE pursuit = "18th" AND sprint = "20th"
How many Foreign-born (1000) are from Sweden and born in some other EU state (1000) larger than 477?
CREATE TABLE table_name_7 (total_foreign_born__1000_ INTEGER, country VARCHAR, born_in_other_eu_state__1000_ VARCHAR)
SELECT SUM(total_foreign_born__1000_) FROM table_name_7 WHERE country = "sweden" AND born_in_other_eu_state__1000_ > 477
Which result is older than 2007?
CREATE TABLE table_name_18 (result___category VARCHAR, year INTEGER)
SELECT result___category FROM table_name_18 WHERE year < 2007
What is the Score of the game with a Record of 5–4–3?
CREATE TABLE table_name_2 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_2 WHERE record = "5–4–3"
How many poles are there with 2 races?
CREATE TABLE table_2822193_1 (poles INTEGER, races VARCHAR)
SELECT MAX(poles) FROM table_2822193_1 WHERE races = 2
what are the top 3 highest support rates?
CREATE TABLE candidate (support_rate VARCHAR)
SELECT support_rate FROM candidate ORDER BY support_rate DESC LIMIT 3
How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter?
CREATE TABLE table_25816476_2 (team_coxy VARCHAR, air_date VARCHAR, team_guest_captain VARCHAR)
SELECT COUNT(team_coxy) FROM table_25816476_2 WHERE air_date = "24 January 2010" AND team_guest_captain = "Gail Porter"
What are the names of the county that the delegates on "Appropriations" committee belong to?
CREATE TABLE election (District VARCHAR, Committee VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)
SELECT T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District WHERE T2.Committee = "Appropriations"
Who directed the episode that originally aired on March 18, 1988?
CREATE TABLE table_20967430_4 (directed_by VARCHAR, original_air_date VARCHAR)
SELECT directed_by FROM table_20967430_4 WHERE original_air_date = "March 18, 1988"
What is the name of the city with a capacity of 41,311?
CREATE TABLE table_name_97 (city VARCHAR, capacity VARCHAR)
SELECT city FROM table_name_97 WHERE capacity = "41,311"
When the Brewers score was 5-7, what was the lowest attendance?
CREATE TABLE table_name_13 (attendance INTEGER, score VARCHAR)
SELECT MIN(attendance) FROM table_name_13 WHERE score = "5-7"
What is the team when the score is 88–86?
CREATE TABLE table_11959669_6 (team VARCHAR, score VARCHAR)
SELECT team FROM table_11959669_6 WHERE score = "88–86"
What is the highest rebound Dennis Rodman obtained within the 20 rebounds category given two of the following:points, rebounds, assists, steals, and blocked shots (points) greater equal to 5
CREATE TABLE table_25696729_8 (double_double VARCHAR)
SELECT MAX(20 AS _rebounds) FROM table_25696729_8 WHERE double_double = 5
What is id of the staff who had a Staff Department Assignment earlier than any Clerical Staff?
CREATE TABLE Staff_Department_Assignments (staff_id VARCHAR, date_assigned_to INTEGER, job_title_code VARCHAR)
SELECT staff_id FROM Staff_Department_Assignments WHERE date_assigned_to < (SELECT MAX(date_assigned_to) FROM Staff_Department_Assignments WHERE job_title_code = 'Clerical Staff')
What is the average rank for antun salman?
CREATE TABLE table_name_26 (rank INTEGER, candidate_name VARCHAR)
SELECT AVG(rank) FROM table_name_26 WHERE candidate_name = "antun salman"
What was the hometown of the contestant who was a professional mixologist?
CREATE TABLE table_name_13 (hometown VARCHAR, profession VARCHAR)
SELECT hometown FROM table_name_13 WHERE profession = "mixologist"
What is the status of donor payment in the country where there are 6 children per donor and no data on allowed recipients?
CREATE TABLE table_16175217_1 (donor_payment VARCHAR, children_per_donor VARCHAR, allowed_recipients VARCHAR)
SELECT donor_payment FROM table_16175217_1 WHERE children_per_donor = "6 children" AND allowed_recipients = "no data"
Compute the average price of all the products.
CREATE TABLE products (price INTEGER)
SELECT AVG(price) FROM products
What is the label from the Netherlands?
CREATE TABLE table_name_54 (label VARCHAR, region VARCHAR)
SELECT label FROM table_name_54 WHERE region = "netherlands"
What was david ferrer seeded?
CREATE TABLE table_24431264_16 (seed INTEGER, player VARCHAR)
SELECT MAX(seed) FROM table_24431264_16 WHERE player = "David Ferrer"
What were the last 5 meetings when Columbia was mu, 4-2?
CREATE TABLE table_name_6 (last_5_meetings VARCHAR, at_columbia VARCHAR)
SELECT last_5_meetings FROM table_name_6 WHERE at_columbia = "mu, 4-2"
Which place has 23 floors and a street address in Detroit of 144 west congress street?
CREATE TABLE table_name_17 (name VARCHAR, floors VARCHAR, street_address_in_detroit VARCHAR)
SELECT name FROM table_name_17 WHERE floors = 23 AND street_address_in_detroit = "144 west congress street"
I want to know the highest silver for total of 4 for poland and gold less than 1
CREATE TABLE table_name_7 (silver INTEGER, gold VARCHAR, total VARCHAR, nation VARCHAR)
SELECT MAX(silver) FROM table_name_7 WHERE total = 4 AND nation = "poland" AND gold < 1
What is the date of the First Performance of Rhys Kosakowski as Billy Elliot in the Original Cast?
CREATE TABLE table_name_38 (first_performance VARCHAR, status VARCHAR, name VARCHAR)
SELECT first_performance FROM table_name_38 WHERE status = "original cast" AND name = "rhys kosakowski"
Find the names of customers who are not living in the state of California.
CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)
SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = 'California'
What was the date of the game in week 3?
CREATE TABLE table_21761882_4 (date VARCHAR, week VARCHAR)
SELECT date FROM table_21761882_4 WHERE week = 3
who is the driver that has laps more than 35 and the constructor is ferrari?
CREATE TABLE table_name_51 (driver VARCHAR, laps VARCHAR, constructor VARCHAR)
SELECT driver FROM table_name_51 WHERE laps > 35 AND constructor = "ferrari"
Name the average Against that has a Venue of twickenham , london on 25 november 1978?
CREATE TABLE table_name_73 (against INTEGER, venue VARCHAR, date VARCHAR)
SELECT AVG(against) FROM table_name_73 WHERE venue = "twickenham , london" AND date = "25 november 1978"
Tell me the host team for giants stadium and visiting of cincinnati bengals
CREATE TABLE table_name_57 (host_team VARCHAR, stadium VARCHAR, visiting_team VARCHAR)
SELECT host_team FROM table_name_57 WHERE stadium = "giants stadium" AND visiting_team = "cincinnati bengals"
What player has a date of 12-02-2003?
CREATE TABLE table_name_98 (player VARCHAR, date VARCHAR)
SELECT player FROM table_name_98 WHERE date = "12-02-2003"
For which Game 4 did Michael O'Connor play wing position?
CREATE TABLE table_name_8 (game_4 VARCHAR, position VARCHAR, game_1 VARCHAR)
SELECT game_4 FROM table_name_8 WHERE position = "wing" AND game_1 = "michael o'connor"
Which stage had suhardi hassan in the Malaysian rider classification?
CREATE TABLE table_name_59 (stage VARCHAR, malaysian_rider_classification VARCHAR)
SELECT stage FROM table_name_59 WHERE malaysian_rider_classification = "suhardi hassan"
elaine lee worked on how many issues
CREATE TABLE table_1420954_1 (issues VARCHAR, writer VARCHAR)
SELECT COUNT(issues) FROM table_1420954_1 WHERE writer = "Elaine Lee"
What was the result for the total of 12?
CREATE TABLE table_26375386_23 (result VARCHAR, total VARCHAR)
SELECT result FROM table_26375386_23 WHERE total = 12
What is the name of the team with a Games listing of 7?
CREATE TABLE table_name_27 (team VARCHAR, games VARCHAR)
SELECT team FROM table_name_27 WHERE games = "7"
What is the least september 1943 when late 1943 is 78000
CREATE TABLE table_1115992_1 (sept_1943 INTEGER, late_1943 VARCHAR)
SELECT MIN(sept_1943) FROM table_1115992_1 WHERE late_1943 = 78000
What is the publisher with most number of books?
CREATE TABLE book_club (publisher VARCHAR)
SELECT publisher FROM book_club GROUP BY publisher ORDER BY COUNT(*) DESC LIMIT 1
Which Year is the first one that has an Apparatus of uneven bars, and a Rank-Final smaller than 3?
CREATE TABLE table_name_15 (year INTEGER, apparatus VARCHAR, rank_final VARCHAR)
SELECT MIN(year) FROM table_name_15 WHERE apparatus = "uneven bars" AND rank_final < 3
Who were the candidates when the winner was first elected in 1910?
CREATE TABLE table_1346137_4 (candidates VARCHAR, first_elected VARCHAR)
SELECT candidates FROM table_1346137_4 WHERE first_elected = "1910"
What driver has a 9 grid total?
CREATE TABLE table_name_79 (driver VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_79 WHERE grid = 9
What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes?
CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR)
SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = "yes" AND probate_activities = "yes"
What is cornell's lowest pick number?
CREATE TABLE table_name_13 (pick__number INTEGER, college VARCHAR)
SELECT MIN(pick__number) FROM table_name_13 WHERE college = "cornell"
Which circuit did winfield team nissan win for the tooheys 1000?
CREATE TABLE table_name_68 (circuit VARCHAR, team VARCHAR, series VARCHAR)
SELECT circuit FROM table_name_68 WHERE team = "winfield team nissan" AND series = "tooheys 1000"
What date has a Decision of osgood, and a Score of 3 – 4?
CREATE TABLE table_name_63 (date VARCHAR, decision VARCHAR, score VARCHAR)
SELECT date FROM table_name_63 WHERE decision = "osgood" AND score = "3 – 4"
how many cars were produced in 1980?
CREATE TABLE CARS_DATA (YEAR VARCHAR)
SELECT COUNT(*) FROM CARS_DATA WHERE YEAR = 1980
Who was the builder of the ship INS Rana?
CREATE TABLE table_name_69 (builder VARCHAR, name VARCHAR)
SELECT builder FROM table_name_69 WHERE name = "ins rana"
What language is used when the service is sky primafila 10 and the package/option is qualsiasi?
CREATE TABLE table_name_19 (language VARCHAR, package_option VARCHAR, television_service VARCHAR)
SELECT language FROM table_name_19 WHERE package_option = "qualsiasi" AND television_service = "sky primafila 10"
What percent did GRÜNE get in the state where FRITZ got 1.3%?
CREATE TABLE table_name_14 (grüne VARCHAR, fritz VARCHAR)
SELECT grüne FROM table_name_14 WHERE fritz = "1.3%"