char type with 50 characters
SQL> SQL> create table MyTable( 2 bean_name char(50 char) 3 ); Table created. SQL> SQL> desc MyTable; Name Null? Type ----------------------------------------------------------------------------------------------------------------- -------- ---------------------------------------------------------------------------- BEAN_NAME CHAR(50 CHAR) SQL> SQL> drop table MyTable; Table dropped. SQL>