Here ya go buddy
---- START OF MS SQL CODE
use [XXXXXXX]; -- Replace this with the name of your DB
go
SELECT
CP.ProcessId
,P.Name as ProcessName
,CP.CredentialId
,C.Name
FROM [dbo].[BPACredentialsProcesses] as CP
inner join [dbo].[BPAProcess] as P
on P.ProcessId = CP.ProcessId
inner join [dbo].[BPACredentials] as C
on C.ID = CP.CredentialId
;
---- END OF MS SQL CODE