____ has unsigned integer datatype.
-
MySQL
-
Postgres
-
Both
-
None of these
A
Correct answer
Explanation
MySQL supports unsigned integer datatypes like INT UNSIGNED, BIGINT UNSIGNED which allow only non-negative values and effectively double the positive range. PostgreSQL does not have native unsigned integer types - it uses signed integers with CHECK constraints for similar functionality.