plsql add check two values

Solutions on MaxInterview for plsql add check two values by the best coders in the world

showing results for - "plsql add check two values"
Rod
27 Jun 2018
1ALTER TABLE suppliers
2ADD CONSTRAINT check_supplier_name
3  CHECK (supplier_name IN ('IBM', 'Microsoft', 'NVIDIA'));