If I have a simple SELECT statement like this:
SELECT JSON_EXTRACT(\'{\"username\":\"Alexander\"}\', \'$.username\');
I would expect it to
you can use replace() with it to remove quotation marks
SELECT replace(JSON_EXTRACT('{"username":"Alexander"}', '$.username'), '\"', '');