Subject | Re: Length of String < 10 in SQL Statement - how? |
---|---|
Author | hi_feroz |
Post date | 2005-01-27T09:17:47Z |
> 1. If the column-text has 10 or more characters, it should returnjust
> the one character at position 10.In Delphi index starts at 0.
> (In Delphi: copy(Text, 10, 1))
>
but in sql, it seems it starts at 1? because in this case when the
10th place is empty (meaning 1,2,3,4,5,6,7,8,9,10) it returns the
record.
Thanks to Magnus and Thomas for their replies..