mysql mapper中增刪查改

來源:互聯網
上載者:User

標籤:value   inf   資料   insert   tty   開始   style   update   add   

 

//1.增
public int insert(Port port) ;

//2.刪

public int deleteM(String id);
//3.改
public int update(Port port);

//1.增

<insert id="insert" parameterType="com.cn.eport.pojo.Port" resultType="integer">

INSERT INTO bas_port (
id,
country_id,
region_id,
NAME,
is_lock,
add_by,
add_time,
update_by,
update_time
)
VALUES
   (
#{id},#{country_id},#{region_id},#{name},#{is_lock},#{add_by},#{add_time},#{update_by},#{update_time})


</insert>

//2.刪

<delete id="deleteM" resultType="integer" >
DELETE
FROM
pro_mainfest
WHERE
id = #{id}
</delete>

 

 

//3.改
<update id="update" parameterType="com.cn.eport.pojo.Port" resultType="integer">

UPDATE bas_port
SET id = #{id},country_id=#{country_id},
region_id = #{region_id},name=#{name},is_lock=#{is_lock},
add_by = #{add_by},add_time=#{add_time},update_by=#{update_by},update_by=#{update_by}
WHERE
id = #{id}

</update>

 

//4.mysql資料庫分頁查詢

limit x,y      x開始行數   y總行數      集合意義(x, x+y)

mysql mapper中增刪查改

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.