MyBatis-Plus_删除操作
生活随笔
收集整理的這篇文章主要介紹了
MyBatis-Plus_删除操作
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
刪除專欄
文章目錄
@Component public class UserMapperDelTest extends MybatisPlusSamplesChapter1ApplicationTests {@Resourceprivate UserMapper userMapper;/*** 根據(jù) ID 刪除*/@Testpublic void delById() {int rows = userMapper.deleteById(1094592041087729666L);System.out.println("刪除條數(shù):" + rows);}/*** 根據(jù) columnMap 條件,刪除記錄*/@Testpublic void delByMap() {HashMap<String, Object> columnMap = new HashMap<>();columnMap.put("name", "向后");columnMap.put("age", 25);int rows = userMapper.deleteByMap(columnMap);System.out.println("刪除條數(shù):" + rows);}/*** 刪除(根據(jù)ID 批量刪除)* <p>* 主鍵ID列表(不能為 null 以及 empty)*/@Testpublic void deleteBatchIds() {int rows = userMapper.deleteBatchIds(Arrays.asList(109459204108772966L, 1088250446457389058L, 1088250446457389059L));System.out.println("刪除條數(shù):" + rows);}@Testpublic void deleteByWrapper() {LambdaQueryWrapper<User> lambdaQuery = Wrappers.<User>lambdaQuery();lambdaQuery.eq(User::getAge, 27).gt(User::getAge, 41);int rows = userMapper.delete(lambdaQuery);System.out.println("刪除條數(shù):" + rows);} }想學(xué)習(xí)更多微服務(wù)、分布式、中間件、數(shù)據(jù)庫、項目快速構(gòu)建等系列技術(shù)
請訪問http://gblfy.com
讓我們一起進(jìn)步!!!
總結(jié)
以上是生活随笔為你收集整理的MyBatis-Plus_删除操作的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 企业实战_17_MyCat水平扩展_跨分
- 下一篇: Intellij Idea: Thyme