Jun 26, 2002 #1 TimWynne Programmer May 27, 2002 3 GB Is there a sybase function to negate a value? if I have a column of 1 2 3 how can I return? -1 -2 -3
Jun 26, 2002 #2 grega Programmer Feb 2, 2000 932 GB Just subtract the column value from zero ... select 0-column from table Greg. Upvote 0 Downvote
Jul 15, 2002 #3 JMCraig Programmer Feb 20, 2002 217 US select -(column) from table should work too. Upvote 0 Downvote