Member since
12-03-2017
4
Posts
0
Kudos Received
0
Solutions
12-09-2017
08:07 AM
@Carlos Pascual hi there, you can add new values to the table by using update command... as i am giving an example, UPDATE table_name SET column1=value, column2=value2,... WHERE some_column=some_value Note: the WHERE clause in the UPDATE syntax: The WHERE clause specifies which record or records that should be updated. If you omit the WHERE clause, all records will be updated!
... View more