Your number will be stored in a column in the table. You would bump it up by one using an update statement. Most databases will accept the following:
Update myTable set myColumn = myColumn + 1
That will update every row in the table, so you probably also want to add a WHERE clause to limit it to the correct row.