Suppose I have a table with below columns:
emp_id | emp_name | emp_department | date_of_joining
I want to create a composite primary key named "ID" as
ID = emp_id + "_" + date_of_joining
I prepared my data by concatenating two columns and creating ID...