Help for this page

Select Code to Download


  1. or download this
    INSERT into forum (memberName,original) values (?,?)
      on duplicate key update forum set current=? where memberName=?
    
  2. or download this
    INSERT into forum (memberName,original,current) values (?,?,?)
      on duplicate key update forum set current=values(current) where memb
    +erName=?