I want to set the limit for my table\'s rows. How can I do it?
For example 50 rows in my table.
Use a CHECK constraint. E.g.:
CREATE TABLE t1 (x TINYINT NOT NULL UNIQUE CHECK (x BETWEEN 1 AND 50));