我有一个查询,从一个数据库中选择一个集合,并希望将其转换为临时表,我可以使用某些聚合函数进行转换。我想在使用MyBatis的记忆中做到这一点,而我无法为我的生活做好准备。在我的mapper xml中,我有:
<select id="selectExample" resultType="POJOclass">
SELECT DISTINCT anon_cookie,
search,
site
FROM
T1
WHERE
is_cookied_user = 1
and is_iab_robot = 0
and is_pattern_match_robot = 0
and has_site_search_phrase = 1
and day_dt >= current_date - 1
</select>
在我的java类中,我将其作为bean类的列表
进行检索
List<POJO> list = selectList("selectExample", className);
我想找到一种方法来查询这个结果集,可以是map,也可以将它转换为POJO类,也可以创建临时表。我似乎无法使用MyBatis找到一个好方法...任何建议?