일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 데이터베이스
- javaee
- w3school
- NCS
- cisco packet
- Oracle
- VLAN
- 버추얼머신
- php
- 정보처리기사
- 정처기필기
- autoset
- 참조타입
- ciscopacket
- ospf
- Java
- 라우터
- jsp연결
- 자바
- 원형그래프
- jsp
- 네트워크
- rinux
- 리눅스
- Cisco
- 오라클
- 이것이 자바다
- html
- sql
- 네트워크관리사
- Today
- Total
목록Oracle (40)
기록해! 정리해!
11) Join 274p select * from student; --600번 있음 select * from student inner join enrol on student.sno=enrol.sno; --600번 없음 select * from student inner join enrol on student.sno=enrol.sno where sname ='나연묵'; --이너조인을 하면 할수록 레코드가 줄어들 수도 있다. 같은게 없으니까 --세개 조인 select * from student join enrol on student.sno=enrol.sno join course on enrol.cno=course.cno; --1.학생sno와 등록sno를 기준으로 조인 2.교수cno와 등록cno을 기준으로 조인..
5/18 1) 커밋 : 커밋을 눌러야 확정이 돼서 웹에서 보임 (외부에서 들어오는 데이터는 자동으로 커밋됨) 2) 데이터 정의어 DDL - Create, Drop, Alter(수정), DML- 조작어, select, update, insert, delete DCL -데이터 제어어 , Grant, Revoke 권한을 부여하고 회수하는 것 TCL - 트렌젝션 제어어 , Commit(확정), Rollback(원위치) *224p 3) 5/17복습 drop table enrol; drop table student; drop table course; create table student( sno varchar2(3) , sname nvarchar2(10), year varchar2(10), --char(1) / n..
05/17 1) 문자/숫자 '001' : 문자; 001 001 : 숫자; 1 2) 실수 sno number(3,1) ( 정수2자리, 소수 1자리 ) / 전체 길이는 3, 소수점 1개 3) update / 전산연산 update t0517 set age=age-2; a = a+1 ; 오른쪽에서 왼쪽으로 넘김, 자기 자신 값에 1을 더하는 것 예) a = 5 a = a+1 즉, a는 6 S = S+a ; 누적 i = i+1 ; 1을 증가하는 식 예) age = age+1 4) or연산 where sname='효리' or sname='솔라' where sno in ('B01','B03'); 5) select where sno='A01'or sno= 'A02' where sno='A01'and sname wher..
8) 문두어 insert into enrol(sno,cno,grade,midterm,final) --자바에서는 명령어로 final이 있기때문에 컬럼이름으로 사용할 수 없음 values('400','C123','A',90,90); 테이블의 이름 앞 글자를 따라 컬럼의 이름을 만들어줌 예) student - sno, sname ... course - con, cname ... 9) join (테이블 두개 묶기) [ANSI-SQL] --권장 select * from student join enrol on student.sno=enrol.sno; [T-SQL, PL-SQL] select * from student, enrol where student.sno=enrol.sno; insert into student..
drop table enrol; --얘부터 지워야함 drop table student; drop table course; create table student( sno varchar2(3) not null primary key , --컬럼 옆에 pk가 기본 sname nvarchar2(10), year varchar2(10), dept nvarchar2(10) ); insert into student(sno,sname,year,dept) values('100','나연묵','4','컴퓨터'); insert into student(sno,sname,year,dept) values('200','이찬영','3','전기'); insert into student(sno,sname,year,dept) values('..
4) update 연습 & 전산 연산 Create table T0517( sno char(3), sname nvarchar2(5), age number(3) ); insert into t0517(sno,sname,age)values('B03','효리',24); update t0517 set sname='솔라', age='21' where sno='B01'; update t0517 set age='23' where sname='효리'; update t0517 set age=age-2; select sno, sname, age from T0517; * 전산연산 a = a+1 ; 오른쪽에서 왼쪽으로 넘김, 자기 자신 값에 1을 더하는 것 예) a = 5 a = a+1 즉, a는 6 S = S+a ; 누적 i ..