溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mybatis有哪些查詢

發(fā)布時間:2021-11-16 15:11:11 來源:億速云 閱讀:131 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹“Mybatis有哪些查詢”,在日常操作中,相信很多人在Mybatis有哪些查詢問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Mybatis有哪些查詢”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

        (1)模糊查詢

            1.    修改Category.xml,提供listCategoryByName查詢語句

<select id="listCategoryByName"  parameterType="string" resultType="Category">
  select * from   category_  where name like concat('%',#{0},'%')  <!--=這里#{0},0可能是占位符的作用-->
</select>  <!--concat(str1,str2,str3,str4,……….); 連接字符串函數(shù),會生成一個字符串 -->

            2.    在TestMybatis.java中

List<Category> cs = session.selectList("listCategoryByName","cat");
for (Category c : cs) {
  System.out.println(c.getName());
}

            注:concat() 函數(shù),是用來連接字符串。
                   精確查詢: select * from user where name=”zhangsan” 
                   模糊查詢:  select * from user where name like “%zhang%”
                   在實際的使用中,條件是作為參數(shù)傳遞進來的。 所以我們使用 concat() 函數(shù)
                   mybatis: select * from user where name like concat(“%”, #{name},”%”) 

        (2)多條件查詢

            1.    修改Category.xml

<select id="listCategoryByIdAndName"  parameterType="map" resultType="Category">
    select * from   category_  where id> #{id}  and name like concat('%',#{name},'%')
</select>

            2.    在TestMybatis.java中

Map<String,Object> params = new HashMap<>();
params.put("id", 3);
params.put("name", "cat");
         
List<Category> cs = session.selectList("listCategoryByIdAndName",params);
for (Category c : cs) {
  System.out.println(c.getName());
}

到此,關于“Mybatis有哪些查詢”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI