Insert / Update / Delete


/ Published in: SQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Nuevo :
  2. INSERT INTO tabla (campo1, campo2) VALUES ('" & campo1 & "', " & campo2 & ")
  3.  
  4. Modificar :
  5. UPDATE tabla SET campo = " & campo & "
  6.  
  7. Borrar :
  8. DELETE FROM tabla

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.