Home » MYSQL » Mysql Compound Statements » Question
  1. The columns containing binary value that include null bytes will not print properly using the %s printf() format specifier.
    1. False
    2. True
    3. NA
    4. NA
    5. NA
Correct Option: B

The columns containing binary value including null bytes do not print properly using the %s printf() format specifier. printf() expects a null terminated string. It prints the column value only up to the first null byte.



Your comments will be displayed only after manual approval.