SQL - Table Constraints
You try to create a table with:
But get a syntax error. What is the likely cause?
CREATE TABLE test (id INT, CONSTRAINT chk_id CHECK id > 0);
But get a syntax error. What is the likely cause?
