declare @a as int =10declare @b as int =20declare @c as int =12select IIF(@c between @a and @b,'Yes it is','No it is not')
Login to post response