Sql语句用法

1 篇文章 0 订阅
1.增加列的sql
ALTER TABLE lmtm_0419.status_monitoring add  no_statistics varchar(1000) default NULL COMMENT '不参与统计要素';
2.增加索引的sql
CREATE INDEX test_comp_value_comp_id_IDX USING BTREE ON lmtm_0419.test_comp_value (comp_id);
3.主键自增时自动返回
<insert id="insertOneStaProblem" parameterType="StaMonitorProblem" keyProperty="id" useGeneratedKeys="true">
        insert into status_monitoring_problem (problem_reach,problem_type,problem_code,problem_imp,monitor_id,problem_complete_time) values
 (#{problemReach},#{problemType},#{problemCode},#{problemImp},#{monitorId},#{problemCompleteTime})
    </insert>

**
keyProperty="id" useGeneratedKeys="true"
当使用主键自增时,增加一条数据后,加上这两个属性,类就可以直接使用属性值了(其中keyProperty的值是对象的属性值,不是数据库表中的字段名)
4.多个参数
多个参数时,使用@Param,为一个对象时,sql中获取属性值:对象.属性名
5.foreach
字符串str "1,100,300,3432"
先变为字符串数组 ids = str.split (",")
sql语句中
select * from xxx 
<if test="ids.length > 0">
    where id in
    <foreach item="parentId" collection="ids" open="(" separator="," close=")">
        #{parentId}
    </foreach>
</if>
//加条件之前要先加判断,否则如果数组没有值,sql语句会报错
//array判断length,list判断size

collection的三种情况
1.如果参数是单参数,且为list,则collection="list"
2.如果参数是单参数,且为array,则collection="array"
3.参数是map,collection的值为map中对应的key,比如ids
6.时间查询
<if test="createTime != null">
    and date_format(create_time,'%y%m%d')=date_format({createTime},'%y%m%d')
</if>
--
1.createTime为时间类型,test中不能写 createTime != ''
2.这种方式用于数据库存date类型,参数是字符串时
3.注意如果是大于或者小于时,要用转义字符
--
7.resultType和resultMap

resultType用于简单的结果映射,只能指定一个列的类型;

而resultMap适用于复杂的结果映射,可以根据需要指定多个结果字段,并将其映射到目标Java对象的属性上。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值