Controller 1. URL Mapping2. Request binding3. Validation4. 처리 결과를 매핑 BO1. 업무에 대한 처리 DAO1. 영속성을 가진 데이터를 처리 1. Controller2. Service3. Repository@Component - component-scan Data Access 1. SimpleJdbcDaoSupport2. SimpleJdbcTemplate3. DataSourceTransactionManager4. Spring ORM5. iBatis
select initcap(ID) from student where deptno1 = 201; select initcap('Pretty girl') from dual; select name 이름, id, lower(ID) 소문자, upper(id) 대문자 from student where deptno1 =201; select name 이름, id, length(id) 글자수 from student where length(id) > 9; select name 이름, length(name), lengthb(name) from student where deptno1 = 201; select concat(name, position) from professor where deptno=101; select subs..
http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 에서Oracle Database 11g Release 2 / (11.2.0.1.0) / Microsoft Windows (32-bit) / 파일 2 개 다운로드다운로드한 2 개의 파일에서 \database\stage\Components 경로 내에 있는 파일 통합 (3개 파일) 설치 후 cmd -> sqlplus -> system/password 로 로그인. 혹은 sqlplus "/as sysdba" 로 로그인(관리자) 관리자 암호 잃어버린 경우command에서 관리자모드로 로그인 후 alter user system identified by 암호; scott ..