--
USE DBNAME;
GO
CREATE LOGIN sqlUser
WITH PASSWORD = 'P@ssword', DEFAULT_DATABASE = DBNAME;
GO
CREATE USER sqlUser
FOR LOGIN sqlUser;
GO
DROP LOGIN sqlUser;
CREATE LOGIN sqlUser
WITH PASSWORD = 'P@ssword', DEFAULT_DATABASE = DBNAME;
GO
--
The DB has 2 x local SQL users - And you guessed it, no one knows the passwords for these accounts.Are the users being used from an application? If so the application has those passwords stored and you just need to find if it's encrypted or not.
There is not way you can view password of other people.