I have a field named X where the fieldtype is Binary(15).
Now I am updating the table with
Update Table_name
Set X = 567845329090989
Where some_condition
Now after executing the above command in the table while viewing I am seeing that the column is updated with the following
0x0000000F000001ADB920CB73040200
This is not Hexadecimal value also. How is this working?
bigintdecimal(15,0)I forget exact details but it’s to do with endianess (SO)