I tried the following in an Oracle Database SQL>create table t (names varchar2(200)); Table created. SQL>insert into t values('Sun, Denis'); 1 row created. SQL>insert into t values('John,Smith'); 1 row created. SQL>insert into t values(' Kyte , Tom'); 1 row created. SQL>commit; Commit complete. SQL> SQL> SQL>select * from t; NAMES