InterviewSolution
Saved Bookmarks
| 1. |
Which operator is used to return value from JSON columns after evaluating the path and unquoting the result?(a) ->(b) ->>(c) I got this question in quiz.My question is from Operators topic in chapter Data Type Reference, Operators and Functions of MySQL |
|
Answer» CORRECT option is (b) ->> Best explanation: The operator ‘–>>’ is used to return values from JSON COLUMNS after EVALUATING the path and unquoting the RESULT. It is equivalent to the FUNCTION ‘JSON_UNQUOTE(JSON_EXTRACT())’. |
|