mybatis常用的sql語句

2021-09-17 01:28:12 字數 1310 閱讀 2187

目錄基礎

查詢分頁查詢

多條件查詢

查詢單條資料

查詢like 插入

普通插入

批量插入 刪除

批量刪除 更新

更新語句

批量更新

<?xml version="1.0" encoding="utf-8" ?>

eviction lru

flushinterval快取時間,以毫秒為單位

size快取大小

readonly如果為false的話,快取物件必須是可序列化的-->

select * from user where id=#

update users set

user_name=#,pass_word=#,create_time=#

where

id=#

delete from users where id=#

insert into users(user_name,pass_word,create_time) values(#,#,#)

對應的查詢方法為: selectlist(「selectall」,int型別的變數); 其中selectall對應配置檔案中相應查詢語句的id。

]]>

]]>     

對應的查詢方法為:selectlist(「selectbysclandtypeandname」,map型別的變數);

對應的查詢方法為:selectone(「selectallcount」);

select * from new 	

where name like concat('%','$','%')

or content like concat('%','$','%')

or keyword like concat('%','$','%') order by time desc

普通刪除

Mybatis中常用的SQL語句

1.baseresultmap 2.sql id,name,password 3.確切的select select from login test name 4.模糊的select select from login test name like 5.批量的select 可用於資料庫表的批量匯出 s...

常用的mybatis的xml的sql語句

在這裡插入 片 select 字段 字段 as 屬性,字段 屬性,字段 from 表名 where suffixoverrides and or if test 屬性!null and 屬性!字段 and if test 屬性!null and 屬性!字段 and trim select 字段,字段...

mybatis的sql語句理解

返回型別為hashmap.則select 後的字段為hashmap的key 起別名的,則別名為key.比如zu name22 hashmap的value值為select後欄位查出來的字段對應表裡的值。如下圖的符合條件的值。2.關於select語句起別名 1 u.name起別名zu name,查詢結果...