Home » MYSQL » Data Types » Question
  1. Which of these columns are faster?
    Variable length, Fixed length
    1. indeterminate
    2. fixed length
    3. variable length
    4. same
    5. None of these
Correct Option: B

The fixed length columns are faster and take more space. CHAR(n) columns take n characters per value because the values are padded with trailing spaces when stored in the table.



Your comments will be displayed only after manual approval.