What is domain constraints in DBMS?
Answer:
each column contains same type of data thus when you select a data type for a particular domain then DBMS will not accept any value of other data type.
Further information contributed by Ramona Maxwell. Please visit www.sqlsolver.com:
Domain constraints are a user-defined data type which enforces the integrity of the standard data types. A domain consists of all values permitted in a column. In constructing your database you would first select a standard data type such as VARCHAR or INT. You could then constrain or limit the data using NOT NULL, UNIQUE, CHECK, PRIMARY KEY or FOREIGN KEY. For example the CHECK constraint could limit INT data within your domain [column] to numbers less than 5000. You would thus define a custom data type using domain constraints.