Example:
  Objective: In this example, we will be creating a table that has a primary key assigned to an specific column.
           CREATE TABLE TBL_EMP(
                               Ecode varchar(20) Primary key,
                               Name varchar(20),
                               Emailaddress varchar(20),
                               Department varchar(20),
                               Salary int
                                       );