ORACLE SQL EXPERT EXAMPLES USE WINSCP TO EXECUTE ATTACHED FILE ON LINUX test_data.sql 첨부했음 (includes tables used in examples) 1. student table, jumin 칼럼사용 8월달 이름 생년월일 출력 ANSWER) select name, substr(jumin,1,8) from student where substr(jumin,4,1) = '8'; 2. student table, 전공이 101번 이름 전화번호 지역번호 출력 ANSWER) select name, tel, substr(tel, 1, instr(tel,')')-1) from student where deptno1=101; 3. student ..
단일 함수 -연산자 연결연산자 : column||'comment'||column in(a,b,c) -distinct 중복된 값 제거 select distinct column like 특정패턴 ex)where name like '김%' 'ㅈ'자로 시작하는 where name between '자%' and '차&' --------------------------------------------------------------------- 문자함수 initcap() lower() length() lengthb() contact('A','B') 결합해서 출력 substr('ABC',1,2) AB substrb('한글',1,2) 한 lpad('love',6,'*') **love ltrim('*love','*') ..