Subject | Re: [firebird-support] Re: case when .. else ..end |
---|---|
Author | Helen Borrie |
Post date | 2005-10-20T12:48:25Z |
At 11:56 AM 20/10/2005 +0000, you wrote:
case
when (MP.RoleID = -1) then 'All Users'
when (MP.RoleID = -2) then 'Superuser'
when (MP.RoleID = -3) then 'Unauthenticated Users'
else R(.RoleName
end
./heLen
>I'm using Firebird-1.5.2.4731, and client IBExpert.Refer to Example B at your URL and try this instead:
>According to http://www.destructor.de/firebird/1.5/case.txt, i have
>implemented following case query(here part of the query),
>But same error msg is giving and not executing.
>
>case
> when MP.RoleID = -1 then 'All Users'
> when MP.RoleID = -2 then 'Superuser'
> when MP.RoleID = -3 then 'Unauthenticated Users'
> else R.RoleName
>end
>
>I can't see any problem, but why not executing, any comment???
case
when (MP.RoleID = -1) then 'All Users'
when (MP.RoleID = -2) then 'Superuser'
when (MP.RoleID = -3) then 'Unauthenticated Users'
else R(.RoleName
end
./heLen