I have a table with a column that has JSON value. This column is so clustered and unable to get detailed information from the column.
Company User
A [{"Name":"Mark","email":"mark.com","password":"password"},{"Name":"Keith","email":"Keith.com","password":"password"}]
B [{"Name":"Anna","email":"anna.com","password":"password"},{"Name":"Lewis","email":"Lewis.com","password":"password"}]
C [{"Name":"Bill","email":"bill.com","password":"password"},{"Name":"Stuart","email":"stuart.com","password":"password"}]
Is there any way we can break the column as below in a select statement
Company User_1_name User_1_email User_1_password User_2_name User_2_email User_2_password
A Mark mark.com password Keith Keith.com password
B Anna anna.com password Lewis Lewis.com password
C Bill bill.com password Stuart stuart.com password
textor is itjsonb?