Data Archive
- Data Archive 6.5
- All Products
RTRIM (char)
|
|
---|---|
|
|
CREATE TABLE string_table (col1 VARCHAR(20)); INSERT INTO string_table VALUES ('pruned '); 1 row affected SELECT RTRIM(col1) FROM string_table; 1 row selected 1 -------------- pruned