Does mysql support whether the query condition is an object?

like this
SELECT * FROM material WHERE {key:value} limit 1

Feb.27,2021

does not support it. Maybe what I have learned is limited, and this kind of writing is supported in mongodb.
mysql is generally
SELECT FORM TABLE WHERE KEY = VALUE LIMIT 1


sql statement, of course, it is not supported, and there is no concept of object. Objects are typically queried through orm framework generating sql statements, such as sequelize .

Menu