17.10 - Example: Querying the BITAND Operation On An INTEGER - Advanced SQL Engine - Teradata Database

Teradata Vantageā„¢ - SQL Functions, Expressions, and Predicates

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2021-07-28
dita:mapPath
SQL_Functions__Expressions__and_Predicates.Upload_071421/djk1612415574830.ditamap
dita:ditavalPath
SQL_Functions__Expressions__and_Predicates.Upload_071421/wrg1590696035526.ditaval
dita:id
kby1472250656485

The following query performs the BITAND operation on an INTEGER and a single-byte hexadecimal byte literal.

   SELECT BITAND(287454020, 'FFFF'XB);

The INTEGER value 287,454,020 has a hexadecimal value of 0x11223344 and a bit numbering representation of:



The hexadecimal byte literal 0xFFFF has a bit numbering representation of:



To process the BITAND operation, the two arguments are aligned on their least significant byte/bit as follows:





The shorter-length hexadecimal byte literal 0xFFFF is padded with zeros to the left until it is the same length as the INTEGER value 287,454,020.





When both operands are the same size, the BITAND operation is performed, producing the following result: