현재부터 X개월 이전의 자료를 검색할 때 사용
select * from tb_goods where g_date >= date_add(now(), interval -6 month)
XX일 이후로 지금 까지의 모든 자료를 검색할 때 사용
select * from tb_goods where g_date between '2018-01-15' and now()
'프로그래밍 > MySQL' 카테고리의 다른 글
SQL 오류 (1064) (0) | 2018.05.24 |
---|---|
SQL update - where (0) | 2018.05.24 |
같은 이름의 데이터베이스를 중복 생성시 오류 (0) | 2018.05.24 |
자료 저장소의 의미와 종류 (0) | 2018.04.24 |