>
> y2k 문제는 mysql에 없나요?
>
> os는 알짜레드헷 5.2 를 쓰고요...
> mysql은 최신버전.. (며칠전 어디서 다운받았는데..거기 기억이.. -.-;;)
> 아파치도 거의 최신 버전...
> php는 3 을 쓰고 있어요.
>
>
문제없습니다.
MySQL itself has no problems with Year 2000 (Y2K) compliance:
-MySQL uses Unix time functions and has no problems with dates until 2069; all 2-digit years are regarded to be in the range 1970 to 2069, which means that if you store 01 in a year column, MySQL treats it as 2001.
-All MySQL date functions are stored in one file `sql/time.cc' and coded very carefully to be year 2000-safe.
-In MySQL 3.22 and later versions, the new YEAR column type can store years 0 and 1901 to 2155 in 1 byte and display them using 2 or 4 digits.
|