Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Batch Update method of mybatis

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains the "mybatis batch update method", the content of the article is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in depth, together to study and learn "mybatis batch update method" bar!

problem

You want to update objects in batches using sql in Mybatis's xml mapping file.

Train of thought

Mainly use the CASE syntax in SQL, such as the following SQL:

UPDATE course SET name = CASE WHEN id=1 THEN 'name1' WHEN id=2 THEN' name2' WHEN id=3 THEN 'name3' END Title = CASE WHEN id=1 THEN 'New Title 1' WHEN id=2 THEN 'New Title 2' WHEN id=3 THEN 'New Title 3' ENDWHERE id=1 or id=2 or id= 3mapper UPDATE course WHEN id=# {item.id} THEN # {item.name} WHEN id=# {item.id} THEN # {item.title} WHERE id=# {item.id} Thank you for your reading The above is the content of "batch update method of mybatis". After the study of this article, I believe you have a deeper understanding of the batch update method of mybatis, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report