What is the candidate key in DBMS?

candidate_key

What is Candidate Key in DBMS? A Candidate Key in DBMS is a minimal set of columns/attributes that can be used to uniquely identify a single/every tuple or row in a relation. Candidate Keys are determined during database design based on the underlying business rules of the database. After finding all possible candidate keys in a relation.DBA chooses … Read more

Python Features | Python tutorial

python_tutorial

Installing and using Python- Download Python 3  from www.python.org  Now double click on the python installer to install the python. Start  Python editor IDLE  to create a python program from the start menu. Python Features- 1. Easy–to – learn. Python “Hello World “  Program: Type the following code in IDLE, and press F5 o execute. … Read more

DBMS Assignment-Level-1

DBMS_Assignment

Sample DBMS Assignment Create table Vendors as follows: Ven_id Ven_name Contact Street City Salary Dept_id 1 Ratna 9044670000 Rajiv Chowk Delhi 30000 A01 2 Anjali 9839780000 Vijay Nagar Kanpur 21000 A01 3 Rahul 9532890000 Model Town Delhi 35000 B02 4 Ankit 7522900000 Rajajipuram Lucknow 24500 C03 5 Sumit 7271000000 Ramadevi Kanpur 26000 B02 6 Kapil … Read more