Hi All,
I am trying to do an SQL query for records containing a certain character, say, c , in 'field'
I think if the character c is at the beginning, we use :
Select ... from table
where field like 'c % ' , where % is a wildcard.
Similar for cases where the character is at the end, i.e., we...