79790724

Date: 2025-10-15 01:22:55
Score: 0.5
Natty:
Report link

PostgreSQL support jsonb_each_text function.
sample code like this.
Please do some search whether the below code will be supported on MySQL/MariaDB

select
    key, value
from
    jsonb_each_text(
        to_jsonb(
            (select t from your_table as t where t.table_pk = 'PK_!!!!')
        )
    )
;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PM11