Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: A View Or a Stored Procedure?

    Hi!

    I would solve this with a view, using case-when as following:

    create view as vCustomers

    as

    select

    case when cust_name_ru is not null or cust_name_ru <> ' ' then cust_name_ru

    ...

Viewing post 1 (of 1 total)