You need to store product names that vary from three to 30 characters. You also need to minimize
the amount of storage space that is used.
Which data type should you use?
A.
VARCHAR (3, 30)
B.
CHAR (3, 30)
C.
VARCHAR (30)
D.
CHAR (30)
You need to store product names that vary from three to 30 characters. You also need to minimize
the amount of storage space that is used.
Which data type should you use?
You need to store product names that vary from three to 30 characters. You also need to minimize
the amount of storage space that is used.
Which data type should you use?
A.
VARCHAR (3, 30)
B.
CHAR (3, 30)
C.
VARCHAR (30)
D.
CHAR (30)
C. Varchar(30)
VARCHAR is variable-length.
CHAR is fixed length.