반응형 분류 전체보기387 커서 커서? select문 또는 조작어 같은 sql문을 실행했을 때 해당 sql문을 처리하는 정보를 저장한 메모리 공간 사용자가 직접 커서를 선언하여 사용 declare cursor 커서이름 is sql문; -- 커서 선언(declaration) begin open 커서이름; -- 커서 열기(open) fetch 커서이름 into 변수 --커서로부터 읽어온 데이터 사용(fetch) close 커서이름; -- 커서 닫기(close) end; - set into set serveroutput on; declare v_dept_row dept%rowtype; begin select deptno, dname, loc into v_dept_row from dept where deptno = 40; dbms_output.. 2022. 11. 2. GitBash_error: src refspec master does not match any, error: failed to push some refs to 'https://github.com/y.git' git commit 없이 push 하려고 해서 발생 -다시 remote 하려고 함 $ git remote add origin https://github.com/yourim0/HTMLCSS.git error: remote origin already exists. - remote 삭제 $ git remote remove origin $ git remote add origin https://github.com/yourim0/HTMLCSS.git $ git remote -v 그래도 안됨 1. 폴더 내 .git 삭제 2. 다시 git init 3. git add . 4. git commit -m "메세지" 5. $ git remote add origin https://github.com/yourim0/HTMLCS.. 2022. 10. 31. 1031_html (이미지태그, 하이퍼링크) 1) 상대 경로 : 현재 파일의 위치를 기준으로 경로 표시 - 현재 자신과 같은 폴더에 있을 때: 이미지 파일명만 기재 -하위 폴더에 있을 때 : 하위폴더명\ + 이미지 파일명 -상위 폴더에 있을 때 : ..\ + 이미지 파일명 ex) ..\..\이미지.png 상위의 상위폴더 2) 절대 경로 : 이미지 위치 경로 \ 파일명 ex) C:\work\htmlcssworkspace\head.png 3) URL 사용하기 2022. 10. 31. 1031_html (테이블 태그) - border:선을 표시 / height:높이값 / width :넓이값 - 단위 : px(기본값), % (브라우저 화면에 비례) - : 행(cols), 왼->오(데이터가 있을 때 왼쪽 데이터가 남는다) - : 열(rows), 위 ->아래 - : td와 동일하나 가운데정렬, 진한글씨로 표현된다 1) 열 병합(rowspan) : 위 ->아래"합쳐지는 개수" 2) 행 병합(colspan) : 왼->오(데이터가 있을 때 왼쪽 데이터가 남는다) 특별한 역할은 없으나 음성인식 프로그램 등 특별한 브라우저에서 사용된다. 웹접근성을 위함 tbody thead tfoot 3행 2열 12 34 56 2022. 10. 31. 1031_html 관련 홈페이지 웹 표준 (스크립트, 태그) : https://www.w3.org/ World Wide Web Consortium (W3C) W3C Workshop Report: WCG and HDR for the Web 28 October 2022 | Archive W3C is pleased to announce the report from the W3C Workshop on Wide Color Gamut and High Dynamic Range for the Web, held online in July-September 2021. This report contains an executive www.w3.org 태그 오류 확인 : https://validator.w3.org/#validate_by_upload html.. 2022. 10. 31. 1021_데이터 사전 ---------------------------------- 데이터 사전 --구조확인 DESC USER_TABLES; --조회만 가능 SELECT TABLE_NAME FROM USER_TABLES; --다른 유저 테이블 조회 SELECT OWNER,TABLE_NAME FROM ALL_TABLES; ---------------------------------- 2022. 10. 31. 이전 1 ··· 49 50 51 52 53 54 55 ··· 65 다음 반응형