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?

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)



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Jain

Jain

C. Varchar(30)

ahmed

ahmed

VARCHAR is variable-length.

CHAR is fixed length.