Does the equivilent of a LEFT function in SQL Server exist in Informix? I am trying to perform the following statement:
DELETE FROM tctstam WHERE LEFT(Style, 1) = 'O'
i.e. delete all records from the tctstam table where the first character of the Style field is a 'O' character.
I am using
VB/ADO/ODBC to perform the delete.