|
|
|
|
|
Force.com Discussion Boards :
Developer Boards :
.NET Development :
SOQL Questions
|
|
|
|
|

|
SOQL Questions
|
|
DeL
Regular Contributor
Posts: 17

Message 1 of 7

Viewed 10,564 times
|

|
|
Does anyone know an easy way to simulate a SELECT DISTINCT operation in SOQL?
Also, how do you check for NULL in a WHERE clause. I know IS NULL does not work?
Thanks...
|
|
|
|
08-09-2005 09:16 AM
|
|
|
|
|
|

|
Re: SOQL Questions
|
|
GrantM
Regular Contributor
Posts: 70

Message 2 of 7

Viewed 10,735 times
|

|
|
SELECT Id FROM CASE WHERE Id <> null or SELECT Id FROM CASE WHERE Id = null
don't think there's anything like distinct though
|
|
|
|
08-09-2005 09:21 AM
|
|
|
|
|
|
|
|
|
|
|
|
|
|

|
Re: SForce Explorer
|
|
GrantM
Regular Contributor
Posts: 70

Message 7 of 7

Viewed 10,987 times
|

|
|
yeah, i get the same thing.
you see the api is limited to returning 2000 results. You have to use the QueryMore option to get the next 2000 results.
So there must be some mistake in the code at that step. Haven't had the time to check it out properly
|
|
|
|
08-09-2005 09:44 AM
|
|
|
|
|
|
|
|
|
|