I'm trying to add this into my Oracle database (in SQL*Plus) but how do i make the constraint? i tried check but it wasn't working. Here's what i got though:
-- Add a new attribute years of experience to table Tech_personnel, and enforce it to be a positive value (i.e., > 0).
my solution:
ALTER TABLE Tech_personnel ADD years_of_experience NUMBER(30);
ALTER TABLE Tech_personnel ADD CONSTRAINT non_neg
CHECK(years_of_experience > 0);