How to remove question mark (?) that got into different fields of a table by a query in progress openedge or older version (9.1c)
Thanks
How to remove question mark (?) that got into different fields of a table by a query in progress openedge or older version (9.1c)
Thanks
The ? is Progress's representation for a missing value. To replace it, set the field to a legal value for that field.
For cases where you have trailing characters you want to get rid of - RIGHT-TRIM("string???", "?") will get rid of them for you. There are also LEFT-TRIM() and TRIM() functions you can use.