Skip to main content

SQL Problem - Find 3rd highest employee salary

Different Keys In DBMS


Do we need key?

DBMS (Database Management System) stores large amount of data in such a way so that it will be easy to read, write and secure in efficient manner. It uses table format to organize data and store data in column and row format. However, data is stored in unordered format and difficult to identify unique record from the table.

Let us understand this concept with two simple tables which represent data about the employees and their respective department.

Employee Table
Code Name Email Address Dept. Code Phone Number Address
01 John Smith j.smith@example.com 3 123-456-7890 123 Main St, City, Country
02 Jane Doe j.doe@example.com 1 987-654-3210 456 Elm St, City, Country
03 David Johnson d.johnson@example.com 2 555-123-4567 789 Oak St, City, Country

Department Table
Code Name Location
1 HR New York
2 IT Banglor
3 Marketing Singapore



Column represents the different attribute about entity. Age, Nationality, Passport Number, Email address etc. information for a user entity will be represented as different columns. In the employee table Code, Name, email address, phone number and address are the columns to represent individual employee details in the organization. Similarly in the department table code, name and location represent information about various departments in the organization.

Row represents information about the entity attributes. Each row in the table represents information about a particular entity. In real world application each table stores thousands or millions of entity information. To get records from table, we need to apply filter criteria on the different columns, but in some scenario, we get duplicate records from the database which leads to update or delete anomaly.

To solve this issue, we need to define key column in the table so using which we can update, delete or fetch unique record for an entity.

Keys

Key means a column or set of columns which identify unique row from the table. It is helpful when we required to find or select a particular row from the table. There are different types of key available in the DBMS (Database Management System) to identify unique row from the database table.

In the employee table we are multiple columns which helps us to identify unique records of the employee i.e. code, email address and phone number. We can consider all of them as Key for the table.



Super Key

Super Key is defined as a set of attributes within a table that can uniquely identify each record within a table. Super Key is a superset of Candidate key.

In our employee table, super key can be phone number, email, code or combination of any columns which identify unique records within a table.

Candidate Key

Candidate key is a column or set of columns which can be used to identify unique record from the table. 

  • There can be more than one combination of Candidate keys in the table. 
  • Candidate key cannot have NULL value. 
  • Primary key can be any one of the Candidate keys.

In our employee table, Code, email, phone number and email plus phone number, code plus name columns can be considered as Candidate key.

Primary Key

The table can have more than one keys which helps to identify any row uniquely. Primary key is first and most suitable column which can be used to identify unique row from the table.

It can be Auto Increment Number, UUID or Timestamp when record created etc. 

In our example, Code column in both the tables are primary key because it will be unique auto increment number assigned to employee and department and never has NULL value.

This key will be used as reference in another table to define relationship between them.

Composite Key

When a primary key consists of more than one attributes/columns it is called Composite key. It is also called Concatenated Key.

In our employee table if we are combining email address and phone number column as primary key instead of code column then it is called Composite key.

Artificial Key / Surrogate Key

A Surrogate key is an artificial key that can distinctly identify every row in the table. It is unique, updatable, and can’t be NULL. Surrogate Keys of DBMS are allowed in certain cases when:
  • The primary key is too big
  • Complicated Primary Key
  • Absence of key

Foreign Key

A Primary key which is used as reference key in another tables to establish relationship between two tables then it is called Foreign Key.

In our example each employee belongs to a particular department. Employee table stores department code as the reference key to indicate relation between employee and department.  Department code in the Employee table is treated as foreign key.

Table can have multiple foreign as it can have relations with multiple entities.

Unique Key

Unique key is similar to primary key, but it allows the NULL value in the column. 
It ensures that column(s) has unique value in the table. 
Unlike primary key, table can have more than one Unique Key. 
It also does not become the identifier of the row in the table.


DBMS Keys Chart


I hope you liked the blog and able to understand the concepts of keys in the DBMS.

Thank you. Appreciate your feedback and comments.



Comments

  1. this blog really helps me to understand some of the keys concepts that i was not aware of this before.
    insightful

    ReplyDelete

Post a Comment

Popular posts from this blog

SQL Constraints In DBMS

  Do we need constraints? SQL Constraints are set of rules and restrictions which are applied to the columns or table of the database. This constraint ensures below points. Data consistency No accidental data loss by deleting reference data. Reduce data redundancy. Table Level Constraints PRIMARY KEY FORIEGN KEY PRIMARY KEY Primary Key constraint ensure that column doesn't contain NOT NULL value and unique. It will be used to identify particular row from the table. Table is by default index on the primary key column. Below sample code creates EMP_ID as primary key for EMPLOYEE table which is auto increment by one every time a new record inserted in the table. CREATE TABLE EMPLOYEE (     EMP_ID INT PRIMARY KEY AUTO INCREAMENT NOT NULL ,     NAME   VARCHAR ( 200 ),      EMAIL VARCHAR ( 200 ), AGE INT,     PHONE_NUMBER VARCHAR ( 15 )     ISACTIVE CHAR ( 1 ) ) FOREIGN KEY Foreign Key is used to relate two tables. Th...

SQL Problem - Find 3rd highest employee salary

Problem Statement Create an SQL query to retrieve all details of employees who receive the third-highest salary. Ensure the query returns all columns from the employees table. Additional Requirement: Do not use the LIMIT keyword in your query. Sample Input: Table: employees: Sample Output Solution: Approach 1: Using Sub Query: select * from employees where salary = ( select distinct ( salary ) from employees   order by salary desc limit 1 offset 2 ) The subquery finds the third-highest distinct salary by ordering the salaries in descending order, skipping the first two, and then selecting the next one. The main query then retrieves all employees who have this third-highest salary. Approach 2: Using Nested Inner Queries SELECT * FROM EMPLOYEES WHERE SALARY = (     SELECT MAX ( SALARY ) FROM EMPLOYEES WHERE SALARY < (         SELECT MAX ( SALARY ) FROM EMPLOYEES WHERE SALARY < (           ...