[oracle] 비만도 계산 create, insert, update, case when
*조건 1. 표준체중계산 (신장cm-100) X 0.9=표준체중, 표준체중에서 -5Kg~ +5Kg 는 정상입니다. 2. 비만도 측정방법 비만도(%) = 현재체중(kg) / 표준체중(kg) *90~110% = 정상 *110~120% = 과체중으로 분류합니다. *120~140% = 비만으로 분류합니다. *140% 이상 = 저체중입니다 create table weight_info ( height number(3, 0), c_weight number(3, 0), s_weight number(3, 0), bimando number(3, 0), bigo varchar2(10) ); insert into weight_info values (160, 50, 0, 0, ''); insert into weight_info..
[oracle] create, alter, update
* pyong_info table 생성 후, ho_info 의 area 값에 해당하는 평을 생성하시오.. 중복은 당연히 제거하고, comm_area = 0 , area 값은 ho_info값, price 는 모두 0, ins_date 는 입력일자, pyong_info 데이터는 아마 24, 32 평 2개로 구성될듯.... pyong_code number(3) -- key pyong varchar2(100) -- 23(평) comm_area number(19,2) -- 10.4(m2) area number(19,2) -- 89.9(m2) pyong_price number(19,2) -- 평형별 금액 unit_price number(19,2) -- 평단가 ins_date date -- 입력일자 create ta..