Data SenseiforSihan's Code Repocode-repo.hashnode.devยทFeb 20, 2024Nested IF in TSQL--nesting example DECLARE @Var1 INT = 15 IF @Var1 % 5 = 0 BEGIN IF @Var1 % 3 = 0 BEGIN print 'the number is divisible by 3 and 5' END ELSE BEGIN print 'the number is divisible by 5' END END ELSE BEGIN IF @Var1 %...SQLAdd a thoughtful commentNo comments yetBe the first to start the conversation.