Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the following query:

query = "SELECT * FROM racetimes WHERE course='" + myracecoursevariable + "'";

I want to change the query and select data from database where the course is not equal to the dynamic variable given in the query in MYSQL.

share|improve this question

4 Answers

up vote 2 down vote accepted
"SELECT * FROM racetimes WHERE not (course='" + myracecoursevariable + "')";

or

"SELECT * FROM racetimes WHERE course <> '" + myracecoursevariable + "'";

You should be using prepared statements to pass dynamic variables to MySQL

share|improve this answer

You may use not equal <> instead of equal =:

query = "SELECT * FROM racetimes WHERE course <> '" + myracecoursevariable + "'";
share|improve this answer
query = "SELECT * FROM racetimes WHERE course <> '" + myracecoursevariable + "'";

The <> means NOT EQUAL, while = means EQUAL.

PS. I would rather learn how to use PreparedStatement instead of doing '" + myracecoursevariable + "'"; (See an example from Oracle).

share|improve this answer
  1. Never build queries by string concatenation - this is asking for issues down the road (SQL injection, "'" characters in the race course, etc). In Java, use PreparedStatement with the ? placeholders.
  2. The != operation in SQL is <>
share|improve this answer
I hope the OP takes note of this! – BoffinbraiN Apr 3 '11 at 6:36
In MySQL, <> and != are equivalent. – ypercube Apr 3 '11 at 8:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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