A table contains the string "Hello world!"
Thinking of * as the ordinary wildcard character, how can I write a REGEXP that will evalute to true for 'W*rld!'
but false for 'H*rld!'
since H is part of another word. 'W*rld'
should evalute to false as well because of the trailing '!'