2 December 2011

Check String is Null or Empty in Sql Server


Check String is Null or Empty in Sql Server

  if LTRIM(RTRIM(@Condition))<>'' and (@Condition IS NOT NULL)
  begin
 
  end
  else
 
  begin
 
  end


No comments:

Post a Comment

Comments Welcome

Find number of letter occurence of all letter in c#

  Find number of letter occurence of all letter in c#  namespace ConsoleApp1 {     internal class Program     {         static void Main(st...