Xin đừng chắc chắn lý do tại sao Im nhận được lỗi này. Về cơ bản tôi nhận được nó trong ba dòng:Oracle PLS-00363: biểu thức '' không thể được sử dụng làm mục tiêu chuyển nhượng
PLS-00363: expression 'p_temp_foo.editable.modified_by' cannot be used as an assignment target
PLS-00363: expression 'p_temp_foo.editable.date' cannot be used as an assignment target
PLS-00363: expression 'p_temp_foo.editable.modified_by' cannot be used as an assignment target
thủ tục:
PROCEDURE run_temp_procedure (p_temp_foo IN part_bean, p_member_number IN NUMBER)
IS
t_temp_foo part_bean;
now DATE;
BEGIN
now := SYSDATE;
p_temp_foo.editable:= t_temp_foo.editable;
p_temp_foo.editable.date := SYSDATE;
p_temp_foo.editable.modified_by := p_member_number;
END run_temp_procedure ;
Bạn cần gán giá trị cho 't_hot_part' hoặc đặt tham số' p_hot_part' thành 'out'. – Ben