Skip to content

Instantly share code, notes, and snippets.

@achest
Created February 20, 2013 12:55
Show Gist options
  • Save achest/4995348 to your computer and use it in GitHub Desktop.
Save achest/4995348 to your computer and use it in GitHub Desktop.
Select product.brand Brand, drp.Name, drp.Quantity Quantity,drp.CreatedDate,
from call,
drp ,
Product2 product
where drp.IsDeleted == false
AND call.IsDeleted == false
AND drp.Product == product.ID
AND drp.Call = call.ID
@achest
Copy link
Author

achest commented Feb 20, 2013

Select product.brand Brand,product.name, drp.Name,call.account, drp.Quantity Quantity,drp.CreatedDate
from call,
drp ,
Product2 product
where drp.Product == product.ID
AND drp.Call = call.ID

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment