Results 1 to 2 of 2

Thread: Informix 9.3 order by case clause dont work

Hybrid View

  1. #1
    Join Date
    Jul 2009
    Posts
    1

    Informix 9.3 order by case clause dont work

    select * from branch
    order by
    Case 1 when '101' then '!' Else 1 End

    This works in informix 9.4 and greater and MSSQL but not informix 9.3, anyone know why or have a solution for 9.3?

    thanks

  2. #2
    Join Date
    Sep 2010
    Posts
    2

    try

    move your case to one of the columns and then call it by reference

    select case...., *
    from .....
    order by 1

Posting Permissions

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