본문 바로가기
  • 노란색 세상은 어디에 있을까?
  • 봄이 오면 여기에 있겠지.
  • 잠시나마 유유자적 하겠네.

오라클/테이블(인사관리)8

[ 발령 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 발령 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_assignment cascade constraints; create table bhrm.hrm_assignment ( corp_id number not null ,asg_id number not null ,asg.. 2024. 4. 12.
[ 임직원기본 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 임직원기본 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_employee_basic cascade constraints; create table bhrm.hrm_employee_basic ( emp_id number not null ,group_hire_date d.. 2024. 4. 12.
[ 임직원 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 임직원 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_employee cascade constraints; create table bhrm.hrm_employee ( corp_id number not null ,emp_id number not null ,emp_nu.. 2024. 4. 12.
[ 조직도상세 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 조직도상세 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_dept_hierarchy_detail cascade constraints; create table bhrm.hrm_dept_hierarchy_detail ( dept_hierarchy_detail_id nu.. 2024. 4. 12.
[ 조직도 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 조직도 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_dept_hierarchy cascade constraints; create table bhrm.hrm_dept_hierarchy ( corp_id number not null ,dept_hierarchy_id .. 2024. 4. 12.
[ 사업장 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 부서 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_dept cascade constraints; create table bhrm.hrm_dept ( corp_id number not null ,dept_id number not null ,dept_cd varcha.. 2024. 4. 12.
[ 사업장 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 사업장 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_business_place cascade constraints; create table bhrm.hrm_business_place ( corp_id number not null ,biz_id number not .. 2024. 4. 12.
[ 법인 ] 테이블 생성을 아래와 같이 진행합니다. -- ------------------------------------------------------------------------------------------------ -- [ 인사관리 ] 법인 테이블 생성 conn system/built123$@ndb; -- ------------------------------------------------------------------------------------------------ -- 테이블 생성 drop table bhrm.hrm_corporation cascade constraints; create table bhrm.hrm_corporation ( corp_id number not null ,corp_cd varchar2(50) not .. 2024. 4. 12.