Ah yes, easier than i thought
Run against Northwind DB
DECLARE @Address nvarchar(60), @EncryptAddress nvarchar(60)
SET @Address = '123 Main Street'
SET @EncryptAddress = PWDENCRYPT(@Address)
INSERT INTO Employees (LastName, FirstName, Address)
VALUES ('Doe', 'John', @EncryptAddress)
SELECT TOP 1 EmployeeID, LastName, FirstName, Address, Len(Address) As AddressLength
FROM Employees ORDER BY EmployeeID DESC
SELECT EmployeeID FROM Employees
WHERE LastName = 'Doe' AND Address = @Address
SELECT EmployeeID FROM Employees
WHERE LastName = 'Doe' AND Address = PWDENCRYPT(@Address)
The first SELECT shows that you can't "see" whats in the "Address" column and the Length column just shows that something is in there
Now notice that the second SELECT brings back no results since the plain address didnt match the encrypted column "address", but the third one did