How To Convert Binary Strings into Integers in MS SQL Server?
Submitted by: AdministratorBinary strings and integers are convertible implicitly and explicitly. But there several rules you need to remember:
* Binary strings will be implicitly converted into an integer data type, if it is involved in an arithmetical operation with another integer data type operand.
* Binary strings will be implicitly converted into an integer data type, if it is assigned to a variable, a column or a parameter of an integer data type.
* Binary strings will be explicitly converted into integer data types using CAST() and CONVERT() functions.
* When converting binary strings that have more bytes than the target data type size, bytes on the left hand side will be truncated.
* When converting binary strings that have less bytes than the target data type size, 0x00 will be padded on the left hand side.
Examples showing in the tutorial exercise below will help you remembering those rules.
SELECT 0x66 + 44
GO
146
DECLARE @integer INT;
SET @integer = 0x66;
SELECT @integer + 44
GO
146
SELECT CAST(0x66 AS INT) + 44
GO
146
SELECT CONVERT(INT, 0x66) + 44
GO
146
-- Only last 4 bytes are used for INT conversion
SELECT 0x7700000066 + 44
GO
146
-- 8 bytes will be used for BIGINT conversion
SELECT 0x7700000066 + CONVERT(BIGINT,44)
Submitted by: Administrator
* Binary strings will be implicitly converted into an integer data type, if it is involved in an arithmetical operation with another integer data type operand.
* Binary strings will be implicitly converted into an integer data type, if it is assigned to a variable, a column or a parameter of an integer data type.
* Binary strings will be explicitly converted into integer data types using CAST() and CONVERT() functions.
* When converting binary strings that have more bytes than the target data type size, bytes on the left hand side will be truncated.
* When converting binary strings that have less bytes than the target data type size, 0x00 will be padded on the left hand side.
Examples showing in the tutorial exercise below will help you remembering those rules.
SELECT 0x66 + 44
GO
146
DECLARE @integer INT;
SET @integer = 0x66;
SELECT @integer + 44
GO
146
SELECT CAST(0x66 AS INT) + 44
GO
146
SELECT CONVERT(INT, 0x66) + 44
GO
146
-- Only last 4 bytes are used for INT conversion
SELECT 0x7700000066 + 44
GO
146
-- 8 bytes will be used for BIGINT conversion
SELECT 0x7700000066 + CONVERT(BIGINT,44)
Submitted by: Administrator
Read Online MS SQL Server Job Interview Questions And Answers
Top MS SQL Server Questions
☺ | How To Convert Binary Strings into Integers in MS SQL Server? |
☺ | What Happens If You Insert a Duplicate Key for the Primary Key Column in MS SQL Server? |
☺ | Does Index Slows Down INSERT Statements? |
☺ | How To Enter Unicode Character String Literals in MS SQL Server? |
☺ | How To Write Character String Constants or Literals in MS SQL Server? |
Top Databases Programming Categories
☺ | RDBMS Interview Questions. |
☺ | SQL Interview Questions. |
☺ | SSRS Interview Questions. |
☺ | Database Administrator (DBA) Interview Questions. |
☺ | Sybase Interview Questions. |