sql server - SQL select from table where quantity is not negative -


how do select * salesorder quantity positive number? (i want exclude orders negative order quantities...)

how about

select * salesorder quantity >= 0 

Comments

Popular posts from this blog

java - Static nested class instance -

Python Pandas join aggregated tables -

process - Python What is the difference between a Pool of worker processes and just running multiple Processes? -