Hi,
a little question about the tagset SQL.
I used it but all my numeric fields with a format = 20.3 are understood like varchar(20). Is there any reason ?
The problem is the missing values.
I modified the tagset to have
do /if cmp(_value_, '.');
put 'NULL';
But with these varchar fields, it doesn't understand the dot alone because the value is a dot quoted : '.'
I tried to put
do /if cmp(_value_, "'.'");
put 'NULL';
or this :
do /if cmp(_value_, ''.'');
put 'NULL';
It doesn't work.
Any idea ?
Stephane.
Message was edited by: Stephane
Message was edited by: Stephane