Yo mensen.
Alweer een vraag van mij:
Welk MySQL type moet je gebruiken als je wilt zien wanneer een gebruiker zich heeft geregistreerd?

En wat doet de functie INT Unsigned (ofzo??)
DATETIME is datum en tijd ineen.
copy => paste
All integer types can have an optional (non-standard) attribute UNSIGNED. Unsigned values can be used when you want to allow only non-negative numbers in a column and you need a larger upper numeric range for the column. For example, if an INT column is UNSIGNED, the size of the column's range is the same but its endpoints shift from -2147483648 and 2147483647 up to 0 and 4294967295.

RTFM!

Reageren