Last active
November 2, 2015 11:02
-
-
Save springcome/b9f54a6dc5068bdcd333 to your computer and use it in GitHub Desktop.
Oracle Clob Type, Text append
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UPDATE table_name SET clob_column = clob_column + 'append' WHERE id_column = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UPDATE table_name SET clob_column = clob_column || 'append' WHERE id_column = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment