Zoran wrote:
Is there anything similar to MySQL ELT() function in Firebird ?
Karol Bieniaszewski answers:
Same no, but similar yes:
select decode(i, 0, 'deleted', 1, 'active', 2, 'inserted', null) from RDB$DATABASE
Zoran wrote:
Is there anything similar to MySQL ELT() function in Firebird ?
Karol Bieniaszewski answers:
Same no, but similar yes:
select decode(i, 0, 'deleted', 1, 'active', 2, 'inserted', null) from RDB$DATABASE