[오라클] 요일 구하는 방법
* 요일 구하는 방법 sql문) select (sysdate+7)-next_day(sysdate,1)+1 from dual; => (1주일 후 날짜) - (차주 일요일 날짜) => 1:일, 2:월, 3:화, 4:수, 5:목, 6:금, 7:토 [참고] 기타(요일, 년 주차, 월 주차) select to_char(sysdate,'d') from dual; //요일 1:일, 2:월, 3:화, 4:수, 5:목, 6:금, 7:토 select to_char(sysdate,'dy') from dual; //요일 한글 ,월, 화, 수, 목, 금, 토, 일 select to_char(sysdate,'iw') from dual; //년의 주차 select to_char(sysdate,'w') from dual; //월의 주차
더보기
[C언어] 현재 시간의 마이크로세컨드 구하는 방법
* 현재 시간의 마이크로세컨드 구하는 방법 [마이크로세컨드 구하는 방법] #include #include void GetMilSecStr(char *dt) { struct timeval val; struct tm *ptm; gettimeofday(&val, NULL); ptm = localtime(&val.tv_sec); memset(dt , 0x00 , sizeof(dt)); // format : YYMMDDhhmmssuuuuuu sprintf(dt, "%04d%02d%02d%02d%02d%02d%06ld" , ptm->tm_year + 1900, ptm->tm_mon + 1, ptm->tm_mday , ptm->tm_hour, ptm->tm_min, ptm->tm_sec , val.tv_usec); }
더보기