Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What are the various constraints used in Oracle?
Home
Oracle
What are the various constraints used in Oracle?
0
votes
asked
Jan 19
in
Oracle
by
AdilsonLima
What are the various constraints used in Oracle?
oracle-interview-questions-answers
Please
log in
or
register
to answer this question.
2
Answers
0
votes
answered
Jan 19
by
AdilsonLima
Following are constraints used:
NULL – It is to indicate that particular column can contain NULL values
NOT NULL – It is to indicate that particular column cannot contain NULL values
CHECK – Validate that values in the given column to meet the specific criteria
DEFAULT – It is to indicate the value is assigned to default value
0
votes
answered
Jan 19
by
rajeshsharma
These are the following constraints used:
NULL: It is to indicate that a particular column can contain NULL values.
NOT NULL: It is to indicate that particular column cannot contain NULL values.
CHECK: Validate that values in the given column to meet the specific criteria.
DEFAULT: It is to indicate the value is assigned to a default value.
...