Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 show non negitive value

Author  Topic 

desikankannan
Posting Yak Master

152 Posts

Posted - 2008-10-01 : 12:48:07
hi,
i have table called productmaster, i try to built a query which should show non negative value

select * from tblprdmst where drlqty <> 0 and drlqty < -1

but it through the error., i don't want to display negitive value in query,looking forward your suggestions



Desikankannan

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-10-01 : 12:50:32
select * from tblprdmst where drlqty >0
Go to Top of Page
   

- Advertisement -