I was wondering how to put a constraint on a column when making the table. How would the create statement look if I want to say something like, make a table called name with column size, and size has to be greater than 10.
CREATE TABLE name(size int);
Where do i put the constraint?
CREATE TABLEstatement?