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

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -