Can you write code that proofs that @c and @b are the same value (0x1F40B33B42750DA9BBCD79F36728C7C9 )
Denis The SQL Menace
--------------------
SQL Server Code,Tips and Tricks, Performance Tuning
SQLBlog.com, Google Interview Questions
Code:
declare @c varchar(34),
@b varbinary(16)
set @c = '0x1F40B33B42750DA9BBCD79F36728C7C9'
set @b = 0x1F40B33B42750DA9BBCD79F36728C7C9
Denis The SQL Menace
--------------------
SQL Server Code,Tips and Tricks, Performance Tuning
SQLBlog.com, Google Interview Questions