I am trying to saved the data in database table in encrypted format to hide the data store in the database table to be read by the user
Any advice how I can do this with out much effort on application level with less overhead on my application side?
Read this MS SQL Server Encryption Hierarchy
Ex:
-- Open the symmetric key with which to encrypt the data.
OPEN SYMMETRIC KEY SSN_Key_01
DECRYPTION BY CERTIFICATE HumanResources037;
-- Encrypt the value in column NationalIDNumber with symmetric key
-- SSN_Key_01. Save the result in column EncryptedNationalIDNumber.
UPDATE HumanResources.Employee
SET EncryptedNationalIDNumber
= EncryptByKey(Key_GUID('SSN_Key_01'), NationalIDNumber);