I need a query which will retrieve non-negative Integer values only from a given table
Lets say I have a table A
and the query select* from A
will retrieve all contents from it. Now I want to write a query which will give me only non-negative values.
Assumption: All columns of the table contain negative/positive/zero Integer values as well as characters.