SpreadSheet
A1 : 2:00:00
A2 : 3:00:00
= A1 + A2 + Time(1, 0, 0)
-> A1 + A2 + 1시간 = 6:00:00
SpreadSheet
A1 : 2:00:00
A2 : 3:00:00
= A1 + A2 + Time(1, 0, 0)
-> A1 + A2 + 1시간 = 6:00:00
이클립스를 사용. 터미널에서 svn이 사용가능할 것.
1. workspace에서 check out
svn -co [repository url] [target directory]
ex) svn -co http://aaa.bbb.ccc/projectd/trunk projectd
2. 이클립스에서 프로젝트로서 import
checkout 시 svn에 필요한 정보들이 파일로 자동 생성되므로, svn plugin(subclipse)가 있을시 그대로 repository기능 사용가능.
3. 기본 명령
svn commit -m [comment]
svn update
svn status
svn add [file, directory]
svn info
svn delete [file, directory]
if(Key.isDown(Key.RIGHT)) {...}
오늘의 0시
select date_trunc('day', current_timestamp);
* day 혹은 year, month
** current_timestamp : 현재의 타임스탬프
6개월전의 첫날
select date_trunc('month', current_timestamp + '-6 months');