CREATE TABLE table1 (
c1 INTEGER CHECK (c1 > 0),
c2 INTEGER CHECK (c2 > 0)
);Which of the following insert statements will throw an error?
CREATE TABLE table1 (
c1 INTEGER CHECK (c1 > 0),
c2 INTEGER CHECK (c2 > 0)
);Which of the following insert statements will throw an error?
Create a free account to access the full topic