I am using Crystal 10 and MySQL 5.0. I have two tables with string fields that are linked, but one is a substring of the other.
With MySQL I would do this:
table1.field1 = substring(table2.field1,1,8)
to ignore the first character and only consider the following 8 characters.
How can I do this in Crystal 10?
With MySQL I would do this:
table1.field1 = substring(table2.field1,1,8)
to ignore the first character and only consider the following 8 characters.
How can I do this in Crystal 10?