Compare commits

..

No commits in common. "30eb9b6bec8ae4b9fd1eb4e804f907cdfe71f3e1" and "16aded3a951ea2e73b9b71e7317c05402d3117fa" have entirely different histories.

2 changed files with 9 additions and 8 deletions

View File

@ -165,8 +165,7 @@
WHERE
BD_SEQ = #{seq}
</update>
<select id="Board.selectPrevBoard" parameterType="boardVO" resultType="boardVO">
SELECT BD_SEQ AS SEQ,
BD_MB_ID AS USERID,

View File

@ -82,8 +82,8 @@
<select id="selectMaxWpNo" parameterType="String" resultType="int">
<![CDATA[
SELECT
COALESCE(WP_NO, 0)
SELECT
COALESCE(WP_NO, 0)
FROM
(
SELECT
@ -91,11 +91,13 @@
FROM
TWEAKPLACE
WHERE
PLACE1 = #{_parameter}
1=1
AND PLACE1 = #{_parameter}
ORDER BY WP_NO DESC
) add
limit 1
]]>
)
WHERE
ROWNUM = 1
]]>
</select>
<insert id="insert" parameterType="weakPlaceVO">