answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT record FROM table_name_84 WHERE date = "june 14" | What was the record for the date of June 14? | CREATE TABLE table_name_84 (record VARCHAR, date VARCHAR) |
SELECT player FROM table_24765815_2 WHERE nationality = "Netherlands" AND team = "Netherlands" | What's the player's name whose nationality and team are Netherlands? | CREATE TABLE table_24765815_2 (player VARCHAR, nationality VARCHAR, team VARCHAR) |
SELECT country FROM table_13681_2 WHERE highest_monthly_inflation_rate = "3.13 × 10 8 %" | what's the country with highest monthly inflation rate being 3.13 × 10 8 % | CREATE TABLE table_13681_2 (country VARCHAR, highest_monthly_inflation_rate VARCHAR) |
SELECT COUNT(total_viewers) FROM table_25721_3 WHERE airdate = "25 October 2012" | How many episodes aired on 25 october 2012? | CREATE TABLE table_25721_3 (total_viewers VARCHAR, airdate VARCHAR) |
SELECT artist FROM table_23963073_1 WHERE date_of_publication = 1966 | Who was the artist who worked on the stories published in 1966? | CREATE TABLE table_23963073_1 (artist VARCHAR, date_of_publication VARCHAR) |
SELECT SUM(Block) AS assists FROM table_name_12 WHERE assists > 32 AND total_blocks > 88 | When assists is more than 32 and total blocks is more than 88, what is the total of block assists? | CREATE TABLE table_name_12 (Block INTEGER, assists VARCHAR, total_blocks VARCHAR) |
SELECT host_country___countries FROM table_name_45 WHERE bronze = "[[|]] (1)" AND host_city___cities = "krynica" | Who was the host country when bronze is [[|]] (1) and host city is Krynica? | CREATE TABLE table_name_45 (host_country___countries VARCHAR, bronze VARCHAR, host_city___cities VARCHAR) |
SELECT outgoing_manager FROM table_name_40 WHERE replaced_by = "craig brewster" | I want the outgoing manager for craig brewster | CREATE TABLE table_name_40 (outgoing_manager VARCHAR, replaced_by VARCHAR) |
SELECT COUNT(region_4) FROM table_1337525_1 WHERE complete_series = "The Complete Seventh Series" | What is the number of region 4 for the series of the complete seventh series? | CREATE TABLE table_1337525_1 (region_4 VARCHAR, complete_series VARCHAR) |
SELECT song FROM table_name_24 WHERE artist = "terence trent d'arby" | What song is done by Terence Trent D'Arby? | CREATE TABLE table_name_24 (song VARCHAR, artist VARCHAR) |
SELECT DISTINCT Fname FROM STUDENT WHERE Fname LIKE '%a%' | Find the first names of students whose first names contain letter "a". | CREATE TABLE STUDENT (Fname VARCHAR) |
SELECT COUNT(grid) FROM table_name_87 WHERE team = "italy" | What is the Grid number for the Team from Italy? | CREATE TABLE table_name_87 (grid VARCHAR, team VARCHAR) |
SELECT él___ella___usted FROM table_1977630_2 WHERE vos__ * _ = "muelas / molás" | What us the conjucated form(s) of el/ella/ usted when the Vos (*) is muelas / molás? | CREATE TABLE table_1977630_2 (él___ella___usted VARCHAR, vos__ VARCHAR, _ VARCHAR) |
SELECT high_assists FROM table_22871316_11 WHERE series = "0-1" | Who has the high assists when 0-1 is the series? | CREATE TABLE table_22871316_11 (high_assists VARCHAR, series VARCHAR) |
SELECT _percentage_change FROM table_29789_3 WHERE international_tourism_expenditure_2011 = "$85.9 billion" | What was the percentage increase in spending on international tourism from 2011 to 2012 of the country that spent $85.9 billion in 2011? | CREATE TABLE table_29789_3 (_percentage_change VARCHAR, international_tourism_expenditure_2011 VARCHAR) |
SELECT date_aired FROM table_28283535_4 WHERE episode = "1.13" | When did the episode 1.13 air for the first time? | CREATE TABLE table_28283535_4 (date_aired VARCHAR, episode VARCHAR) |
SELECT MAX(attendance) FROM table_name_12 WHERE visitor = "los angeles" | For all games with los angeles as visitor, what is the highest attendance of all? | CREATE TABLE table_name_12 (attendance INTEGER, visitor VARCHAR) |
SELECT occupied_territory FROM table_10335_1 WHERE operational = "May 1940 – January 1945" | what's the occupied territory with operational period of may 1940 – january 1945 | CREATE TABLE table_10335_1 (occupied_territory VARCHAR, operational VARCHAR) |
SELECT power__kw_ FROM table_2523809_1 WHERE coverage = "Phoenix" | List the power output for Phoenix. | CREATE TABLE table_2523809_1 (power__kw_ VARCHAR, coverage VARCHAR) |
SELECT team__number2 FROM table_17282875_2 WHERE team__number1 = "Vitória" | Who played against team 1 Vitória? | CREATE TABLE table_17282875_2 (team__number2 VARCHAR, team__number1 VARCHAR) |
SELECT COUNT(lost) FROM table_name_33 WHERE played < 17 | What's the number of losses where played was less than 17? | CREATE TABLE table_name_33 (lost VARCHAR, played INTEGER) |
SELECT train_name FROM table_23477312_1 WHERE destination = "Madurai Junction" | What's the name of the train to Madurai Junction? | CREATE TABLE table_23477312_1 (train_name VARCHAR, destination VARCHAR) |
SELECT tues_24_aug FROM table_26986076_5 WHERE fri_27_aug = "20' 58.50 107.929mph" | When 20' 58.50 107.929mph is Friday August 27th What is Tuesday 24th August? | CREATE TABLE table_26986076_5 (tues_24_aug VARCHAR, fri_27_aug VARCHAR) |
SELECT mobile FROM table_name_28 WHERE chrome = "9.00%" | What percentage of users were using mobile browsers during the period in which 9.00% were using Chrome? | CREATE TABLE table_name_28 (mobile VARCHAR, chrome VARCHAR) |
SELECT producer FROM table_name_64 WHERE location = "kethanur" | What company is known as the producer at the kethanur location? | CREATE TABLE table_name_64 (producer VARCHAR, location VARCHAR) |
SELECT COUNT(round) FROM table_name_53 WHERE time = "n/a" AND location = "alabama , united states" AND record = "1-2-0" | What is the total number of Round(s), when Time is "N/A", when Location is "Alabama , United States", and when Record is "1-2-0"? | CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR, time VARCHAR, location VARCHAR) |
SELECT extroverted, _relationship_oriented FROM table_11256021_1 WHERE date = "c. 1928" | what's the extroverted, relationship-oriented where date is c. 1928 | CREATE TABLE table_11256021_1 (extroverted VARCHAR, _relationship_oriented VARCHAR, date VARCHAR) |
SELECT total FROM table_name_13 WHERE score_points = "11" | which Total has a Score points of 11? | CREATE TABLE table_name_13 (total VARCHAR, score_points VARCHAR) |
SELECT date FROM table_name_79 WHERE result = "win" AND competition = "friendly" AND location = "porto" | What date has a result of win, in a friendly competition in Porto? | CREATE TABLE table_name_79 (date VARCHAR, location VARCHAR, result VARCHAR, competition VARCHAR) |
SELECT minor_seventh FROM table_name_29 WHERE major_third = "c" | A major third of C has what listed for the Minor seventh? | CREATE TABLE table_name_29 (minor_seventh VARCHAR, major_third VARCHAR) |
SELECT COUNT(*), dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code | Find the number of classes in each department. | CREATE TABLE CLASS (crs_code VARCHAR); CREATE TABLE course (crs_code VARCHAR) |
SELECT SUM(lane) FROM table_name_46 WHERE country = "jamaica" AND name = "kerron stewart" AND time > 22 | How many Lanes have a Country of jamaica, and a Name of kerron stewart, and a Time larger than 22? | CREATE TABLE table_name_46 (lane INTEGER, time VARCHAR, country VARCHAR, name VARCHAR) |
SELECT championship FROM table_name_99 WHERE nation = "usa" AND year > 1994 AND result = "5th" | What championship was in the USA after 1994, and resulted in 5th place? | CREATE TABLE table_name_99 (championship VARCHAR, result VARCHAR, nation VARCHAR, year VARCHAR) |
SELECT height FROM table_12962773_12 WHERE no = 9 | What height is player number 9? | CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR) |
SELECT player FROM table_name_87 WHERE round > 8 | Which Player has a Round larger than 8? | CREATE TABLE table_name_87 (player VARCHAR, round INTEGER) |
SELECT time FROM table_name_44 WHERE heat < 3 AND lane > 2 AND name = "jean luc razakarivony" | What was the time for Jean Luc Razakarivony with less than 3 heat and more than 2 lanes? | CREATE TABLE table_name_44 (time VARCHAR, name VARCHAR, heat VARCHAR, lane VARCHAR) |
SELECT MAX(frequency_mhz) FROM table_name_35 WHERE call_sign = "k210dv" | Which Frequency MHz has a Call sign of k210dv? | CREATE TABLE table_name_35 (frequency_mhz INTEGER, call_sign VARCHAR) |
SELECT player FROM table_1515346_2 WHERE country = "Australia" AND honoree_s_ = "Byron Nelson" | Who won the tournament for Australia in the year when Byron Nelson was Honoree? | CREATE TABLE table_1515346_2 (player VARCHAR, country VARCHAR, honoree_s_ VARCHAR) |
SELECT points FROM table_1166259_1 WHERE lost = 26 | How many points are there when the lost is 26? | CREATE TABLE table_1166259_1 (points VARCHAR, lost VARCHAR) |
SELECT building FROM table_name_90 WHERE city = "bucharest" AND rank < 12 | What is the name of the building in Bucharest with a rank of less than 12? | CREATE TABLE table_name_90 (building VARCHAR, city VARCHAR, rank VARCHAR) |
SELECT MAX(total) FROM table_name_60 WHERE gold = 2 | Which Total has Gold of 2? | CREATE TABLE table_name_60 (total INTEGER, gold VARCHAR) |
SELECT nhl_team FROM table_1965650_8 WHERE player = "Denis Desgagnes" | What NHL team does Denis Desgagnes play for? | CREATE TABLE table_1965650_8 (nhl_team VARCHAR, player VARCHAR) |
SELECT record FROM table_name_60 WHERE week = "8" | What was the team record by Week 8? | CREATE TABLE table_name_60 (record VARCHAR, week VARCHAR) |
SELECT MIN(points) FROM table_name_60 WHERE rank = "1st" | What is the lowest points when the ranking is 1st? | CREATE TABLE table_name_60 (points INTEGER, rank VARCHAR) |
SELECT MAX(rank) FROM table_name_22 WHERE wickets < 15 | What is the highest rank for less than 15 Wickets? | CREATE TABLE table_name_22 (rank INTEGER, wickets INTEGER) |
SELECT incumbent FROM table_name_63 WHERE republican = "bo itshaky" | Who was the incumbent when Bo Itshaky was the Republican? | CREATE TABLE table_name_63 (incumbent VARCHAR, republican VARCHAR) |
SELECT highest FROM table_237757_10 WHERE average = 10295 | What was the entry for highest when average is 10295? | CREATE TABLE table_237757_10 (highest VARCHAR, average VARCHAR) |
SELECT result FROM table_21058823_1 WHERE opponent = "Villanova" | What did they do against Villanova? | CREATE TABLE table_21058823_1 (result VARCHAR, opponent VARCHAR) |
SELECT COUNT(DISTINCT PROF_NUM) FROM CLASS WHERE CRS_CODE = "ACCT-211" | How many professors are teaching class with code ACCT-211? | CREATE TABLE CLASS (PROF_NUM VARCHAR, CRS_CODE VARCHAR) |
SELECT COUNT(losses) FROM table_name_91 WHERE percentage = 54.83 AND points > 8 | What is the total number of Losses when the percentage is 54.83, with more than 8 points? | CREATE TABLE table_name_91 (losses VARCHAR, percentage VARCHAR, points VARCHAR) |
SELECT document_type_code, document_name, document_description FROM Documents WHERE document_name = 'Noel CV' OR document_name = 'King Book' | List the document type code, document name, and document description for the document with name 'Noel CV' or name 'King Book'. | CREATE TABLE Documents (document_type_code VARCHAR, document_name VARCHAR, document_description VARCHAR) |
SELECT AVG(top_10) FROM table_name_68 WHERE starts = 2 AND winnings = "$135,984" AND avg_finish > 43 | What is the average top 10 score for 2 starts, winnings of $135,984 and an average finish more than 43? | CREATE TABLE table_name_68 (top_10 INTEGER, avg_finish VARCHAR, starts VARCHAR, winnings VARCHAR) |
SELECT MAX(elevation) FROM airports WHERE country = 'Iceland' | What is the maximum elevation of all airports in the country of Iceland? | CREATE TABLE airports (elevation INTEGER, country VARCHAR) |
SELECT percentage_of_votes FROM table_13746866_2 WHERE election_date = 1981 | what's the percentage of votes with election date being 1981 | CREATE TABLE table_13746866_2 (percentage_of_votes VARCHAR, election_date VARCHAR) |
SELECT combination_classification FROM table_name_34 WHERE points_classification = "daniele bennati" AND team_classification = "quick step" | Which Combination classification has Points classification of daniele bennati, and a Team classification of quick step? | CREATE TABLE table_name_34 (combination_classification VARCHAR, points_classification VARCHAR, team_classification VARCHAR) |
SELECT COUNT(position) FROM table_11803648_22 WHERE player = "Ben Harpur" | How many positions did player Ben Harpur play? | CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR) |
SELECT position FROM table_11734041_2 WHERE height_in_ft = "6-6" AND no_s_ = "35" | What position is number 35 whose height is 6-6? | CREATE TABLE table_11734041_2 (position VARCHAR, height_in_ft VARCHAR, no_s_ VARCHAR) |
SELECT member_countries FROM table_name_15 WHERE area__km²_ = "871,980" | Which country has an area of 871,980 square km? | CREATE TABLE table_name_15 (member_countries VARCHAR, area__km²_ VARCHAR) |
SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = "Michigan Technological University (NCAA)" | When michigan technological university (ncaa) is the college, junior, or club team what is the nationality? | CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR) |
SELECT SUM(rank) FROM table_name_10 WHERE nation = "serbia" AND gold > 0 | What is the rank that when Serbia is the nation, and gold is larger than 0? | CREATE TABLE table_name_10 (rank INTEGER, nation VARCHAR, gold VARCHAR) |
SELECT venue FROM table_name_83 WHERE score = "3 & 2" AND year = "1965" | What venue has 3 & 2 as the score, and 1965 as the year? | CREATE TABLE table_name_83 (venue VARCHAR, score VARCHAR, year VARCHAR) |
SELECT l2_cache FROM table_name_71 WHERE release_date = "august 26, 2007" | What L2 cache had a release date of august 26, 2007? | CREATE TABLE table_name_71 (l2_cache VARCHAR, release_date VARCHAR) |
SELECT COUNT(attendance) FROM table_name_4 WHERE date = "october 8, 1989" AND week < 5 | What is the total number of fans attending the game on October 8, 1989 before week 5? | CREATE TABLE table_name_4 (attendance VARCHAR, date VARCHAR, week VARCHAR) |
SELECT college_junior_club_team FROM table_1013129_11 WHERE player = "Doug Nolan" | What high school team did Doug Nolan play for? | CREATE TABLE table_1013129_11 (college_junior_club_team VARCHAR, player VARCHAR) |
SELECT MAX(wins) FROM table_name_66 WHERE country = "united states" AND player = "andy bean" AND rank < 4 | Which Wins is the highest one that has a Country of united states, and a Player of andy bean, and a Rank smaller than 4? | CREATE TABLE table_name_66 (wins INTEGER, rank VARCHAR, country VARCHAR, player VARCHAR) |
SELECT date FROM table_name_38 WHERE opposition = "limerick" AND game = "all-ireland final" | On what date did Limerick play in the All-Ireland Final game? | CREATE TABLE table_name_38 (date VARCHAR, opposition VARCHAR, game VARCHAR) |
SELECT motion_picture FROM table_name_42 WHERE award = "best supporting actor" AND actor = "samuel l. jackson" AND year < 1997 | For what motion picture did Samuel L. Jackson win the best supporting actor award before 1997? | CREATE TABLE table_name_42 (motion_picture VARCHAR, year VARCHAR, award VARCHAR, actor VARCHAR) |
SELECT accession_number FROM table_27155678_2 WHERE sequence_similarity = 54 | Name the accession number for sequence similarity being 54 | CREATE TABLE table_27155678_2 (accession_number VARCHAR, sequence_similarity VARCHAR) |
SELECT home_team AS score FROM table_name_64 WHERE away_team = "st kilda" | What is the home team score when st kilda is the away team? | CREATE TABLE table_name_64 (home_team VARCHAR, away_team VARCHAR) |
SELECT avoirdupois_value FROM table_name_76 WHERE translation = "grain" | Which Avoirdupois value is translated to grain? | CREATE TABLE table_name_76 (avoirdupois_value VARCHAR, translation VARCHAR) |
SELECT DISTINCT classroom FROM list WHERE grade = 5 | Which classrooms are used by grade 5? | CREATE TABLE list (classroom VARCHAR, grade VARCHAR) |
SELECT nationality FROM table_name_91 WHERE ship = "toward" | What was the nationality of the ship named Toward? | CREATE TABLE table_name_91 (nationality VARCHAR, ship VARCHAR) |
SELECT category FROM table_name_61 WHERE winner_nominee_s_ = "dev patel" | Which category was Dev Patel nominated for? | CREATE TABLE table_name_61 (category VARCHAR, winner_nominee_s_ VARCHAR) |
SELECT final_score FROM table_name_94 WHERE visiting_team = "buffalo bills" | What was the final score when the Buffalo Bills were the visiting team? | CREATE TABLE table_name_94 (final_score VARCHAR, visiting_team VARCHAR) |
SELECT share__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "9.28" | When there are 9.28 million viewers what is the share (18-49)? | CREATE TABLE table_28980706_4 (share__18_49_ VARCHAR, viewers__millions_ VARCHAR) |
SELECT COUNT(no_in_series) FROM table_10935205_1 WHERE canadian_airdate = "11 February 2008" | The canadian airdate of 11 february 2008 applied to what series number? | CREATE TABLE table_10935205_1 (no_in_series VARCHAR, canadian_airdate VARCHAR) |
SELECT venue FROM table_name_99 WHERE club = "west bromwich albion" | Which Venue has a Club of west bromwich albion? | CREATE TABLE table_name_99 (venue VARCHAR, club VARCHAR) |
SELECT attendance FROM table_name_66 WHERE opponent = "pittsburgh steelers" | In the game where they played the Pittsburgh Steelers, what was the attendance? | CREATE TABLE table_name_66 (attendance VARCHAR, opponent VARCHAR) |
SELECT notes FROM table_name_3 WHERE film = "touch & go" | What notes does the film Touch & go have? | CREATE TABLE table_name_3 (notes VARCHAR, film VARCHAR) |
SELECT result FROM table_name_74 WHERE score = "2 – 0" AND competition = "2006 fifa world cup qualification" | Which Result has a Score of 2 – 0, and a Competition of 2006 fifa world cup qualification? | CREATE TABLE table_name_74 (result VARCHAR, score VARCHAR, competition VARCHAR) |
SELECT capacity FROM table_name_88 WHERE position_in_2005 = "8" | Can you tell me the Capacity that has the Position in 2005 of 8? | CREATE TABLE table_name_88 (capacity VARCHAR, position_in_2005 VARCHAR) |
SELECT prize FROM table_name_15 WHERE winner = "dominik nitsche" | What is the Prize amount of Winner Dominik Nitsche? | CREATE TABLE table_name_15 (prize VARCHAR, winner VARCHAR) |
SELECT time FROM table_name_63 WHERE country = "united states" | What is the time for the race with the United States? | CREATE TABLE table_name_63 (time VARCHAR, country VARCHAR) |
SELECT total FROM table_name_55 WHERE set_2 = "25-19" | What is the total for set 2 of 25-19? | CREATE TABLE table_name_55 (total VARCHAR, set_2 VARCHAR) |
SELECT MIN(year) FROM table_name_99 WHERE rank < 132 AND name = "biodiversity richness" | Can you tell me the lowest Year that has the Rank smaller the 132, and the Name of biodiversity richness? | CREATE TABLE table_name_99 (year INTEGER, rank VARCHAR, name VARCHAR) |
SELECT COUNT(bronze) FROM table_name_41 WHERE silver > 4 AND nation = "total" AND gold < 30 | What is the total number of bronze medals for the team with more than 4 silver and less than 30 gold medals? | CREATE TABLE table_name_41 (bronze VARCHAR, gold VARCHAR, silver VARCHAR, nation VARCHAR) |
SELECT earnings_per_share__¢_ FROM table_18077713_1 WHERE net_profit__us_$m_ = "16.2" | What is the earnings per share when the net profit is 16.2 million dollars? | CREATE TABLE table_18077713_1 (earnings_per_share__¢_ VARCHAR, net_profit__us_$m_ VARCHAR) |
SELECT COUNT(laps) FROM table_name_68 WHERE qual > 142.81 AND grid = 12 | Tell me the total number of Laps for Qual being larger than 142.81 with Grid of 12 | CREATE TABLE table_name_68 (laps VARCHAR, qual VARCHAR, grid VARCHAR) |
SELECT partner FROM table_1920271_3 WHERE surface = "Clay" | Who did she play with on clay? | CREATE TABLE table_1920271_3 (partner VARCHAR, surface VARCHAR) |
SELECT school_club_team FROM table_15621965_14 WHERE player = "Kevin Ollie" | Name the school/club team for kevin ollie | CREATE TABLE table_15621965_14 (school_club_team VARCHAR, player VARCHAR) |
SELECT district FROM table_2668352_14 WHERE first_elected = "1810" | Name the district for first elected 1810 | CREATE TABLE table_2668352_14 (district VARCHAR, first_elected VARCHAR) |
SELECT head_coach FROM table_name_86 WHERE president = "mario volarevic" | Who is the Head Coach of the team whose President is Mario Volarevic? | CREATE TABLE table_name_86 (head_coach VARCHAR, president VARCHAR) |
SELECT catalogue FROM table_name_33 WHERE region = "uk" AND format = "vinyl" AND date = "1986" | Which catalogue is from the UK region, and is on vinyl, and was dated in 1986? | CREATE TABLE table_name_33 (catalogue VARCHAR, date VARCHAR, region VARCHAR, format VARCHAR) |
SELECT home_team FROM table_name_50 WHERE away_team = "footscray" | Who was the home team when Footscray was the away team? | CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR) |
SELECT place FROM table_name_48 WHERE score = 70 - 72 = 142 | what is the place when the score is 70-72=142? | CREATE TABLE table_name_48 (place VARCHAR, score VARCHAR) |
SELECT DISTINCT YEAR FROM party WHERE Governor = "Eliot Spitzer" | In which distinct years was the governor "Eliot Spitzer"? | CREATE TABLE party (YEAR VARCHAR, Governor VARCHAR) |
SELECT opponents FROM table_name_67 WHERE venue = "away" AND score = "5-4" | Who was the opponent at the away game with a score of 5-4? | CREATE TABLE table_name_67 (opponents VARCHAR, venue VARCHAR, score VARCHAR) |
SELECT pro_team FROM table_27132791_3 WHERE position = "DT" AND nfl_team = "Houston Oilers" | If the NFL team is the Houston Oilers and the position is DT, who is the Pro team? | CREATE TABLE table_27132791_3 (pro_team VARCHAR, position VARCHAR, nfl_team VARCHAR) |
SELECT title FROM table_10908676_7 WHERE written_by = "David Mamet" | What is the title written by David Mamet? | CREATE TABLE table_10908676_7 (title VARCHAR, written_by VARCHAR) |
SELECT SUM(points) FROM table_name_92 WHERE rank = "61t" | What is the sum of the points for the player who was a rank of 61t? | CREATE TABLE table_name_92 (points INTEGER, rank VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.