Is it possible to add/subtract the same number to different values
sected in a select query?
I have 10 records from a select query, and all have different prices.
I want to add $15 to all ten prices.
Best way, if any?
Damian S - 27 Feb 2007 03:01 GMT
Hi djmills1,
You could run an update query like this:
update TABLENAME set FIELDNAME = FIELNAME+15 where
WHERECLAUSE_FROM_SELECT_QUERY
Hope that helps.
Damian.
> Is it possible to add/subtract the same number to different values
> sected in a select query?
[quoted text clipped - 3 lines]
>
> Best way, if any?