Hi @Mark Sanchez ,
Available in all editions of SQL Server, cell-level encryption can be enabled on columns that contain sensitive data. Always Encrypted is available in SQL Server 2016 and later, but only in Enterprise editions.
Encryption and decryption occurs via the client driver. This means that some actions that occur only server-side will not work when using Always Encrypted. These actions include (but are not limited to):
• Copying data from one column to another via an UPDATE, BULK INSERT(T-SQL), SELECT INTO, INSERT..SELECT.
• Triggers, temporal tables, sparse columns, full-text, in-memory OLTP, and Change Data Capture (CDC).
Suggest you read the MS document Always Encrypted and the blog SQL Server Encryption Explained: TDE, Column-Level Encryption and More to get more information.
If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar thread.