To revoke a role from all users, use the REVOKE...FROM PUBLIC statement. PUBLIC is a special user group that includes all database users. Options A, C, and D use incorrect syntax - ALL, default, and ALL_USERS are not valid keywords for revoking roles from everyone. Option B uses the correct PUBLIC keyword to remove the role from all users at once.