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.
| 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 valueselect * from tblprdmst where drlqty <> 0 and drlqty < -1but it through the error., i don't want to display negitive value in query,looking forward your suggestionsDesikankannan |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-10-01 : 12:50:32
|
| select * from tblprdmst where drlqty >0 |
 |
|
|
|
|
|