I have a column that returns a very large hex valu...
# general
d
I have a column that returns a very large hex value (from
registry
). I need to do some quick comparisons to look for some known values - I would typically generate a hash of the value for easier comparisons and long-term storage, but am not finding any sqlite hashing function. Any ideas?
t
I think we added one, give me a second to look through the code.
Does sha256(column_name) work?
d
@theopolis NICE yes it does, thanks!