BubikolRamios
03-08-2009, 08:42 AM
select
IFNULL(t.AB,t.EN) as L
FROM
table t
EN column exists.
This is ok if t.AB exists, need it to work even if it does not exists, like:
Pseudocode:
select
IFNULL_ERROR(t.AB,t.EN) as L
FROM
table t
Is there something like that ?
IFNULL(t.AB,t.EN) as L
FROM
table t
EN column exists.
This is ok if t.AB exists, need it to work even if it does not exists, like:
Pseudocode:
select
IFNULL_ERROR(t.AB,t.EN) as L
FROM
table t
Is there something like that ?