answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MIN(city_population__2009_) FROM table_name_15 WHERE city_area_km_2__ = 6 AND district = "rajanpur district" AND serial_no < 29
What was the lowest city population for the district of rajanpur district with a area of 6 km squared and a serial number less than 29?
CREATE TABLE table_name_15 (city_population__2009_ INTEGER, serial_no VARCHAR, city_area_km_2__ VARCHAR, district VARCHAR)
SELECT mens_doubles FROM table_28211988_1 WHERE mens_singles = "Jean-Michel Saive"
Who are all men's doubles when men's singles is Jean-Michel Saive?
CREATE TABLE table_28211988_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT no_5 FROM table_name_39 WHERE no_8 = "logan" AND no_10 = "ethan" AND no_4 = "jacob"
Name the No. 5 which has a No. 8 of logan, and a No. 10 of ethan, and a No. 4 of jacob?
CREATE TABLE table_name_39 (no_5 VARCHAR, no_4 VARCHAR, no_8 VARCHAR, no_10 VARCHAR)
SELECT high_assists FROM table_29556461_7 WHERE date = "January 5"
Who had the most assists and how many did they have on January 5?
CREATE TABLE table_29556461_7 (high_assists VARCHAR, date VARCHAR)
SELECT date FROM table_name_56 WHERE game > 6
What dates were the games after game 6 played?
CREATE TABLE table_name_56 (date VARCHAR, game INTEGER)
SELECT writer_s_ FROM table_25800134_1 WHERE airdate = "December 1, 1956"
Who wrote the episode that aired December 1, 1956?
CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, airdate VARCHAR)
SELECT COUNT(pop_density__per_km²_) FROM table_255602_1 WHERE area__km²_ = "48.67"
What is the population density where area is 48.67?
CREATE TABLE table_255602_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR)
SELECT MAX(season__number) FROM table_28019988_5 WHERE us_viewers__million_ = "2.31" AND written_by = "Tom Garrigus"
What episode number of the season was written by Tom Garrigus and had 2.31 million u.s. viewers?
CREATE TABLE table_28019988_5 (season__number INTEGER, us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT attendance FROM table_name_1 WHERE game = 2
Game 2 has how much attendance?
CREATE TABLE table_name_1 (attendance VARCHAR, game VARCHAR)
SELECT COUNT(group) FROM table_2581397_3 WHERE weight__kg_ = "57.5"
How man teams had a total weight of 57.5?
CREATE TABLE table_2581397_3 (group VARCHAR, weight__kg_ VARCHAR)
SELECT code FROM table_2801442_1 WHERE population__2011_census_ = 312520
What's the code of the district in which 312520 people lived in 2011?
CREATE TABLE table_2801442_1 (code VARCHAR, population__2011_census_ VARCHAR)
SELECT school FROM table_name_57 WHERE city = "brookville"
Which school comes from Brookville?
CREATE TABLE table_name_57 (school VARCHAR, city VARCHAR)
SELECT the_winner FROM table_name_92 WHERE the_presenter = "tatiana stefanidou"
Who won when the presenter was Tatiana Stefanidou?
CREATE TABLE table_name_92 (the_winner VARCHAR, the_presenter VARCHAR)
SELECT T1.staff_name, T2.job_title_code FROM staff AS T1 JOIN staff_department_assignments AS T2 ON T1.staff_id = T2.staff_id ORDER BY T2.date_assigned_to DESC LIMIT 1
What is the name and job title of the staff who was assigned the latest?
CREATE TABLE staff (staff_name VARCHAR, staff_id VARCHAR); CREATE TABLE staff_department_assignments (job_title_code VARCHAR, staff_id VARCHAR, date_assigned_to VARCHAR)
SELECT AVG(total) FROM table_name_96 WHERE lecturers = 6 AND professors < 48
What is the total in the case where theere are 6 lecturers and fewer than 48 professors?
CREATE TABLE table_name_96 (total INTEGER, lecturers VARCHAR, professors VARCHAR)
SELECT outcome FROM table_name_50 WHERE surface = "clay" AND score = "4–6, 7–5, 2–6"
Which outcome has a Surface of clay and a Score of 4–6, 7–5, 2–6?
CREATE TABLE table_name_50 (outcome VARCHAR, surface VARCHAR, score VARCHAR)
SELECT year__ceremony_ FROM table_name_98 WHERE original_title = "ničiji sin"
What is the year of the ceremony with the original title ničiji sin?
CREATE TABLE table_name_98 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT date FROM table_name_48 WHERE no_built < 10 AND loco_nos = "31-35"
On what date were less than 10 built with a locomotive number of 31-35?
CREATE TABLE table_name_48 (date VARCHAR, no_built VARCHAR, loco_nos VARCHAR)
SELECT song_choice FROM table_name_23 WHERE original_artist = "bonnie tyler"
Which song choice was originally performed by Bonnie Tyler?
CREATE TABLE table_name_23 (song_choice VARCHAR, original_artist VARCHAR)
SELECT original_west_end_cast FROM table_name_1 WHERE original_broadway_cast = "audrie neenan"
Who was in the Original West End Cast when the Original Broadway Cast was audrie neenan?
CREATE TABLE table_name_1 (original_west_end_cast VARCHAR, original_broadway_cast VARCHAR)
SELECT label FROM table_name_79 WHERE date = "october 25, 1984" AND format = "stereo lp"
What Label released on October 25, 1984, in the format of Stereo LP?
CREATE TABLE table_name_79 (label VARCHAR, date VARCHAR, format VARCHAR)
SELECT game FROM table_27756474_2 WHERE high_rebounds = "Marc Gasol (10)"
Which game did marc gasol (10) have the high rebounds?
CREATE TABLE table_27756474_2 (game VARCHAR, high_rebounds VARCHAR)
SELECT northern_ireland FROM table_10128185_2 WHERE total = 35
How many votes did Northern Ireland cast if the total was 35?
CREATE TABLE table_10128185_2 (northern_ireland VARCHAR, total VARCHAR)
SELECT institution FROM table_name_55 WHERE location = "athens, ga, us"
What institution is located in athens, ga, us?
CREATE TABLE table_name_55 (institution VARCHAR, location VARCHAR)
SELECT date_of_birth FROM Customers WHERE customer_status_code = 'Good Customer'
When are the birthdays of customer who are classified as 'Good Customer' status?
CREATE TABLE Customers (date_of_birth VARCHAR, customer_status_code VARCHAR)
SELECT start FROM table_name_22 WHERE engine = "ford cosworth dfx" AND year > 1981 AND entrant = "kraco enterprises"
What start has a ford cosworth dfx as the engine, a year later than 1981, and kraco enterprises as the entrant?
CREATE TABLE table_name_22 (start VARCHAR, entrant VARCHAR, engine VARCHAR, year VARCHAR)
SELECT AVG(overall) FROM table_name_26 WHERE pick__number < 15
What is the overall pick average with the pick # lower than 15?
CREATE TABLE table_name_26 (overall INTEGER, pick__number INTEGER)
SELECT MAX(season) FROM table_name_17 WHERE total_prize_money = "$108,000"
What was the highest season number with a total prize of $108,000?
CREATE TABLE table_name_17 (season INTEGER, total_prize_money VARCHAR)
SELECT name FROM table_name_95 WHERE locomotive = "n464"
What is the name for the locomotive n464?
CREATE TABLE table_name_95 (name VARCHAR, locomotive VARCHAR)
SELECT attendance FROM table_name_99 WHERE away = "hispano"
What was the attendance for the game with an away team of Hispano?
CREATE TABLE table_name_99 (attendance VARCHAR, away VARCHAR)
SELECT date FROM table_name_73 WHERE opponent = "st albans city" AND result = "drew 0-0"
Name the date of st albans city for result of drew 0-0
CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT type FROM table_256286_61 WHERE yes_votes = 546255
What is the type when yes votes are 546255?
CREATE TABLE table_256286_61 (type VARCHAR, yes_votes VARCHAR)
SELECT country FROM table_name_61 WHERE place = "t10" AND player = "jay haas"
What country is player jay haas, who is in t10 place, from?
CREATE TABLE table_name_61 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT try_bonus FROM table_name_52 WHERE lost = "5" AND points = "73"
What is Try Bonus, when Lost is "5", and when Points is "73"?
CREATE TABLE table_name_52 (try_bonus VARCHAR, lost VARCHAR, points VARCHAR)
SELECT AVG(rating) FROM table_name_51 WHERE player = "john kidd" AND yards > 0
What is the average rating for john kidd with more than 0 yards?
CREATE TABLE table_name_51 (rating INTEGER, player VARCHAR, yards VARCHAR)
SELECT MAX(points_2) FROM table_17359181_1 WHERE goal_average_1 = "0.65"
What is the highest value for Points 2 when the goal average 1 is 0.65?
CREATE TABLE table_17359181_1 (points_2 INTEGER, goal_average_1 VARCHAR)
SELECT athlete FROM table_name_83 WHERE time = "6:02.46"
who is the athlete with the time 6:02.46?
CREATE TABLE table_name_83 (athlete VARCHAR, time VARCHAR)
SELECT name FROM building WHERE height_feet >= 200 AND floors >= 20
List the names of buildings with at least 200 feet of height and with at least 20 floors.
CREATE TABLE building (name VARCHAR, height_feet VARCHAR, floors VARCHAR)
SELECT SUM(attendance) FROM table_name_33 WHERE date = "january 4, 2008"
How many people were in attendance on January 4, 2008?
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
SELECT nominee FROM table_name_73 WHERE award_ceremony = "tony award" AND category = "best performance by a leading actor in a musical"
Which Nominee has an Award Ceremony of tony award, and a Category of the best performance by a leading actor in a musical?
CREATE TABLE table_name_73 (nominee VARCHAR, award_ceremony VARCHAR, category VARCHAR)
SELECT race FROM table_name_53 WHERE winning_driver = "jacky ickx" AND fastest_lap = "clay regazzoni"
Which race had Jacky Ickx as the winner and Clay Regazzoni with the fastest lap?
CREATE TABLE table_name_53 (race VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR)
SELECT engine FROM table_name_12 WHERE driver = "riccardo patrese"
What engine did Riccardo Patrese use?
CREATE TABLE table_name_12 (engine VARCHAR, driver VARCHAR)
SELECT player FROM table_name_79 WHERE country = "united states" AND to_par = "wd"
What is Player, when Country is "United States", and when To Par is "WD"?
CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT chassis FROM table_21977704_1 WHERE constructor = "Alta"
Name the chassis for alta
CREATE TABLE table_21977704_1 (chassis VARCHAR, constructor VARCHAR)
SELECT aircraft FROM table_name_83 WHERE retired = "—" AND introduced = 2004
What aircraft was introduced in 2004 and has a retired of —?
CREATE TABLE table_name_83 (aircraft VARCHAR, retired VARCHAR, introduced VARCHAR)
SELECT un_operation_title FROM table_10121127_1 WHERE un_operation_name = "UNCOK"
What is the UN operation title with the UN operation name, Uncok?
CREATE TABLE table_10121127_1 (un_operation_title VARCHAR, un_operation_name VARCHAR)
SELECT numbers FROM table_name_49 WHERE power__horsepower_ > 220 AND type = "thn"
What is the numbers of the thn unit with a power greater than 220?
CREATE TABLE table_name_49 (numbers VARCHAR, power__horsepower_ VARCHAR, type VARCHAR)
SELECT MAX(poles) FROM table_1012730_1 WHERE avg_finish = "19.1"
How many poles had an average finish of 19.1?
CREATE TABLE table_1012730_1 (poles INTEGER, avg_finish VARCHAR)
SELECT away_team AS score FROM table_name_30 WHERE home_team = "st kilda"
What was St Kilda's away team score?
CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)
SELECT incumbent FROM table_2668401_12 WHERE candidates = "Joseph Hiester (DR) 83.2% Roswell Wells (F) 16.8%"
Name the incumbent for candidates Joseph Hiester (dr) 83.2% Roswell Wells (f) 16.8%.
CREATE TABLE table_2668401_12 (incumbent VARCHAR, candidates VARCHAR)
SELECT away_team FROM table_name_52 WHERE venue = "western oval"
Who was the away team at Western Oval?
CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR)
SELECT bush_percentage FROM table_1733457_1 WHERE others_number = 90
Name the bush% for where others # is 90
CREATE TABLE table_1733457_1 (bush_percentage VARCHAR, others_number VARCHAR)
SELECT nationality FROM table_name_90 WHERE rank = 4
Which nationality has rank 4?
CREATE TABLE table_name_90 (nationality VARCHAR, rank VARCHAR)
SELECT 2011 FROM table_name_66 WHERE 2009 = "15–2"
Which 2011 has a 2009 of 15–2?
CREATE TABLE table_name_66 (Id VARCHAR)
SELECT d_44_√ FROM table_name_27 WHERE d_46_√ = "d 26"
What's the D 44 √ when D 46 √ is d 26?
CREATE TABLE table_name_27 (d_44_√ VARCHAR, d_46_√ VARCHAR)
SELECT saturated_fat FROM table_name_94 WHERE total_fat = "100g" AND polyunsaturated_fat = "11g"
What is the saturated fat with a total fat of 100g and 11g of polyunsaturated fat?
CREATE TABLE table_name_94 (saturated_fat VARCHAR, total_fat VARCHAR, polyunsaturated_fat VARCHAR)
SELECT total FROM table_name_70 WHERE rank_by_average = "74" AND place = "8th"
What is the total with a 74 rank by average for 8th place?
CREATE TABLE table_name_70 (total VARCHAR, rank_by_average VARCHAR, place VARCHAR)
SELECT median_family_income FROM table_name_23 WHERE per_capita_income = "$24,114"
What is the median family income when the per capita is $24,114?
CREATE TABLE table_name_23 (median_family_income VARCHAR, per_capita_income VARCHAR)
SELECT political_party FROM table_name_22 WHERE name = "rexhep bej mitrovica"
Which Political Party has a Name of rexhep bej mitrovica?
CREATE TABLE table_name_22 (political_party VARCHAR, name VARCHAR)
SELECT COUNT(no) FROM table_28005100_1 WHERE title = "Kam Wa7ed Fina"
How many numbers are there for kam wa7ed fina?
CREATE TABLE table_28005100_1 (no VARCHAR, title VARCHAR)
SELECT province FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard"
What is the province where the soccer statium is terrain #2 of complexe sportif claude-robillard?
CREATE TABLE table_27369069_4 (province VARCHAR, soccer_stadium VARCHAR)
SELECT AVG(rank) FROM table_name_60 WHERE silver < 0
Which mean rank had a silver number smaller than 0?
CREATE TABLE table_name_60 (rank INTEGER, silver INTEGER)
SELECT incumbent FROM table_name_73 WHERE republican = "dan mansell"
Which Incumbent has a Republican of dan mansell?
CREATE TABLE table_name_73 (incumbent VARCHAR, republican VARCHAR)
SELECT set_3 FROM table_name_79 WHERE set_4 = "25-21" AND date = "jun 14"
What is Set 3, when Set 4 is 25-21, and when Date is Jun 14?
CREATE TABLE table_name_79 (set_3 VARCHAR, set_4 VARCHAR, date VARCHAR)
SELECT lost FROM table_name_66 WHERE points_for = "319"
What is the loss with 319 points?
CREATE TABLE table_name_66 (lost VARCHAR, points_for VARCHAR)
SELECT opponent FROM table_name_92 WHERE date = "september 20, 1992"
Which Opponent has a Date of september 20, 1992?
CREATE TABLE table_name_92 (opponent VARCHAR, date VARCHAR)
SELECT MIN(episode__number) FROM table_25764073_3 WHERE writer_s_ = "Anne Brooksbank and Vicki Madden"
Name the least episode number for anne brooksbank and vicki madden
CREATE TABLE table_25764073_3 (episode__number INTEGER, writer_s_ VARCHAR)
SELECT percent_of_slovenes_1951 FROM table_10797636_1 WHERE village__german_ = "Bach"
What was the percent of slovenes 1951 for bach?
CREATE TABLE table_10797636_1 (percent_of_slovenes_1951 VARCHAR, village__german_ VARCHAR)
SELECT nation_of_citizenship FROM table_name_78 WHERE type_of_vehicle = "stock car" AND year = 1999
What Nation of citizenship has a stock car vehicle with a year of 1999?
CREATE TABLE table_name_78 (nation_of_citizenship VARCHAR, type_of_vehicle VARCHAR, year VARCHAR)
SELECT hotel_id, star_rating_code FROM HOTELS ORDER BY price_range
Show the id and star rating of each hotel, ordered by its price from low to high.
CREATE TABLE HOTELS (hotel_id VARCHAR, star_rating_code VARCHAR, price_range VARCHAR)
SELECT opponents_in_the_final FROM table_name_44 WHERE tournament = "puebla"
What is the Opponents from the final with a Tournament that is puebla?
CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, tournament VARCHAR)
SELECT hanzi FROM table_name_46 WHERE origin = "hong kong" AND launch = "1998"
What is the Hanzi of Hong Kong in 1998?
CREATE TABLE table_name_46 (hanzi VARCHAR, origin VARCHAR, launch VARCHAR)
SELECT finalists FROM table_name_88 WHERE not_winning_editions = "2008, 2012, 2013"
What is the Finalists that has 2008, 2012, 2013 as Not winning editions
CREATE TABLE table_name_88 (finalists VARCHAR, not_winning_editions VARCHAR)
SELECT T1.driverid, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds DESC LIMIT 1
What is the id and family name of the driver who has the longest laptime?
CREATE TABLE drivers (driverid VARCHAR, surname VARCHAR); CREATE TABLE laptimes (driverid VARCHAR, milliseconds VARCHAR)
SELECT COUNT(placings) FROM table_name_92 WHERE nation = "east germany"
What was the placing of the nation of East Germany?
CREATE TABLE table_name_92 (placings VARCHAR, nation VARCHAR)
SELECT COUNT(no_result) FROM table_name_16 WHERE losses > 1 AND played = 38 AND wins < 19
Name the total number of no result for losses more than 1 and played of 38 and wins less than 19
CREATE TABLE table_name_16 (no_result VARCHAR, wins VARCHAR, losses VARCHAR, played VARCHAR)
SELECT pennant FROM table_name_8 WHERE builder = "denny, dumbarton"
What is the pennant with Denny, Dumbarton as the builder?
CREATE TABLE table_name_8 (pennant VARCHAR, builder VARCHAR)
SELECT team FROM table_name_74 WHERE record = "17–8"
Which Team has a Record of 17–8?
CREATE TABLE table_name_74 (team VARCHAR, record VARCHAR)
SELECT MAX(laps) FROM table_name_43 WHERE driver = "jackie stewart"
what is the most laps for driver jackie stewart?
CREATE TABLE table_name_43 (laps INTEGER, driver VARCHAR)
SELECT years FROM table_name_87 WHERE league = "400 (21)"
The league of 400 (21) has what years listed?
CREATE TABLE table_name_87 (years VARCHAR, league VARCHAR)
SELECT open_1st_viii FROM table_name_76 WHERE crew = 2012
What is the Open 1st VIII for the 2012 crew?
CREATE TABLE table_name_76 (open_1st_viii VARCHAR, crew VARCHAR)
SELECT award_show FROM table_name_66 WHERE year = 2004 AND category = "most popular drama"
On which award show was Bad Girls nominated for Most Popular Drama in 2004?
CREATE TABLE table_name_66 (award_show VARCHAR, year VARCHAR, category VARCHAR)
SELECT other_deaths FROM table_name_81 WHERE israeli_and_or_foreigner_wounded = "242"
How many other deaths were in the attack with 242 Israelis and/or foreigners wounded?
CREATE TABLE table_name_81 (other_deaths VARCHAR, israeli_and_or_foreigner_wounded VARCHAR)
SELECT MIN(first_elected) FROM table_2668420_17
When was the earliest person elected?
CREATE TABLE table_2668420_17 (first_elected INTEGER)
SELECT capacity FROM table_27599216_6 WHERE institution = "University of Alberta"
What is the capacity for the institution of university of alberta?
CREATE TABLE table_27599216_6 (capacity VARCHAR, institution VARCHAR)
SELECT producer_s_ FROM table_name_94 WHERE writer_s_ = "robert sproul-cran"
Which producer worked with Robert Sproul-cran as writer?
CREATE TABLE table_name_94 (producer_s_ VARCHAR, writer_s_ VARCHAR)
SELECT AVG(year) FROM table_name_30 WHERE role = "alvin seville simon seville david 'dave' seville" AND title = "the chipmunk adventure"
What's the average year for the Role of alvin seville simon seville david 'dave' seville, and a Title of the chipmunk adventure?
CREATE TABLE table_name_30 (year INTEGER, role VARCHAR, title VARCHAR)
SELECT position FROM table_name_73 WHERE school_club_team = "far eastern"
Who is the position from the school/club Far Eastern?
CREATE TABLE table_name_73 (position VARCHAR, school_club_team VARCHAR)
SELECT high_assists FROM table_17311759_4 WHERE high_rebounds = "Al Horford (17)"
Who made highest assists when high rebounds was Al Horford (17)
CREATE TABLE table_17311759_4 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT hdtv FROM table_name_82 WHERE language = "english" AND television_service = "mtv dance"
What is HDTV, when Language is English, and when Television Service is MTV Dance?
CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR)
SELECT position FROM table_name_59 WHERE year = 2012
What position did he finish in 2012?
CREATE TABLE table_name_59 (position VARCHAR, year VARCHAR)
SELECT MAX(founded) FROM table_2076595_1 WHERE school = "Southern Vermont College"
When was Southern Vermont College founded?
CREATE TABLE table_2076595_1 (founded INTEGER, school VARCHAR)
SELECT MIN(league_goals) FROM table_name_46 WHERE fa_cup_apps = "0" AND total_apps = "1 (3)"
What is the lowest league goals that have 0 as the FA Cup Apps, with 1 (3) as totals apps?
CREATE TABLE table_name_46 (league_goals INTEGER, fa_cup_apps VARCHAR, total_apps VARCHAR)
SELECT date FROM table_name_70 WHERE format = "cd"
Which date is in CD format?
CREATE TABLE table_name_70 (date VARCHAR, format VARCHAR)
SELECT multiplier FROM table_name_98 WHERE front_side_bus = "200 mhz" AND frequency = "1200 mhz"
Which Multiplier has a Front Side Bus of 200 mhz, and a Frequency of 1200 mhz?
CREATE TABLE table_name_98 (multiplier VARCHAR, front_side_bus VARCHAR, frequency VARCHAR)
SELECT venue FROM table_name_6 WHERE date = "24/11/1992"
What is the venue of 24/11/1992?
CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)
SELECT period FROM table_21100348_10 WHERE average = "48.15"
What period was there a career average of 48.15?
CREATE TABLE table_21100348_10 (period VARCHAR, average VARCHAR)
SELECT guanay_municipality FROM table_2509202_2 WHERE tacacoma_municipality = "4.321"
What is the guanay municipality when the tacacoma municipality is 4.321?
CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, tacacoma_municipality VARCHAR)
SELECT record FROM table_name_31 WHERE location = "des moines, iowa , united states" AND method = "submission (arm-triangle choke)"
What is Record, when Location is "Des Moines, Iowa , United States", and when Method is "Submission (arm-triangle choke)"?
CREATE TABLE table_name_31 (record VARCHAR, location VARCHAR, method VARCHAR)
SELECT text FROM table_name_42 WHERE simplified_characters = "心猿 … 意马"
Which text has simplified characters of 心猿 … 意马?
CREATE TABLE table_name_42 (text VARCHAR, simplified_characters VARCHAR)