I usually don't work with MSSQL and wonder how i can match a md5 value of a field value stored as string.
In mysql i would use
SELECT * FROM table WHERE md5(field) = $md5value
but i can't find a simple solution for this in mssql.
Now i loop all posts and check for the matched value in the loop, but this is way to slow.
How do I solve this in MSSQL?
I have no possibility to add a extra field in the table and store the md5 value, so i have to do the check this way.
Using odbc driver in php.