Palindromes
We have a table of a few english words called english_words
.
english_words
column_name | type |
---|---|
id | INTEGER |
word | VARCHAR |
Use a WHERE
clause to select all words that are palindromes.
Palindromes are words that have the same spelling backwards and forwards.
You might make use of the
reverse()
function for text.