Describe the different type of Integrity Constraints
supported by ORACLE ?
Answers were Sorted based on User's Feedback
Answer / allin
5 Different integrity constraints are given
1- Primarykey- creating the index and better performance
2- Unique - should not accept the repeated value
3- NotNull - Should enter any value
4- ForeignKey - can accept values which the values should
existed in primarykey column.Should accept
null values.
5- Check - between the two boundaries.
Thanks & Regards,
RatnaRao
9833847339
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / prna
SELECT MIN(SAL) FROM (SELECT SAL FROM (select sal from emp group by sal order by sal desc) WHERE ROWNUM<=3)
| Is This Answer Correct ? | 1 Yes | 1 No |
How a tablespace is related to data files?
After update how do u know how many records got updated
HOW TO CONVERT ORACLE TABLE DATA (RECORDS)INTO EXCEL SHEEET?
How can we find out the duplicate values in an oracle table?
How to name query output columns in oracle?
select trunc(round(156.00,-1),-1) from dual;
What is meant by joins?
Explain the difference between sql and oracle?
What happens if the update subquery returns multiple rows?
If server is in US and client is in india there is timezone is diffrence, How can we display date in indian time when data is displayed from US server timezone?
how to do daily transactions with out sql* loader control file regesterd in apps?
what is the output of select * from emp where null=null & select * from emp where 1=1