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++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -