Not sure I understand your question, but, for example, to add one to every column value for a particular column in a table:
Code:
UPDATE yourtable
SET yourcolumn = yourcolumn + 1
or to interpret your question another way:
Code:
SELECT yourcolumn + 1 as incrementedcolumn
FROM yourtable
What are you trying to do?
Jeff Mason
Custom Apps, Inc.
www.custom-apps.com