Oracle PL/SQL Tutorial/Character String Functions/VSIZE — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:11, 26 мая 2010
Vsize returns the storage size of a string in Oracle
The general format for this function is: VSIZE(string).
SQL> SELECT VSIZE("Returns the storage size of a string") FROM dual;
VSIZE("RETURNSTHESTORAGESIZEOFASTRING")
---------------------------------------
36
SQL>
SQL>