真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在MyBatis中配置動態(tài)SQL-創(chuàng)新互聯(lián)

本篇文章為大家展示了怎么在MyBatis中配置動態(tài)SQL,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

創(chuàng)新互聯(lián)是專業(yè)的襄陽網(wǎng)站建設(shè)公司,襄陽接單;提供成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行襄陽網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

動態(tài)SQL

什么是動態(tài)SQL:

動態(tài)SQL就是根據(jù)不同的條件生成不同的SQL語句

  • if

  • choose(when,otherwise)

  • trim(where,set)

  • foreach

1、搭建環(huán)境

建表

CREATE TABLE `bolg`(
  `id` VARCHAR(50) NOT NULL COMMENT '博客id',
  `title` VARCHAR(100) not null comment '博客標題',
  `author` VARCHAR(30) not null comment '博客作者',
  `creat_time` datetime not null comment '創(chuàng)建時間',
  `views` int(30) not null comment '瀏覽量'
)ENGINE=InnoDB DEFAULT CHARSET=utf8

創(chuàng)建一個基礎(chǔ)工程

導(dǎo)包

編寫配置文件

編寫實體類

@Data
public class Blog {
  private int id;
  private String title;
  private String author;
  private Date creatTime;
  private int views;
}

編寫實體類對應(yīng)的Mapper接口和Mapper.xm

2、IF


  select * from mybatis.bolg where 1=1
  
    and title = #{title}
  
  
    and author = #{author}
  
@Test
public void queryBlogIF(){
  SqlSession sqlSession = MyBatisUtils.getSqlSession();
  BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);
  HashMap map = new HashMap();
  map.put("author","尹銳");
  List blogs = mapper.queryBlogIF(map);
  for (Blog blog : blogs) {
    System.out.println(blog);
  }
  sqlSession.close();
}

3、choose(when,otherwise)


  select * from mybatis.bolg
  
    
      
        title=#{title}
      
      
        and author = #{author}
      
      
        and views = #{views}
      
    
  

4、trim(where,set)

select * from mybatis.bolg


  title = #{title}


  and author = #{author}


  update mybatis.bolg
  
    
      title = #{title},
    
    
      author = #{author},
    
  
  where id = #{id}

所謂的動態(tài)SQL,本質(zhì)還是SQL語句,只是我們可以在SQL層面,去執(zhí)行一些邏輯代碼

5、Foreach

select * from user where 1=1 and 
 
    #{id}
 

(id=1 or id=2 or id=3)

怎么在MyBatis中配置動態(tài)SQL



  select * from mybatis.bolg

  
  
    id = #{id}
  
  

SQL片段

有的時候,我們可能會將一些公共的部分抽取處理,方便復(fù)用

使用SQL標簽抽取公共的部分


  
    title = #{title}
  
  
    and author = #{author}
  

在需要使用的地方使用Include標簽引用即可


  select * from mybatis.bolg
  
    
  

上述內(nèi)容就是怎么在MyBatis中配置動態(tài)SQL,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司行業(yè)資訊頻道。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


網(wǎng)頁名稱:怎么在MyBatis中配置動態(tài)SQL-創(chuàng)新互聯(lián)
文章位置:http://weahome.cn/article/ccopei.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部