이번에는 JS 날짜 관련 함수 사용에 대한 자세한 설명을 들고 왔고, JS 날짜 관련 함수 사용 시 주의사항은 무엇인지 살펴보겠습니다.
1. 날짜 관련 기능
select current_date(); select current_date; select current_time; select current_timestamp; select date_add (current_timestamp(), interval 1 year); select date_add (current_timestamp(), interval 1 month); select date_sub (current_timestamp(), interval 1 year); select date_sub (current_timestamp(), interval 1 month); select datediff(current_timestamp(), date_add (current_timestamp(), interval 1 month ); select timediff('12:30:30', '18:30:30'); select now();select year(now()); select month(now());
2. 프로세스 제어 기능
IF (expr1,expr2,expr3); select if (1 > 0, 'hello','see you'); IFNULL (expr1,expr2);select ifnull (null, 3 + 2); SELECT CASE WHEN expr1 then expr2 else expr3 end; select case when 10> 0;
3. 기타 기능
USER(); DATABASE(); MD5(str) ; PASSWORD(str );
이 글의 사례를 읽으신 후 방법을 마스터하셨다고 생각합니다. PHP 중국어 웹사이트 기사에서 다른 관련 주제에 주목하세요!
추천 자료:
SQL 주입을 방지하기 위한 PHP의 데이터 보안 방법
위 내용은 JS의 날짜 관련 기능 사용법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!