Today is the first time I have tried working with encrypting fields in SQL server. So far I have created, opened and tested a symmetric key named symInventory (Select * from sys.openkeys - to verify).Now I am trying to Fill a table with encrypted passwords where plain text passwords exist now. With the statement below I am getting this error:Msg 102, Level 15, State 1, Line 4Incorrect syntax near '('.INSERT INTO Inventory.dbo.tblUsers( UserName, LoginID, encryptbykey(key_guid('symInventory'), LoginPW, 1, LoginID))SELECT tblPtUser.UserName, tblPtUser.LoginID, tblPtUser.PWFROM What am I doing wrong?