0
In a database I have registration information as:
- age
- color
- heaviness
That of each person registered.
How to identify people who have exactly the same data on this basis?
In practice:
- Edu, 46, white, 70kg
Bio, 46, white, 70kg --> that gave equality 100% .
Edu, 46, white, 70kg
- Leo, 36, white, 60kg --> that gave equality 80%
Then the first option would be the desired.
You already have your comparison function?
– Jefferson Quesado
When should it do so? It is a user request?
– King Raven
I do not have the function of comparison, this routine can run in the background in the database (hence would not be a PHP) actually in the question I put PHP but should be PL SQL or Procedure
– Eduardo Correia