This part covers creating JSON columns in a database table, partitioning such tables, replicating them using Oracle GoldenGate, and character-set encoding of JSON data. It covers the use of SQL/JSON condition is json
as a check constraint to ensure that the data in a column is well-formed JSON data.
Chapters
is json
as a check constraint to ensure that data inserted into a column is (well-formed) JSON data. Oracle recommends that you always use an is_json
check constraint when you create a column intended for JSON data.is json
and is not json
are complementary. They test whether their argument is syntactically correct, that is, well-formed, JSON data. You can use them in a CASE
expression or the WHERE
clause of a SELECT
statement.json_value
.