Use addition in database SQL -


can use addition in database?

for example: have data inside database integer. has value of 5.

is there query add 1 that? become 6.

please me i'm beginner.

this basic form of update statement:

update the_table   set the_column = the_column + 1 the_column = 5; 

note above update all rows the_colum has value 5. want change where clause different, e.g. selecting single row using condition on primary key column(s) of table.

check manual of dbms details, e.g.: http://www.postgresql.org/docs/current/static/dml-update.html


Comments

Popular posts from this blog

c - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -