Computer Science, asked by harsh888879, 5 months ago

Which keyword is used to select rows containing column that match a

wildcard pattern?​

Answers

Answered by LEGEND778
8

Answer:

SELECT columns FROM table WHERE test_column [NOT] LIKE 'pattern' ESCAPE 'escape_char'; The syntax is the same as the SELECT statement in “To filter rows by matching a pattern,” earlier in this chapter, except for the ESCAPE clause.

Explanation:

Similar questions