fxi.xx 469 B

123456789101112131415161718
  1. <sqlMap>
  2. <sql id="selectAllArticle">
  3. select id,title,createdatetime,content
  4. from article where id in (?1,?2)
  5. </sql>
  6. <sql id="selectStudentById1">
  7. select * from article where id=?id and 1=1
  8. </sql>
  9. <sql id="sql_2_1">
  10. select id,title,createdatetime,content from article where id = ?id
  11. </sql>
  12. <sql id="sql_i_1">
  13. INSERT INTO config(key,value) VALUES (?, ?)
  14. </sql>
  15. <sql id="sql_i_2">
  16. INSERT INTO config(key,value) VALUES (?key, ?value)
  17. </sql>
  18. </sqlMap>