I want to write a sql statement to trim a string \'Hello\' from the string \"Hello World\'. Please suggest.
use "LEFT"
select left('Hello World', 5)
or use "SUBSTRING"
select substring('Hello World', 1, 5)