The PLSQL LENGTHB function is used for returning the length of the specified string using bytes instead of characters.
The char accepted by the LENGTHB function in PLSQL can be of any of the datatypes such as CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB, or NCLOB.
The value returned by the LENGTHB function is of datatype NUMBER.
If char sent in the parameter has datatype CHAR, then the length includes all trailing blanks. If char is null, then this function returns null.
Syntax:
LENGTHB( string )
Parameters Used:
string – It is used to specify the string whose length you want to find out.
Supported Versions of Oracle/PLSQL:
- Oracle 12c
- Oracle 11g
- Oracle 10g
- Oracle 9i
- Oracle 8i
Example-1:
DECLARE Test_String string(20) := NULL; BEGIN dbms_output.put_line(LENGTHB(Test_String)); END;
Output:
NULL
Example-2:
DECLARE Test_String string(20) := ''; BEGIN dbms_output.put_line(LENGTHB(Test_String)); END;
Output:
NULL
Example-3:
DECLARE Test_String string(20) := ' '; BEGIN dbms_output.put_line(LENGTHB(Test_String)); END;
Output:
1
Example-4:
DECLARE Test_String string(20) := 'Geeksforgeeks'; BEGIN dbms_output.put_line(LENGTHB(Test_String)); END;
Output:
13
Example-5:
DECLARE Test_String string(20) := ' Geeksforgeeks '; BEGIN dbms_output.put_line(LENGTHB(Test_String)); END;
Output:
15
Recommended Posts:
- PLSQL | MOD Function
- PLSQL | COS Function
- PLSQL | TAN Function
- PLSQL | SIN Function
- PLSQL | ABS Function
- PLSQL | LEAST Function
- PLSQL | EXP Function
- PLSQL | LN Function
- PLSQL | LOG Function
- PLSQL | CHR Function
- PLSQL | LENGTH4 Function
- PLSQL | INITCAP Function
- PLSQL | LENGTHC Function
- PLSQL | SUBSTR Function
- PLSQL | UPPER Function
- PLSQL | COSH Function
- PLSQL | DBTIMEZONE Function
- PLSQL | EXTRACT Function
- PLSQL | ATAN2 Function
- PLSQL | LAST_DAY Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

