On Fri, Oct 29, 2021 at 2:06 PM David M. Calascibetta <
david(at)calascibetta(dot)com> wrote:
> I disagree about it being a feature request.
>
> I was only using substr to demonstrate the problem.
>
> Here is the problem without using any functions:
>
>
>
> create table x (a char(1));
>
> insert into x values ('x');
>
> insert into x values (' ');
>
> select length(a) from x;
>
> 1
>
> 0
>
>
>
If length(a) isn't a function call then what is it?
David J.