I am trying to understand binary_checksum and how it works in this scenario,
Value for a and b is its their ASCII values(97,98) but ab and ac is returning some other values (1650,1651).
The query is,
select binary_checksum(7), id,binary_checksum('a'), binary_checksum('b'),
binary_checksum('ab'), binary_checksum('ad') from employees;
How does it work ? Please explain.