/ Published in: SQL
Expand |
Embed | Plain Text
CASE WHEN @RoleTypeId = 0 THEN @RoleTypeName WHEN @RoleTypeId = 1 THEN 'Public Anonymous User' WHEN @RoleTypeId = 2 THEN 'System Administrator' END
You need to login to post a comment.
RealRover on 08/07/10
1 person have marked this snippet as a favorite
CASE WHEN @RoleTypeId = 0 THEN @RoleTypeName WHEN @RoleTypeId = 1 THEN 'Public Anonymous User' WHEN @RoleTypeId = 2 THEN 'System Administrator' END
You need to login to post a comment.