Subject Re: [firebird-support] Re: Length of String < 10 in SQL Statement - how?
Author Magnus Titho
hi_feroz schrieb am 27.01.2005 10:17:
>
>
> In Delphi index starts at 0.

Er, not really.
Text := 'Hello';

In Delphi:
copy(Text, 2, 1) -> 'e'

In SQL:
substring(Text from 2 for 1) -> 'e'


Magnus