I’m am trying to create a StoredProc that will, if a value is below a limit it will insert one value or if the value is above a limit then it will insert another value. Sort of like this in C programming:
Hope Someone can help me
NormanTheDane
Code:
if (ValueOriginal >= 3)
{
if (ValueOriginal <= 10)
ValueToInsert = ValueOriginal;
else
ValueToInsert = 0;
}
else
ValueToInsert = 0;
NormanTheDane
Comment