Unterschied Assertion Constraint

Hi,

was ist denn genau der Unterschied zwischen Assertion und Constraint?
Ich kann im internet dazu nichts finden, bin jedoch der Meinung,
dass die beiden Begriffe als Äquivalent anzusehen sind?

Vielen Dank!
Gruß Mentor

Kannst du bitte mal aufzeigen, in welchem Zusammenhang du die Begriffe verwendest?

Danke

Assertions

An assertion is a special type of integrity constraint and shares the same namespace as other constraints. However, an assertion is not necessarily dependent on one particular table as constraints are, so SQL92 provides the CREATE ASSERTION statement as an alternate method for defining a constraint:
CREATE ASSERTION name CHECK ( condition )

PostgreSQL does not implement assertions at present.