본문 바로가기

회원가입 간단한 정합성 검사 회원가입 IDPASS이름취미수영등산낚시게임 더보기
html을 이용한 주사위 게임. 게임 시작 user&nbsp&nbsp&nbsp&nbsp com 주사위1:&nbsp&nbsp&nbsp&nbsp주사위1: 주사위2:&nbsp&nbsp&nbsp&nbsp주사위2: No&nbsp&nbsp&nbsp A&nbsp&nbsp&nbsp B&nbsp&nbsp&nbsp&nbsp&nbsp 승부 더보기
랜덤숫자 7개 생성하기 (로또번호 생성하기,정렬) public class lotto { public static void main(String[] args) {int temp;int no[]={0,0,0,0,0,0};int bonus=0;for(int i=0;i 더보기
오라클 트리구조 검색 select start with ※트리 구조 검색이란? 위 와 같은 그림에서 2번을 select 하면 2,4,5,6 이, 1번을 select 하면 1,2,4,5,6,3,7을 검색 할 수있는 함수를 오라클에서는 지원합니다. mysql 이나 , mssql 에서는 직접 함수를 만들어 줘야 합니다. 1.table 구조의 예 rownum code par_code name 1 01 1 2 02 01 2 3 03 01 3 4 04 02 4 5 05 02 5 6 06 02 6 7 07 03 7 2. 쿼리문 select * from test02 start with code='02' connect by prior code=par_code; ( 02를 시작으로 하위 찾기 ) >>결과 더보기
plan table 생성 스크립트 오라클 sql_developer 사용 9 버전. CREATE TABLE plan_table ( STATEMENT_ID VARCHAR2(30), plan_id NUMBER, TIMESTAMP DATE, remarks VARCHAR2(4000), operation VARCHAR2(30), options VARCHAR2(255), object_node VARCHAR2(128), object_owner VARCHAR2(30), object_name VARCHAR2(30), object_alias VARCHAR2(65), object_instance NUMERIC, object_type VARCHAR2(30), optimizer VARCHAR2(255), search_columns NUMBER, ID NUMERI.. 더보기