All Questions
1 question
2
votes
4
answers
286
views
Process each row against each other, how much would it cost?
If I have n rows in a database, and I want to compare every row against each other, how many loops (or processes) would I need to do.
Is it n2? (so if I have 30,000 rows then it would be 900,000,000)
...