一、Mybatis中有哪些占位符?Mybatis有两个占位符,分别是#{}和${}
二、Mybatis中#{}和${}有什么区别?-- #{}
select id from #{table} where id = #{id}
-- ${}
2023-09-09