博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mybatis常用标签
阅读量:6087 次
发布时间:2019-06-20

本文共 524 字,大约阅读时间需要 1 分钟。

定义sql语句:insert、delete、update、select

例子:

<select id="userList" parameterType="user" resultType="User">

        select * from user where name =#{name}
      </select>

配置java对象属性与查询结果集中列名的对应关系:resultMap

例子:

<resultMap id="getStudentRM" type="EStudnet">

<id property="id" column="ID"/>
<result property="studentName" column="Name"/>
<result property="studentAge" column="Age"/>
</resultMap>

动态sql拼接:foreach、if、choose

格式化输出:where、set、trim

配置关联关系:collection、association

定义常量:sql

 

转载于:https://www.cnblogs.com/nxjblog/p/10612080.html

你可能感兴趣的文章
Telegraf+Influxdb+Grafana构建监控平台
查看>>
使用excel 展现数据库内容
查看>>
C#方法拓展
查看>>
MySql.Data.dll的版本
查看>>
Linux系统磁盘管理
查看>>
hdu 2191 (多重背包+二进制优化)
查看>>
home.php
查看>>
neo4j---删除关系和节点
查看>>
redis分布式锁redisson
查看>>
什么样的企业可以称之为初创企业?
查看>>
Python爬虫之BeautifulSoup
查看>>
《HTML 5与CSS 3权威指南(第3版·下册)》——第20章 使用选择器在页面中插入内容...
查看>>
如何判断自己适不适合做程序员?这几个特点了解一下
查看>>
newinstance()和new有什么区别
查看>>
android下载封装类
查看>>
[node] 用 node-webkit 开发桌面应用
查看>>
Nginx访问控制和虚拟主机
查看>>
report widget not working for external users
查看>>
windows phone 摄像头得到图片是旋转90°
查看>>
Linux--sed使用
查看>>