목록🌷 (50)
기록
뷰(View) ==> 실제 물리적으로는 존재하지 않는 가상의 논리적인 테이블을 말합니다. - 자주사용하는 복잡한 sql을 view를 만들어 둠으로써 편리하게 사용할 수 있어요. - 사용자 별로 접근 권한을 두고자 할 때에 View를 이용합니다. -----------------------------------------------------------create view 뷰이름 as select ~연습) 이번달에 판매량이 가장 높은 상위 3권의 도서의 정보를 조회- 판매정보는 orders에 있으니 orders테이블로 부터 이번달에 판매된 도서번호 별로 판매량을 조회, 판매량 순으로 내림차순 정렬 select bookid, count(*)from orderswhere to_char(sysd..
> references 부모테이블(주식별자) create table newbook( bookid number primary key, bookname varchar2(50) not null, publisher varchar2(20), price number);create table newcustomer( custid number primary key, name varchar2(20), addr varchar2(50), phone varchar2(20));create table neworders( orderid number primary key, custid number references newcustomer(custid), bookid number references newbook(bookid..
실습을 위하여 emp 테이블에 수당을 의미하는 칼럼을 추가 해 봅니다 > alter table 테이블명 add 칼럼명 자료형;alter table emp add comm number;update emp set comm = 100 where eno = 1000;update emp set comm = 80 where eno = 1001;update emp set comm = 50 where eno = 1002 ;update emp set comm = 70 where eno = 1003;update emp set comm = 100 where eno = 1004;update emp set comm = 70 where eno = 1005;update emp set comm = 90 where eno = 1006..
고객이름별로 주문한 건수를 출력합니다(단, 주문이 없는 고객이름도 출력합니다)select name, count(*)from customer c, orders owhere c.custid = o.custidgroup by name;select name, count(orderid)// 왼쪽을 조회하고싶다면 left , 오른쪽을 조회 rightfrom customer c left outer join orders oon c.custid = o.custidgroup by name; >select 칼럼명from 테이블명[where 조건식][group by 칼럼명][having 조건식][order by 칼럼명] >select 칼럼명from 테이블1 left/right outer join 테이블2on 조건식[group..
- 객실 예약 시스템 자동화 모델링 -- 테이블 명세서 만들기 -- 테이블 인스턴스 만들기 ㅇㅓ.. 사람살려.....어어어ㅓ........ -- 모델링하기 -- 팀별로 데이터 모델링을 하여 ERD, 테이블 명세서, 인스턴스 명세서를 작성하여 슬랙으로 제출하기 팀장/팀이름 정하기1차 프로젝트 주제 선정요구사항 명세서, 데이터모델링 ERP, 테이블 명세서, 인스턴스 명세서 --6/18 5교시 화면 정의서, sql 명세서프로젝트 프로파일러 -- 6/25 5교시 프로그램 구현 및 테스트 6/26-- 7/2