Hello
I am wanting to update a numeric field to that it displays the value divided by 100
I have selected the field using the following query
SELECT NUMERIC_VALUE, (NUMERIC_VALUE/100) FROM DETAILS.
Its displays the correct data but I also want to maybe write a where clause which checks if the field is already in the correct format, if this is the case then I would like to exclude them records for the update.
Any help appreciated.
I am wanting to update a numeric field to that it displays the value divided by 100
I have selected the field using the following query
SELECT NUMERIC_VALUE, (NUMERIC_VALUE/100) FROM DETAILS.
Its displays the correct data but I also want to maybe write a where clause which checks if the field is already in the correct format, if this is the case then I would like to exclude them records for the update.
Any help appreciated.