Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to make an where var1!=var2 ? because when I try the compiler said it"s an invalid operator . (i also tried NOT IS).

The full Error-Message:

Invalid use of '.', '!', or '()'. in query expression
        'emp_course.e_id!=employee.e_id'
share|improve this question
What database product? oracle? Please include that SQL statement in your post. – AVD Aug 1 '12 at 8:28
the sql with full explanation is here: stackoverflow.com/questions/11755676/sql-query-in-c-sharp – Meilenea Aug 1 '12 at 8:51

2 Answers

up vote 6 down vote accepted

Have you tried this:

where var1 <> var2

TSQL allows both != and <>, whereas other dialects have different rules.

share|improve this answer
yeah I also tried this this will not throw an error but it seams not to work ... maybe i have a mess in the other part of my sql query ... – Meilenea Aug 1 '12 at 8:26
Possibly - if you are having trouble with it create a new question and post the link in the comments here, and I'll have a look :) – mdm Aug 1 '12 at 8:27
thanks so much :) i just have to wait another 14min to post it because i'm a newbie here ;) – Meilenea Aug 1 '12 at 8:37

As the MSDN sais it should be expression < > expression

share|improve this answer

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.