SELECT a value from a column that has multiple array values – Mysql
I have a table called "Student_fees_deposit" and in this table, a column has multiple values in it. An example is Student_fees_deposit id | amount_detail ---|---------------- 1 |{"1"{"amount":"5000.00","date":"2022-12-15","amount_discount":"5000.00"}} 2 | {"1":{"amount":"9000.00","date":"2022-12-15","amount_discount":"5000.00"}} How can I get the amount value for id =…