Last active
September 24, 2024 15:33
-
-
Save escgeek/8a255fb90b991d5f46c7bcfb7a416e78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This displays the list of users that are active and 'Frozen' in Salesforce.com | |
SELECT Name, IsActive, LastLoginDate, Id, username FROM User WHERE IsActive = TRUE AND Id IN (SELECT userId FROM userLogin WHERE IsFrozen = TRUE) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for shared!