---
description: "Bitwise Operators (Transact-SQL)"
title: "Bitwise Operators (Transact-SQL) | Microsoft Docs"
ms.custom: ""
ms.date: "06/04/2019"
ms.prod: sql
ms.prod_service: "database-engine, sql-database, sql-data-warehouse, pdw"
ms.reviewer: ""
ms.technology: t-sql
ms.topic: reference
dev_langs:
- "TSQL"
helpviewer_keywords:
- "operators [Transact-SQL], bitwise"
- "bitwise operators"
- "bit manipulations"
ms.assetid: 2b994cf5-2daa-438a-b8c7-4bd8d451ac8d
author: cawrites
ms.author: chadam
monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current"
---
# Bitwise Operators (Transact-SQL)
[!INCLUDE [sql-asdb-asdbmi-asa-pdw](../../includes/applies-to-version/sql-asdb-asdbmi-asa-pdw.md)]
Bitwise operators perform bit manipulations between two expressions of any of the data types of the integer data type category.
Bitwise operators convert two integer values to binary bits, perform the AND, OR, or NOT operation on each bit, producing a result. Then converts the result to an integer.
For example, the integer 170 converts to binary 1010 1010.
The integer 75 converts to binary 0100 1011.
|operator|bitwise math|
|---- |---- |
|AND
If bits at any location are both 1, the result is 1. |1010 1010 = 170
0100 1011 = 75
-----------------
0000 1010 = 10 |
|OR
If either bit at any location is 1, the result is 1. |1010 1010 = 170
0100 1011 = 75
-----------------
1110 1011 = 235|
|NOT
Reverses the bit value at every bit location. |1010 1010 = 170
-----------------
0101 0101 = 85 |
See the following topics:
* [& (Bitwise AND)](../../t-sql/language-elements/bitwise-and-transact-sql.md)
* [&= (Bitwise AND Assignment)](../../t-sql/language-elements/bitwise-and-equals-transact-sql.md)
* [| (Bitwise OR)](../../t-sql/language-elements/bitwise-or-transact-sql.md)
* [|= (Bitwise OR Assignment)](../../t-sql/language-elements/bitwise-or-equals-transact-sql.md)
* [^ (Bitwise Exclusive OR)](../../t-sql/language-elements/bitwise-exclusive-or-transact-sql.md)
* [^= (Bitwise Exclusive OR Assignment)](../../t-sql/language-elements/bitwise-exclusive-or-equals-transact-sql.md)
* [~ (Bitwise NOT)](../../t-sql/language-elements/bitwise-not-transact-sql.md)
The operands for bitwise operators can be any one of the data types of the integer or binary string data type categories (except for the **image** data type), except that both operands cannot be any one of the data types of the binary string data type category. The following table shows the supported operand data types.
|Left operand|Right operand|
|------------------|-------------------|
|[binary](../../t-sql/data-types/binary-and-varbinary-transact-sql.md)|**int**, **smallint**, or **tinyint**|
|[bit](../../t-sql/data-types/bit-transact-sql.md)|**int**, **smallint**, **tinyint**, or **bit**|
|[bigint](../../t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql.md)|**bigint**, **int**, **smallint**, **tinyint**, **binary**, or **varbinary**|
|[int](../../t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql.md)|**int**, **smallint**, **tinyint**, **binary**, or **varbinary**|
|[smallint](../../t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql.md)|**int**, **smallint**, **tinyint**, **binary**, or **varbinary**|
|[tinyint](../../t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql.md)|**int**, **smallint**, **tinyint**, **binary**, or **varbinary**|
|[varbinary](../../t-sql/data-types/binary-and-varbinary-transact-sql.md)|**int**, **smallint**, or **tinyint**|
## See Also
[Operators (Transact-SQL)](../../t-sql/language-elements/operators-transact-sql.md)
[Data Types (Transact-SQL)](../../t-sql/data-types/data-types-transact-sql.md)
[Compound Operators (Transact-SQL)](../../t-sql/language-elements/compound-operators-transact-sql.md)