vote up 1 vote down star

Hi Everyone:

I am wondering if there is some way to do a doesn't equal command in MYSQL. In other words, can you do a command like this: "SELECT * FROM someTitle WHERE someLabel != 'something'"? My code is returning an error when I attempt this.

Thanks for any help!

flag

59% accept rate
1  
WHERE somelabel != 'something' works fine for me on MySQL 4.1 - what is the error? – OMG Ponies Nov 2 at 2:45

5 Answers

vote up 10 vote down check

try this

SELECT * FROM someTitle WHERE someLabel <> 'something'
link|flag
Thanks RRUZ, it works now! – PF1 Nov 2 at 2:43
vote up 0 vote down

Replace != with <>

link|flag
vote up 2 vote down

In SQL, like VB, <> is used instead of !=.

You can therefore write the following:

SELECT * FROM someTitle WHERE someLabel <> 'something'

I'm not sure how <> can mean inequality; can anyone explain?

link|flag
Actually, != is ANSI standard. – OMG Ponies Nov 2 at 2:51
Well, if x is less than y or x is greater than y then x does not equal y. – Eli Nov 2 at 21:04
vote up 5 vote down

Try <> instead of !=

link|flag
vote up 2 vote down

Use someLabel <> 'something' instead.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.