DBAsupport.com Forums - Powered by vBulletin
Results 1 to 7 of 7

Thread: Using boolean constant in SELECT..INTO.. statement

Threaded View

  1. #2
    Join Date
    Jul 2002
    Location
    Slovenia
    Posts
    42
    try this

    I don't know why it worked in 8 an not worked in 9...

    you can try this:

    DECLARE
    myvar BOOLEAN := FALSE;
    c_True CONSTANT BOOLEAN := TRUE;
    BEGIN
    myvar := c_True;
    END;
    Last edited by andrejm; 10-13-2003 at 09:07 AM.
    Andrej

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width