You mean MS SQL Server checksum?
The closest thing to checksum is the HashRow function, the resulting Datatype is BYTE(4):
sel hashrow('bla');
*** Query completed. One row found. One column returned.
*** Total elapsed time was 1 second.
HASHROW('bla')
--------------
22C3F10B
sel hashrow('bla', 1, 123.45, 'foo');
*** Query completed. One row found. One column returned.
*** Total elapsed time was 1 second.
HASHROW('bla',1,123.45,'foo')
-----------------------------
D8BE2563
Dieter