
Contributor III
2023-03-11
06:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Load Data from a MySql Json field returns a raw field
Hi everyone
I load a json field
in phpmyadmin, the field is shown ad a Json :
{
"email": "xxxxxxxxx@xxx.xx",
etc.....
}
but after loading, the field looks like rawdata see picture
I would just need first to get the data from MySql a a regular json
Any clue ?
Thanks
922 Views
2 Replies

Partner - Contributor III
2023-04-28
04:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Gillbech,
I also have this situation mapped to a customer, but as a workaround, you can apply an SQL command:
REPLACE(Field, '','') as Field
This way the Qlik connector will extract correctly with its respective content.
Hope I helped you!
847 Views

MVP
2023-04-28
07:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Or try this
my_table:
LOAD
JSON(json_field) as my_json_field
FROM
my_database.my_table;
840 Views
