Client applications change information in database tables by submitting SQL statements. Only a few SQL statements actually modify the information in a database:
To delete an existing row of a table, use the DELETE statement.
To insert a new row into a table, use the INSERT or LOAD TABLE statement.
To change the value in a cell, use the UPDATE statement.