logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • Explain primary key constraint.


  • Correct Answer
  • Primary key constraint ensures that the column(s) always has a unique value to identify the record Example: Below, the primary key is created for column id with name prim_id create table employee ( id number NOT NULL, Name varchar(200) Constraint prim_id primary key(id) ); 


  • Technology problems


    Search Results


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


    Comments

    There are no comments.

Enter a new Comment