날짜 조건 조회 에 관 한 sql 코드
563 단어 조건 부 조회
daysqhql = "select sum(c.casenum) from domain.Case c where" +
" convert(varchar(10),c.limitlastdate,120) = " +
"convert(varchar(10),getdate()-1,120) ";//
convert(varchar(10),c.limitlastdate,120) = convert(varchar(10),getdate()-1,120);
어제 수령 건 수 를 얻 으 려 면 오늘 하루 를 뺀 날짜 와 데이터베이스 에 있 는 날 짜 를 비교 해 야 한다.
그러면 convert 로 형식 을 바 꿔 야 데 이 터 를 얻 을 수 있 습 니 다. 때로는 형식 이 다 르 기 때 문 입 니 다.