Hi,
I’m trying to conver this query from Access to SQL Server 2005. I can get everything by the syntax for the new column that is a combination of [username]&””&[password].
SELECT [username] & “” & [password] AS UsernamePassword, tblUsernamePassword.SecurityLevel, tblUsernamePassword.Username, tblUsernamePassword.Password, tblUsernamePassword.Active, tblUsernamePassword.EmployeeName
FROM tblUsernamePassword;
Thanks!
Leesha