Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
dev:sql:functions:character_length [2010/07/08 21:30]
els
dev:sql:functions:character_length [2010/07/09 20:06]
els
Line 1: Line 1:
 {{page>:​top_add&​nofooter&​noeditbtn}} {{page>:​top_add&​nofooter&​noeditbtn}}
 {{page>:​sql_bar&​nofooter&​noeditbtn}} {{page>:​sql_bar&​nofooter&​noeditbtn}}
 +
 +
 ====== Omnidex SQL Function: CHARACTER_LENGTH ====== ====== Omnidex SQL Function: CHARACTER_LENGTH ======
 ===== Description ===== ===== Description =====
Line 7: Line 9:
 CHARACTER_LENGTH should not be confused with $DATA_LENGTH and $COLUMN_LENGTH. ​ $DATA_LENGTH returns the number of characters plus the null-terminator for C STRING datatypes. ​ $COLUMN_LENGTH returns the length of the column as declared in the table. CHARACTER_LENGTH should not be confused with $DATA_LENGTH and $COLUMN_LENGTH. ​ $DATA_LENGTH returns the number of characters plus the null-terminator for C STRING datatypes. ​ $COLUMN_LENGTH returns the length of the column as declared in the table.
  
-This function returns ​a 4-byte integer.  ​+This function returns ​an INTEGER datatype.  ​
  
 ===== Syntax ===== ===== Syntax =====
Line 17: Line 19:
 ===== Examples ===== ===== Examples =====
 ==== Example 1: Column ==== ==== Example 1: Column ====
-<​code ​SQL>+<​code>​
 > select name, character_length(name) len from individuals;​ > select name, character_length(name) len from individuals;​
  
Line 33: Line 35:
  
 ==== Example 2: Character Expression ==== ==== Example 2: Character Expression ====
-<​code ​SQL>+<​code>​
 > select gender, name, char_length(gender || name) len from individuals;​ > select gender, name, char_length(gender || name) len from individuals;​
  
Line 47: Line 49:
  
 </​code>​ </​code>​
 +====== Additional Resources ======
 +
 +See also:
 +{{page>​dev:​sql:​functions:​see_also_string&​nofooter&​noeditbtn&​noheader}}
  
 {{page>:​bottom_add&​nofooter&​noeditbtn}} {{page>:​bottom_add&​nofooter&​noeditbtn}}
 
Back to top
dev/sql/functions/character_length.txt ยท Last modified: 2016/06/28 22:38 (external edit)