sql - Selecting values from a query that are negative in Sybase -


im running query

  select art_ref tablename semester_num=28 

this query returns both positive negative 0 results in forms of 8, -2, 0.

how can return values negative (-8)?

i've tired using operator no success.

cheers

try way:

select art_ref  tablename  semester_num=28  , art_ref <0 

Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c++ - CryptStringToBinary API behavior -