Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> logic operators in sql
Are there logic operators (bitwise &, |) available in SQL?
For example, in C, the expression (number & 3) produces the following values for number:
3 & 3 = true (binary 11 & 11) 4 & 3 = false (100 & 11) 7 & 3 = true (111 & 11)Received on Mon May 24 2004 - 17:10:05 CDT
![]() |
![]() |