SQL - Table Constraints
You try to create a table with this statement:
But get a syntax error. What is the likely fix?
CREATE TABLE employees ( id INT, salary INT CHECK salary > 0 );
But get a syntax error. What is the likely fix?
