InterviewSolution
Saved Bookmarks
| 1. |
What is the precision of BIGINT?(a) 32(b) 64(c) 128(d) 16 |
|
Answer» The correct choice is (b) 64 Easy explanation: In MySQL, for the expressions containing only exact values that are all integers, the evaluation uses BIGINT (64 – bit) precision. MySQL evaluates expressions using exact/approximate math. |
|