SQL Ograniczenie sprawdzania w istniejącej tabeli
-- Adding CHECK constraint without name
ALTER TABLE Orders
ADD CHECK (amount > 0);
SAMER SAEID
-- Adding CHECK constraint without name
ALTER TABLE Orders
ADD CHECK (amount > 0);