SQL wild card is % (percentage sign).
Try this for your query.
Select * from forumposts where comment_to like '%'
which will give you every result with any value.
Select * from forumposts where comment_to like 'a%'
will give you anything that starts with the character "a".