Operators for LIKE Flashcards

1
Q

what does this operator search for WHERE CustomerName LIKE ‘a%’?

A

finds any values that start with A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does this operator search for WHERE CustomerName LIKE ‘%a’

A

finds any values that end with A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does this operator search for WHERE CustomerName LIKE ‘%or%’

A

finds any values that have OR in any position

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does this operator search for WHERE CustomerName LIKE ‘_r%’

A

finds any values that have R in the second position

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does this operator search for WHERE CustomerName LIKE ‘a_%_%’

A

finds any values that starts with A and are at least 3 characters in length

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does this operator search for WHERE ContactName LIKE ‘a%o’

A

finds any values that starts with A and ends with O

How well did you know this?
1
Not at all
2
3
4
5
Perfectly