2차 버전

 

 

 

1차 버전

 

DB 연결은 언젠가 하겠지....

일단은 처음해보는 유니티로 껍데기먼저

'금전출납부' 카테고리의 다른 글

로그인 껍데기  (0) 2021.08.10

유니티로 빌드를....
실행하면 유니티 로고

 

유니티 로그인 껍데기

 

이거 만드는데 3시간 ㅋ

hoon202.exe
0.62MB

'금전출납부' 카테고리의 다른 글

회원가입 껍데기  (0) 2021.08.11

 

1.

select abc, id

from a

limit 10000, 10;

 

 

2.

select abc, id

from a

limit 10 offset 10000;

 

 

3-1.

select q.abc, id

from (

  select abc

  from a

  where 필요하면 작성....

  order by 필요하면 작성...

  limit 10000, 10

) q

join a

on q.abc = a.abc

;

 

 

3-2.

select q.abc, id

from a

join (

  select abc

  from a

  where 필요하면 작성....

  order by 필요하면 작성...

  limit 10000, 10

) q

on q.abc = a.abc

;

 

 

3-3.

select q.abc, id

from a, (

  select abc

  from a

  where 필요하면 작성....

  order by 필요하면 작성...

  limit 10000, 10

) q

where q.abc = a.abc

;

<html>

<h2 id="pt">테스트</h2>

</html>

 

<script>

pt = document.getElementById("pt");

 

$(pt).addClass("addClassTest");

$(pt).addClass("addClassTest2");

</script>

 

---------------------

결과는 

 

<h2 id="pt" class="addClassTest addClassTest2">테스트</h2>

 

<html>

<h2 id="pt">테스트</h2>

</html>

 

<script>

pt = document.getElementById("pt");

pt.addEventListener("click", ptClick, false);

 

function ptClick(e) {

    console.log(e.currentTarget);

}

</script>

 

 

---------------------

console.log 결과는 

 

<h2 id="pt">테스트</h2>

'' 카테고리의 다른 글

java 한글 인코딩 확인  (0) 2019.01.11

+ Recent posts