我想在配置单元中选择int列的位10-12(“标志”)等于0的所有行。我要写什么样的查询来完成这个任务?
vh0rcniy1#
你可以试试 shifleft() 按位和:
shifleft()
where (intcol & shiftleft(1, 10)) = 0 and (intcol & shiftleft(1, 11)) = 0 and (intcol & shiftleft(1, 12)) = 0
1条答案
按热度按时间vh0rcniy1#
你可以试试
shifleft()
按位和: