|
|
FULL A - Z Oracle Function Library (formerly named "Morgan's Library")
Term: CHAR
Definition: CREATE TABLE test (column_1 CHAR(10)); This creates a CHAR column with a maximum data size of 10 characters. Since data stored in a CHAR is space-padded, it is an inefficient way to store variable length strings. It is much more efficient to use the VARCHAR2 data type when storing variable-length strings. Also See: Definition & Examples: VARCHAR2 Data Type Definition & Examples: VARCHAR Data Type Related Links: Related Code Snippets:
|
Home | Search | Code Library | Sponsors | Privacy | Terms of Use | Contact Us | © 2003 - 2024 psoug.org |