14 lines
450 B
XML
14 lines
450 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.faStatistics.unlawfulFishing.mapper.UnlawfulFishingMapper">
|
||
|
|
|
||
|
|
<select id="selectFishingBoatYearParam" resultType="int">
|
||
|
|
select distinct extract(year from napo_dt) as year
|
||
|
|
from crackdown_status
|
||
|
|
where napo_dt is not null
|
||
|
|
</select>
|
||
|
|
|
||
|
|
</mapper>
|