Default value in existing schema
Hi,
For example, I have an existing schema with 10 data in it. one of the attribute is "rank"
<attribute label="rank" name="rank" type="long"/>
Now i want to assign default value for rank as "3" where there is no value in it. (means rank as "3" for existing values where rank is null or 0 and rank as 3 for future updating data where rank will be blank)
So if i make change as <attribute label="rank" name="rank" type="long" sqlDefault="3"/> , all the existing values became "3". But i need null or 0 values to become 3.
so what should i need to do?
Thanks in advance,
ParthaSarathy.