Computer Science, asked by muiezkazi, 9 months ago

Students wants to create a field pincode in a table , which data type he will choose
Decimal OR INT [ numeric]
WHICH ONE?

Answers

Answered by meghanapeddinti
5

Answer:

Int

Explanation:

They should use int because pincode shouldn't be in decimals.

Answered by AskewTronics
2

"INT" is the correct answer for the above question.

Explanation:

  • The Pincode takes always Numeric value as an integer, It does not hold the decimal of floating-point value.
  • To store the undecimal value which is also a numeric value, a user needs to define the integer data type.
  • It is because it takes only the integer type value. The syntax to define the int data type with the database creation statement is "Attributes_name int".

Learn More:

  • SQL Create statement : https://brainly.in/question/14822991
Similar questions