Subject | Re: Length of String < 10 in SQL Statement - how? |
---|---|
Author | hi_feroz |
Post date | 2005-01-27T09:44:45Z |
> > In Delphi index starts at 0.Thanks for refreshing my memory:)
>
> Er, not really.
> Text := 'Hello';
>
> In Delphi:
> copy(Text, 2, 1) -> 'e'
>
> In SQL:
> substring(Text from 2 for 1) -> 'e'
>
>
and thanx for the quick solution as well...;)