How do I express the where clause in this:
select * from TABLE where LENGTH(COLUMN) > 0
in xPDO?
$criteria->where(array('LENGTH(customer_po_num):>' => '0'));
does not work, it results in something like this:
`InventoryData`.`LENGTH(customer_po_num)` > '0'