Hi,
Declare @abc
varchar(37)
select @abc='
'
If(@abc='')
Begin
Select
'sdf'
End
Else
Begin
select
'sdf3'
end
select
case
when @abc
=''
then
'if'
else
'k'
end
result was 'sdf ' and 'if' respectily for two stmts.
is there any situation or setting where result can be sdf3 and k for above two stms respectivly?
yours sincerely