hi there,
I have an access database "profit" and a column "performance" with negative, positive and zero values. i am trying to select from my table as below.
select from profit where performance != "0"
and
select from profit where performance >< "0"
but am getting errors
I want select only where values are greater or less than "0"
any help will be appreciated

Manoj BhoirPosted Jul 10, 2015, 3:08 AM
Posted Jul 10, 2015, 2:48 AM
Rahul PrajapatPosted Jul 9, 2015, 10:53 PM
Upendra Pratap ShahiPosted Jul 9, 2015, 6:13 AM
SELECT * FROM dbo.profit WITH(NOLOCK) WHERE performance != '0'
Vignesh ManiPosted Jul 9, 2015, 5:41 AM
Vignesh ManiPosted Jul 9, 2015, 5:41 AM