목록Univ/디비 (8)
ITGenerations
오라클로 배우는 데이터 베이스 개론과 실습 --5 박지성이 구매한 도서의 출판사 수SELECT count(publisher) as total0FROM orders, book, customerWHERE orders.custid=customer.custid and book.bookid=orders.bookid and customer.name='박지성'; --6 박지성이 구매한 도서의 이름, 가격, 정가와 판매가겨의 차이SELECT bookname,price,price-saleprice as p_sFROM orders, book, customerWHERE orders.custid=customer.custid and book.bookid=orders.bookid and customer.name='박지성'; --..
데이터베이스의 개념및 특징1. 통합된 데이터(Integrated data)2. 저장된 데이터(Stored data)3. 운영 데이터(Operational data)4. 공용 데이터(Shared data) 개념1. 통합된 데이터 - 여러 곳에서 사용하던 데이터를 통합하여 하나로 저장한 데이터를 의미2. 저장된 데이터 - 컴퓨터 저장장치에 저장된 데이터를 의미3. 운영 데이터 - 조직의 목적을 위해 사용되는 데이터를 의미4. 공용 데이터 - 공동으로 사용되는 데이터를 의미 특징1. 실시간 접근성(real time accessibility)2. 계속적인 변화(continuous change)3. 동시공유(concurrent sharing)4. 내용에 따른 참조(reference by content) 1. 실시..