I am trying to do something real simple and have been pounding my head against the wall for the last hour trying to figure it out.
I need to return all data in a row that doesnt contain a decimal.
I was trying something like this:
Select Col from Tbl where not exists (
Select Col from Tbl where Col contains "."
Keeps popping an error.
Note: this needs to run on both MSSQL Server and Oracle 8/9 i
I need to return all data in a row that doesnt contain a decimal.
I was trying something like this:
Select Col from Tbl where not exists (
Select Col from Tbl where Col contains "."
Keeps popping an error.
Note: this needs to run on both MSSQL Server and Oracle 8/9 i