14 lines
524 B
XML
14 lines
524 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
|
||
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
|
|
||
|
|
<mapper namespace="com.dbnt.faisp.main.counterIntelligence.mapper.CounterIntelligenceMapper">
|
||
|
|
|
||
|
|
<select id="selectHashTags" resultType="string" parameterType="int">
|
||
|
|
select array_to_string(array_agg(b.tag_nm), ' ') as hashTags
|
||
|
|
from hash_tag_link_ciw a
|
||
|
|
inner join hash_tag b on a.tag_key = b.tag_key
|
||
|
|
where a.ciw_key = #{ciwKey}
|
||
|
|
</select>
|
||
|
|
</mapper>
|