I am working on an application that will have to do some data verification by checking the fingerprints stored in the MySQL database. It was suggested to use proprietary software such as "AFIS" .. but I wonder if the check made using the BLOB column in the "where" clause of the select statement can filter the data. Is it possible?
The code I mean looks something like this:
Select id from mytable where image not in (select image from other table)
With image columns with blob data type
source share