Syntax

Wild Card with _ : SELECT * FROM [table] WHERE [column_name] Like ‘V_n%’

Wild Card with [charlist] : SELECT * FROM [table] WHERE [column_name] Like ‘V[abc]n%’

Remarks

LIKE condition in WHERE clause is used to search for column values that matches the given pattern. Patterns are formed using following two wildcard characters