版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/tomnic_ylwang/article/details/47340799
/**
*
* @author: WYL
* @createTime: 2015年7月3日 上午10:14:31
* @history:
* @param keyName 进行匹配的关键字
* @return SearchKey
*/
@Query(value="select * from search_key a where a.key_name
like CONCAT('%',:keyName,'%') limit 1",nativeQuery=true)
List<SearchKey> findByKeyNameLimit(@Param("keyName") String keyName);
|