Wild Card with % : SELECT * FROM [table] WHERE [column_name] Like '%Value%'
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%'
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