mybatis 积累

mybatis 模糊查询

a.cust_name like '%${custName}%'   //必须为  $   


select * from b where name like '%'||#{name}||'%'

mybatis  当前时间

select COUNT(*) from reader_lend where NOW() >=
		Due_Date and
		reader_id=#{reader_id}  //  NOW()表示 当前时间


你可能感兴趣的:(mybatis 积累)