在Oracle数据库中,LTRIM函数用于从字符串的开头去除指定字符(或字符集)。其语法如下:
LTRIM
LTRIM(string, [set])
参数说明:
string
set
例如,如果我们有一个字符串 ' hello world',要去除字符串开头的空格,可以使用以下查询:
' hello world'
SELECT LTRIM(' hello world') FROM dual;
执行结果为 'hello world'。
'hello world'