Github 로컬에서 작업한 프로젝트를 GitHub의 새로운 저장소에 올리는 방법은 다음과 같습니다. 1단계: GitHub에서 새로운 저장소 만들기 2단계: 로컬 프로젝트에 Git […]
ngrok : 로컬 서버를 다른 네트워크 , 디바이스에서 접속하기
ngrok http 8080 ngrok http —host-header=test_mydomain.test 80 ngrok http —host-header=test_mydomain.test 443 (https://test_mydomain.test 인경우 ) 사용시 : https://b596-124-248-140-20.ngrok-free.app 으로 접속
ORACLE 해당월 첫날 기준으로 월의 마지막날 , 이전달의 첫날 마지막날 구하기
해당월의 첫날 : 2019-07-01 select biz_cdts , count(*) from member_base where TRUNC(join_dtm, ‘MM’) = ‘2019-07-01’ group by biz_cdts select biz_cdts […]
ORACLE DECODE () – if else 함수임 ( CASE WHEN 동일 )
select test_colm from TEST_TABLE 1 2 3 1 2 0 select test_colm , DECODE(test_colm,’1′,’여자’,’2′,’남자’,’기타’) as gender from TEST_TABLE 1 여자 […]
ORACLE LISTAGG 여러행으로 표시되는것을 한행으로 합쳐 표시됨
select test_colm from TEST_TABLE ; 1 2 3 4 5 select LISTAGG(test_colm,’,’) within group (order by test_colm)as testcolm from TEST_TABLE […]
JAVASCRIP react 설치 우분투 에서
1. Install Nodejs #> curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash – #> sudo apt-get install -y nodejs 2. Update […]
Thymeleaf for() 문 – #numbers.sequence()
<th:block th:each=”seq : ${#numbers.sequence(1,10)}”> <p th:text=”${seq}”>0</p> </th:block> <th:block th:each=”seq : ${#numbers.sequence(boardPager.blockBegin,boardPager.blockEnd)}”> <span th:text=”${seq}”></span> </th:block>