mybatisif else语句的使用
时间: 2023-09-28 11:06:57 浏览: 80
oracle if else语句使用介绍
在MyBatis中,如果要实现if-else逻辑,可以使用choose-when-otherwise标签。具体的写法如下:
```
<choose>
<when test="条件1">
// 条件1成立时执行的代码
</when>
<when test="条件2">
// 条件2成立时执行的代码
</when>
<otherwise>
// 所有条件都不成立时执行的代码
</otherwise
#### 引用[.reference_title]
- *1* *2* *3* [MyBatis中if - else if - else 的使用](https://blog.csdn.net/qq_27327261/article/details/112470640)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文