• CompteDeOuf
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies

The following query works fine in SOQL

 

select account.name,name,account.ownerid,ownerid from contact limit 10

 

so all the fields are available.

 

This one is unparsable by SOQL

select account.name,name,account.ownerid,ownerid from contact where account.ownerid!=ownerid  limit 10

 

Anyway to do this ? 

The following query works fine in SOQL

 

select account.name,name,account.ownerid,ownerid from contact limit 10

 

so all the fields are available.

 

This one is unparsable by SOQL

select account.name,name,account.ownerid,ownerid from contact where account.ownerid!=ownerid  limit 10

 

Anyway to do this ?