It's easy to encrypt column using query in SQL Server 2016 with "Always Encrypted". But we have existing tables. So how to encrypt a column in existing table? I need it using alter query.
I tried following Query
alter table testemp alter column ename add ENCRYPTED WITH (
ENCRYPTION_TYPE = DETERMINISTIC,
ALGORITHM = 'AEAD_AES_256_CBC_HMAC_SHA_256',
COLUMN_ENCRYPTION_KEY = CEK_Auto8)