Revision: 71588
                            
                                                            
                                    
                                        
Initial Code
                                    
                                    
                                                            
                                    
                                        
Initial URL
                                    
                                    
                                                            
                                    
                                        
Initial Description
                                    
                                    
                                                            
                                    
                                        
Initial Title
                                    
                                    
                                                            
                                    
                                        
Initial Tags
                                    
                                    
                                                            
                                    
                                        
Initial Language
                                    
                                    
                                                    
                        at March 2, 2017 10:42 by bbrumm
                            
                            Initial Code
--TO_CLOB
--Example 1
SELECT first_name, TO_CLOB(first_name) AS clob_value
FROM student
WHERE student_id = 1;
--Example 2
CREATE TABLE datatype_test (
nclob_column NCLOB
);
INSERT INTO datatype_test (nclob_column)
VALUES ('This is ä tëst');
SELECT nclob_column, TO_CLOB(nclob_column) AS clobvalue
FROM datatype_test;
                                Initial URL
http://www.databasestar.com/oracle-to_clob/
Initial Description
A few examples of the TO_CLOB function.
Initial Title
Oracle TO_CLOB Function
Initial Tags
sql, Oracle
Initial Language
SQL