Hi,
I've a similar question to the one I asked at
http://www.dbforums.com/t982096.html. Given the following columns and their corresponding entries, how do I select only words beginning with a certain letter?
Code:
column1 column2 column3
cheer town greed
occupy serene addicted
provide astute recoup
able cool health
bright tanned abort
I was playing with something like the following to select words beginning with the letter 'A' without much luck:
Code:
SELECT column1, column2, column3
FROM words
WHERE ??? LIKE 'A%'
I don't know what to put in place of ???.
Hope someone can enlighten me
TIA