根据商品名和商品id的sql搜索语句/购物车内全选和全反选

搜索:

mapper.xml里的例子,使用if的重点是当前端只传来name的值时,仍然可以正常查询,即满足其中之一条件即可。

<select id="xxx" resultMap="BaseResultMap" parameterType="map">
SELECT
<include refid="Base_Coulum_List"/>
from mmall_product
<where>
	<if test="productName!=null">
	and name like #{productName}
	</if>
	<if test="productId!=null">
	and name like #{productId}
	</if>
</where>
</select>

其中,refid是在前面进行声明的一些特定字段,比如:

<sql id="Base_Column_List">
		id,name,create_time,update_time,password
</sql>

全选和全反选/单选和单反选:

首先数据库内有一个字段,checked 表示是否被选中;if语句是将单选和全选复用了,当单选时调用该接口时把产品id传入即可。

<update id="xxx" parameterType="map">
	UPDATE mmall_cart
	set checked=#{checked}
	update_time=now()
	where user_id=#{userId}
	<if test="productId!=null">
		and product_id=#{productId}
	</if>
</update>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值