NOW()
-
MYSQL NOW() 에 DATE_FORMAT Function 씌우는 이유♣ Tech & Biz Salon/Tech 2012. 3. 27. 16:20
NOW() Returns the current date and time as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is used in a string or numeric context. The value is expressed in the current time zone. mysql> SELECT NOW(); -> '2007-12-15 23:50:26' mysql> SELECT NOW() + 0; -> 20071215235026.000000 위의 내용은 MYSQL 매뉴얼의 NOW() 에 대한 설명 일부분. 난 매뉴얼로 NOW() 를 확인했었기에... NOW() 의 ..