I have a query like this, which needs a cast :
FROM w.a_w WTable
INNER JOIN w.u WuTable
ON (WTable.CD = CAST(WuTable.CD AS INTEGER))
But i am not getting how to make this query using SQL Builder as I don't get any Cast() or AS Integer build in functions there.
Can someone please guide me through this.