Login
Remember
Register
Ask a Question
What are the various constraints used in Oracle?
0
votes
asked
Jan 19, 2024
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, 2024
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, 2024
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.
...