I like to do a select query with a where condition on a column of type NCLOB let's call it information
column. It has following format:
{ "firstName" : "name1", "lastName" : "lastName1" }
I want to do some thing like this
Select * from myTable where information.firsName = "targetName"
But I am not sure how to do it.
Any hints please?