我在复制SQL Server中的mod函数时遇到问题。
在excel中,mod(-3,7)=4。但是在SQL中,-3%7 = -3
我使用%错误,还是SQL的mod不同?
对于x的正值和负值,这将得出0到n-1之间的结果:
((x % n) + n) % n