摘要:
多表操作 一对一(多对一) User , Account 实现查询账户信息时,也要查询账户所对应的用户信息。 SELECT account.*, user.username, user.address FROM account, user WHERE account.uid = user.id 方式 阅读全文
摘要:
mybatis 原理 Mybatis通过xml或注解的方式将要执行的各种statement(statement、preparedStatemnt、CallableStatement)配置起来, 并通过java对象和statement中的sql进行映射生成最终执行的sql语句,最后由mybatis框架 阅读全文