Answers for "Pick the code which shows the name of winner's names beginning with C and ending in n"

0

Pick the code which shows the name of winner's names beginning with C and ending in n

SELECT winner FROM nobel
 WHERE winner LIKE 'C%' AND winner LIKE '%n'
Posted by: Guest on September-29-2021

Code answers related to "Pick the code which shows the name of winner's names beginning with C and ending in n"

Browse Popular Code Answers by Language