본문 바로가기

분류 전체보기377

Beginner's Guide to Unturned This part simple, start game, press tutorial, use tutorial, then we get to the basics. Part 1 : Starting Your World You have spawned in the world (somewhere completely random, be it a farm, town, military base or even the airport) everything is peaceful and OH GOD ZOMBI--- Ahem, sorry about that. You will first need to find a backpack as you can only have 4 slots without one. The best ones to ge.. 2014. 9. 6.
트레인 피버 초보 가이드(A Beginner's Guide to Train Fever) (동영상보기)1. Starting a new game When starting your first game, pick a small world size. Trust me, it's still huge. As a beginner, you don't need a medium or large map. The terrain you pick should be flat or medium, not hilly. Then, just click Start. Don't worry if nothing seems to happen for a little while, it takes time to load the game world! When the game world loads, click the pause button (in.. 2014. 9. 6.
Teradata - QUALIFY ROW_NUMBER() SQL 을 작성하다보면 최근값을 가져오기 위해 SELECT * FROM TAB1 WHERE SEQNO = (SELECT MAX(SEQNO) FROM TAB2 WHERE T1.SEQNO = T2.SEQNO); 형태로 가져올 때가 있다. 이 때 QUALIFY ROW_NUMBER()을 유용하게 사용할 수 있다. 예시) SELECT PID, ORDDD, SEQ, COL1 FROM TAB1 QUALIFY ROW_NUMBER() OVER(PARTITION BY PID, ORDDD ORDER BY SEQ DESC ) = 1; 설명: PID, ORDDD 별로 SEQ 를 정렬하여 1개 값을 가져 오기 2014. 9. 2.
Teradata - Substring 과 Substr 비교 기본적으로 Teradata SQL Assistant 를 사용할 때는 Teradata 를 통해 접속을 한다. 하지만 일반 어플리케이션에서는 ODBC를 통해서 접속하거나 JDBC를 통해서 접속을 한다. 이 때 사용할수 있는 함수나 기능적으로 차이가 날수 있다. 그예로 substring 과 substr을 살펴보면SELECT SUBSTRING ('1234567890' FROM 1 FOR 5);> 12345 SUBSTRING(string FROM ~ FOR) 는 ANSI 표준으로 Teradata 나 ODBC 다 가능하다.SELECT SUBSTR('1234567890' ,1,5); > 12345 위의 경우도 둘다 가능하다. 하지만 아래의 경우에 Teradata 를 사용하는 경우 오류가 발생한다.SELECT SUBS.. 2014. 8. 28.