Skip to content

Instantly share code, notes, and snippets.

@springcome
Last active November 2, 2015 11:02
Show Gist options
  • Select an option

  • Save springcome/b9f54a6dc5068bdcd333 to your computer and use it in GitHub Desktop.

Select an option

Save springcome/b9f54a6dc5068bdcd333 to your computer and use it in GitHub Desktop.
Oracle Clob Type, Text append
UPDATE table_name SET clob_column = clob_column + 'append' WHERE id_column = 1
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