SQL Server – Is Individual Column and Row-Level Encryption Possible

encryptionsql server

I know about complete column level encryption techniques and complete database encryption. But is it possible to encrypt individual rows and columns in SQL Server?

Thanks

Best Answer

Always Encrypted feature of SQL Server 2016 onward supports individual column level encryption but not row level.

Instead of row level encryption, Row Level Security feature of SQL Server supports restricting access of particular set of records in the table.

Thanks!