-
Which of these comparisons is slowest?
-
- BIGINT/BIGINT
- INT/INT
- INT/BIGINT
- All are of same speed
- None of these
Correct Option: C
On comparing indexed columns, identical data types will give better performance than dissimilar types. So an INT/INT or BIGINT/BIGINT comparison is faster than an INT/BIGINT comparison.