Quick Search:
 
 Oracle PL/SQL: String Functions: LTRIM Jump to:  
Category: >> Oracle PL/SQL >> String Functions: LTRIM  

<< lastnext >>

Snippet Name: String Functions: LTRIM

Description: The ltrim function removes all specified characters from the left-hand side of a string.

Also see:
» FUNCTIONS: Deterministic
» FUNCTIONS: Nested Functions
» FUNCTIONS: IF statement
» FUNCTIONS: date/time
» FUNCTIONS: Sample functions
» FUNCTIONS: drop
» FUNCTIONS: Recompile
» FUNCTIONS: DEBUG mode
» FUNCTIONS: IN OUT parameter
» FUNCTIONS: with output parameters
» FUNCTIONS: with parameters
» FUNCTIONS: without parameters
» FUNCTIONS: Create function
» FUNCTIONS: special restrictions
» FUNCTIONS: System Privileges
» IN Function
» Built-In Functions: CASE
» Built-In Functions: DECODE
» SUBST and INSTR together
» INSTR (InString)
» SUBSTR (SubString)
» String Functions: REVERSE
» String Functions: LENGTH
» String Functions: INSTR
» String Functions: CONCAT
» String Functions: CHAR
» String Functions: INITCAP
» String Functions: LOWER
» String Functions: UPPER
» Date Functions: NUMTOYMINTERVAL

Comment: (none)

Language: PL/SQL
Highlight Mode: PLSQL
Last Modified: March 10th, 2009

SELECT LTRIM('   milk') FROM dual; 
returns 'milk' 
 
SELECT LTRIM('   milk', ' ') FROM dual; 
returns 'milk' 
 
SELECT LTRIM('000123', '0') FROM dual; 
returns '123' 
 
SELECT LTRIM('123123milk'', '123') from dual; 
returns 'milk' 
 
select ltrim('123123milk123', '123') from dual; 
returns 'milk123' 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org