Posted On: Feb 22, 2018
SQL Coalesce constraint: It is a function of the SQL server which is used for handling the NULL values. By using this function at the time of evaluation the null values will be replaced by the defined values.
Syntax
COALESCE (expression [ 1…..n])
To use coalesce constraint it is needed that all expressions should be of the same type of data. Multiple expressions are acceptable by this function of SQL.
SQL CHECK constraint: The SQL CHECK constraint is used for specifying the values of the column. It is needed that it satisfies the Boolean expression. The definition of check constraint always comes after the data type along with a keyword CHECK.
Never Miss an Articles from us.
MSSQL stands for Microsoft Server SQL that is a Microsoft’s relational database management system. It is a featured d..
SQL Server agent The SQL Server agent plays an important part in the day to day tasks of the SQL Server Database Admini..
It is a tool that allows system’s administrator to monitor the events in SQL Server.It is mainly used to capture and ..