Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
How can I add a number to an INTEGER column?
Like UPDATE tbl SET col +? WHERE id = ?
UPDATE tbl SET col +? WHERE id = ?
where the first ? is the number which I want to add
?
Is it possible?