BloggingAbout.NET
Thoughts of developers
Sign in
|
Join
|
Help
Home
Blogs
Media
All Tags
»
tsql
(
RSS
)
Browse Blog Posts by Tags
Showing related tags and posts for the
Blogs
application. See
all tags in the site
bitwise operators
MSSQL
numeric
sql
varbinary
Mssql: Cannot use bitwise operators on varbinary or numeric
I want to perform bitwise operations on a varbinary colum. As it contains binary data I though that it would work but it didn't This example works: declare @a int declare @b int set @a = 1 set @b = 2 select @a | @b But this wont: declare @a varbinary(100) declare @b varbinary(100) set @a = 1 set...
Posted to
Ramon Smits
by
Ramon Smits
on Mon, Feb 25 2008
Filed under:
Filed under:
MSSQL
,
bitwise operators
,
sql
,
tsql
,
varbinary
,
numeric
Page 1 of 1 (1 items)
Copyright © 2003-2010 BloggingAbout.NET