Se hai versione MySQL>=5.7 , allora puoi provare questo:
SELECT JSON_EXTRACT(name, "$.id") AS name
FROM table
WHERE JSON_EXTRACT(name, "$.id") > 3
Uscita:
+-------------------------------+
| name |
+-------------------------------+
| {"id": "4", "name": "Betty"} |
+-------------------------------+
Per ulteriori dettagli, consultare il manuale di riferimento di MySQL:
https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html