Here is a little snippet of my json text which is in a column in a database. I want to write a query that will return a Boolean value if the values for "1", "2", etc. = 0. So if "1": 0 I want to have a false value so then I can write a conditional statement to display a message depending of the Boolean value.
{
"ENABLE": [
{
"1": 1,
"2": 1,
"3": 1,
"4": 1
}
]
}