question
stringlengths
19
162
table_info
stringlengths
39
951
sql_query
stringlengths
24
181
Name the plaform for year more than 2006 and developer of 3g studios
CREATE TABLE table_name_33 ( platform VARCHAR, year VARCHAR, developer VARCHAR )
SELECT platform FROM table_name_33 WHERE year > '2006' AND developer LIKE '%3g studios%'
How much is the track Fast As a Shark?
CREATE TABLE tracks ( unit_price VARCHAR, name VARCHAR )
SELECT unit_price FROM tracks WHERE name LIKE "%fast as a shark%"
What is the 2008 result where 2003 is 325?
CREATE TABLE table_name_34 ( Id VARCHAR )
SELECT 2008 FROM table_name_34 WHERE 2003 LIKE "%325%"
Name the main location for public and masters university
CREATE TABLE table_2076533_1 ( main_location VARCHAR, control VARCHAR, type VARCHAR )
SELECT main_location FROM table_2076533_1 WHERE control LIKE "%public%" AND type LIKE "%masters university%"
What is the civil parish of the cappanaboul townland?
CREATE TABLE table_30120547_1 ( civil_parish VARCHAR, townland VARCHAR )
SELECT civil_parish FROM table_30120547_1 WHERE townland LIKE "%cappanaboul%"
What is the name of the engine company that is located at 89 Rope Ferry Road?
CREATE TABLE table_name_35 ( engine_company VARCHAR, address VARCHAR )
SELECT engine_company FROM table_name_35 WHERE address LIKE "%89 rope ferry road%"
Which driver had a grid number of 10?
CREATE TABLE table_57541 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT "Driver" FROM table_57541 WHERE "Grid" = 10
What is the Place when the To par was +3 and Score was 74-73=147?
CREATE TABLE table_68297 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text )
SELECT "Place" FROM table_68297 WHERE "To par" LIKE '%+3%' AND "Score" LIKE '%74-73=147%'
Name the Result on october 15, 1995?
CREATE TABLE table_name_71 ( result VARCHAR, date VARCHAR )
SELECT result FROM table_name_71 WHERE date LIKE "%october 15, 1995%"
Can you tell me the average Chapter that has Articles smaller than 15?
CREATE TABLE table_40043 ( "Chapter" real, "Chinese" text, "Pinyin" text, "English Translation" text, "Articles" real )
SELECT AVG("Chapter") FROM table_40043 WHERE "Articles" < 15
How many distinct claim outcome codes are there?
CREATE TABLE claims_processing ( claim_outcome_code VARCHAR )
SELECT COUNT(DISTINCT claim_outcome_code) FROM claims_processing
WHAT IS THE FORWARD CASTE WITH A SCHEDULED TRIBE OF 0.90%?
CREATE TABLE table_8030 ( "Religion" text, "Scheduled Caste" text, "Scheduled Tribe" text, "Other Backward Class" text, "Forward caste" text )
SELECT "Forward caste" FROM table_8030 WHERE "Scheduled Tribe" LIKE '%0.90%'
Which team had the fastest lap of 1:13.516?
CREATE TABLE table_name_47 ( winning_team VARCHAR, fastest_lap VARCHAR )
SELECT winning_team FROM table_name_47 WHERE fastest_lap LIKE "%1:13.516%"
Name the result for willis alston
CREATE TABLE table_2668243_18 ( result VARCHAR, incumbent VARCHAR )
SELECT result FROM table_2668243_18 WHERE incumbent LIKE '%willis alston%'
When 3 is the number what is the highest total?
CREATE TABLE table_24781886_3 ( total INTEGER, _number VARCHAR )
SELECT MAX(total) FROM table_24781886_3 WHERE _number LIKE '%3%'
How many laps did innes ireland drive with a grid higher than 11?
CREATE TABLE table_51847 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT SUM("Laps") FROM table_51847 WHERE "Driver" LIKE '%innes ireland%' AND "Grid" > 11
What is the hanja for the province of 'sangju'?
CREATE TABLE table_160510_1 ( hanja VARCHAR, province VARCHAR )
SELECT hanja FROM table_160510_1 WHERE province LIKE "%sangju%"
How many numbers were recorded under max speed for 1 USAF space flight and total flights 34?
CREATE TABLE table_221315_3 ( max_speed__mph_ VARCHAR, usaf_space_flights VARCHAR, total_flights VARCHAR )
SELECT COUNT(max_speed__mph_) FROM table_221315_3 WHERE usaf_space_flights LIKE '%1%' AND total_flights LIKE '%34%'
Which drivers have the position of 27?
CREATE TABLE table_11032 ( "Position" real, "Drivers" text, "Class" text, "Class Position" real, "Laps" real )
SELECT "Drivers" FROM table_11032 WHERE "Position" = 27
Which major town is located within the Outback Areas Community Development Trust?
CREATE TABLE table_23685890_2 ( major_town VARCHAR, local_government_area VARCHAR )
SELECT major_town FROM table_23685890_2 WHERE local_government_area LIKE '%outback areas community development trust%'
What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25?
CREATE TABLE table_name_24 ( lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR )
SELECT SUM(lane) FROM table_name_24 WHERE nationality LIKE '%sweden%' AND split__50m_ < 26.25
how many nations won at least three silver medals ?
CREATE TABLE table_204_922 ( id number, "rank" number, "nation" text, "gold" number, "silver" number, "bronze" number, "total" number )
SELECT COUNT("nation") FROM table_204_922 WHERE "silver" >= 3
What is the nationality for the position of (d), and college was SC Bern ( Swiss )?
CREATE TABLE table_name_24 ( nationality VARCHAR, position VARCHAR, college VARCHAR )
SELECT nationality FROM table_name_24 WHERE position LIKE '%(d)%' AND college LIKE '%sc bern ( swiss )%'
What is the record for june 10?
CREATE TABLE table_10462 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Attendance" text, "Record" text, "Boxscore" text )
SELECT "Record" FROM table_10462 WHERE "Date" LIKE '%june 10%'
Which venue has a Goal of 3?
CREATE TABLE table_name_81 ( venue VARCHAR, goal VARCHAR )
SELECT venue FROM table_name_81 WHERE goal LIKE '%3%'
What is the total number of laps with a Driver of eddie irvine?
CREATE TABLE table_11288 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT SUM("Laps") FROM table_11288 WHERE "Driver" LIKE '%eddie irvine%'
What type of environment is the venue that was built in 2003?
CREATE TABLE table_name_11 ( environment VARCHAR, year_built VARCHAR )
SELECT environment FROM table_name_11 WHERE year_built LIKE "%2003%"
What is the engine for year 2012-?
CREATE TABLE table_57863 ( "Years" text, "Engine" text, "Displacement" text, "Power" text, "Torque" text, "Notes" text )
SELECT "Engine" FROM table_57863 WHERE "Years" LIKE '%2012-%'
What award did Forest Whitaker win in 1989?
CREATE TABLE table_42951 ( "Year" real, "Actor" text, "Award" text, "Motion Picture" text, "Result" text )
SELECT "Award" FROM table_42951 WHERE "Actor" LIKE '%forest whitaker%' AND "Year" = 1989
What is the production number of 3-04?
CREATE TABLE table_25046766_3 ( prod_no INTEGER, episode_no VARCHAR )
SELECT MAX(prod_no) FROM table_25046766_3 WHERE episode_no LIKE "%3-04%"
What week is a bye week?
CREATE TABLE table_name_64 ( week VARCHAR, date VARCHAR )
SELECT week FROM table_name_64 WHERE date LIKE "%bye%"
What was the name of the opposing team on the May 6 game?
CREATE TABLE table_27712180_13 ( team VARCHAR, date VARCHAR )
SELECT team FROM table_27712180_13 WHERE date LIKE "%may 6%"
Who did they play when there were only 751 in attendance?
CREATE TABLE table_name_78 ( opponent VARCHAR, attendance INTEGER )
SELECT opponent FROM table_name_78 WHERE attendance < 751
What was the score in the game against Boston?
CREATE TABLE table_17326036_5 ( score VARCHAR, team VARCHAR )
SELECT score FROM table_17326036_5 WHERE team LIKE "%boston%"
What is the Date of Birth of the CB Player with a Height of m (ft 4in)?
CREATE TABLE table_60491 ( "Name" text, "Pos." text, "Height" text, "Weight" text, "Date of Birth" text, "Club" text )
SELECT "Date of Birth" FROM table_60491 WHERE "Pos." LIKE '%cb%' AND "Height" LIKE '%m (ft 4in)%'
What were the total number of 2012 deaths when 2012 births were 127?
CREATE TABLE table_25703_2 ( death_2012 VARCHAR, birth_2012 VARCHAR )
SELECT death_2012 FROM table_25703_2 WHERE birth_2012 LIKE '%127%'
what is the final score when the opponent is platense?
CREATE TABLE table_name_58 ( final_score VARCHAR, opponent VARCHAR )
SELECT final_score FROM table_name_58 WHERE opponent LIKE "%platense%"
what is the interview score when the preliminary average is 8.529 (6)?
CREATE TABLE table_name_53 ( interview VARCHAR, preliminary_average VARCHAR )
SELECT interview FROM table_name_53 WHERE preliminary_average LIKE "%8.529 (6)%"
Name the candidates for 1998
CREATE TABLE table_25030512_24 ( candidates VARCHAR, first_elected VARCHAR )
SELECT candidates FROM table_25030512_24 WHERE first_elected LIKE "%1998%"
What was John Hildreth's speed?
CREATE TABLE table_65338 ( "Rank" real, "Rider" text, "Team" text, "Speed" text, "Time" text )
SELECT "Speed" FROM table_65338 WHERE "Rider" LIKE '%john hildreth%'
What is Tie No, when Date is 18 February 1956, and when Home Team is Charlton Athletic?
CREATE TABLE table_9448 ( "Tie no" text, "Home team" text, "Score" text, "Away team" text, "Date" text )
SELECT "Tie no" FROM table_9448 WHERE "Date" LIKE '%18 february 1956%' AND "Home team" LIKE '%charlton athletic%'
How many Kent State University's are there?
CREATE TABLE table_26351260_1 ( location VARCHAR, institution VARCHAR )
SELECT COUNT(location) FROM table_26351260_1 WHERE institution LIKE "%kent state university%"
What is the score of game 34?
CREATE TABLE table_name_3 ( score VARCHAR, game VARCHAR )
SELECT score FROM table_name_3 WHERE game LIKE '%34%'
HOW MANY CARS HAD A CAR # SMALLER THAN 7 AND STARTED ON 2010?
CREATE TABLE table_name_38 ( number_of_cars VARCHAR, car__number VARCHAR, year_started VARCHAR )
SELECT number_of_cars FROM table_name_38 WHERE CAST(car__number AS INTEGER) < 7 AND year_started LIKE '%2010%'
What was the result when Jam Hsiao was nominated in 2012?
CREATE TABLE table_40636 ( "Year" real, "Award" text, "Category" text, "Nomination" text, "Result" text )
SELECT "Result" FROM table_40636 WHERE "Nomination" LIKE '%jam hsiao%' AND "Year" = 2012
What's the sum of total where the rank is over 9 and the gold is less than 1?
CREATE TABLE table_55407 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT COUNT("Total") FROM table_55407 WHERE "Rank" > 9 AND "Gold" < 1
What is the perfect stem for pozten?
CREATE TABLE table_12784134_24 ( perfect_stem VARCHAR, imperfect_stem VARCHAR )
SELECT perfect_stem FROM table_12784134_24 WHERE imperfect_stem LIKE "%pozten%"
What recipients and nominees have outstanding achievement in drama as the category with 1994 as the year?
CREATE TABLE table_64175 ( "Year" real, "Category" text, "Recipients and nominees" text, "Role/Episode" text, "Result" text )
SELECT "Recipients and nominees" FROM table_64175 WHERE "Category" LIKE '%outstanding achievement in drama%' AND "Year" = 1994
what province was established in 1870
CREATE TABLE table_name_72 ( province VARCHAR, established VARCHAR )
SELECT province FROM table_name_72 WHERE established LIKE '%1870%'
Felicia Taylor was cyber girl in week 3, so who was the cyber girl in week 5?
CREATE TABLE table_name_95 ( week_5 VARCHAR, week_3 VARCHAR )
SELECT week_5 FROM table_name_95 WHERE week_3 LIKE "%felicia taylor%"
What district has a democratic party?
CREATE TABLE table_name_45 ( district VARCHAR, party VARCHAR )
SELECT district FROM table_name_45 WHERE party LIKE "%democratic%"
Who directed the episode with production code ip01003?
CREATE TABLE table_29273057_1 ( directed_by VARCHAR, production_code VARCHAR )
SELECT directed_by FROM table_29273057_1 WHERE production_code LIKE '%ip01003%'
Which date's opponent was Dender when the tournament was in the Jupiler League and the ground was a?
CREATE TABLE table_name_52 ( date VARCHAR, ground VARCHAR, opponent VARCHAR, tournament VARCHAR )
SELECT date FROM table_name_52 WHERE opponent LIKE "%dender%" AND tournament LIKE "%jupiler league%" AND ground LIKE "%a%"
Who won the points classification when the teams classification winner was Lampre-Farnese?
CREATE TABLE table_28092844_16 ( points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR )
SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification LIKE '%lampre-farnese%'
Who's the incumbent in Florida 6?
CREATE TABLE table_1341453_11 ( incumbent VARCHAR, district VARCHAR )
SELECT incumbent FROM table_1341453_11 WHERE district LIKE "%florida 6%"
Who was the opponent on September 26, 2009?
CREATE TABLE table_name_28 ( opponent VARCHAR, date VARCHAR )
SELECT opponent FROM table_name_28 WHERE date LIKE "%september 26, 2009%"
Who won Pro Stock the year Tony Schumacher won Top Fuel and Tony Pedregon won Funny Car?
CREATE TABLE table_45048 ( "Year" real, "Top Fuel" text, "Funny Car" text, "Pro Stock" text, "Pro Stock Motorcycle" text )
SELECT "Pro Stock" FROM table_45048 WHERE "Top Fuel" LIKE '%tony schumacher%' AND "Funny Car" LIKE '%tony pedregon%'
What is Home Team, when Tie No is '7'?
CREATE TABLE table_name_5 ( home_team VARCHAR, tie_no VARCHAR )
SELECT home_team FROM table_name_5 WHERE tie_no LIKE "%7%"
When 2 is the k-band what is the v-band?
CREATE TABLE table_186468_1 ( v_band VARCHAR, k_band VARCHAR )
SELECT v_band FROM table_186468_1 WHERE k_band LIKE "%2%"
What are the login names of the students with family name 'Ward'?
CREATE TABLE Students ( login_name VARCHAR, family_name VARCHAR )
SELECT login_name FROM Students WHERE family_name LIKE "%ward%"
what is the only season the club placed 5th ?
CREATE TABLE table_204_532 ( id number, "season" text, "tier" number, "division" text, "place" text )
SELECT "season" FROM table_204_532 WHERE "place" LIKE '%5%'
what is the highest bronze when silver is less than 1 and gold is more than 0?
CREATE TABLE table_43801 ( "Event" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MAX("Bronze") FROM table_43801 WHERE "Silver" < 1 AND "Gold" > 0
What is the record of the opponent that has a bye?
CREATE TABLE table_name_35 ( record VARCHAR, opponent VARCHAR )
SELECT record FROM table_name_35 WHERE opponent LIKE "%bye%"
What's the record in the game played against 42?
CREATE TABLE table_18207285_2 ( record VARCHAR, opponents VARCHAR )
SELECT record FROM table_18207285_2 WHERE opponents LIKE '%42%'
When sweden is the country who is the skip?
CREATE TABLE table_26912584_2 ( skip VARCHAR, country VARCHAR, Sweden VARCHAR )
SELECT skip FROM table_26912584_2 WHERE country LIKE '%sweden%'
When Centerfold model is on 3-04?
CREATE TABLE table_name_80 ( centerfold_model VARCHAR, date VARCHAR )
SELECT centerfold_model FROM table_name_80 WHERE date LIKE "%3-04%"
Which Manufacturer has a Time/Retired of accident?
CREATE TABLE table_name_73 ( manufacturer VARCHAR, time_retired VARCHAR )
SELECT manufacturer FROM table_name_73 WHERE time_retired LIKE "%accident%"
Which nationality has Years for Jazz of 1984-85?
CREATE TABLE table_name_92 ( nationality VARCHAR, years_for_jazz VARCHAR )
SELECT nationality FROM table_name_92 WHERE years_for_jazz LIKE "%1984-85%"
Name the incumbent for jacob spangler (dr) 67.1% jacob hay (f) 32.9%
CREATE TABLE table_2668347_17 ( incumbent VARCHAR, candidates VARCHAR )
SELECT incumbent FROM table_2668347_17 WHERE candidates LIKE "%jacob spangler (dr) 67.1% jacob hay (f) 32.9%"
In how many district has a politician took office on 1844-10-14?
CREATE TABLE table_28608 ( "Election number" real, "Election date" text, "District" text, "Province" text, "Took office" text, "Left office" text )
SELECT "District" FROM table_28608 WHERE "Took office" LIKE '%1844-10-14%'
What is the average ticket sales gross in dollars of films?
CREATE TABLE film ( Gross_in_dollar INTEGER )
SELECT AVG(Gross_in_dollar) FROM film
how many for floysvik and christer tornell is 7?
CREATE TABLE table_28677723_11 ( tor_fløysvik VARCHAR, christer_tornell VARCHAR )
SELECT COUNT(tor_fløysvik) FROM table_28677723_11 WHERE christer_tornell LIKE '%7%'
Round 1 is in what circuit?
CREATE TABLE table_26267607_2 ( circuit VARCHAR, round VARCHAR )
SELECT circuit FROM table_26267607_2 WHERE round LIKE "%1%"
Which city is Naples Airport located in?
CREATE TABLE table_51596 ( "City" text, "Country" text, "IATA" text, "ICAO" text, "Airport" text )
SELECT "City" FROM table_51596 WHERE "Airport" LIKE '%naples airport%'
What commune has an area of 12.4 sq.km.?
CREATE TABLE table_1828368_1 ( commune VARCHAR, area__km_2__ VARCHAR )
SELECT commune FROM table_1828368_1 WHERE area__km_2__ LIKE "%12.4%"
Name the sum of quantity for before 2011 model slf-230
CREATE TABLE table_name_60 ( quantity INTEGER, year VARCHAR, model VARCHAR )
SELECT SUM(quantity) FROM table_name_60 WHERE year < '2011' AND model LIKE '%slf-230%'
On what Date were the Results 4:0?
CREATE TABLE table_name_47 ( date VARCHAR, results¹ VARCHAR )
SELECT date FROM table_name_47 WHERE results¹ LIKE "%4:0%"
What is the hometown of the contestant whose background is as a financial consultant?
CREATE TABLE table_19810459_1 ( hometown VARCHAR, background VARCHAR )
SELECT hometown FROM table_19810459_1 WHERE background LIKE "%financial consultant%"
Which Name was in the Year 2001?
CREATE TABLE table_name_32 ( name VARCHAR, year VARCHAR )
SELECT name FROM table_name_32 WHERE year LIKE "%2001%"
What is the time/retired for the car with over 9 laps and a grid of 6?
CREATE TABLE table_11853 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT "Time/Retired" FROM table_11853 WHERE "Laps" > 9 AND "Grid" = 6
What's the format of the audio book titled The Mind Robber?
CREATE TABLE table_20174050_1 ( format VARCHAR, title VARCHAR )
SELECT format FROM table_20174050_1 WHERE title LIKE "%the mind robber%"
Which week has a result L 56-3?
CREATE TABLE table_47998 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" text )
SELECT AVG("Week") FROM table_47998 WHERE "Result" LIKE '%l 56-3%'
What the name of Peter White's party?
CREATE TABLE table_name_31 ( party VARCHAR, member VARCHAR )
SELECT party FROM table_name_31 WHERE member LIKE "%peter white%"
On what Date is the Detroit Falcons the Home team in a game with a Score of 63 66?
CREATE TABLE table_45591 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Record" text )
SELECT "Date" FROM table_45591 WHERE "Home" LIKE '%detroit falcons%' AND "Score" LIKE '%63–66%'
List the vehicle flight number, date and pilot of all the flights, ordered by altitude.
CREATE TABLE flight ( vehicle_flight_number VARCHAR, date VARCHAR, pilot VARCHAR, altitude VARCHAR )
SELECT vehicle_flight_number, date, pilot FROM flight ORDER BY altitude
Which date is associated with the player Wilbert Robinson?
CREATE TABLE table_5511 ( "RBIs" real, "Player" text, "Team" text, "Date" text, "Opponent" text )
SELECT "Date" FROM table_5511 WHERE "Player" LIKE '%wilbert robinson%'
What is the sum of the difference for 9 draws and over 18 played?
CREATE TABLE table_name_48 ( diff INTEGER, drawn VARCHAR, played VARCHAR )
SELECT SUM(diff) FROM table_name_48 WHERE drawn LIKE '%9%' AND played > '18'
What was the attendance on week 12?
CREATE TABLE table_10609 ( "Week" text, "Date" text, "Opponent" text, "Result" text, "Channel" text, "Attendance" text )
SELECT "Attendance" FROM table_10609 WHERE "Week" LIKE '%12%'
What is the listed crowd when the home team's score is 9.7 (61)?
CREATE TABLE table_33465 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Crowd" FROM table_33465 WHERE "Home team score" LIKE '%9.7 (61)%'
What college team did the pick for Pittsburgh Penguins come from?
CREATE TABLE table_2781227_7 ( college_junior_club_team VARCHAR, nhl_team VARCHAR )
SELECT college_junior_club_team FROM table_2781227_7 WHERE nhl_team LIKE "%pittsburgh penguins%"
What is Updated In Past 30 Days, when Registration is 'Open to people 13 and over'?
CREATE TABLE table_name_93 ( updated_in_past_30_days VARCHAR, registration VARCHAR )
SELECT updated_in_past_30_days FROM table_name_93 WHERE registration LIKE "%open to people 13 and over%"
Show the name of aircrafts with top three lowest distances.
CREATE TABLE Aircraft ( name VARCHAR, distance VARCHAR )
SELECT name FROM Aircraft ORDER BY distance LIMIT 3
What couple averaged 15.5?
CREATE TABLE table_25391981_3 ( couple VARCHAR, average VARCHAR )
SELECT couple FROM table_25391981_3 WHERE average LIKE '%15.5%'
What line has Newmarket Junction terminus?
CREATE TABLE table_name_4 ( line_name VARCHAR, terminus VARCHAR )
SELECT line_name FROM table_name_4 WHERE terminus LIKE "%newmarket junction%"
When the pick was below 42 and the player was Chris Horton, what's the highest Overall pick found?
CREATE TABLE table_name_15 ( overall INTEGER, name VARCHAR, pick VARCHAR )
SELECT MAX(overall) FROM table_name_15 WHERE name LIKE "%chris horton%" AND pick < 42
What team or teams with 18 in the top 10?
CREATE TABLE table_2012187_3 ( team_s_ VARCHAR, top_10 VARCHAR )
SELECT team_s_ FROM table_2012187_3 WHERE top_10 LIKE '%18%'
What is the record of game 48?
CREATE TABLE table_name_40 ( record VARCHAR, game VARCHAR )
SELECT record FROM table_name_40 WHERE game LIKE '%48%'
Name the entrant for bruno sterzi
CREATE TABLE table_28578594_1 ( entrant VARCHAR, driver VARCHAR )
SELECT entrant FROM table_28578594_1 WHERE driver LIKE "%bruno sterzi%"
Which Frequency has a Call sign of kcse?
CREATE TABLE table_name_93 ( frequency VARCHAR, call_sign VARCHAR )
SELECT frequency FROM table_name_93 WHERE call_sign LIKE "%kcse%"
What is the network brand name of the company vodafone group in Germany?
CREATE TABLE table_name_45 ( network_brand_name VARCHAR, company_name VARCHAR, country VARCHAR )
SELECT network_brand_name FROM table_name_45 WHERE company_name LIKE "%vodafone group%" AND country LIKE "%germany%"