Home » MYSQL » Data Types » Question
  1. Character data can be stored as
    1. Variable length string
    2. Fixed length string
    3. Either Variable or Fixed length string
    4. Random length string
    5. None of these
Correct Option: C

To store character data we can use two definitions
Char(20) /*fixed length */
Varchar(20) /* variable length */



Your comments will be displayed only after manual approval.