1
Answer

SQL scaler fn

mohamad mostafa

mohamad mostafa

15y
2.7k
1

I want to write this logic in SQL scaler Fn
bool FN(int X, int Y)
{
 int Result = X * 2;
 
 if(Y < Result)
  return true;
 
 else
  return false;
}
 
how?!!!!
Answers (1)