If I have a simple SELECT statement like this:
SELECT JSON_EXTRACT('{"username":"Alexander"}', '$.username');
I would expect it to return Alexander , but instead it returns "Alexander".
How can I get rid of the quotes? Why does this function even return the quotes too?
The ->> operator can be used wherever JSON_UNQUOTE(JSON_EXTRACT()) would be allowed..