context stringlengths 27 489 | question stringlengths 12 244 | answer stringlengths 18 557 |
|---|---|---|
CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, penance VARCHAR) | what's the permanence of the body where penance is the undifferenced | SELECT permanence_of_the_body FROM table_11609814_1 WHERE penance = "the undifferenced" |
CREATE TABLE table_11609814_1 (constancy VARCHAR, permanence_of_the_body VARCHAR) | what's the constancy where permanence of the body is meditation | SELECT constancy FROM table_11609814_1 WHERE permanence_of_the_body = "meditation" |
CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, constancy VARCHAR) | what's the permanence of the body where constancy is interestedness | SELECT permanence_of_the_body FROM table_11609814_1 WHERE constancy = "interestedness" |
CREATE TABLE table_11630008_8 (title VARCHAR, production_code VARCHAR) | What is the title of the episode with the production code 624? | SELECT title FROM table_11630008_8 WHERE production_code = 624 |
CREATE TABLE table_11630008_8 (original_air_date VARCHAR, written_by VARCHAR) | What is the original air date of the episode written by Karen Felix and Don Woodard? | SELECT original_air_date FROM table_11630008_8 WHERE written_by = "Karen Felix and Don Woodard" |
CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon VARCHAR, species_in_the_world VARCHAR) | what's the total number of species in the peruvian amazon with 8411 species in the world | SELECT COUNT(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE species_in_the_world = 8411 |
CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon INTEGER, taxonomy VARCHAR) | what's the minimum species in the peruvian amazon with taxonomy s fern ( pteridophyta ) | SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE taxonomy = "s Fern ( Pteridophyta )" |
CREATE TABLE table_11727969_1 (species_in_the_world VARCHAR, peruvian_amazon_vs_peru__percent_ VARCHAR) | what's the species in the world with peruvian amazon vs. peru (percent) of 63 | SELECT species_in_the_world FROM table_11727969_1 WHERE peruvian_amazon_vs_peru__percent_ = 63 |
CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon INTEGER, species_in_peru VARCHAR) | what's the minimum species in the peruvian amazon with species in peru of 1000 | SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE species_in_peru = 1000 |
CREATE TABLE table_11727969_1 (species_in_the_peruvian_amazon INTEGER, peru_vs_world__percent_ VARCHAR) | what's the minimum species in the peruvian amazon with peru vs. world (percent) value of 7 | SELECT MIN(species_in_the_peruvian_amazon) FROM table_11727969_1 WHERE peru_vs_world__percent_ = 7 |
CREATE TABLE table_11727969_1 (peru_vs_world__percent_ INTEGER, species_in_the_world VARCHAR) | what's the maximum peru vs. world (percent) with 9672 species in the world | SELECT MAX(peru_vs_world__percent_) FROM table_11727969_1 WHERE species_in_the_world = 9672 |
CREATE TABLE table_11734041_2 (school_club_team_country VARCHAR, no_s_ VARCHAR, position VARCHAR) | What school did the forward whose number is 10 belong to? | SELECT school_club_team_country FROM table_11734041_2 WHERE no_s_ = "10" AND position = "Forward" |
CREATE TABLE table_11734041_2 (height_in_ft VARCHAR, school_club_team_country VARCHAR) | What is the height of the player who attended Hartford? | SELECT height_in_ft FROM table_11734041_2 WHERE school_club_team_country = "Hartford" |
CREATE TABLE table_11734041_2 (years_for_rockets VARCHAR, school_club_team_country VARCHAR) | What years did the player from LaSalle play for the Rockets? | SELECT years_for_rockets FROM table_11734041_2 WHERE school_club_team_country = "LaSalle" |
CREATE TABLE table_11734041_2 (position VARCHAR, height_in_ft VARCHAR, no_s_ VARCHAR) | What position is number 35 whose height is 6-6? | SELECT position FROM table_11734041_2 WHERE height_in_ft = "6-6" AND no_s_ = "35" |
CREATE TABLE table_11734041_9 (player VARCHAR, years_for_rockets VARCHAR) | Which player who played for the Rockets for the years 1986-92? | SELECT player FROM table_11734041_9 WHERE years_for_rockets = "1986-92" |
CREATE TABLE table_11734041_9 (no_s_ VARCHAR, school_club_team_country VARCHAR) | What is the number of the player who went to Southern University? | SELECT no_s_ FROM table_11734041_9 WHERE school_club_team_country = "Southern University" |
CREATE TABLE table_11734041_9 (height_in_ft VARCHAR, player VARCHAR) | How tall is the player jones, major major jones? | SELECT height_in_ft FROM table_11734041_9 WHERE player = "Jones, Major Major Jones" |
CREATE TABLE table_11764007_2 (member VARCHAR, week_sent_to_third_island VARCHAR) | Who was sent to the third island in week 1? | SELECT member FROM table_11764007_2 WHERE week_sent_to_third_island = "1" |
CREATE TABLE table_11764007_2 (week_sent_to_third_island VARCHAR, week_arrived_on_main_island VARCHAR) | What week was the member who arrived on the main island in week 6 sent to the third island? | SELECT week_sent_to_third_island FROM table_11764007_2 WHERE week_arrived_on_main_island = "6" |
CREATE TABLE table_11764007_2 (member VARCHAR, week_arrived_on_main_island VARCHAR) | How many members arrived on the main island in week 4? | SELECT COUNT(member) FROM table_11764007_2 WHERE week_arrived_on_main_island = "4" |
CREATE TABLE table_11764007_2 (week_arrived_on_main_island VARCHAR, original_tribe VARCHAR, week_sent_to_third_island VARCHAR) | What week did the member who's original tribe was shark and who was sent to the third island on week 14 arrive on the main island? | SELECT week_arrived_on_main_island FROM table_11764007_2 WHERE original_tribe = "Shark" AND week_sent_to_third_island = "14" |
CREATE TABLE table_11800185_1 (no_of_sikhs VARCHAR, country VARCHAR) | What is the number of sikhs in Japan? | SELECT no_of_sikhs FROM table_11800185_1 WHERE country = "Japan" |
CREATE TABLE table_11884814_3 (evening_gown VARCHAR, swimsuit VARCHAR) | What was the evening gown score when the swimsuit was 9.61? | SELECT evening_gown FROM table_11884814_3 WHERE swimsuit = "9.61" |
CREATE TABLE table_11884814_3 (swimsuit VARCHAR, interview VARCHAR) | What is the swimsuit score when the interview was 9.74? | SELECT swimsuit FROM table_11884814_3 WHERE interview = "9.74" |
CREATE TABLE table_11884814_3 (country VARCHAR, interview VARCHAR, average VARCHAR) | Which country had an interview score of 9.40 and average of 9.44? | SELECT country FROM table_11884814_3 WHERE interview = "9.40" AND average = "9.44" |
CREATE TABLE table_11884814_3 (country VARCHAR, swimsuit VARCHAR) | Which country had the swimsuit score 9.67? | SELECT country FROM table_11884814_3 WHERE swimsuit = "9.67" |
CREATE TABLE table_11884814_3 (average VARCHAR, swimsuit VARCHAR) | What was the average for the country with the swimsuit score of 9.57? | SELECT average FROM table_11884814_3 WHERE swimsuit = "9.57" |
CREATE TABLE table_11884814_3 (interview VARCHAR, country VARCHAR) | What was the interview score for Hawaii? | SELECT interview FROM table_11884814_3 WHERE country = "Hawaii" |
CREATE TABLE table_11960407_5 (date VARCHAR, game VARCHAR) | What is the date of Game 50? | SELECT date FROM table_11960407_5 WHERE game = 50 |
CREATE TABLE table_11960407_5 (high_points VARCHAR, game VARCHAR) | Who scored the most points in Game 49? | SELECT high_points FROM table_11960407_5 WHERE game = 49 |
CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR) | Name the number of teams at the philips arena 19,335? | SELECT COUNT(team) FROM table_11961582_6 WHERE location_attendance = "Philips Arena 19,335" |
CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR) | What is the team located at philips arena 18,227? | SELECT team FROM table_11961582_6 WHERE location_attendance = "Philips Arena 18,227" |
CREATE TABLE table_11964047_7 (record VARCHAR, score VARCHAR) | what are all the records with a score is w 98–91 | SELECT record FROM table_11964047_7 WHERE score = "W 98–91" |
CREATE TABLE table_11964047_7 (record VARCHAR, score VARCHAR) | what records have a score of l 109–116 2 ot | SELECT record FROM table_11964047_7 WHERE score = "L 109–116 2 OT" |
CREATE TABLE table_11964047_7 (visitor VARCHAR, record VARCHAR) | who are all the visitor with a record of 25–18 | SELECT visitor FROM table_11964047_7 WHERE record = "25–18" |
CREATE TABLE table_11964047_7 (visitor VARCHAR, leading_scorer VARCHAR) | Which visitors have a leading scorer of roy : 25 | SELECT visitor FROM table_11964047_7 WHERE leading_scorer = "Roy : 25" |
CREATE TABLE table_11964047_7 (date VARCHAR, leading_scorer VARCHAR) | what is the total number of dates where the scorer is gordon : 32 | SELECT COUNT(date) FROM table_11964047_7 WHERE leading_scorer = "Gordon : 32" |
CREATE TABLE table_11964047_5 (home VARCHAR, streak VARCHAR, leading_scorer VARCHAR) | what's the home team where streak is l3 and leading scorer is roy : 23 | SELECT home FROM table_11964047_5 WHERE streak = "L3" AND leading_scorer = "Roy : 23" |
CREATE TABLE table_11964047_5 (attendance VARCHAR, score VARCHAR) | what's the attendance where score is l 92–101 | SELECT attendance FROM table_11964047_5 WHERE score = "L 92–101" |
CREATE TABLE table_11964047_5 (date VARCHAR, visitor VARCHAR) | what is the total number of date where visitor is new jersey nets | SELECT COUNT(date) FROM table_11964047_5 WHERE visitor = "New Jersey Nets" |
CREATE TABLE table_11964047_5 (leading_scorer VARCHAR, home VARCHAR) | who is the leading scorer where home is charlotte bobcats | SELECT leading_scorer FROM table_11964047_5 WHERE home = "Charlotte Bobcats" |
CREATE TABLE table_11964047_5 (score VARCHAR, record VARCHAR) | what's the score where record is 0–2 | SELECT score FROM table_11964047_5 WHERE record = "0–2" |
CREATE TABLE table_11964047_5 (record VARCHAR, streak VARCHAR, leading_scorer VARCHAR) | what is the total number of record where streak is l2 and leading scorer is roy : 23 | SELECT COUNT(record) FROM table_11964047_5 WHERE streak = "L2" AND leading_scorer = "Roy : 23" |
CREATE TABLE table_11965481_13 (location_attendance VARCHAR, date VARCHAR) | Name the location on june 10 | SELECT location_attendance FROM table_11965481_13 WHERE date = "June 10" |
CREATE TABLE table_11965481_13 (game VARCHAR, date VARCHAR) | Name the number of games on june 12 | SELECT COUNT(game) FROM table_11965481_13 WHERE date = "June 12" |
CREATE TABLE table_11965481_13 (series VARCHAR, date VARCHAR) | Name the series on june 5 | SELECT series FROM table_11965481_13 WHERE date = "June 5" |
CREATE TABLE table_12030612_3 (written_by VARCHAR, series__number VARCHAR) | Who were the authors of series episode #25? | SELECT written_by FROM table_12030612_3 WHERE series__number = 25 |
CREATE TABLE table_12030612_3 (season__number VARCHAR, written_by VARCHAR) | What season features writer Michael Poryes? | SELECT season__number FROM table_12030612_3 WHERE written_by = "Michael Poryes" |
CREATE TABLE table_12030612_3 (original_air_date VARCHAR, written_by VARCHAR) | What is the date of the episode written by Michael Poryes? | SELECT original_air_date FROM table_12030612_3 WHERE written_by = "Michael Poryes" |
CREATE TABLE table_12043148_2 (somerset VARCHAR, year VARCHAR) | what is the somerset for the year 2009? | SELECT somerset FROM table_12043148_2 WHERE year = 2009 |
CREATE TABLE table_12043148_2 (bristol_ VARCHAR, _n_som VARCHAR, somerset VARCHAR) | what is the bristol & n. som where the somerset is ashcott and shapwick? | SELECT bristol_ & _n_som FROM table_12043148_2 WHERE somerset = "Ashcott and Shapwick" |
CREATE TABLE table_12043148_2 (year INTEGER, glos_ VARCHAR, _wilts VARCHAR) | what is the latest year where glos & wilts is warminster? | SELECT MAX(year) FROM table_12043148_2 WHERE glos_ & _wilts = "Warminster" |
CREATE TABLE table_12043148_2 (glos_ VARCHAR, _wilts VARCHAR, bristol_ VARCHAR, _somerset VARCHAR) | what is the glos & wilts where the bristol & somerset is lansdown? | SELECT glos_ & _wilts FROM table_12043148_2 WHERE bristol_ & _somerset = "Lansdown" |
CREATE TABLE table_12043148_2 (year VARCHAR, glos_ VARCHAR, _wilts VARCHAR) | what is the year where glos & wilts is gloucester city winget? | SELECT year FROM table_12043148_2 WHERE glos_ & _wilts = "Gloucester City Winget" |
CREATE TABLE table_12043148_2 (premier_two VARCHAR, gloucestershire VARCHAR) | who many times is gloucestershire is painswick? | SELECT COUNT(premier_two) FROM table_12043148_2 WHERE gloucestershire = "Painswick" |
CREATE TABLE table_12094609_1 (preliminaries VARCHAR, evening_gown VARCHAR) | what's the preliminaries where evening gown is 8.988 | SELECT preliminaries FROM table_12094609_1 WHERE evening_gown = "8.988" |
CREATE TABLE table_12094609_1 (swimsuit VARCHAR, average VARCHAR) | what's the swimsuit where average is 8.670 | SELECT swimsuit FROM table_12094609_1 WHERE average = "8.670" |
CREATE TABLE table_12094609_1 (evening_gown VARCHAR, preliminaries VARCHAR) | what's the evening gown where preliminaries is 8.977 | SELECT evening_gown FROM table_12094609_1 WHERE preliminaries = "8.977" |
CREATE TABLE table_12094609_1 (preliminaries VARCHAR, state VARCHAR) | what's the preliminaries where state is south dakota | SELECT preliminaries FROM table_12094609_1 WHERE state = "South Dakota" |
CREATE TABLE table_12094609_1 (evening_gown VARCHAR, state VARCHAR) | what's the evening gown where state is south dakota | SELECT evening_gown FROM table_12094609_1 WHERE state = "South Dakota" |
CREATE TABLE table_12094609_1 (average VARCHAR, evening_gown VARCHAR) | what is the total number of average where evening gown is 8.988 | SELECT COUNT(average) FROM table_12094609_1 WHERE evening_gown = "8.988" |
CREATE TABLE table_12104319_1 (mens_singles VARCHAR, womens_doubles VARCHAR) | Name the men's singles of marina yakusheva elena shimko | SELECT mens_singles FROM table_12104319_1 WHERE womens_doubles = "Marina Yakusheva Elena Shimko" |
CREATE TABLE table_12104319_1 (womens_singles VARCHAR, mens_doubles VARCHAR) | What are the womens singles of imam sodikin irawan andi tandaputra? | SELECT womens_singles FROM table_12104319_1 WHERE mens_doubles = "Imam Sodikin Irawan Andi Tandaputra" |
CREATE TABLE table_12104319_1 (womens_singles VARCHAR, womens_doubles VARCHAR) | What are the womens singles of naoko fukuman kurumi yonao? | SELECT womens_singles FROM table_12104319_1 WHERE womens_doubles = "Naoko Fukuman Kurumi Yonao" |
CREATE TABLE table_12104319_1 (womens_singles VARCHAR, mixed_doubles VARCHAR) | What is the womens singles of marcus ellis gabrielle white? | SELECT womens_singles FROM table_12104319_1 WHERE mixed_doubles = "Marcus Ellis Gabrielle White" |
CREATE TABLE table_12104319_1 (mens_singles VARCHAR, year VARCHAR) | What is the mens singles of 2008? | SELECT mens_singles FROM table_12104319_1 WHERE year = 2008 |
CREATE TABLE table_12108_1 (gdp___bn__ VARCHAR) | what is the gdp ( bn ) where capital is capital? | SELECT gdp___bn__ FROM table_12108_1 WHERE "capital" = "capital" |
CREATE TABLE table_12108_1 (population VARCHAR) | what is the population where the area (sq. mi.) is area (sq. mi.)? | SELECT population FROM table_12108_1 WHERE "area__sq_mi_" = "area__sq_mi_" |
CREATE TABLE table_1211545_2 (light_vehicle VARCHAR, heavy_vehicle__2_axles_ VARCHAR) | What is the toll for light vehicles at the plaza where the toll for heavy vehicles with 2 axles is r87.00? | SELECT light_vehicle FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R87.00" |
CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR) | What is the name of the plaza where the toll for heavy vehicles with 2 axles is r87.00? | SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R87.00" |
CREATE TABLE table_1211545_2 (heavy_vehicle__3_4_axles_ VARCHAR, name VARCHAR) | What is the toll for heavy vehicles with 3/4 axles at Verkeerdevlei toll plaza? | SELECT heavy_vehicle__3_4_axles_ FROM table_1211545_2 WHERE name = "Verkeerdevlei Toll Plaza" |
CREATE TABLE table_1211545_2 (location VARCHAR, name VARCHAR) | What is the location of the Carousel toll plaza? | SELECT location FROM table_1211545_2 WHERE name = "Carousel Toll Plaza" |
CREATE TABLE table_1211545_2 (light_vehicle VARCHAR, location VARCHAR) | What is the toll for light vehicles at the plaza between bela bela and modimolle? | SELECT light_vehicle FROM table_1211545_2 WHERE location = "between Bela Bela and Modimolle" |
CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR) | What is the name of the plaza where the told for heavy vehicles with 2 axles is r20.50? | SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R20.50" |
CREATE TABLE table_12141496_1 (inclination VARCHAR, alt_name VARCHAR) | What is the inclination when the alt name is OPS-1584? | SELECT inclination FROM table_12141496_1 WHERE alt_name = "OPS-1584" |
CREATE TABLE table_12141496_1 (apogee__km_ INTEGER, name VARCHAR) | What is the maximum apogee for samos f3-3? | SELECT MAX(apogee__km_) FROM table_12141496_1 WHERE name = "SAMOS F3-3" |
CREATE TABLE table_12141496_1 (perigee__km_ INTEGER, decay_date VARCHAR) | What was the maximum perigee on 1969-01-09? | SELECT MAX(perigee__km_) FROM table_12141496_1 WHERE decay_date = "1969-01-09" |
CREATE TABLE table_12141496_1 (alt_name VARCHAR, id VARCHAR) | How many alt names does 1964-011a have? | SELECT COUNT(alt_name) FROM table_12141496_1 WHERE id = "1964-011A" |
CREATE TABLE table_12142298_2 (shortstop VARCHAR, first_baseman VARCHAR) | Who played SS when paul konerko played 1st base? | SELECT shortstop FROM table_12142298_2 WHERE first_baseman = "Paul Konerko" |
CREATE TABLE table_12142298_2 (second_baseman VARCHAR, first_baseman VARCHAR) | Who played 2nd base when nomar garciaparra was at 1st base? | SELECT second_baseman FROM table_12142298_2 WHERE first_baseman = "Nomar Garciaparra" |
CREATE TABLE table_12142298_2 (rightfielder VARCHAR, starting_pitcher VARCHAR) | Who was the RF when the SP was vicente padilla? | SELECT rightfielder FROM table_12142298_2 WHERE starting_pitcher = "Vicente Padilla" |
CREATE TABLE table_12142298_2 (shortstop VARCHAR, starting_pitcher VARCHAR, second_baseman VARCHAR, centerfielder VARCHAR) | Who was the SS when jim lefebvre was at 2nd, willie davis at CF, and don drysdale was the SP. | SELECT shortstop FROM table_12142298_2 WHERE second_baseman = "Jim Lefebvre" AND centerfielder = "Willie Davis" AND starting_pitcher = "Don Drysdale" |
CREATE TABLE table_1218784_1 (top_scorer VARCHAR, gf VARCHAR) | Who is the top scorer where gf is 41? | SELECT top_scorer FROM table_1218784_1 WHERE gf = 41 |
CREATE TABLE table_1218784_1 (goals VARCHAR, season VARCHAR) | How many goals were scored in the 2005-06 season? | SELECT goals FROM table_1218784_1 WHERE season = "2005-06" |
CREATE TABLE table_1218784_1 (season VARCHAR, rank VARCHAR) | How many seasons had a rank of 16? | SELECT COUNT(season) FROM table_1218784_1 WHERE rank = 16 |
CREATE TABLE table_1218784_1 (manager VARCHAR, rank VARCHAR) | Who is the manager whose rank is 16? | SELECT manager FROM table_1218784_1 WHERE rank = 16 |
CREATE TABLE table_1218784_1 (rank VARCHAR, manager VARCHAR) | What is the rank of manager Rob Mcdonald? | SELECT COUNT(rank) FROM table_1218784_1 WHERE manager = "Rob McDonald" |
CREATE TABLE table_12310814_1 (order__number VARCHAR, original_artist VARCHAR) | What's the order number of the song originally performed by Rickie Lee Jones? | SELECT order__number FROM table_12310814_1 WHERE original_artist = "Rickie Lee Jones" |
CREATE TABLE table_12310814_1 (result VARCHAR, episode VARCHAR) | What was the result of the Top 3 episode? | SELECT result FROM table_12310814_1 WHERE episode = "Top 3" |
CREATE TABLE table_12310814_1 (song_choice VARCHAR, original_artist VARCHAR) | What's the total number of songs originally performed by Anna Nalick? | SELECT COUNT(song_choice) FROM table_12310814_1 WHERE original_artist = "Anna Nalick" |
CREATE TABLE table_12310814_1 (song_choice VARCHAR, original_artist VARCHAR) | Which one of the songs was originally performed by Rickie Lee Jones? | SELECT song_choice FROM table_12310814_1 WHERE original_artist = "Rickie Lee Jones" |
CREATE TABLE table_12310814_1 (original_artist VARCHAR, episode VARCHAR) | What's the original artist of the song performed in the top 3 episode? | SELECT original_artist FROM table_12310814_1 WHERE episode = "Top 3" |
CREATE TABLE table_123462_2 (_number_of_seats_won VARCHAR, election VARCHAR) | What is the # of seats one for the election in 1974? | SELECT _number_of_seats_won FROM table_123462_2 WHERE election = 1974 |
CREATE TABLE table_123462_2 (_number_of_seats_won VARCHAR, _number_of_total_votes VARCHAR) | How many times was the # of total votes 2582322? | SELECT COUNT(_number_of_seats_won) FROM table_123462_2 WHERE _number_of_total_votes = 2582322 |
CREATE TABLE table_123462_2 (election VARCHAR, _number_of_seats_won VARCHAR) | What year was the election when the # of seats won was 65? | SELECT election FROM table_123462_2 WHERE _number_of_seats_won = 65 |
CREATE TABLE table_123462_2 (election VARCHAR, _number_of_candidates_nominated VARCHAR) | What is the election year when the # of candidates nominated was 262? | SELECT COUNT(election) FROM table_123462_2 WHERE _number_of_candidates_nominated = 262 |
CREATE TABLE table_123462_2 (_number_of_total_votes INTEGER) | What was the lowest # of total votes? | SELECT MIN(_number_of_total_votes) FROM table_123462_2 |
CREATE TABLE table_1242447_1 (strongs_words_compounded VARCHAR, english_spelling VARCHAR) | What is the strongs words compounded when the english spelling is jonadab? | SELECT strongs_words_compounded FROM table_1242447_1 WHERE english_spelling = "Jonadab" |
CREATE TABLE table_1242447_1 (strongs_words_compounded VARCHAR, strongs_transliteration VARCHAR) | What is the strong words compounded when the strongs transliteration is yowyariyb? | SELECT strongs_words_compounded FROM table_1242447_1 WHERE strongs_transliteration = "Yowyariyb" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.