In MyBatis, you mark the places where parameters should be inserted into your SQL like so:
SELECT * FROM Person WHERE id = #{id}
if you're using mybatis, you can write this for s
SELECT(" * "); FROM(" student "); WHERE(" ten LIKE '%' #{ten} '%' ");