+1 vote
in Salesforce by
What is the difference between trigger and workflow?

1 Answer

0 votes
by
Workflow:

Workflow is an automated process that fired an action based on Evaluation criteria and rule criteria.

We can access a workflow across the object.

We cannot perform DML operation on workflow

We cannot query from database

Trigger:

Trigger is a piece of code that executes before or after a record is inserted or updated.

We can access the trigger across the object and related to that objects

We can use 20 DML operations in one trigger.

We can use 20 SOQL from database in one trigger.

Related questions

0 votes
asked Sep 23, 2019 in Salesforce by john ganales
0 votes
asked Sep 23, 2019 in Salesforce by john ganales
...