what does this operator search for WHERE CustomerName LIKE ‘a%’?
finds any values that start with A
What does this operator search for WHERE CustomerName LIKE ‘%a’
finds any values that end with A
What does this operator search for WHERE CustomerName LIKE ‘%or%’
finds any values that have OR in any position
What does this operator search for WHERE CustomerName LIKE ‘_r%’
finds any values that have R in the second position
What does this operator search for WHERE CustomerName LIKE ‘a_%_%’
finds any values that starts with A and are at least 3 characters in length
What does this operator search for WHERE ContactName LIKE ‘a%o’
finds any values that starts with A and ends with O