🎴 Flashcard Mode

Linux and Open Source Technology

Card1 / 20
Mastered0
Review0
QuestionClick to flip

____ has unsigned integer datatype.

AnswerClick to flip back
A
MySQL
💡 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.

Change Mode