logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • Explain Not Null constraint.


  • Correct Answer
  • Oracle NOT NULL is used on a column to ensure that the value for that column can never be NULL Example: Below, the constraint is that the id should never be NULL If it is, oracle throws an error create table employee ( id number NOT NULL, Name varchar(200) ); 


  • Technology problems


    Search Results


    • 1. Explain Check constraint.
    • Discuss
    • 2. What are the types of constraints avaialable in oracle?
    • Discuss
    • 3. How to recover a dropped table?
    • Discuss
    • 4. How to Add a new column to an existing table?
    • Discuss
    • 5. What is AFIEDT.BUF?
    • Discuss
    • 6. Explain primary key constraint.
    • Discuss
    • 7. Explain foreign key constraint.
    • Discuss
    • 8. Explain unique Constraint.
    • Discuss
    • 9. Explain how to limit the rows that are retrieved by a query.
    • Discuss
    • 10. What are joins? Explain its characteristic features .
    • Discuss


    Comments

    There are no comments.

Enter a new Comment