I have a query for mysql where ifnull() is used.i want to convert it into ejb-ql. Problem here is that i dont find any substitute equivalent to ifnull() in ejb.
For eg:
ifnull(columnname,' ') as newcoulmn
I have a query for mysql where ifnull() is used.i want to convert it into ejb-ql. Problem here is that i dont find any substitute equivalent to ifnull() in ejb.
For eg:
ifnull(columnname,' ') as newcoulmn
Copyright © 2021 Jogjafile Inc.
You may try
since
coalesce
is widely supported function whenifnull
is MySql specific one