what is integrity constrains?
Answers were Sorted based on User's Feedback
Answer / srikanth
integrity constraints meanans Data integrity allows to
define certain data quality requirements that the data in
the database needs to meet. If a user tries to insert data
that doesn't meet these requirements, Oracle will not allow.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nirav21686
Integrity constraints are used to ensure accuracy and
consistency of data in a relational database
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kumara swamy naidu
it is a state in which all the data values stored in the database are correct.enforcing this we can make the quality of the data in the data base
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain an exception and its types?
How to use "if" statements on multiple conditions?
What is a initialization parameter file in oracle?
What is meant by recursive hints in oracle?
Explain what are the type of synonyms?
how to tune oracle sql queries pls tell me step by step. urgent pls
how the Oracle Prepares the Execution Plan and how it chooses the Optimal one?
how to make an oracle object
How do I connect to oracle database?
Can cursor variables be stored in PL/SQL tables.If yes how. If not why?
What is oracle host variable?
I have a table emp. There is only one column in the table. In that , there are only three rows in that column. The value in the first row is 'A' and the value in the second row is 'B' and the third row is 'C'. Now, my question is , How will you write a select query to display the output as B C A Note: order by cannot be used coz it gives us output as CBA. But the output should be BCA.