top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between a DDL trigger and a DML trigger?

+1 vote
360 views

Hai, Friends tell me the difference between a DDL trigger and a DML trigger

posted Nov 13, 2014 by Roshan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+3 votes

 A DDL trigger executes in response to a change to the structure of a database (for example, CREATE, ALTER, DROP).
 A DML trigger executes in response to a change in data (INSERT, UPDATE, DELETE).

answer Nov 13, 2014 by Manikandan J
...