Oracle 8 SQL: I do have data like "VTR 564-31 / V16 H12 W08 E19 L14" from which I want to trim the second part => "VTR 564-31"
According to this website I can use the rtrim function
rtrim('123000', '0'); would return '123'
like this it works, but adapted to my use case, the following one does not trim at all? Do I have to escape the special character???
rtrim('VTR 564-31 / V16 H12 W08 E19 L14',' / ')